Lesson 11 Chapter 4 - RAID Flashcards
In summary, what is an array? (RAID)
An array is several drives working as a unit (to protect data or increase speed)
What are RAID levels?
The different RAID setups (specific purposes)
What does RAID 0 – Disk Striping do?
It spreads out the data to be written across 2 or more drives
(For example, with 2 drives only half is written/read on each drive)
What does RAID 1 – Disk Mirroring/Duplexing do?
The data is duplicated – the same data is written to both drives simultaneously (mirrored)
What is RAID 5?
Disk Striping with Distributed Parity
What does level 5 RAID – Disk Striping with Distributed Parity do? (3 steps)
spreads out, the parity bit, distributed parity
It:
- spreads out the data and splits the bits and parity bit to different drives (3 drives, 3 separate bits)
- the parity bit (0 for even, 1 for odd) depends on the sum of the value of the bits that are spread out (1 1 or 0 0 is even, 1 0 or 0 1 is odd)
- distributed parity comes in and alternates the order/drives it writes the bits and parity bit to
What is the parity bit that is written for RAID 5 if the sum of the bit value is even or odd? (2)
0 = even
1 = odd
How does RAID 5 – Disk Striping with Distributed Parity, protect against hardware failure?
The RAID controller can deduce what the value on the failed+replaced disk was from reading what bit and parity bit is stored on the other working drives
(It has enough of the equation that it can rewrite to the new disk to rebuild its content)
What are the 4 common RAID level numbers and their name/function?
DS, DM/D, DSwDP, NSP
- RAID 0 – Disk Striping [spread, speed and size]
- RAID 1 – Disk Mirroring/Duplexing [mirror protect]
- RAID 5 – Disk Striping with Distributed Parity [spread protect]
- RAID 10 – Nested, Striped Pairs [spread, 2 mirror speed protect]
Of all the RAID levels which one has an advantage over RAID 5 or 6? What is the advantage? (2)
RAID 10 has an advantage over 5 and 6, its performance is increased because the controller doesn’t have to calculate the parity bits
How many hard drives does each of the 4 common RAID levels require at a minimum?
- RAID 0 – requires 2
- RAID 1 – requires 2
- RAID 5 – requires 3
- RAID 10 – requires 4
How many failures can each level RAID withstand and remain functional? (4)
can withstand:
1. RAID 0 - 0 failures
2. RAID 1 - 1 failure
3. RAID 5 - 1 failure
4. RAID 10 - Up to 2 failures
With a RAID 5 array, the amount of storage you get is always ___ ___ drive than the total drives you have
one less
Example: 3 5TB drives, your total storage is actually 10TB
What are 2 ways a hardware RAID can be accessed by its RAID controller? [Controller installed]
- RAID controller is built into the motherboard and managed via firmware interface
- Can be a separate add-on expansion card
How is software RAID configured?
a utility in the OS
(Disk Management)