RAID

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

What does RAID stand for and what was its original purpose?

Redundant Arrays of Inexpensive Disks - originally showed inexpensive drives could achieve reliability of expensive drives through clever configurations.

2
New cards

What three main techniques are used in RAID systems?

Mirroring (data duplication), striping (data distribution), and error correction (parity/redundancy).

3
New cards

What is RAID 0 and what are its characteristics?

Striped disk array without parity:

  • Improves performance via parallel reads/writes

  • Decreases reliability (failure of any drive loses all data)

  • No fault tolerance

4
New cards

How does RAID 1 (mirroring) work and what are its tradeoffs?

Duplicate sets of drives where all writes go to both:

  • Doubles read performance

  • No write performance improvement

  • Most expensive RAID configuration

  • Highest reliability among basic RAID levels

5
New cards

Why are RAID 2 and RAID 3 no longer used?

They proved prohibitively expensive, inferior to other techniques, and required synchronized drive spinning.

6
New cards

What is the key limitation of RAID 4?

The dedicated parity drive becomes an I/O bottleneck since every write requires parity recalculation.

7
New cards

How does RAID 5 improve upon RAID 4?

By distributing parity blocks across all drives in round-robin fashion, eliminating the parity drive bottleneck.

8
New cards

What additional protection does RAID 6 provide?

Double parity allowing survival of two simultaneous drive failures (vs. RAID 5's single failure tolerance).

9
New cards

What's the difference between RAID 0+1 and RAID 1+0 (10)?

RAID 0+1: Mirror of stripes (two striped sets mirrored)
RAID 1+0: Stripe of mirrors (multiple mirrored pairs striped)
RAID 10 has better performance during failures.

10
New cards

What happens when a drive fails in RAID 1 vs RAID 5?

RAID 1: Continues with reduced read performance
RAID 5: Severe write performance degradation until rebuilt

11
New cards

What is "hot swapping" and why is it important for RAID?

Ability to replace failed drives without powering down the system, crucial for maintaining continuous operation.

12
New cards

What are "warm standby" drives in RAID systems?

Spare drives already connected but not active, ready to power on and rebuild when a failure occurs.

13
New cards

Why might RAID 10 be preferred over RAID 5 despite higher cost?

Better performance during failures and faster rebuild times (only need to rebuild failed mirror pair).

14
New cards

What special hardware considerations do RAID systems require?

Independent I/O channels/controllers for each drive to ensure true failure independence.

15
New cards

How does RAID improve upon single drive MTBF?

Through redundancy that allows continued operation and data recovery even when individual drives fail.