I thought battery is supposed to cover writing the entire write buffer cache to disk in case of power loss. Sounds like they had some badly designed gear which did no account for partial battery charge which should downsize the cache to battery's capacity.
Google loses data as lightning strikes
131–140 of 142 posts
Re: Google loses data as lightning strikes
#132Key point from Google's status incident page that clarifies some of the partially-incorrect statements in the press and comments about this: "In a very small fraction of cases (less than 0.000001% of PD space in europe-west1-b), there was permanent data loss." https://status.cloud.google.com/incident/compute/15056#57195...
Re: Google loses data as lightning strikes
#133Re: Google loses data as lightning strikes
#134Re: Google loses data as lightning strikes
#135Re: Google loses data as lightning strikes
#136Earlier quoted context omitted.
How so? We'd need to know both how much data cjensen lost and how much data Glacier has in it to tell, neither of which I know from this conversation.
My recollection: around 20GB... however , they clearly were willing to try to get some of it back if that was helpful. It was just a redundant offsite backup for me, so there was no need.
Re: Google loses data as lightning strikes
#137Earlier quoted context omitted.
Funny enough, its funded by Bezos
Bezos isn't the only one. The Long Now foundation ( http://longnow.org ) has some other interesting projects besides the clock. If you like this kind of thing, I'd suggest reading Neal Stephenson's Anathem . It might be hard to get into it, it might be his most impenetrable book yet but it really pays off later.
Re: Google loses data as lightning strikes
#138Re: Google loses data as lightning strikes
#139Earlier quoted context omitted.
If you really care about durability, your best best is erasure-coding + a wide geographic distribution of shards. For example, you could encode 1 TB of data into four shards, each shard containing 500 GB. You distribute these to servers in SF, NYC, Berlin, and Sydney. The key here is that you only need two shards to recover your 1 TB of data, and they can be any two shards. So if lightning strikes Berlin, and the Big…
It's been a while since I followed this. I see over 100 Reed-Solomon erasure-coding projects on GitHub. Which would you recommend?
Re: Google loses data as lightning strikes
#140Earlier quoted context omitted.
It's been a while since I followed this. I see over 100 Reed-Solomon erasure-coding projects on GitHub. Which would you recommend?
Well, I have to shamelessly plug my startup, www.siacoin.com, which implements the scheme I described above using a peer-to-peer network, with payments made on a blockchain. We are using Klaus Post's excellent pure-Go implementation ( https://github.com/klauspost/reedsolomon ) which exceeds 1GB/s throughput.