A public transit ticketing platform hosts its core application in the us-west-2 Region. The database tier runs on an Amazon RDS for MySQL Multi-AZ DB instance. The company needs to design a disaster recovery (DR) plan in the us-east-1 Region. The DR strategy must achieve a Recovery Point Objective (RPO) of less than 15 minutes and a Recovery Time Objective (RTO) of less than 30 minutes, while keeping costs as low as possible.
Which TWO configurations should a solutions architect implement to meet these requirements? (Select TWO.)
- Create a cross-region read replica of the RDS DB instance in the us-east-1 Region.Cevap
- Deploy a scaled-down application tier in the us-east-1 Region, and configure Amazon Route 53 failover routing with health checks.Cevap
- CConfigure an Amazon Route 53 latency-based routing policy to automatically redirect database and application traffic to the us-east-1 Region during an outage.
- DEnable Amazon RDS Multi-AZ replication across both the us-west-2 and us-east-1 Regions to automate database failover.
- EExport daily database snapshots to Amazon S3 Glacier Flexible Retrieval in the us-east-1 Region, and restore the database during a failover event.
Cevap
Create a cross-region read replica of the RDS DB instance in the us-east-1 Region, and deploy a scaled-down application tier in the us-east-1 Region with Amazon Route 53 failover routing and health checks.
To meet the 15-minute RPO, the database must replicate continuously to the secondary region. An RDS cross-region read replica meets this requirement by replicating data asynchronously with very low latency. To meet the 30-minute RTO, the database replica can be promoted to a standalone primary instance in minutes. To minimize costs, the application tier should be kept scaled down (Pilot Light pattern) and only scaled up when a failover is initiated. Amazon Route 53 failover routing with health checks handles the redirection of user traffic to the secondary region during a disaster.
Adım Adım Çözüm
Anahtar Kavram
Disaster recovery planning using a cross-region Pilot Light strategy with Amazon RDS cross-region read replicas and Amazon Route 53 failover routing to meet strict RTO/RPO objectives while minimizing idle resource costs.