Level | Characteristics | Advantages | Disadvantages |
Linear | Concatenates small partitions into a larger one | Allows two disks to be used linearly as one, with the capacity of subsequent disks simply added to the first disk | No redundancy; less reliable overall because if one partition fails, the larger one fails |
RAID 0 | Striping | Performance benefits for reads and writes | No fault tolerance |
RAID 1 | Mirroring | Efficient for reads because multiple reads can be done on multiple drives; complete fault tolerance | Diminished write performance, because of the need to write data more than once; high cost per megabyte of storage due to the duplication of all data |
RAID 2 | not used |
RAID 3 | not used |
RAID 4 | Striping, parity, dedicated parity disk | Fault tolerance without the high cost of completely duplicating all data | Parity disk can become a performance bottleneck; for this reason it is almost never used over RAID 5 |
RAID 5 | Striping, parity | Fault tolerance without the high cost of completely duplicating all data | |