A company is designing a disaster recovery (DR) strategy for a database on AWS. The company requires a Recovery Point Objective (RPO) of hour and a Recovery Time Objective (RTO) of minutes. The solutions architect wants to minimize ongoing running costs. Which of the following strategies meets these requirements at the lowest cost?
- A Pilot Light strategy that replicates the database data to the secondary AWS Region, runs a minimal database instance, and provisions the application servers from Amazon Machine Images (AMIs) during a failover.Answer
- BA Pilot Light strategy that keeps all application servers stopped in the secondary region, expecting them to process live traffic immediately with zero startup time upon DNS failover.
- CA database replication strategy that copies data to an Amazon RDS Read Replica in the secondary region, and configures the application to write directly to the Read Replica during a failover without promoting it.
- DA Backup and Restore strategy that stores database backups in Amazon S3 Glacier Flexible Retrieval, and uses standard retrieval to restore the database to a new instance within the -minute failover window.
Answer
A Pilot Light strategy that replicates the database data to the secondary AWS Region, runs a minimal database instance, and provisions the application servers from Amazon Machine Images (AMIs) during a failover.
The correct strategy is a Pilot Light architecture. In this setup, critical data such as the database is replicated to the disaster recovery region and kept active, while application servers remain unprovisioned (or exist only as AMIs) to minimize ongoing costs. The application servers can be quickly provisioned from AMIs during failover, which satisfies the -minute RTO.
Step-by-Step Solution
Key Concept
Disaster recovery strategies differ in cost and recovery times. Pilot Light maintains database replication with minimal resources and provisions the rest of the application stack only during failover, offering a balance of low cost and quick recovery.
Estimated Time:1m 0s