RAID
1、RAID0(STRIPING)
Not fault tolerant.
Data is 'striped' across multiple disks.
Advantage is speed.
2、RAID1(MIRRORING & DUPLEXING)
Is fault tolerant.
Data is copied on more than 1 disk.
3、RAID5(STRIPING WITH PARITY)
Requires 3 or more disks.
Data is 'striped' across multiple disks along with parity.
The equivalent of an entire disk is used to store parity.
Examples: An array of 4 disks totaling 4 terabytes, only 3 terabytes will be used for actual data storage.
RAID5具有和RAID0相似的数据读取速度;因为多了一个奇偶校验信息,写入数据的速度相对单独写入一块硬盘的速度略慢;RAID5的磁盘空间利用率比RAID1要高。
4、RAID10
Combines RAID1 with RAID0.
Benefits from the fault tolerance of RAID 1 and the speed of RAID 0.
Can only use 50% for data storage.




评论
发表评论