RAID Intro
RAID
stands for Redundant Array of Inexpensive Disks(廉价磁盘冗余阵列)
Hardware RAID
Hardware RAID using controllers or RAID cards to manage the RAID configuration independently from the operating system.
Software RAID
Software RAID tends to be slower than hardware RAID.
RAID Level Comparision
RAID 0

1
2
3> data are split up into blocks that get written across all the drivers in the array. By using multiple disks (at least 2) at the same time, this offers fast read and write speeds.
# Downside
- RAID 0 is not redundant, the loss of any individual will cause complete data loss.RAID 1

1
2
3RAID 1 is setup of at least two drives.
RAID 1 is high read performance, as data can be read off any of the drives in the array.
Since the data needs to be written to all the drives in the array, the write speed is slower than a RAID 0 array.RAID 5

1
2"parity" distributed across the drives.
READ speed is very fast but write speed is somewhat slower due to the partity that has to be calculated.RAID 6

1
2Read speed is as fast as RAID 5, but write speed is slower than RAID 5.
RAID 6 is a very good option for a standard web server, where most of the transactions are reads, but its not recommanded for a heavy write environment.RAID 10

1
RAID 10 can provide the speed of RAID 0 with the redundancy of RAID 1.
1 | chyiyaqing in ~ at chyiyaqing-PowerEdge-R720 |