从概念上讲, RAID2 同RAID3类似, 两者都是将数据条块化分布于不同的硬盘上, 条块单位为位或字节。然而RAID2 使用称为“加重平均纠错码”的编码技术来提供错误检查及恢复。这种编码技术需要多个磁盘存放检查及恢复信息, 使得RAID2技术实施更复杂。 因此,在商业环境中很少使用。
RAID2: Hamming Code ECC
Characteristics/Advantages
1. “On the fly” data error correction
2. Extremely high data transfer rates possible
3. The higher the data transfer rate required, the better the ratio of data disks to ECC disks
4. Relatively simple controller design compared to RAID levels 3,4 & 5
Disadvantages
1. Very high ratio of ECC disks to data disks with smaller word sizes - inefficient
2. Entry level cost very high - requires very high transfer rate requirement to justify
3. Transaction rate is equal to that of a single disk at best (with spindle synchronization)
4. No commercial implementations exist / not commercially viable

Each bit of data word is written to a data disk drive (4 in this example: 0 to 3). Each data word has its Hamming Code ECC word recorded on the ECC disks. On Read, the ECC code verifies correct data or corrects single disk errors.

2条引用
[...] 不同于RAID2, RAID3使用单块磁盘存放奇偶校验信息。 如果一块磁盘失效, 奇偶盘及其他数据盘可以重新产生数据。 如果奇偶盘失效,则不影响数据使用。RAID3对于大量的连续数据可提供很好的传输率, 但对于随机数据, 奇偶盘会成为写操作的瓶颈。 [...]
[...] 同RAID2, RAID3一样, RAID4, RAID5也同样将数据条块化并分布于不同的磁盘上, 但条块单位为块或记录。 RAID4使用一块磁盘作为奇偶校验盘, 每次写操作都需要访问奇偶盘, 成为写操作的瓶颈。 在商业应用中很少使用。 [...]