How is data recovered from a failed Synology NAS?
Synology data recovery starts with write-blocked imaging of every member drive. The DSM stack is standard Linux software RAID: mdadm aggregates drives, LVM presents unified volumes, and Btrfs or ext4 stores your files. SHR is not proprietary hardware RAID. For NVMe cache failures on models like the DS920+, we attempt to stabilize the failed cache SSD and merge any recoverable dirty blocks back into the storage pool before filesystem extraction.
Synology NAS Data Recovery Service
Your Synology says Volume Crashed or Storage Pool Degraded. Your shared folders are gone. Power the unit down before making any changes in DSM. We recover Synology arrays through NAS data recovery methods built on member-by-member imaging and offline reconstruction. Every drive is cloned through a write-blocker before any analysis begins. All work happens in our Austin lab. Free evaluation, no data = no charge.

What Do Synology Error Codes Mean?
Synology error codes describe which layer of the array has failed. Volume Crashed means the RAID array or filesystem metadata is beyond DSM's auto-repair. Storage Pool Degraded, Drive Status Critical, and beep codes each indicate what failed and what remains intact. All share one first step: power the NAS down, label each drive by bay number, and avoid further writes.
- Volume Crashed
- The filesystem or RAID array is in a state DSM cannot repair. This often means multiple drives failed, or the Btrfs/EXT4 metadata is corrupt. Do not click Repair in Storage Manager. Our Synology volume crashed recovery guide covers the underlying architecture and safe diagnostic steps.
- Storage Pool Degraded
- One member drive has dropped out, but the pool is still running on reduced redundancy. If a second drive fails before a rebuild completes, the pool crashes. Power down and contact us rather than starting a rebuild on aging drives.
- Drive Status: Critical/Failed
- DSM has marked a specific drive as unusable. SMART data may show reallocated sectors, pending sectors, or read errors. This drive likely needs professional imaging with retry control before it is usable in a reconstruction.
- Beep codes (intermittent vs continuous)
- On models like the DS920+ or DS1621+, an intermittent repeating beep usually signals a degraded or crashed volume, while a long continuous beep signals a hardware fault such as a fan failure, thermal shutdown, or power supply problem. Do not swap drives in or out while the unit is beeping.
All of these errors share a common first step: power the NAS down, label each drive with its bay number, and avoid any further writes. The more you interact with a failing array, the more metadata gets overwritten.
What Do Synology-Specific Storage Terms Actually Mean?
DSM dresses standard Linux storage layers in Synology-branded names. Knowing what each term maps to in the underlying stack determines whether a recovery is a vanilla Linux reassembly or a forensic Btrfs traversal. Every term below has a concrete on-disk structure; none of them are proprietary black boxes.
- SHR (Synology Hybrid RAID)
- A DSM management overlay on top of standard Linux software RAID. The on-disk format is mdadm RAID 1 (two-drive SHR-1), RAID 5 (three-or-more-drive SHR-1), or RAID 6 (SHR-2) on equal-size slices, joined across capacity boundaries by LVM2 and topped with Btrfs or ext4. A healthy SHR array assembles on any vanilla Linux workstation with
mdadm --assemble --scan, thenvgchange -ay, then a read-only mount. SHR is not a proprietary algorithm. - DSM (DiskStation Manager)
- The Linux distribution Synology ships on every DiskStation and RackStation. Userspace is a mix of busybox and Synology-authored binaries; the kernel and storage stack are standard upstream Linux with Synology patches. DSM lives on partitions md0 (system) and md1 (swap) of every member drive, mirrored across the array.
- Volume Crashed
- A DSM display string, not a single failure mode. It surfaces any unrecoverable error raised by the mdadm layer (dropped member, stale superblock), the LVM layer (missing volume group, broken physical-volume mapping), or the Btrfs/ext4 layer (parent transid verify failed, open_ctree failure, journal damage). Two Synologies showing Volume Crashed can have entirely different root causes.
- Storage Pool
- The LVM Volume Group that ties one or more mdadm arrays into a single addressable pool. On a fixed-capacity SHR-1 array the Storage Pool maps to a single md device. On a mixed-capacity SHR the Storage Pool aggregates multiple md devices that span different drive-size bands.
- Btrfs Subvolume
- An independently snapshottable B-tree root inside a Btrfs filesystem. On DSM, each shared folder is implemented as a Btrfs subvolume, which is why per-folder snapshots and per-folder quotas work. If the main filesystem tree is damaged but a subvolume root is intact, the subvolume can sometimes be extracted in isolation with
btrfs restoreagainst a discovered root generation. - Hyper Backup
- The DSM backup application that produces .hbk container files for versioned, deduplicated, optionally encrypted backups. A corrupt or truncated .hbk container cannot be restored through Hyper Backup itself; recovery requires parsing the underlying versioned-archive format from a forensic copy. Always verify .hbk backups by performing a test restore to a different machine before assuming they protect you.
When you describe a failure to us, naming the layer (SHR vs Storage Pool vs Volume vs shared folder/subvolume) tells the engineer which on-disk structure to inspect first and shortens the time between intake and an honest recovery probability estimate.
How Does Filesystem Type Affect Synology Recovery?
Filesystem type determines which extraction tools we use after the SHR/mdadm layer is reconstructed. Btrfs recovery exploits copy-on-write B-tree history to reach prior consistent states, while EXT4 recovery relies on journal replay and backup superblocks. Both sit on top of the SHR/mdadm layer, which must be reconstructed first. Synology uses Btrfs on newer models and EXT4 on older hardware.
Btrfs Recovery
- Copy-on-write architecture means original data blocks are preserved until new writes overwrite them. This works in our favor when the NAS was powered off quickly.
- On single-device Btrfs volumes, the DUP metadata profile stores two copies of metadata blocks, giving us a second chance if one copy is damaged.
- Snapshots and subvolumes create separate B-tree roots. If the main tree is damaged, snapshot trees may still be traversable.
EXT4 Recovery
- EXT4 uses a journal that records pending changes before committing them to disk. Journal replay can restore a consistent state from an interrupted write cycle.
- Inode table reconstruction recovers file/directory structure when superblocks are damaged. EXT4 stores backup superblocks at predictable block group boundaries.
- EXT4 is a mature, well-understood filesystem. Recovery tooling for it is the most developed of any Linux filesystem.
Both filesystems sit on top of the SHR/mdadm layer, which itself must be reconstructed first. We image every member, capture the mdadm superblocks and LVM metadata, rebuild the virtual array, and only then address the filesystem. XFS volumes (less common on Synology, but supported) follow a similar approach with XFS-specific log replay.
How Does Synology SHR Compare to Standard RAID-5 and RAID-6?
SHR is standard Linux mdadm plus LVM with a Synology management layer on top. With identical drives, SHR-1 behaves as a RAID 1 mirror on two drives and as RAID 5 on three or more drives. SHR-2 behaves as RAID 6. Mixed-capacity arrays stack multiple mdadm arrays joined by LVM, while standard RAID caps all members to the smallest drive and wastes excess capacity. SHR arrays reassemble on a vanilla Linux workstation.
| Attribute | SHR-1 | SHR-2 | RAID-5 | RAID-6 |
|---|---|---|---|---|
| Minimum drives | 2 | 4 | 3 | 4 |
| Fault tolerance | 1 drive | 2 drives | 1 drive | 2 drives |
| Mixed-capacity handling | Stacks mdadm arrays across capacity boundaries; joins with LVM. | Same stacking model as SHR-1 with dual parity per array. | Caps all members to the smallest drive; wastes excess capacity. | Caps all members to the smallest drive; wastes excess capacity. |
| Underlying layer | mdadm + LVM | mdadm + LVM | mdadm (single array) | mdadm (single array) |
| Rebuild risk on aging drives | High; a second URE on a surviving member crashes the volume. | Lower; tolerates one additional failure during rebuild. | High; same single-parity exposure as SHR-1. | Lower; dual parity survives one more failure during rebuild. |
For mixed-capacity SHR arrays, we reconstruct each underlying mdadm array from the cloned images, then reassemble the LVM volume group that ties them together. Plain RAID-5 or RAID-6 arrays skip the LVM step. The imaging, retry, and RAID data recovery parameter-detection workflow is identical.
Rebuilding a degraded SHR-1 or RAID-5 array on modern high-capacity drives carries a significant statistical risk of failure. Consumer-class drives are typically rated for one unrecoverable read error per 10^14 bits, which equals roughly 12.5 TB of data read. A rebuild that recalculates parity across a 48 TB array practically guarantees encountering a URE on a surviving member, halting the rebuild and crashing the volume. We image every member through a write-blocker before attempting any parity recalculation.
Why Do WD Red DM-SMR Drives Timeout During Synology Rebuilds?
DM-SMR drives like the WD Red WD20EFAX through WD60EFAX series cause a specific failure pattern in Synology arrays. During a RAID rebuild, sustained sequential writes overflow internal CMR cache zones, stalling the ATA command queue for 30 to 90 seconds. DSM and most RAID controllers timeout after 7 to 8 seconds, so the drive is dropped mid-rebuild and the volume crashes.
We clone timed-out SMR members using DeepSpar Disk Imager with modified read-retry algorithms that override the SATA command timeout. The imager reads sector-by-sector at its own pace rather than relying on the drive's internal shingle management. Once all members are imaged, we reconstruct the SHR array from cloned images using mdadm parameters extracted from each member. We use PC-3000 Express for the initial drive-level imaging and parameter extraction.
How Does DSM 7.2 Full-Volume Encryption Affect Recovery?
DSM 7.2 introduced full-volume encryption using LUKS in aes-xts-plain64 mode at the LVM logical-volume layer. The master cipher key is wrapped by the DSM Key Vault. If the Key Vault is gone and you do not have the exported recovery key, the encrypted volume is mathematically unrecoverable. We will tell you that on day one rather than bill you for theater.
- Pre-DSM 7.2: eCryptfs at the shared folder
- Older DSM releases encrypted at the shared-folder level using eCryptfs. Each folder was independently encrypted, filename lengths were capped at 143 characters, and the decryption key was unlocked at mount time using a per-folder passphrase or a key file. Recovery requires the original passphrase or key file; nothing else unwraps the per-file payload.
- DSM 7.2+: LUKS at the logical volume
- DSM 7.2 added full-volume encryption layered between LVM and the Btrfs/ext4 filesystem. The LUKS header sits at the start of the logical volume and stores the encrypted master key plus key-slot metadata. The cleartext master key is held by the DSM Key Vault and is wrapped with a vault-specific key. Daily mounting is transparent because the vault unwraps the master key automatically at boot.
- What kills an encrypted volume
- Hardware replacement without exporting the recovery key, factory reset, lost recovery key file, or motherboard failure on units that bind the vault to per-unit hardware identifiers. Without the wrapped master key, the LUKS header on the surviving members cannot be unsealed. The ciphertext on the platters is intact; the key needed to read it is not.
- What we can and cannot do
- With the LUKS recovery key in hand, we image every member, reassemble SHR/mdadm and LVM, decrypt the logical volume against the exported key, and extract Btrfs or ext4 normally. Without the key, there is no brute force, no manufacturer override, and no vendor backdoor. AES-XTS with a strong key is not a checksum; it is a cipher with a key space too large to enumerate.
- Practical mitigation before disaster
- Export the LUKS recovery key during initial volume encryption. Store it off the NAS: a password manager such as 1Password or Bitwarden, a printed copy in a safe, or a hardware token. A recovery key stored only on the same volume it decrypts is not a recovery key. A recovery key stored only on the same NAS is one PSU failure away from useless.
Encryption changes what a successful recovery means. Without the key, the only ethical answer is no. With the key, the recovery follows the same SHR + LVM + filesystem workflow as an unencrypted volume, with an LUKS decryption step inserted between LVM activation and the filesystem mount.
How Do SHR, RAID 5, and RAID 6 Behave Differently When Rebuilding on SMR Drives?
Single-parity arrays (SHR-1 and RAID 5) have no margin for a second member event during a rebuild. Dual-parity arrays (SHR-2 and RAID 6) survive one additional failure mid-rebuild and that single property is what saves data when SMR drives stall. SMR garbage collection frequently exceeds the 7 to 8 second controller timeout window, so the kernel ejects the stalled drive as failed regardless of whether the platter is actually damaged.
| Attribute | SHR-1 | SHR-2 / RAID 6 | RAID 5 |
|---|---|---|---|
| Stripe write pattern during rebuild | Sustained sequential parity writes across the new member. Worst case for SMR cache zones; CMR cache overflows within minutes on a multi-TB rebuild. | Two parity rotations recomputed in parallel. Higher sustained write load per surviving member, same SMR cache-overflow exposure. | Identical to SHR-1 on a fixed-capacity array (mdadm RAID 5 under the hood with no LVM stacking). |
| URE math at 12.5 TB read threshold | Consumer drives at 1 URE per 10^14 bits hit one expected URE every roughly 12.5 TB read. A 24 TB rebuild reads two thresholds across surviving members; encountering a URE crashes the volume. | Same per-drive URE rate, but dual parity tolerates one URE during the rebuild and continues. The rebuild logs the bad sector instead of halting. | Same exposure as SHR-1. A single URE on a surviving member halts the rebuild and the array drops to failed. |
| Survives single mid-rebuild member ejection? | No. One additional member ejected mid-rebuild crashes the volume. | Yes. Dual parity survives one ejection during rebuild. | No. Identical exposure to SHR-1. |
| Survives second SMR timeout cascade? | No. The kernel ejects the second stalled SMR drive within the controller timeout and the rebuild aborts. | Marginally. One additional SMR stall is tolerated; a third stall crashes the rebuild. | No. Same single-parity ceiling as SHR-1. |
| Recommended action before rebuild | Image every member through a write-blocker first. Reconstruct from cloned images with extended retry timeouts that bypass the controller deadline. | Same imaging-first protocol. Dual parity is a safety net, not a license to rebuild on aging SMR members. | Same imaging-first protocol. A degraded RAID 5 on SMR members has the worst rebuild-survival math of the three. |
The imaging-first protocol is identical across all three layouts: each member is cloned through a hardware write-blocker with DeepSpar Disk Imager or PC-3000 Express, and the parity recomputation happens against the cloned images rather than the original platters. Dual-parity layouts give the rebuild a second chance; they do not give an SMR-populated array a license to rebuild in place. The Synology rebuild button is the wrong button when any member is an SMR drive with marginal head reads.
What Are the Risks of Swapping Drives After a Synology Beep Code?
Swapping drives, reinitializing, or reinstalling DSM after a failure overwrites the exact metadata we need to reconstruct your array. Every write to a member drive reduces the chance of a full recovery. Inserting a new drive triggers a rebuild that can crash the volume further.
A factory reset erases the LVM volume group entirely.
- Inserting a new drive triggers a rebuild. DSM will attempt to rebuild the RAID array onto the new member. If the remaining drives have weak sectors or unreadable regions, the rebuild stalls or writes bad parity, corrupting the array further.
- Reinstalling DSM overwrites system partitions on every drive. Synology stores DSM system files and swap on the first two partitions (md0, md1) of each member. A standard reinstall rewrites these system partitions and their RAID superblocks. User data resides on Partition 3+ (md2+), which a Mode 2 reinstall does not directly touch. However, partition table changes or selecting "Erase all data" can make array reconstruction harder.
- Swapping drive order confuses the mdadm layer. SHR records which physical drive occupies which role in the array. Moving drives between bays without preserving the original order can cause DSM to misidentify members or trigger an unwanted reinitialization.
- Factory reset destroys LVM and filesystem metadata. A full reset through DSM's Control Panel erases the LVM volume group that ties multiple mdadm arrays together in SHR configurations. This metadata is small but irreplaceable.
- Moving drives to a new Synology chassis triggers a metadata rewrite. DSM will prompt you to "Migrate" or "Repair" the existing array. This rewrites the system partitions and attempts a forceful import. If the import fails, DSM offers a "fresh install" that permanently overwrites the data partitions.
The safe response to a Synology beep code: power off, label drives by bay position, and ship them to us. We will image each drive in its current state before any analysis begins.
Can Data Be Recovered After Reinstalling DSM?
Data recovery after a DSM reinstall is possible if you reinstalled without selecting 'Erase all data.' A standard Mode 2 reinstall rewrites system partitions md0 and md1 but does not directly touch user data and its mdadm superblocks on Partition 3+. If you erased and reinitialized, recovery becomes harder but may still be partially viable through filesystem carving.
We image each member through a hardware write-blocker before any analysis begins, then assemble the virtual array from cloned images using mdadm parameters extracted from each member. If Partition 3+ (md2+) is intact, the filesystem mounts normally after SHR/mdadm reconstruction. If the erase option was selected, we fall back to filesystem carving.
How Is Data Recovered from a Failed Synology NAS?
We image every member drive through a hardware write-blocker with PC-3000 or DeepSpar, reassemble the SHR/mdadm and LVM stack from the cloned images, then extract Btrfs or EXT4 offline. Your original drives are never modified. All RAID reconstruction and filesystem extraction happen on cloned images.
- Free evaluation: We document your Synology model (DS920+, DS1621+, RS1221+, etc.), the DSM error state, RAID/SHR configuration, filesystem type (Btrfs or EXT4), and any prior recovery attempts.
- Write-blocked imaging: Each member drive is connected through a hardware write-blocker and imaged with PC-3000 or DeepSpar. Drives with weak heads or bad sectors get conservative retry profiles and head maps to maximize data capture without accelerating degradation.
- Mechanical repair (if needed): Drives that click, beep, or refuse to spin require clean-bench head swaps with matched donor parts before imaging can proceed.
- RAID/SHR reconstruction: We read mdadm superblocks from the imaged copies, determine stripe size, parity rotation, and member order. For SHR with mixed-size drives, we also reconstruct the LVM layer. We assemble the virtual array from cloned images using mdadm parameters extracted from each member.
- Filesystem extraction: Once the virtual array is assembled, we mount and extract the Btrfs or EXT4 filesystem. For Btrfs, we traverse subvolume trees and recover snapshots where applicable. For EXT4, we perform journal replay and inode table reconstruction.
- Verification and delivery: Recovered data is copied to a target drive, verified against your priority file list, and shipped back. Working copies are securely purged on request.
The footage below shows the imaging hardware and 0.02 micron ULPA-filtered clean bench used on Synology member drives at our Austin lab. Every drive is cloned through a hardware write-blocker before any SHR or Btrfs work touches the data, so the originals are never modified during reconstruction.
How Much Does Synology NAS Recovery Cost?
Synology recovery uses two line items: a per-member price based on each drive's physical and firmware condition, plus an array reconstruction fee for SHR/mdadm and LVM work. Each member drive is priced against the same five-tier schedule used for individual hard drive data recovery. If we recover nothing, you owe nothing under our no-fix-no-fee guarantee.
Per-Member Drive Pricing
Each member drive is priced against the same five-tier schedule used for individual hard drive data recovery. A four-bay unit with one head-swap member and three logical-only members generates one tier-4 line plus three tier-2 lines, not a single opaque bundle.
- Low complexity
Simple Copy
Your drive works, you just need the data moved off it
Functional drive; data transfer to new media
Rush available: +$100
$100
3-5 business days
- Low complexity
File System Recovery
Your drive isn't recognized by your computer, but it's not making unusual sounds
File system corruption. Accessible with professional recovery software but not by the OS
Starting price; final depends on complexity
From $250
2-4 weeks
- Medium complexity
Firmware Repair
Your drive is completely inaccessible. It may be detected but shows the wrong size or won't respond
Firmware corruption: ROM, modules, or translator tables corrupted; requires PC-3000 terminal access
CMR drive: $600. SMR drive: $900.
$600–$900
3-6 weeks
- High complexity
Most Common
Head Swap
Your drive is clicking, beeping, or won't spin. The internal read/write heads have failed
Head stack assembly failure. Transplanting heads from a matching donor drive on a clean bench
50% deposit required. CMR: $1,200-$1,500 + donor. SMR: $1,500 + donor.
50% deposit required
$1,200–$1,500
4-8 weeks
- High complexity
Surface / Platter Damage
Your drive was dropped, has visible damage, or a head crash scraped the platters
Platter scoring or contamination. Requires platter cleaning and head swap
50% deposit required. Donor parts are consumed in the repair. Most difficult recovery type.
50% deposit required
$2,000
4-8 weeks
Hardware Repair vs. Software Locks
Our "no data, no fee" policy applies to hardware recovery. We do not bill for unsuccessful physical repairs. If we replace a hard drive read/write head assembly or repair a liquid-damaged logic board to a bootable state, the hardware repair is complete and standard rates apply. If data remains inaccessible due to user-configured software locks, a forgotten passcode, or a remote wipe command, the physical repair is still billable. We cannot bypass user encryption or activation locks.
No data, no fee. Free evaluation and firm quote before any paid work. Full guarantee details. Head swap and surface damage require a 50% deposit because donor parts are consumed in the attempt.
- Rush fee
- +$100 rush fee to move to the front of the queue
- Donor drives
- Donor drives are matching drives used for parts. Typical donor cost: $50–$150 for common drives, $200–$400 for rare or high-capacity models. We source the cheapest compatible donor available.
- Target drive
- The destination drive we copy recovered data onto. You can supply your own or we provide one at cost plus a small markup. For larger capacities (8TB, 10TB, 16TB and above), target drives cost $400+ extra. All prices are plus applicable tax.
Helium-sealed drives (8TB and larger NAS or server drives such as Toshiba MG08, Seagate Exos, and WD Ultrastar) are quoted on a separate tier. See helium drive pricing.
Array Reconstruction Fee
The array reconstruction fee is $400-$800. It covers SHR/mdadm parameter detection, LVM reconstruction, virtual assembly from cloned images, and Btrfs or EXT4 filesystem extraction. The final figure within that range depends on member count, RAID level, mixed-capacity SHR complexity, and whether snapshot traversal or NVMe cache merge is required. Confirmed at the free evaluation alongside per-member line items.
On a typical four-bay DS920+ with one mechanically failed drive and three healthy members, the invoice itemizes one head-swap line, three firmware or file-system lines, and the array reconstruction fee of $400-$800. Every drive is priced as its own line so you can see exactly what each member required.
No Data = No Charge. If we cannot recover usable data from your Synology, you owe nothing under our no-fix-no-fee guarantee. Optional return shipping is the only potential cost on an unsuccessful case.
How Do Btrfs, EXT4, and SHR Layers Work in Synology Recovery?
Synology stacks three independent layers under your shared folders: the mdadm/SHR storage layer, the LVM logical volume layer, and the Btrfs or EXT4 filesystem on top. Each layer can fail on its own, and knowing which layer is intact and which is corrupt drives the recovery plan.
| Attribute | Btrfs | EXT4 | SHR |
|---|---|---|---|
| Layer | Filesystem | Filesystem | RAID + LVM |
| Role on a Synology | Default filesystem on DS+ and newer models; supports snapshots and subvolumes. | Default filesystem on older models and Value series; mature, journaled. | Combines drives into a redundant pool; presents one logical volume to the filesystem above. |
| On-disk structure | Copy-on-write B-trees, DUP metadata on single-device profiles, subvolume roots. | Journal, inode tables, block groups, backup superblocks at known offsets. | mdadm superblocks per member, optional LVM physical volume metadata for mixed-capacity arrays. |
| Typical failure mode | Corrupt B-tree root, parent transid verify failures, missing chunk tree, snapshot tree damage. | Journal replay failure, superblock damage, inode table corruption, lost+found orphans. | Dropped member, stale superblock, wrong member order, missing LVM volume group on mixed-capacity SHR. |
| Recovery tooling | btrfs-progs (read-only), subvolume tree walk, snapshot extraction, custom B-tree parsers. | e2fsck against an image, debugfs, extundelete, backup superblock fallback, inode-table scan. | mdadm parameter detection from imaged members, virtual assembly from cloned images, LVM metadata reconstruction. |
| Where it lives in the stack | On top of LVM, which sits on top of SHR/mdadm. | On top of LVM, which sits on top of SHR/mdadm. | Directly on the raw drives; below LVM and the filesystem. |
A Volume Crashed error can originate in any of these three layers. If SHR/mdadm fails, the filesystem above never gets a chance to mount. If Btrfs or EXT4 metadata is corrupt but SHR is fine, the virtual array assembles cleanly and recovery moves directly to filesystem extraction. Mid-rebuild failures, like those covered in our NAS RAID rebuild data loss guide, typically corrupt the SHR layer first and leave the filesystem intact on the surviving imaged members.
How Does Confidentiality and Chain-of-Custody Work for Business Synology Data Recovery?
Business Synology workloads carry the same confidentiality expectations as any other storage system. We sign NDAs, log chain-of-custody from intake through return shipping, and route every technical question to the engineer performing the recovery. Drives stay in our Austin lab for the entire engagement.
NDA and Chain-of-Custody
We routinely sign mutual NDAs before any imaging work begins. Intake is logged with drive serials, bay positions, and SMART snapshots.
Drives stay in our Austin lab for the entire engagement; images and working copies are kept offline and purged on request at case close. We do not process regulated healthcare workloads.
For standard commercial confidentiality, legal holds, engineering source, and financial records, the NDA plus written chain-of-custody covers the usual business requirements.
Direct Engineer Communication
You talk to the engineer doing the recovery, not a sales representative or account manager. When a question comes up about member ordering, snapshot priority, or whether to abort a rebuild in progress, you reach the person running PC-3000 and DeepSpar on your drives.
The same person who images your members also reconstructs the SHR array and extracts the filesystem. There is no hand-off between an intake team and a lab team because there is only one team.
This matters most when a case is time-sensitive: a SHR-2 with two failed members, a RackStation powering production infrastructure, or a DSM rebuild that stalled overnight. Decisions about retry profiles, head swaps, or pausing reconstruction to re-evaluate should come from the engineer with the drives on the bench, not a dispatcher reading from a script. The same logic applies to every RAID data recovery case we run.
What Do RTO and RPO Look Like in a Real Synology Recovery?
Recovery Time Objective and Recovery Point Objective are continuity-plan terms. When a production Synology has already failed, those objectives become questions: how long until data is back in hand, and how much in-flight work survived the crash. Honest answers require knowing the failure mode, the member condition, and whether snapshots or NVMe cache writes are involved.
- Recovery Time Objective: time from intake to recovered data in hand
- A two-bay unit with logically failed but mechanically healthy drives is typically recovered in 2 to 4 business days from intake. Four-bay SHR-1 or SHR-2 arrays run 4 to 8 business days because each additional member adds imaging time and changes the parameter-detection workload. Cases that need clean-bench head swaps, donor PCB sourcing, or platter work add 4 to 8 weeks while we source matched donor hardware. A rush fee of $100 moves a case to the front of the imaging queue, but it does not change the physical time required for head swaps or donor matching.
- Recovery Point Objective: how much in-flight data is recoverable
- On a Synology with Btrfs snapshots enabled, the latest healthy snapshot defines a guaranteed recovery point even when the live filesystem is corrupt. On a Synology with NVMe SSD write cache, dirty cache blocks that never committed to spinning media are recoverable only if the cache SSD can be stabilized through controller microcode upload. Without snapshots and without surviving cache extraction, the recovery point is the last consistent state captured in the on-disk filesystem at the moment of power-off.
- Status updates and engineer contact during an active case
- The engineer running PC-3000 and DeepSpar on your drives is the same person who answers status questions. There is no ticket queue between you and the bench. When an imaging session finishes or a parameter-detection result changes the plan, you hear about it from the engineer, not a dispatcher.
- NDA and chain-of-custody timing
- A mutual NDA can be signed before drives ship; it does not delay intake. Chain-of- custody logging begins at the moment drives arrive in the Austin lab, with serial numbers, bay positions, and SMART snapshots recorded before any imaging starts.
We will not commit to a calendar date during the free evaluation. We will commit to an ordered estimate once imaging results are in hand, because that is the first point where member condition is known with certainty rather than inferred from SMART output.
How Do M.2 NVMe Cache Failures Cause Synology Storage Pool Corruption?
Newer Synology models support M.2 NVMe SSDs for read/write caching. If a cache SSD's controller suffers firmware corruption, the Synology can crash the associated Btrfs storage pool because dirty write-cache blocks never committed to the mechanical drives. The pool shows Volume Crashed even though the HDDs themselves are healthy.
We stabilize the failed NVMe SSD using PC-3000 SSD to upload loader microcode into the controller's RAM, then extract the uncommitted dirty blocks. Those blocks are merged back into the main volume during offline reconstruction. This recovers data that never reached the spinning drives and would otherwise be lost if the cache SSD were replaced.
What Are the Most Common Synology Recovery Questions?
What does 'Volume Crashed' mean on my Synology?
Can I recover data after reinstalling DSM?
What RAID type does Synology SHR use?
Is Btrfs harder to recover than EXT4 on a Synology?
How long does Synology NAS recovery take?
Why does my Synology show 'Storage Pool Degraded' but data is still inaccessible?
Can you sign an NDA for confidential or regulated business data?
Running a RackStation or FlashStation?
For enterprise Synology models (RS1221+, RS2423+, FS2500, FS3410) with SHR-2 arrays, NVMe SSD cache failures, or expansion shelf disconnects, see our dedicated enterprise recovery guide covering redundant PSU failover, expansion shelf failures, all-flash NAS recovery, and high-capacity helium drive imaging.
Synology Enterprise NAS Recovery Guide →Synology Power LED Blinking Blue?
If your Synology's power LED has been blinking blue for 20+ minutes and DSM never loads, this is the "Blue Light of Death" (BLOD). Your drives are intact. See our dedicated guide for Intel C2000 erratum diagnosis, mdadm partition layout, and the risks of moving drives to a new chassis.
Synology Blinking Blue Light Recovery Guide →Data Recovery Standards & Verification
Our Austin lab operates on a transparency-first model. We use industry-standard recovery tools, including PC-3000 and DeepSpar, combined with strict environmental controls to make sure your hard drive is handled safely and properly. This approach allows us to serve clients nationwide with consistent technical standards.
Open-drive work is performed in a ULPA-filtered laminar-flow bench, validated to 0.02 µm particle count, verified using TSI P-Trak instrumentation.
Transparent History
Serving clients nationwide via mail-in service since 2008. Our lead engineer holds PC-3000 and HEX Akademia certifications for hard drive firmware repair and mechanical recovery.
Media Coverage
Our repair work has been covered by The Wall Street Journal and Business Insider, with CBC News reporting on our pricing transparency. Louis Rossmann has testified in Right to Repair hearings in multiple states and founded the Repair Preservation Group.
Aligned Incentives
Our "No Data, No Charge" policy means we assume the risk of the recovery attempt, not the client.
Technical Oversight
Louis Rossmann
Louis Rossmann's well trained staff review our lab protocols to ensure technical accuracy and honest service. Since 2008, his focus has been on clear technical communication and accurate diagnostics rather than sales-driven explanations.
We believe in proving standards rather than just stating them. We use TSI P-Trak instrumentation to verify that clean-air benchmarks are met before any drive is opened.
See our clean bench validation data and particle test videoRelated services
Related Recovery Services
Recovery for all NAS brands including QNAP, Buffalo, Western Digital, and Asustor.
Hardware and software RAID array reconstruction for RAID 0, 1, 5, 6, and 10.
Individual HDD recovery From $100. Head swaps, firmware rebuilds, and platter imaging.
Dell PowerEdge, HP ProLiant, and Supermicro server recovery with PERC and SmartArray support.
Synology showing Volume Crashed?
Free evaluation. No data = no charge. Ship your drives from anywhere in the U.S.