A financial services company is designing a new multi-region disaster recovery (DR) architecture for a mission-critical billing application. The primary workload runs in a VPC in us-east-1, and the secondary disaster recovery site is located in us-west-2. The application utilizes Amazon Aurora PostgreSQL. The business requires a Recovery Time Objective (RTO) of 10 minutes and a Recovery Point Objective (RPO) of 1 minute. Client application servers in both regions must access the database using a single, consistent private DNS name. Which two database and routing configurations should a Solutions Architect implement to meet these requirements?
- Deploy an Amazon Aurora Global Database with the primary cluster in us-east-1 and a secondary cluster in us-west-2, utilizing physical replication to meet the 1-minute RPO target.Cevap
- Create a Route 53 Private Hosted Zone (PHZ) containing a CNAME record pointing to the active database endpoint, and associate this PHZ with the VPCs in both us-east-1 and us-west-2.Cevap
- CConfigure Route 53 with a Geolocation routing policy using public DNS records to resolve the database endpoint, without associating the Private Hosted Zone with the us-west-2 VPC.
- DSet up a standard Amazon Aurora PostgreSQL DB cluster in us-east-1 with cross-region read replicas in us-west-2, and configure a scheduled AWS Backup job to replicate DB snapshots every 4 hours to meet the RPO target.
- EDeploy Amazon Aurora PostgreSQL in us-east-1 and deploy RDS Multi-AZ replica standby instances in us-west-2 to serve read requests and scale dynamic workloads automatically during normal operation.
Cevap
Deploy an Amazon Aurora Global Database with the primary cluster in us-east-1 and a secondary cluster in us-west-2, and create a Route 53 Private Hosted Zone (PHZ) containing a CNAME record pointing to the active database endpoint, associating this PHZ with the VPCs in both us-east-1 and us-west-2.
To meet the RPO of 1 minute and RTO of 10 minutes, deploying an Amazon Aurora Global Database is the most suitable strategy. It replicates data cross-region with latency typically under a second and allows quick promotion of the secondary cluster during a failover. Additionally, to allow client application servers in both regions to resolve a single database private DNS name, a Route 53 Private Hosted Zone must be associated with the VPCs in both us-east-1 and us-west-2.
Adım Adım Çözüm
Anahtar Kavram
Multi-region disaster recovery design using Amazon Aurora Global Database and Route 53 Private Hosted Zone cross-VPC association.