X
X

(RAID (Redundant Array of Independent Disks

HomepageArticlesWindows Servers(RAID (Redundant Array of Independe...

RAID
Redundant Array of Independent Disks

What is RAID?

  • RAID (redundant array of independent disks) is a way of storing the same data in different places on multiple hard disks or solid-state drives (SSDs) to protect data in the case of a drive failure.
  • There are different RAID levels, however, and not all aim to provide redundancy.

How RAID works?

  • RAID works by placing data on multiple disks and allowing input/output (I/O) operations to overlap in a balanced way, improving performance.
  • Because using multiple disks increases the mean time between failures, storing data redundantly also increases fault tolerance

RAID controller

  • A RAID controller is a device used to manage hard disk drives in a storage array.
  • It can be used as a level of abstraction between the OS and the physical disks, presenting groups of disks as logical units.
  • Using a RAID controller can improve performance and help protect data in case of a crash.

 

 

RAID levels

RAID devices use different versions, called levels.

The original paper that coined the term and developed the RAID setup concept defined six levels of RAID -- 0 through 5.

This numbered system enabled those in IT to differentiate RAID versions.

The number of levels has since expanded and has been broken into three categories: standard, nested and nonstandard RAID levels.

 

RAID 0

RAID 0 . This configuration has striping but no redundancy of data. It offers the best performance, but it does not provide fault tolerance.

 

 

RAID 1

Also known as disk mirroring, this configuration consists of at least two drives that duplicate the storage of data. There is no striping. Read performance is improved since either disk can be read at the same time. Write performance is the same as for single-disk storage.

RAID 5

  • RAID 5 is an ideal combination of good performance, good fault tolerance and high capacity and storage efficiency.

 “Distributed Parity” is the key word here.

RAID 6

This technique is similar to RAID 5, but it includes a second parity scheme distributed across the drives in the array. The use of additional parity enables the array to continue functioning, even if two disks fail simultaneously. However, this extra protection comes at a cost. RAID 6 arrays often have slower write performance than RAID 5 arrays.

 

 

RAID 10

  1. Combines RAID 1 and RAID 0.
  2. Which means having the pleasure of both - good performance and good failover handling.
  3. Also called ‘Nested RAID’.

      

 

Benefits of RAID

Improved cost-effectiveness because lower-priced disks are used in large numbers.

Using multiple hard drives enables RAID to improve the performance of a single hard drive.

Increased computer speed and reliability after a crash, depending on the configuration.

Reads and writes can be performed faster than with a single drive with RAID 0. This is because a file system is split up and distributed across drives that work together on the same file.

There is increased availability and resiliency with RAID 5. With mirroring, two drives can contain the same data, ensuring one will continue to work if the other fails.

 

 

 

 

 

 


Top