Synology SHR vs RAID 1
On a Synology with two equal-size drives, SHR (SHR-1) and RAID 1 are the same thing: identical usable capacity, identical one-drive fault tolerance, identical speed. So pick SHR. It matches RAID 1 today and keeps the door open to add a bigger or mismatched drive later without wasting capacity, which is the whole reason to buy a Synology. Choose plain RAID 1 only if you want each disk to be a standard mirror you can pull and read on any Linux box, or your model does not offer SHR. One catch decides it up front: DSM will not convert between RAID 1 and SHR without wiping the volume, so choose before you build.
Updated 2026-07-02 · by Jonathan Caruso
Side by side
| Synology SHR | RAID 1 | |
|---|---|---|
| What it is | Synology's automated RAID layer over mdadm + LVM | A standard single mirror (mdadm RAID 1) |
| Two equal drives | Identical to RAID 1: 50% usable, survives one dead disk | 50% usable, survives one dead disk |
| Mixed drive sizes | Uses leftover space on larger drives (with 3+ disks) | Locks to the smallest drive; the rest is wasted |
| Fault tolerance | 1 drive (SHR), 2 drives (SHR-2) | 1 drive |
| Minimum drives | 1 (2 for redundancy); SHR-2 needs 4 | 2 |
| Expansion | Swap in bigger drives one at a time; grows online, sooner | Same method, but only grows once every drive matches |
| Recovery off the NAS | Nested mdadm + LVM; standard Linux, but layered | Single mirror; each disk is a full, readable copy |
| Model availability | Most consumer and SMB models; some enterprise units omit it | Every Synology model |
What SHR actually is
SHR is not a new kind of RAID math. It is a management layer Synology puts on top of standard Linux components, the same mdadm software RAID and LVM you would find on any Debian box. SHR decides how to lay mirrors and parity across your disks so you do not have to, and it comes in two flavors: SHR (single-drive redundancy, sometimes written SHR-1) and SHR-2 (two-drive redundancy, which needs at least four bays).
Because it sits on ordinary RAID underneath, SHR maps onto the classic levels depending on how many disks you feed it. Two disks give you a mirror, the SHR equivalent of RAID 1. Three or more disks give you single parity, the equivalent of RAID 5. SHR-2 on four or more disks gives you double parity like RAID 6. The point is not the redundancy, which is standard, it is how SHR handles disks that are not the same size.
SHR only controls the RAID layout. The filesystem on top is separate: DSM formats SHR volumes as Btrfs or ext4. On models that support Btrfs you also get data checksums and metadata self-healing, which is a real integrity edge that a plain block mirror does not have on its own (the same argument that drives the ZFS mirror vs RAID 1 debate).
With two drives, they are the same thing
Here is the part people overthink. On a two-bay NAS with two identical drives, SHR-1 and RAID 1 produce the same result. You get half your raw capacity as usable space (two 8 TB drives give roughly 8 TB usable), you survive exactly one drive failure, and read and write speed match because a single drive already saturates a gigabit link. Synology's own documentation says a two-disk SHR array behaves like RAID 1, and that is literally what it builds underneath.
So on two equal drives there is no capacity, redundancy, or performance reason to choose one over the other. The decision is entirely about what happens later: whether you will add a third drive, swap in a larger one, or ever want to move the disks off the Synology. That future is where SHR and RAID 1 actually diverge.
Where SHR pulls ahead: mismatched drives and growth
Classic RAID treats every drive as if it were the size of the smallest one. Build a RAID 1 from a 4 TB and an 8 TB drive and you get 4 TB usable, with the other 4 TB on the big drive stranded for the life of that array. SHR slices the larger drive into segments and stacks multiple small mdadm arrays under one LVM volume, so once you have enough disks it can protect and use that leftover space instead of throwing it away.
With exactly two drives this does not help yet, since the extra segment needs a redundancy partner, so a 4 TB plus 8 TB SHR pair still gives 4 TB usable, same as RAID 1. The payoff arrives the moment you add a third drive or replace a small one. Start with two 4 TB drives, then swap one for a 12 TB, and SHR begins reclaiming the extra capacity as soon as the array can protect it, where a classic RAID 1 would still show 4 TB until both members were 12 TB.
That flexibility is the reason to buy a Synology in the first place. If your drive collection will grow piecemeal, with whatever size is cheapest that month, SHR quietly uses space that RAID would waste. Run your planned disks through the RAID and ZFS calculator to see the usable-space gap before you commit.
Where plain RAID 1 wins: portability and recovery
RAID 1's advantage is boring and important: it is a single, standard mirror. Each disk holds a full, independent copy of the filesystem, so in a disaster you can pull one drive, plug it into any Linux machine, assemble it with mdadm, or in a pinch read a copy directly, and get your data. Nothing about the recovery depends on Synology hardware.
SHR is recoverable on a generic Linux box too, because it is still mdadm and LVM, but the layered layout is more work to reassemble by hand, and no single disk is a standalone copy you can just read. For most people the DSM box keeps running and this never comes up. If your threat model includes the NAS itself dying and needing the drives read elsewhere fast, the simpler mirror is easier to trust.
There is also a hardware reason RAID 1 sometimes wins by default. SHR is available on most consumer and SMB Synology models, but some higher-end rackmount and enterprise units (parts of the RS and XS lines) ship without it and offer only classic RAID. On those boxes the choice is made for you. If you are still weighing Synology against the alternatives, QNAP vs Synology and Synology vs TrueNAS cover the platform side.
The migration catch: decide before you build
This is the fact that should settle the decision: DSM will not convert directly between RAID 1 and SHR. You can migrate RAID 1 up to RAID 5 or RAID 6 by adding disks, but there is no in-place button to turn a RAID 1 volume into SHR or the reverse. Synology has a dedicated support article explaining exactly this limitation.
Switching means backing up the whole volume, deleting it, creating the new type, and restoring, or a fiddly workaround where you degrade the array, build SHR on the freed disk, copy across, and fold the last disk in. Both are slow and both want a full backup first. Because the switch is painful, treat this as a build-time choice, not something to fix later.
The practical takeaway: if there is any chance you will want SHR's mixed-drive flexibility down the road, pick SHR now, when it costs you nothing on two equal drives. If you specifically want the portable single mirror, pick RAID 1 and know you are committing to it. For the storage-layout questions one level down, the RAID 5 vs RAID 10 writeup covers parity versus mirroring on larger arrays.
Where Synology SHR wins
- On two equal drives it is RAID 1 exactly: same 50% usable space and one-drive fault tolerance, no downside today.
- Uses leftover capacity on mismatched drives (with three or more disks) that classic RAID throws away.
- Expands online by swapping in larger drives one at a time, and realizes new space sooner than classic RAID.
- It is the DSM default and the least-fuss choice for a drive collection that grows over time.
Where RAID 1 wins
- A single standard mdadm mirror: each disk is a full, independently readable copy.
- Recovers on any Linux box with mdadm, with no Synology-specific LVM stack to untangle.
- Offered on every Synology model, including enterprise units that leave SHR out.
- Simple and predictable, the layout scripts and admins already expect.
Which to pick, by situation
| Your situation | Pick | Why |
|---|---|---|
| Two-bay Synology, two identical drives, general use | SHR (SHR-1) | Identical to RAID 1 today, with a painless upgrade path if you add or grow drives later. |
| Drive collection that grows with whatever size is cheapest | SHR | Reclaims leftover space on mismatched drives that classic RAID 1 would strand. |
| You want to pull a disk and read it on any Linux box in an emergency | RAID 1 | A single standard mirror; each disk is a full, independently readable copy. |
| Rackmount or enterprise Synology that only lists classic RAID | RAID 1 | SHR is not offered on those models, so the choice is made for you. |
| Four or more bays and you want two-drive fault tolerance | SHR-2 | Double parity like RAID 6, plus SHR's mixed-size flexibility. |
The verdict
On a Synology, pick SHR for almost everything. With two equal drives it is RAID 1 in every way that matters, same usable space, same one-drive fault tolerance, same speed, so choosing SHR costs you nothing today and keeps the option to add mismatched or bigger drives later without stranding capacity. Choose classic RAID 1 only when you specifically want a portable single mirror that any Linux box can read, or your model does not offer SHR. The one thing you cannot do is stay undecided and fix it later: DSM will not convert between RAID 1 and SHR without wiping and restoring, so make the call at build time. Before you buy drives, run the layouts through the RAID and ZFS calculator, and if you are still choosing the NAS itself, start with QNAP vs Synology.
Choose Synology SHR if you run a Synology and want the most flexible layout: identical to RAID 1 on two equal drives, but able to use mismatched and larger drives as your pool grows.
Choose RAID 1 if you want a portable, standard single mirror that any Linux box can recover, or your Synology model does not offer SHR.
Official links
FAQ
Is SHR better than RAID?
For most Synology owners, yes, because SHR is RAID with a smarter layout on top. It gives you the same redundancy as the classic level it maps to (a mirror on two disks, single parity on three or more), then adds the ability to use mismatched drive sizes and grow more gracefully. The only reasons to prefer plain RAID are portability off the NAS and models that do not offer SHR.
Why choose SHR over RAID 1?
Because it costs nothing on two equal drives and buys you flexibility later. On a two-bay NAS with matching disks, SHR-1 and RAID 1 give identical capacity, redundancy, and speed. The difference shows up when you add a third drive or swap in a larger one: SHR reclaims the extra space, while RAID 1 stays locked to the smallest drive's size.
What RAID type is SHR?
SHR is not a separate RAID level; it is Synology's automated layer built on standard mdadm and LVM. With two drives it behaves like RAID 1, with three or more like RAID 5, and SHR-2 (four or more drives) behaves like RAID 6. What it adds on top of those levels is efficient use of drives that are not all the same size.
Is SHR worth it?
On a consumer or SMB Synology, yes for almost everyone. It matches the equivalent classic RAID level for capacity and fault tolerance and gives you a better upgrade path for free. Skip it only if you want each disk to be a portable standard mirror, or your model does not support it.
Is SHR the same as RAID 1 with two drives?
Functionally, yes. A two-disk SHR-1 array is a mirror underneath and gives the same 50% usable capacity and single-drive fault tolerance as RAID 1, at the same speed. The practical difference is only what happens when you later change drives, plus how easy the disks are to recover outside a Synology.
Can I convert RAID 1 to SHR later?
Not directly. DSM does not offer an in-place conversion between RAID 1 and SHR in either direction. You can migrate RAID 1 to RAID 5 or 6 by adding disks, but moving to SHR means backing up, deleting the volume, recreating it as SHR, and restoring. That is why the choice is worth making before you build.
Can I recover an SHR volume on a non-Synology PC?
Yes, but it takes more effort than RAID 1. SHR is standard mdadm plus LVM, so a Linux box can assemble it, though the layered layout means no single disk is a standalone copy. A RAID 1 mirror is simpler: each drive holds a full copy you can assemble or read directly. If off-NAS recovery speed matters to you, that simplicity is the main argument for plain RAID 1.
Does SHR or RAID 1 perform faster?
On two equal drives they perform the same. Both read and write as a mirror, and a single modern drive already saturates a gigabit link, so the network is the bottleneck long before the array is. The thin LVM layer SHR adds does not produce a difference you will notice in real use.