A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.
Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.
Subcommunities on Beehaw:
This community’s icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
And that’s why RAID is a good idea.
Raid 0 right?
RAID 1. Raid 0 stripes data between disks, meaning you get much faster I/O speeds but if one disk fails, you lose it all. RAID 1 is when you have 2 (or more) disks and the data is mirrored between both. So if one does, you’ve got a perfect copy of it on the other disk. RAID 0 = “striped”, RAID 1 = “mirrored”
For availability, yes, but RAID is not a substitute for proper backup procedures. E.g. - offsite, cloud, or automated scheduled local backups, or even regular data integrity checks.
True, but it will protect you from a single drive failing like this.
I don’t think the drive actually failed. The article said that the files disappeared from the drive one-by-one, which sounds like a firmware bug to me.
You could theoretically have the same problem due to a buggy RAID controller or driver.
It didn’t fail in the sense of reporting an I/O error, but it did fail in the sense that the bytes previously written to it can’t be read any more.
Could be. SSD firmware is pretty notorious for data loss.
Which is why I don’t trust hardware RAID controllers, only software RAID, preferably with per-block checksums so that the software RAID controller knows which copy is the good copy.
The author is using macOS, whose APFS file system has those features. Linux’s btrfs does too.