A logistics company hosts a fleet tracking application on AWS. The application runs on Amazon ECS Fargate tasks behind an Application Load Balancer (ALB) in the primary Region (us-east-1). The database is an Amazon RDS for PostgreSQL Multi-AZ DB instance. The company requires a disaster recovery (DR) strategy in a secondary Region (us-west-2) with a Recovery Time Objective (RTO) of less than minutes and a Recovery Point Objective (RPO) of less than minutes. The solution must minimize ongoing operational costs. Which two actions should a solutions architect take to meet these requirements?
- Create an Amazon RDS cross-region read replica in the secondary Region. During a failover, promote the read replica to a standalone DB instance.Cevap
- Deploy the ECS service in the secondary Region with a minimum desired task count of . Configure an Application Load Balancer in the secondary Region, and set up Amazon Route 53 active-passive failover routing with health checks.Cevap
- CConfigure the RDS DB instance to replicate synchronously to the secondary Region using Multi-AZ deployment.
- DConfigure automated DB snapshots and copy them to the secondary Region every hours. In a disaster, restore the database from the copied snapshot.
- EUse Route 53 Latency routing policy to route user traffic to both regions simultaneously, allowing clients to automatically direct requests to the secondary Region if the primary Region becomes unresponsive.
Cevap
The correct options are creating an Amazon RDS cross-region read replica in the secondary Region (promoting it during failover), and deploying the ECS service in the secondary Region with a minimum task count of one along with an Application Load Balancer and Route 53 active-passive failover routing with health checks.
The correct actions combine an Amazon RDS cross-region read replica in the secondary Region with a Warm Standby ECS deployment and Route 53 active-passive failover. Creating a cross-region read replica satisfies the RPO of less than minutes since replication is continuous and asynchronous, and promoting the replica to a standalone database takes only a few minutes. Running a single Fargate task in the secondary Region keeps compute costs minimal while ensuring that the infrastructure is ready to receive traffic immediately upon a DNS failover, satisfying the RTO of less than minutes.
Adım Adım Çözüm
Anahtar Kavram
Disaster recovery (DR) strategies (specifically Warm Standby vs. Pilot Light) require aligning AWS database replication (like RDS cross-region replicas) and routing mechanisms (like Route 53 failover routing) to meet specific RTO and RPO objectives at the lowest cost.
Tahmini Süre:3m 0s