RAID 5 failure and rebuild mistakes
RAID 5 survives one failed drive, and the degraded array is the safe state. Why rebuilds are the dangerous step, the four documented mistakes, and what to do instead.

Do not rebuild, re-initialise, change the RAID mode, or press repair until you know which drives failed and what state the pool is in. A rebuild writes to every surviving disk. Done in the wrong state or the wrong order, it overwrites data that a professional could otherwise have read.[1]
RAID 5 survives exactly one failed drive. In that degraded state the data is still there and readable, and the urgent job is to back it up, not to rebuild. A rebuild is a bet: it reads every sector of every surviving disk for hours, and on modern large drives an unlucky unreadable sector, or a second drive that was quietly failing, ends the pool. The documented ways people lose RAID 5 data are not the first failure; they are the rebuild with two drives gone, the array recreated in the wrong order, and the RAID mode changed on a whim.[1][2][3]
This guide covers RAID 5 and Synology's SHR-1 on consumer and small-business NAS, and the same ideas on small servers. RAID 0 and JBOD have no redundancy at all; RAID 1, RAID 6 and RAID 10 tolerate faults differently and need different advice; ZFS and btrfs pools follow their own rules. Nothing here is a rebuild tutorial, and that is deliberate.
Not sure which situation you are in? Guided help walks you through it.
Degraded, rebuilding, crashed: three different emergencies
| State | What it means | What the vendor says to do |
|---|---|---|
| Degraded | One drive defective; the pool is readable and no data has been lost | Confirm which drive is defective, replace it with a healthy one, then repair |
| Rebuilding | Parity is being recalculated onto the replacement; every surviving disk is being read and written for hours | Do not use the device during the rebuild |
| Crashed | More faults than RAID 5 tolerates | You can no longer repair it yourself; vendors point at professional recovery |
The vendor documentation is unusually clear here. Synology describes Degraded as the state where one drive is defective but no data has been lost, and rebuilding performance as severely impacted because the surviving drives are carrying the array. Western Digital's manual adds the rule people break: do not attempt to use the device during the rebuild. And the crashed state has a documented ceiling: once a pool is Crashed, Synology says you can no longer repair it yourself, and its tutorial points owners at local data recovery companies.[1][4][2][5]
Why the rebuild itself is a gamble
A rebuild is not a gentle copy. It reads every sector of every surviving disk to recompute what the dead drive held, which is why Synology deliberately lowers the default repair speed to keep the array usable while it runs. The risk comes from drive physics: NAS drive specifications quote an unrecoverable error rate around one error per 10^14 bits read, and 10^14 bits is about 12.5 terabytes, so a rebuild that reads tens of terabytes is rolling those dice across every surviving surface. IBM's analysis of large-drive RAID 5 put numbers on it: roughly a 3.66 percent chance of an unrecoverable read error across one 42 terabyte rebuild, making a read error during the rebuild nearly eight times more likely than a second drive failing, and its recommendation was RAID 6 instead.[6][7][8]
The four rebuild mistakes
Rebuilding with two drives gone
RAID 5 tolerates one fault, full stop; QNAP's own guide lists the maximum removed drives for RAID 5 as one. Replacing a second failed drive and forcing a rebuild asks the array to reconstruct from a drive that holds unreadable data, which spreads garbage across every member while overwriting the one thing a professional would want preserved. Synology documents the threshold: once removed drives reach the maximum fault tolerance, the volume crashes.[9][3]
Recreating the array instead of reassembling it
After a controller swap or a reshuffle of bays, the array should be reassembled or imported, never created anew. The mdadm manual is candid that its Build mode cannot distinguish creation from assembly and cannot check that the right components were requested, and that adding a spare to a degraded array starts rebuilding onto it immediately; a recreated array with two disks swapped stripes the wrong way and the resync overwrites the old layout in place. Hardware controllers encode the same lesson: Broadcom's documentation describes importing a foreign configuration as the way to activate a virtual drive moved from another system. And the consumer version, changing the RAID mode in a NAS interface, carries Western Digital's own warning that it will delete all of your data.[10][11][1]
Repairing or writing to a half-healthy array
Repair is a full-array write path, which is exactly the wrong medicine while a second drive is marginal. The legitimate maintenance is different: Synology recommends data scrubbing periodically on healthy pools to catch inconsistency before a failure, not repair tools on a degraded one. Continuing to write to a degraded array has its own cost: any data written while the array is missing its parity partner cannot be reconstructed after a second failure.[12]
Pulling the wrong drive
Synology's repair procedure begins with confirming on the drive status page which drive is defective before anything is pulled, and QNAP ships a recovery feature for accidentally removed drives precisely because this happens. Pulling a healthy member leaves the defective one in place plus a vacancy, which is how one real failure becomes a crashed pool by human error.[9][4]
What to actually do, in order
If the array is degraded
- Stop writing to it. The degraded array is the last readable copy of your data.
- Back up anything important from the pool to somewhere entirely outside it, now, while it still reads.
- Photograph or note which bay holds which drive before touching anything.
- Confirm on the vendor's drive status page which drive is actually defective, then remove only that one.
- Fit the replacement, then let the vendor's own repair or rebuild run once, and leave the NAS alone while it does.
- If a second drive shows abnormal, if the pool is Crashed, or if the data is irreplaceable: stop, and take the professional route the vendors themselves name.
RAID 5 vs RAID 6, and the backup question
The honest summary of RAID 5 versus RAID 6 is the rebuild window. RAID 5's second parity in RAID 6 exists precisely to survive the hours when a big array is being rebuilt from one failure, which is the window where IBM's numbers say the unreadable-sector bet is worst. Microsoft's Storage Spaces documentation draws the same boundary for software pools: parity spaces protect against a single disk failure and need at least three disks, while simple spaces protect against nothing at all. None of it is a backup: RAID tolerates drive faults, not deletion, ransomware or a unit that dies. The backup guide covers the version of this story that starts before the failure.[13]
Backups after data loss: setting up the copy RAID cannot give you.
Choosing a data recovery service: quotes, privacy and honest guarantees.
Sources
Facts on this page are cited to the publishers’ own documentation.
- [1] Western Digital — My Cloud EX2 Ultra user manual. captured 2026-09-12.
- [2] Synology — Choose a RAID type (Synology DSM help). captured 2026-09-12.
- [3] QNAP — QNAP TS-364 user guide. captured 2026-09-12.
- [4] Synology — Repair a storage pool (Synology DSM help). captured 2026-09-12.
- [5] Synology — What can I do if one of my volumes crashed?. captured 2026-09-12.
- [6] Toshiba — N300 NAS hard drive specification. captured 2026-09-12.
- [7] Synology — Why does it take a long time to repair a storage pool?. captured 2026-09-12.
- [8] IBM — Re-evaluating RAID-5 and RAID-6 for slower larger drives. captured 2026-09-12.
- [9] Synology — What causes a volume to crash?. captured 2026-09-12.
- [10] Broadcom — View and import a foreign configuration (MegaRAID documentation). captured 2026-09-12.
- [11] mdadm project — mdadm(8) manual page (upstream source). captured 2026-09-12.
- [12] Synology — Data scrubbing (Synology DSM help). captured 2026-09-12.
- [13] Microsoft — Deploy Storage Spaces on a stand-alone server. captured 2026-09-12.