Posts

Showing posts with the label raid triangle

Why don't we use RAID 8?

All RAID types are built using three elements: Striping Data blocks on several disks. Writing redundant data (it is usually the result of calculating particular functions). Writing multiple copies of data (usually two copies are written). Different combinations of these elements allow to get data placement patters (RAID levels) which provide desired balance between speed, reliability and price. If we only use striping, we get a RAID 0. Using only one function to calculate redundant data we will get us a RAID 5. If we add one more set of redundant data to a RAID 5, it becomes a RAID 6. We get a RAID 1 from identical copies, but if you combine the striping technique with exact copies then you get a RAID 10. These data placement patterns are the most widespread and well-known, forming a so-called raid triangle . Except these RAID types, we can also see exotic combinations. For example, if in RAID 10 we use the number of disks which is not an integral multiple of the number of data copies ...

RAID Tips 2 of 10 - The RAID Triangle

Image
The relationship between Speed, Price, and Fault Tolerance mostly determines the RAID level to use. Of these three parameters, pick any two. Fast and Fault Tolerant - RAID 1+0 Fast and Cheap - RAID 0 Cheap and Fault Tolerant - RAID 5 or RAID 6.