What Is RAID 6 – Definition, Performance, Configuration, and More

example of raid 6

Thousands of gigabytes of data are produced every second. Thus, we need efficient data storage to keep up with the pace. Sure, we have SSDs replacing magnetic hard drives, but we’re lacking in the process if we don’t update the recovery protocols alongside them. A redundant array of independent disks (RAID) has emerged as a popular reading/writing scheme that can reduce the chances of data loss for multiple drives. RAID 6 is the latest iteration of the configuration. Throughout this guide, you’ll learn what RAID 6 is, why it's crucial for data storage management, and how to configure RAID 6 for your system.

Part 1. What is RAID 6?

As the name suggests, RAID 6 (Striping with Dual Distributed Parity) is the sixth iteration in a set of storage protocols designed for a multi-disk arrangement. It is a data-striping process that utilizes two disks as a backup. The data is striped in the form of blocks and is stored across multiple partitions, including the backup disks. That way, it remains accessible even after two consecutive failures.

RAID 6 involves a dual-parity system that adds two backup octets to each data block. These pertain to the location of either backup disk. Thus, it is helpful for integrated drives containing storage units just millimeters apart.

what is raid 6

Performance of RAID 6

RAID 6 performance is a step up in data integrity and fault analysis, although some areas, such as space and writing speeds, suffer a few drawbacks.

Features
Performance
Fault Tolerance: RAID 6 is one of the most reliable protocols to preserve data in case of system failure. Furthermore, it is the only storage configuration to date that can withstand two consecutive drive failures.
Fault Isolation: It is easier to isolate the faults and replace the drive, as both the drive firmware and dual parity have access to data. As such, you can replace the faulty drives without shutting down the system.
Reading Speed: The reading speed is similar to other array configurations. It is a multiple of the number of active drives in the system. For instance, a RAID 6 array with 8 drives will have twice the reading speed of that with 4 drives.
Writing Speed: A RAID 6 configuration slows the writing speed to 1/6 of the disk's default. It is so as it needs to attach two backup octets to each block of data. So even if you write the data full-stripe (all disks at once), the speed is n-2 (where n is the number of drives), which is lower than all other RAID configurations.
Space Efficiency: Due to requiring two disks as a failsafe and adding additional backup octets to each data segment, RAID 6 is not very space-efficient for fewer drives. The issue alleviates with 32 drives, the maximum supported by the configuration. It can achieve a maximum space efficiency of 93.75%.

Applications of RAID 6

Because RAID 6 requires several drive slots and can retain data after consecutive failures, it is the ideal configuration for the following applications.

  • Defense systems
  • Banks and other financial institutions
  • Healthcare
  • Social security
  • Law enforcement
  • Scientific research

Advantages and Disadvantages of RAID 6

RAID 6 configuration has the following advantages and disadvantages compared to its predecessors.

Pros

RAID 6 drastically reduces the risk of data loss and denial of service. No one likes it when the server goes down just because of a fault in a single drive.

It is easy to configure for any server and operating system. Whether you use Linux or Windows Exchange, you can apply RAID 6 for all the drives without needing a large crew.

RAID 6 supports double-parity, which isolates the backup drives unless called into action. Thus, any faults in the system are easy to spot and repair. You can still access the data during the repair process.

For a large number of drives, the reading speed is significantly increased.

Cons

RAID 6 has a slower writing speed as compared to other configurations.

For fewer drives, the space efficiency is very low. For example, in the case of just 4 drives (minimum for RAID 6), the space efficiency is only 50%.

It is more expensive to implement since it requires two backup drives and only works efficiently for several partitions within the same system.

Part 2. How Does RAID 6 Work?

A server with a RAID 6 storage configuration strips the data down in blocks. Each block has a minimum data allocation and an address. Once a block fills up, it goes to a designated location with the required address. In addition, it is assigned two parity stripes stored in two separate backup disks. It increases the aggregate mean time between failures (MTBF), enabling the administrator to analyze and minimize the data loss within a reasonable time frame.

how does raid 6 work

