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

 



Forgot your password?
typodupeerror
×

Comment Re:Whom are we securing it from? (Score 1) 93

Whether the data is in the cloud makes no difference with respect to discovery requests. If you are served a discovery subpoena, you have to turn over the data whether it's in the cloud or not.

The difference is that under the Stored Communications Act, the provider can turn it over to the Government without notifying you. That's what has most data security experts nervous about cloud storage.

Comment Re:Look at the latency (Score 3, Insightful) 156

I agree, and this is why I have nothing but contempt for typical "best provider performance" conclusions that are driven solely by single-connection TCP transfer tests (e.g. speedtest.net).

In most cases, latency matters more than bandwidth (where bandwidth is roughly the same within an order of magnitude or so). This is why there's a very strong correlation between the provider that had the lowest measured latency and the provider that had the lowest page retrieval time. In the end, real-world page loading is precisely what we use smartphones for, and so we need to know how that application performs, instead of what raw transfer rates are.

I still think the Gizmodo tests are deficient, though, as they are unclear as to whether they repeated the tests at regular intervals over a 24-hour period. Network congestion varies throughout the day, and at any given moment one path may be more congested than another. A valid test, IMO, would take the average (or median) of each metric over a 24-hour period (or even longer, covering both a weekday and a weekend, since usage varies among them).

Comment Re:Shards and clusters and servers, oh my! (Score 1) 381

But if you are concerned about performance, and you are already running your RDBMS servers at their limits, then you also already know way, way too much about the internal RDBMS structure, how tables are split, where they are split, and so on.

At some point the comparative cost of doing your own joins is less than tweaking your RDBMS to scale. However, this point is rarely reached in most organizations.

Comment Classic tradeoff (Score 5, Insightful) 830

It's amazing how fast a filesystem can be if it makes no guarantees that your data will actually be on disk when the application writes it.

Anyone who assumes modern filesystems are synchronous by default is deluded. If you need to guarantee your data is actually on disk, open the file with O_SYNC semantics. Otherwise, you take your chances.

Moreover, there's no assertion that the filesystem was corrupt as a result of the crash. That would be a far more serious concern.

Slashdot Top Deals

An authority is a person who can tell you more about something than you really care to know.

Working...