A company runs an inventory tracking application on AWS. The application tier runs on Amazon EC2 instances in an Auto Scaling group behind an Application Load Balancer. The database tier uses an Amazon RDS for PostgreSQL Multi-AZ deployment. The company wants to establish a disaster recovery (DR) strategy in a secondary AWS Region. The strategy must support a Recovery Point Objective (RPO) of 5 minutes and a Recovery Time Objective (RTO) of 30 minutes, while keeping ongoing replication and idle infrastructure costs to a minimum. Which of the following database and application configurations will meet these requirements?
- Configure an Amazon RDS cross-region read replica in the secondary Region. Maintain an Auto Scaling group in the secondary Region with the desired capacity set to 0, and configure an Amazon Route 53 failover routing policy with health checks. In a disaster, promote the read replica to a primary instance, scale up the Auto Scaling group, and let Route 53 redirect traffic.Cevap
- BConfigure an Amazon RDS cross-region read replica in the secondary Region. Deploy a Warm Standby architecture by running a minimum number of EC2 instances in the secondary Region's Auto Scaling group to handle baseline traffic. In a disaster, promote the read replica to a primary instance and scale up the Auto Scaling group.
- CConfigure an Amazon RDS cross-region read replica in the secondary Region. Maintain an Auto Scaling group in the secondary Region with the desired capacity set to 0. In a disaster, update the application configuration in the secondary Region to direct all read and write traffic directly to the read replica without promoting it, and scale up the Auto Scaling group.
- DConfigure daily automated exports of the database snapshots to Amazon S3 in the secondary Region, and transition those snapshots to Amazon S3 Glacier Flexible Retrieval. Maintain an Auto Scaling group in the secondary Region with the desired capacity set to 0. In a disaster, retrieve the snapshot from Glacier and restore it to a new RDS instance.
Cevap
Configure an Amazon RDS cross-region read replica in the secondary Region. Maintain an Auto Scaling group in the secondary Region with the desired capacity set to 0, and configure an Amazon Route 53 failover routing policy with health checks. In a disaster, promote the read replica to a primary instance, scale up the Auto Scaling group, and let Route 53 redirect traffic.
The correct option outlines a Pilot Light strategy, which satisfies the 5-minute RPO through RDS cross-region read replica replication and the 30-minute RTO by promoting the replica and scaling up the application tier. Keeping the Auto Scaling group's desired capacity at 0 minimizes ongoing compute costs in the secondary region.
Adım Adım Çözüm
Anahtar Kavram
Disaster recovery (DR) strategies on AWS balance Recovery Time Objective (RTO), Recovery Point Objective (RPO), and cost. A Pilot Light strategy uses continuous database replication (such as RDS cross-region read replicas) while keeping application compute resource counts at zero until a failover event occurs, minimizing idle costs while meeting moderate recovery time limits.