A digital publishing company wants to establish a cross-region disaster recovery (DR) plan for its archive metadata repository. The repository has a target Recovery Time Objective (RTO) of 12 hours and a Recovery Point Objective (RPO) of 24 hours. The architecture must minimize ongoing infrastructure costs in the secondary Region during normal operations. Which two actions should a solutions architect recommend to meet these requirements? (Select TWO.)
- Use AWS Backup to schedule daily backups of the database and copy them to the secondary Region.Answer
- Deploy the application's EC2 instances and load balancers using AWS CloudFormation only after a disaster is declared.Answer
- CProvision an Amazon RDS Read Replica in the secondary Region to continuously replicate database updates.
- DConfigure an Amazon Route 53 Geoproximity routing policy to load-balance user requests across both Regions.
- EKeep a scaled-down version of the application stack running continuously in the secondary Region.
Answer
Use AWS Backup to schedule daily backups of the database and copy them to the secondary Region, and deploy the application's EC2 instances and load balancers using AWS CloudFormation only after a disaster is declared.
For a 24-hour RPO, daily database backups are sufficient to ensure that no more than 24 hours of data is lost. For a 12-hour RTO, there is enough time to construct the application infrastructure from scratch. By using AWS Backup to copy daily database backups and using AWS CloudFormation to deploy the compute and network resources only when a disaster occurs, the company can meet its objectives while keeping ongoing idle resource costs in the secondary Region at zero.
Step-by-Step Solution
Key Concept
Selecting the most cost-effective disaster recovery strategy (Backup and Restore) when RTO and RPO limits are lenient enough to avoid active resources.