A company is designing a high-availability and disaster recovery solution for an internal corporate web application. The primary workload runs in a multi-AZ VPC in the us-east-1 Region, and the disaster recovery site is located in the us-west-2 Region. The system must achieve a Recovery Point Objective (RPO) of 1 hour and a Recovery Time Objective (RTO) of 4 hours.
Which two actions should the solutions architect take to meet these requirements while ensuring high availability and minimizing cost?
- Configure Amazon Route 53 with a failover routing policy and health checks pointing to the primary and secondary regions.Answer
- Configure Amazon RDS cross-region read replication from us-east-1 to us-west-2 to meet the database RPO.Answer
- CConfigure daily AWS Backup jobs in the primary region and copy the recovery points to the secondary region.
- DDeploy a single NAT Gateway in the primary region's public subnet to handle all outbound replication traffic for private instances across all Availability Zones.
- ECreate an Amazon Route 53 Private Hosted Zone in us-east-1 for the application's domain and associate it with both regions to route public client traffic.
Answer
Configure Amazon Route 53 with a failover routing policy and health checks, and configure Amazon RDS cross-region read replication from the primary to the secondary region.
To meet the RPO of 1 hour and RTO of 4 hours cost-effectively, the architecture must utilize a Warm Standby or Pilot Light pattern. Amazon RDS cross-region read replication provides near real-time asynchronous database updates, satisfying the RPO. Amazon Route 53 failover routing with health checks monitors the primary region and automatically updates DNS records to point to the secondary region during an outage, satisfying the RTO.
Step-by-Step Solution
Key Concept
Disaster Recovery strategies (Pilot Light/Warm Standby) utilize asynchronous database replication to meet tight RPOs and Route 53 failover routing to satisfy RTOs, while local high availability requires redundant multi-AZ resources like NAT Gateways.