A RAID 5 array is degraded due to a failed disk. What is the best practice for recovery?
Trap 1: Replace the failed disk and restore from backup
Restoring from backup is time-consuming and should only be done if the rebuild fails; not the best practice.
Trap 2: Replace the failed disk and perform a manual rebuild from backup
Manual rebuild from backup is slower and riskier than automatic rebuild, and should only be done if automatic fails.
Trap 3: Delete the logical drive and recreate the array
This would cause data loss and is not necessary when a simple disk replacement can restore the array.
- A
Replace the failed disk and restore from backup
Why wrong: Restoring from backup is time-consuming and should only be done if the rebuild fails; not the best practice.
- B
Replace the failed disk and allow the array to rebuild automatically
RAID 5 can rebuild using parity; replacing the disk triggers automatic rebuild, preserving data and uptime.
- C
Replace the failed disk and perform a manual rebuild from backup
Why wrong: Manual rebuild from backup is slower and riskier than automatic rebuild, and should only be done if automatic fails.
- D
Delete the logical drive and recreate the array
Why wrong: This would cause data loss and is not necessary when a simple disk replacement can restore the array.