1
With 6 drives in RAID 10 one will get 3 drives effective storage and 3 redundant drives, so in a best case scenario up to 3 drives can fail without loosing any data. But in a worst case scenario (now correct me if I'm wrong) even two failed disks could make the whole array fail (if those drives are mirrored onto each other, like in this array).
Is there a way around this possible failing state? I am liberal regarding software RAID and non-standard RAID setups, so maybe there is some way? Or it could just be me having bad luck thinking. If so - please explain to me how things really work. :)
It's a bit broad a question since there are many ways to build raids, though you are correct in your assumption. Consider reading: http://en.m.wikipedia.org/wiki/RAID
– Mattias Åslund – 2013-12-12T18:38:41.077Are you trying to avoid two-drive failures bringing down the whole array? If so, RAID6 is what you are looking for. Or are you looking to survive failure of any three drives? – ChrisInEdmonton – 2013-12-12T18:41:03.680
RAID 6 would be an option, but it would be really nice to have the speed of RAID 10, why I wanted to do some research on this first. But RAID 6 (or RAID Z2 even) maybe will be my best alternative? – lindhe – 2013-12-12T18:45:25.553
ChrisInEdmonton: No, I will settle at any two drives. I think I will go for RAID 6 (or more likely RAID Z2, since I don't want to invest in a RAID card). RAID Z2 have greater fault tolerance than 10, and since this will be on a NAS on a Gigabit network I won't be able to utilize of all that extra speed from RAID 10. – lindhe – 2013-12-12T21:19:30.003
If you are doing Linux software RAID10, which does a lot of weird things above and beyond a standard RAID10, you can setup n mirrors so long as your number of disks is at least n+1. By that I mean you could have N copies of every chunk instead of just the standard 2 copies. The more copies you have the less storage space you will have available. – Zoredache – 2013-12-13T00:50:58.033
I would strongly recommend ZFS's raidz2 over raid6 for the checksumming features. – Darth Android – 2013-12-16T22:31:11.550