A global travel reservation platform hosts its application in the `us-east-1` Region. The architecture consists of an Amazon Aurora MySQL database cluster and a fleet of Amazon EC2 instances in an Auto Scaling group behind an Application Load Balancer (ALB). The platform needs to establish a disaster recovery (DR) plan in the `us-west-2` Region. The DR solution must achieve a Recovery Time Objective (RTO) of minutes and a Recovery Point Objective (RPO) of minutes, while minimizing ongoing running costs in the secondary region.
Which combination of actions should a solutions architect perform to meet these requirements? (Select TWO.)
- Create an Amazon Aurora Global Database with the primary cluster in `us-east-1` and a secondary cluster in `us-west-2`. In the event of a primary region outage, promote the secondary cluster to a standalone primary cluster.Answer
- Deploy an Application Load Balancer and an Auto Scaling group in `us-west-2` with minimum and desired capacities set to . Configure Amazon Route 53 with failover routing and health checks to route traffic to the secondary load balancer.Answer
- CConfigure daily snapshots of the database cluster, copy them to Amazon S3 in `us-west-2`, and transition them to Amazon S3 Glacier Flexible Retrieval to minimize storage costs.
- DConfigure Amazon Route 53 with latency-based routing to split client traffic equally between `us-east-1` and `us-west-2` without health checks, and maintain identical EC2 running capacity in both regions.
- EDeploy a standard Amazon RDS for MySQL database in `us-east-1` with a Read Replica in `us-west-2`, and rely on Amazon RDS to automatically fail over and redirect application write traffic to the Read Replica during a regional outage.
Answer
Create an Amazon Aurora Global Database to replicate the database, and maintain a scaled-down Pilot Light compute tier in the secondary region with Route 53 failover routing.
Aurora Global Database replicates data across regions with latency under second, satisfying the -minute RPO. In a disaster, the secondary cluster can be promoted to a standalone primary cluster in less than minute. Maintaining a scaled-down Auto Scaling group (Pilot Light) with a capacity of in the secondary region minimizes ongoing costs while ensuring the infrastructure is ready to scale up within the -minute RTO when Route 53 routes traffic there.
Step-by-Step Solution
Key Concept
Disaster Recovery (DR) strategies using Aurora Global Database and Pilot Light compute scaling across AWS Regions.