A three-drive RAID 5 array on a small server has lost one member drive. The operating system is still running and the array reports a degraded but online state. A matching replacement drive is on hand. What is the BEST action to restore full redundancy?
- AReplace the failed member and let the controller rebuild the missing data from the distributed parity while the array stays online. Correct
- BRecreate the array from scratch, because RAID 5 cannot recover from the loss of any single member drive without a full reinitialisation.
- CDo nothing, since RAID 5 mirrors every block and the surviving drives already hold a complete duplicate copy of the data.
- DConvert the degraded array to RAID 0 to restore full performance until a proper replacement drive can be sourced later.
Why A is correct: RAID 5 tolerates one drive loss; inserting a replacement lets the controller reconstruct the lost blocks from parity spread across the surviving members, restoring redundancy without downtime.
Why B is wrong: Recreating the array is a real procedure, but RAID 5 is specifically designed to survive one failure via parity, so wiping and rebuilding would needlessly destroy recoverable data.
Why C is wrong: This confuses RAID 5 with RAID 1; RAID 5 uses distributed parity, not mirroring, and a degraded array has no redundancy left, so ignoring it risks total loss on a second fault.
Why D is wrong: RAID 0 does boost performance, but converting to it abandons all redundancy and typically requires rebuilding the set, leaving the data even more exposed than it already is.