Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Meanwhile... (Score 1) 77

As mentioned interrupt processing / context switches can add latency and jitter. As a 10G LAN has a very small round-trip delay (RTD), TCP can calculate the re-transmit timeout (RTO) to be a very small number. which makes it very sensitive to small amounts jitter, and can result in packets incorrectly being flagged as lost, this causes re-transmission and for the TCP window size to be zeroed (killing throughput) (some congestion control tuning can help here). The problem can become severe with 10G networks to a VM over a software bridge, but to the jitter introduced by the bridge. (SR-IOV can help here). There is a lot you can do to TCP to improve its performance in such circumstances, increased window buffers, use a modern congestion control algorithm, interrupt coalescing, SR-IOV. For very low latency applications (like HFT) people generally don't use interrupts, they configure their NIC to kernel bypass (user space library with direct access to the NIC hardware, to avoid context switching), map to the optimum NUMA space for the core handing network events, keep their application in CPU cache, align data-structures to cache lines, turn off all hyper-threading and power saving and assign a core to busy spin checking for network events, not very green.

Comment It will be back (Score 2) 32

The powers that be have been pushing for a ubiquitous telecoms surveillance pork fest for at least the last 20 years. There is a fresh push with every new government / home secretary. I have no doubt whatsoever that we have not seen the last of this, need to stay vigilant.

Comment Re:Where is this going? (Score 3, Insightful) 114

This will just be a talking shop to waste money producing another pile of fully buzzword compliant rubbish, like the Digital Britain Report. As for the killer app, given our government's tendencies I would not be at all surprised of they thought it was a good idea to extend hi-res CCTV into everyoneâ(TM)s houses, you know cos of the terrorists and all.

Comment Re:encryption (Score 2, Insightful) 342

Under UK law failure to provide all decryption keys on demand is a serious criminal offence. Unless you can *prove* that you can't decrypt the data you are presumed guilty. Given the difficulty in proving a universal negative, plausible denial mechanism such as those in TrueCrypt could land you in serious hot water.

Slashdot Top Deals

"More software projects have gone awry for lack of calendar time than for all other causes combined." -- Fred Brooks, Jr., _The Mythical Man Month_

Working...