The Four DR Strategies
coreadvancedAWS groups disaster recovery into four approaches, from cheapest and slowest to most expensive and fastest. Backup and restore keeps copies and rebuilds. Pilot light keeps the data replicated and the core infrastructure provisioned but switched off. Warm standby keeps a scaled-down but running copy. Multi-site active/active runs everywhere at once, so there is no failover at all.
Think of it as
Think of a spare car. Backup and restore is having the parts in a crate. Pilot light is having the car assembled but not started. Warm standby is having it idling in the driveway. Active/active is already driving both cars. The cost rises at every step, and so does the speed you can leave.
What we're doing: Choose between pilot light and warm standby for a workload with a 30-minute RTO.
- 1
- The technical difference is small; the confidence difference is not. Pilot light's failover path is only exercised when you deliberately exercise it.
- 6
- AWS states this distinction directly: pilot light needs action before it can process requests, warm standby can serve immediately at reduced capacity.
- 10
- "Might make it" is not an RTO. The strategy you can rehearse cheaply is worth more than the one that is theoretically fast enough.
Why this works: The four strategies differ in what is already running, and therefore in how much of the recovery path is unproven at the moment you need it. Cost buys speed, and it also buys certainty — which is usually the more valuable half.
Depending on control plane operations during failover
Wrong
Better
What you see: The failover runbook stalls because a control plane API is degraded in exactly the event that triggered the failover.
Why: AWS states that data planes typically have higher availability design goals than control planes, and recommends using only data plane operations as part of failover. A plan that creates resources during a disaster depends on the part of AWS most likely to be affected by it.
- Backup and restore — Data copied; infrastructure and code redeployed at failover. Hours.
- Pilot light — Data replicated continuously, core infrastructure provisioned but off. Tens of minutes.
- Warm standby — Scaled-down but fully functional and serving-capable. Minutes.
- Multi-site active/active — Running everywhere; no failover step exists. Near zero.
The four strategies compared
Together
Remember: Backup and restore (rebuild), pilot light (data live, servers off), warm standby (scaled-down but serving), active/active (no failover at all). Cost buys speed and, more importantly, a path you have proven. Use only data plane operations at failover, and never mistake replication for backup.
See also: rpo and rto · testing recovery procedures · multi az vs multi region