It is easy to locate a file using its data block address in regular functions. Although, in case of a disk failure, the same data can be recovered from the backup disks using the parity stripes.

As the backup disks remain isolated from the primary database, there is no need to shut down the system. The recovery and repair process can occur with the backup drives still mounted. Since there are two backup drives, the system can still withstand another failure. It is also why you can use RAID 6 configuration in an SSD-HDD hybrid system.

raid 6 hybrid deployment

Part 3. How to Configure RAID 6?

The process of configuring RAID 6 differs for various systems. However, since most servers today utilize Linux OS, this guide will discuss the process for Linux in detail.

  1. Install the ‘mdadm’ tool onto your system and use the ‘fdisk’ command to verify all attached drives.
  2. Create a new partition for the RAID 6 drives through the following command:

# fdisk /dev/sdb

create a new partition

You can interchange ‘sdb’ for ‘sdc’, ‘sdd’, and so on for different partitions. Remember, RAID 6 supports up to 32 drives at a time, with two of them always reserved as backups.

  1. Press 'N' to create a new partition. You can make it the primary partition by choosing ‘P’ and assigning it the number 1. Once done, press ‘P’ to print the section.
  2. You can repeat the process for all the other partitions. However, you don't need to assign a number each time. Instead, just press the Enter key twice, and Linux gives it the default value.
press enter key twice

Use the L key to browse the list of all the available partitions. You can type ‘t’ to choose the partition and ‘w’ to write any changes.

  1. Once you have created the partitions, you can use the following command to check for the formation of super-blocks. They consume a lot of space and can make it even slower to write data to the disk.

# mdadm -E /dev/sd[b-e]1

check for the formation of superblocks

You can replace ‘b-e’ with the naming scheme you used.

  1. Now, you can create a new RAID device and apply the appropriate level to all the partitions. Use the following command for the same.

# mdadm --create /dev/md0 --level=6 --raid devices=4 /dev/sdb1 /dev/sdc1 /dev/sdd1 /dev/sde1

#cat /proc/mdstat

apply appropriate level to all partitions

If you know how RAID 6 works, you can verify the RAID devices using the command # mdadm -E /dev/sd[b-e]1

  1. Next, you must verify that the RAID array is active and re-syncing has started on your system. Type in the following command to check the same.

# mdadm --detail /dev/md0

verify raid array active
  1. Now, you can use the ext4 attachment to create a file system and mount it under /mnt/raid6. You can switch the EXT4 file system for NTFS or FAT32 per your needs. Type in the following command to establish the file system.

# mkfs.ext4 /dev/mod0

# mkdir /mnt/raid6

# mount /dev/mod0 /mnt/raid6

  1. Create a few test files and edit them to ensure the partitions are working correctly.
  2. Save the RAID 6 configuration and verify the virtual device ‘/dev/md0’ status using the following command.

# mdadm --detail --scan --verbose >> /etc/mdadm.conf

# mdadm --detail /dev/md0

save raid 6 configuration

Upon conclusion of the process, you can choose to add a few spare drives to save some time in the future using the fdisk command.

What Happens When RAID 6 Configuration Fails

There might be times when a RAID 6 configuration faces several disk failures and lose important files. You can read our article RAID 6 Data Recovery to find solutions.

People Also Ask

There should be four RAID 6 minimum drives on a system. The usable capacity is always 2 less than the number of available drives. That increases fault tolerance since the backup drives can always engage if the primary drive fails.

RAID 6 can withstand the failure of disk drives twice before requiring a backup. The fault can occur either simultaneously or consecutively. The key concept is to isolate and repair the damaged drives without losing access to the data.

If you want to run a system without an archive but still desire an extensive database, then RAID 5 is sufficient. However, if you need proper preservation for a massive data set, you should choose RAID 6.

Regarding reading speed, RAID 6 performance is up to par with the rest of the independent disk arrays. However, in the case of data writing, it offers only one-sixth of the actual speed when operated with a single drive.

Conclusion

In a world where rampant malware and cyberattacks, safeguards are more valuable than ever. If you need to preserve a database that remains accessible even after disk failures, knowing what RAID 6 is can make your life much easier.