Your SATA RAID has a 56% chance of data loss
1–10 of 27 posts
Re: Your SATA RAID has a 56% chance of data loss
#2Re: Your SATA RAID has a 56% chance of data loss
#3But yeah, ZFS rocks.
Re: Your SATA RAID has a 56% chance of data loss
#4ZFS however would protect against this, in that it checksums each chunk of data. And "zfs scrub poolname" will go through and do the checksums for you in the event you are storing a lot of data and not necessarily reading/writing it often.
I'd hate to lose some of the data on that thing, though I'm currently not doing any RAID. Just a disk of important stuff rsnapshotted every 4 hours to another disk.
Re: Your SATA RAID has a 56% chance of data loss
#5At least you'll know if there was an error.
Re: Your SATA RAID has a 56% chance of data loss
#6Re: Your SATA RAID has a 56% chance of data loss
#7A hard disk has a bit error rate of 10^15:
1,000,000,000,000,000
That's about 16 times higher.
That's horrible.
Taken to a single 750GB disk that means you can read the entire disk an average of 155 times before you'll encounter an error! That's shockingly bad.
Re: Your SATA RAID has a 56% chance of data loss
#8This is what keeps encryption impractical, especially for laptops.
Re: Your SATA RAID has a 56% chance of data loss
#9ZFS however would protect against this, in that it checksums each chunk of data. And "zfs scrub poolname" will go through and do the checksums for you in the event you are storing a lot of data and not necessarily reading/writing it often.
If you want something that will actually protect against bit level errors well, generate some extra data using an appropriate Error Correcting Code for your important archives/files. Something like what par2repair generates. This is incredibly slow compared to simple erasure codes like RAID uses, though. There are some filesystems that do this for you automatically, I wrote one:) Actually, other than that I don't know of any filesystems that do this.
If the above is impractical for performance reasons, Google recommends mirroring everything on three disks...
Re: Your SATA RAID has a 56% chance of data loss
#10This is what keeps encryption impractical, especially for laptops.
Why? Assuming you're using CBC mode within each sector, you wouldn't lose any additional data due to a sector error compared to an unencrypted disk.
I think it's 128 bits for truecrypt, although internet searches point to many people using higher (1024 and 4096). And if the bit level error rates are as high as he says, looks bad.