RAID简介

<p class="shortdesc"></p> <p class="p">磁盘阵列RAID(Redundant Array of Independent Disks)是一种把多块独立的硬盘(物理硬盘)按不同的方式组合起来形成一个硬盘组(逻辑硬盘),从而提供比单个硬盘更高的存储性能和提供数据备份技术。不同RAID 级别代表着不同的存储性能、数据安全性和存储成本。</p> <table class="table" id="Introduction__table_bjy_jp4_tlb"><caption></caption><colgroup><col><col><col><col><col><col></colgroup><thead class="thead"> <tr class="row"> <th class="entry" id="Introduction__table_bjy_jp4_tlb__entry__1">RAID级别</th> <th class="entry" id="Introduction__table_bjy_jp4_tlb__entry__2">说明</th> <th class="entry" id="Introduction__table_bjy_jp4_tlb__entry__3">读写性能</th> <th class="entry" id="Introduction__table_bjy_jp4_tlb__entry__4">安全级别</th> <th class="entry" id="Introduction__table_bjy_jp4_tlb__entry__5">空间使用率</th> <th class="entry" id="Introduction__table_bjy_jp4_tlb__entry__6">所需磁盘数</th> </tr> </thead><tbody class="tbody"> <tr class="row"> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__1 "> <p class="p">RAID0</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__2 "> <p class="p">将连续的数据分散存储在多个磁盘上,提高磁盘整体的存取性能。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__3 "> <p class="p"><strong class="ph b">最高</strong></p> <p class="p">读性能:N*单块磁盘的读性能</p> <p class="p">写性能:N*单块磁盘的写性能</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__4 "> <p class="p"><strong class="ph b">最差</strong></p> <p class="p">不提供数据冗余,单个硬盘出现故障将导致整个数据丢失。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__5 "> <p class="p">总的磁盘容量,利用率100%。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__6 "> <p class="p">2个及以上</p> </td> </tr> <tr class="row"> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__1 "> <p class="p">RAID1</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__2 "> <p class="p">通过数据镜像实现数据冗余,两块磁盘互为备份数据。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__3 "> <p class="p">读性能:与单个磁盘相同,取决于磁盘中较快的盘。</p> <p class="p">写性能:两块磁盘并行写入,因此,单块磁盘相对较慢。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__4 "> <p class="p"><strong class="ph b">最高</strong></p> <p class="p">每块磁盘都提供了冗余,因此,一对镜像盘中的任何一个损坏,不会影响数据的使用。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__5 "> <p class="p">磁盘容量的50%。成本相对较高。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__6 "> <p class="p">2个或2N个</p> </td> </tr> <tr class="row"> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__1 "> <p class="p">RAID5</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__2 "> <p class="p">将存储数据和相应的奇偶校验信息存储到各个磁盘中。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__3 "> <p class="p">与RAID0近似。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__4 "> <p class="p">只允许一块磁盘损坏。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__5 "> <p class="p">磁盘容量的(N-1)/N</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__6 "> <p class="p">3个或3N个(N≥2)</p> </td> </tr> <tr class="row"> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__1 "> <p class="p">RAID01</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__2 "> <p class="p">结合RAID0和RAID1两种磁盘阵列,先将一半磁盘组建成RAID0分条存储数据,再用另一半磁盘做RAID1镜像。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__3 "> <p class="p">读性能:和RAID0相同</p> <p class="p">写性能:和RAID1相同</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__4 "> <p class="p">比RAID10的安全性能低。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__5 "> <p class="p">磁盘容量的50%</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__6 "> <p class="p">4个或2N个(N≥2)</p> </td> </tr> <tr class="row"> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__1 "> <p class="p">RAID10</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__2 "> <p class="p">结合RAID1和RAID0两种磁盘阵列,先将磁盘两两组建成RAID1镜像,再组建RAID0将数据分条存储。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__3 "> <p class="p">读性能:RAID0相同</p> <p class="p">写性能:RAID1相同</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__4 "> <p class="p">和RAID1的安全性能相同。</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__5 "> <p class="p">磁盘容量的50%</p> </td> <td class="entry" headers="Introduction__table_bjy_jp4_tlb__entry__6 "> <p class="p">4个或2N个(N≥2)</p> </td> </tr> </tbody></table>
以上内容是否解决了您的问题?
请补全提交信息!
咨询·建议

电话咨询

400-151-8800

邮件咨询

cloud@pingan.com

在线客服

工单支持

解决云产品相关技术问题