RAID 1 Calculator

RAID 1 mirrors every disk — simple, predictable, and the easiest RAID level to recover from, at the cost of losing half your raw capacity.

The RAID 1 formula

Usable Capacity = (N / 2) × Disk Size (50% efficiency)

Every disk has a full, identical mirror partner. Capacity is a flat 50% regardless of how many mirrored pairs you add — unlike parity RAID, this overhead never improves with scale.

Worked example

2 disks × 4 TB, mirrored = 4 TB usable, 50% storage efficiency, tolerates 1 disk failure. If a disk dies, the surviving mirror keeps serving data with zero downtime, and can be read directly without any RAID-specific recovery process.

Why RAID 1 is still the right call for some workloads

Boot drives, small NAS units, and anything where simplicity and fast, predictable recovery matter more than capacity efficiency. Recovery from a failed disk is as simple as it gets — no parity reconstruction, no rebuild-window risk calculations, just copy from the surviving mirror.

Can RAID 1 have more than 2 disks?

Yes — some controllers support 3+ way mirrors (every disk holds an identical copy), which increases fault tolerance beyond 1 disk at the cost of even more capacity overhead. Usable capacity is always (total disks ÷ number of disks per mirror set) × disk size.

Is RAID 1 faster for reads than a single disk?

Often yes — many RAID 1 implementations split read requests across both mirrors, roughly doubling read throughput. Write speed stays capped at a single disk's speed, since every write has to hit every mirror.

Need a different RAID level? Use the full RAID Calculator covering RAID 0, 1, 5, 6, 10, 50, 60 and ZFS RAIDZ1/2/3, or read the RAID levels comparison guide.