What does RAID stand for?
Redundant Array of Independent Disks (or Inexpensive Disks)
What is the primary purpose of RAID?
To provide redundancy, improve performance, or both by combining multiple physical drives
Is RAID a backup solution?
No, RAID provides redundancy but does not replace the need for backups
What is RAID 0?
Striping; data is split across multiple drives for improved performance, but no redundancy
What is the minimum number of drives required for RAID 0?
2
What happens if a drive fails in RAID 0?
All data is lost because there is no redundancy
What is RAID 1?
Mirroring; data is duplicated across multiple drives for redundancy
What is the minimum number of drives required for RAID 1?
2
What happens if a drive fails in RAID 1?
The system continues to operate using the remaining drive(s) with duplicated data
What is the storage capacity of RAID 1 with two drives?
Equal to the capacity of one drive (since data is mirrored)
What is RAID 5?
Striping with parity; data is striped across multiple drives with parity information for redundancy
What is the minimum number of drives required for RAID 5?
3
How is parity distributed in RAID 5?
Parity is distributed across all drives in the array
What happens if a drive fails in RAID 5?
The system can recreate the lost data using parity and continue to operate in a degraded state
What is RAID 6?
Striping with double parity; data is striped across multiple drives with two sets of parity information
What is the minimum number of drives required for RAID 6?
4
What happens if two drives fail in RAID 6?
The system can recreate the lost data using the double parity and continue to operate in a degraded state
What is RAID 10 (or RAID 1+0)?
A stripe of mirrors; combines RAID 1 (mirroring) and RAID 0 (striping) for both redundancy and performance
What is the minimum number of drives required for RAID 10?
4
How does RAID 10 provide redundancy?
Data is mirrored (RAID 1) and then striped (RAID 0) across multiple sets of mirrored drives
What happens if a drive fails in RAID 10?
The system continues to operate using the mirrored copy of the failed drive
What is the storage capacity of RAID 10 with four drives?
Equal to half the total capacity (since data is mirrored)
What is the performance impact of RAID 5 during drive failure?
Increased CPU overhead due to parity calculations for data recovery
What is the advantage of RAID 6 over RAID 5?
RAID 6 can survive the failure of two drives, while RAID 5 can only survive one