An enterprise operates a critical inventory management application in the `us-east-1` Region. The application runs on Amazon EC2 instances in an Auto Scaling group behind an Application Load Balancer (ALB). The database tier uses an Amazon RDS for PostgreSQL DB instance. The company wants to improve the reliability and disaster recovery posture of this workload by implementing a cross-Region solution in `us-west-2`. The solution must support a Recovery Time Objective (RTO) of minutes and a Recovery Point Objective (RPO) of minutes. Which combination of actions should the solutions architect perform to meet these requirements? (Select TWO.)
- Create an Amazon RDS cross-Region read replica of the PostgreSQL DB instance in `us-west-2`. Configure the disaster recovery environment's Auto Scaling group with a minimum capacity of instance to serve as a warm standby, and promote the replica during a failover event.Answer
- Configure Amazon Route 53 active-passive failover routing. Create a primary failover alias record pointing to the Application Load Balancer in `us-east-1` and associate it with a Route 53 health check. Create a secondary failover alias record pointing to the Application Load Balancer in `us-west-2`.Answer
- CConfigure AWS Backup to take snapshots of the PostgreSQL database every hours, copy the snapshots to `us-west-2`, and restore the database to a new instance during a failover event.
- DConfigure Amazon Route 53 active-passive failover routing by creating a primary failover alias record pointing to the `us-east-1` Application Load Balancer and a secondary failover alias record pointing to the `us-west-2` Application Load Balancer, without associating health checks.
- EConfigure outbound internet routing for the application servers in the `us-west-2` private subnets across Availability Zones by routing all traffic through a single NAT Gateway deployed in one public subnet.
Answer
The solutions architect should create an Amazon RDS cross-Region read replica of the PostgreSQL database in the standby region and configure the Auto Scaling group with a minimum capacity of one instance. Additionally, they should configure Route 53 active-passive failover routing with a health check associated with the primary record.
To meet the -minute RPO, a cross-Region read replica is required because database updates are asynchronously replicated with very low latency. To meet the -minute RTO, Route 53 active-passive failover routing with a health check must be configured on the primary record to detect failures and automatically point DNS queries to the standby region's load balancer. Additionally, the standby Auto Scaling group must have a minimum capacity of at least one instance to quickly handle the initial wave of traffic and scale up.
Step-by-Step Solution
Key Concept
Disaster recovery designs must align database replication and DNS failover health checking to meet business RTO and RPO objectives without introducing infrastructure single points of failure.
Estimated Time:2m 0s