若转载请于明显处标明出处:http://www.cnblogs.com/kelamoyujuzhen/p/8980696.html

RAID stands for Redundant Array of Inexpensive (Independent) Disks.
On most situations you will be using one of the following four levels of RAIDs.
  • RAID 0
  • RAID 1
  • RAID 5
  • RAID 10 (also known as RAID 1+0)
In all the diagrams mentioned below:
  • A, B, C, D, E and F – represents blocks
  • p1, p2, and p3 – represents parity(奇偶校验)

RAID LEVEL 0

最最常用的RAID
Following are the key points to remember for RAID level 0.
  • Minimum 2 disks.
  • Excellent performance ( as blocks are striped ).
  • No redundancy ( no mirror, no parity ).
  • Don’t use this for any critical system.

RAID LEVEL 1

最最常用的RAID
Following are the key points to remember for RAID level 1.
  • Minimum 2 disks.
  • Good performance ( no striping. no parity ).
  • Excellent redundancy ( as blocks are mirrored ).

RAID LEVEL 5

最最常用的RAID
Following are the key points to remember for RAID level 5.
  • Minimum 3 disks.
  • Good performance ( as blocks are striped ).
  • Good redundancy ( distributed parity ).
  • Best cost effective option providing both performance and redundancy. Use this for DB that is heavily read oriented. Write operations will be slow.

 

RAID LEVEL 10

最最常用的RAID

相关文章:

  • 2021-08-20
  • 2022-02-23
  • 2022-12-23
  • 2021-06-21
  • 2021-11-10
  • 2021-09-16
  • 2021-10-04
  • 2021-11-11
猜你喜欢
  • 2021-05-10
  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2021-11-09
  • 2021-12-19
  • 2021-05-05
相关资源
相似解决方案