RAID and backups are both important parts of protecting your data, but they do very different things. Understanding the difference can save you from painful data loss.
What RAID Does
RAID keeps you working when a drive fails. By spreading your data across multiple disks, a redundant RAID volume (RAID 1, 4, 5, or 1+0) can survive the failure of one drive without losing a single file. You replace the failed drive, SoftRAID rebuilds the volume, and you never lose access to your data.
Think of RAID like a spare tire. If you get a flat, you can keep going. But a spare tire doesn’t protect you from accidentally driving off a cliff.
What RAID Does NOT Do
RAID does not protect you from:
- Accidental deletion — if you delete a file, it’s gone from every disk in the array simultaneously
- File corruption — a corrupted file is written to all disks at once; RAID preserves the corrupted version faithfully
- Ransomware or malware — malicious software can encrypt or destroy your files across the entire array
- Theft, fire, or flood — a disaster that affects your location takes out all the drives at once
- User error — overwriting a file, saving over the wrong version, or formatting the wrong volume
RAID protects against one specific failure mode: a drive dying. It was never designed to be a backup, and it cannot replace one.
What a Backup Does
A backup is a separate, independent copy of your data — stored somewhere different from your working files. If something goes wrong with your primary storage (whether a drive failure, accidental deletion, corruption, or disaster), a backup lets you recover.
The key word is separate. A second copy on the same RAID array is not a backup. A Time Machine volume sitting next to your working drive on the same desk is better, but still not a complete solution.
The 3-2-1 Rule
The standard for data protection is the 3-2-1 rule:
- 3 copies of your data (your working copy plus two backups)
- 2 stored on different media or devices
- 1 stored off-site (cloud storage, a drive at another location, etc.)
A common setup for SoftRAID users: working files on a SoftRAID RAID 5 volume, a local Time Machine backup on a second drive or enclosure, and an off-site or cloud backup (Backblaze, Arq, Carbon Copy Cloner to a rotating external drive, etc.).
What About RAID 1 (Mirror)?
A mirror volume keeps a complete copy of your data on two or more drives — so if one drive fails, the other has everything. This is excellent protection against drive failure, but it is still not a backup. Both copies of the data are affected simultaneously by deletion, corruption, or malware. A mirror is not a substitute for a separate backup.
Summary
| Type of Storage | Protects Against Drive Failure | Protects Accidental Deletion | Protects Against Corruption/Malware | Protects Against Disaster |
|---|---|---|---|---|
| RAID 0 | No | No | No | No |
| RAID 1/4/5/1+0 | Yes | No | No | No |
| Local Backup | Yes | Yes | Yes | No |
| Offsite/Cloud | Yes | Yes | Yes | Yes |
The bottom line: Use RAID to keep working when a drive fails. Use backups to recover when everything else goes wrong. You need both.
