advancedProduction Best Practices: Logging, Monitoring, Scaling, HA & Disaster Recovery

Why might a company choose active-passive disaster recovery over active-active across regions, despite active-active offering better RTO?

Active-active (serving live traffic from multiple regions simultaneously) generally offers the best RTO since failover is just rerouting traffic, but it requires solving multi-region data consistency, conflict resolution, and roughly doubles steady-state infrastructure cost. Active-passive (a warm or cold standby region that isn't serving live traffic) is simpler to reason about and cheaper to run day-to-day, accepting a slower failover (spinning up or promoting the standby) as the trade-off. Companies choose active-passive when their RTO requirements can tolerate that slower failover and the

This is a Pro chapter

Sign in, then upgrade to Pro or Power to unlock this and the full DevOps Mastery library.

Why might a company choose active-passive disaster recovery over active-active across regions, despite active-active offering better RTO?

Next Step

Continue to A production order-processing service has 99.9% uptime SLA, runs as a single Docker container with `restart: always`, and the team is confident because 'it auto-restarts on crash'← Back to all Docker questions