A company is designing a disaster recovery (DR) architecture on AWS for a mission-critical web application. The application requires a Recovery Time Objective (RTO) of 15 minutes and a Recovery Point Objective (RPO) of 5 minutes. The architecture must minimize ongoing standby infrastructure costs while still meeting the RTO and RPO. Which strategy should a solutions architect recommend to meet these requirements?
- Configure a Warm Standby DR pattern in a secondary AWS Region by running a scaled-down deployment of the application tier and continuously replicating the database tier. Use Route 53 Failover routing with health checks to redirect traffic to the secondary region during an outage, and scale up the application tier upon failover.Cevap
- BConfigure a Pilot Light DR pattern in a secondary AWS Region by replicating the database tier but keeping the application tier completely shut down. Use Route 53 Latency routing with health checks to automatically provision the application tier from Amazon Machine Images (AMIs) during a failover event.
- CConfigure a Backup and Restore DR pattern using cross-region Amazon Aurora snapshots scheduled every 4 hours. Configure Route 53 Failover routing to direct users to a static website hosted in Amazon S3 until the database and application are fully restored in the secondary region.
- DConfigure a Multi-Region Active-Active DR pattern by deploying identical, fully-scaled application tiers in both regions. Configure Route 53 Geolocation routing to distribute traffic, and use Amazon RDS Multi-AZ standby instances in the secondary region to serve read traffic during normal operations to offset standby costs.
Cevap
Configure a Warm Standby DR pattern in a secondary AWS Region by running a scaled-down deployment of the application tier and continuously replicating the database tier. Use Route 53 Failover routing with health checks to redirect traffic to the secondary region during an outage, and scale up the application tier upon failover.
The Warm Standby disaster recovery strategy meets the RPO of 5 minutes by continuously replicating the database to a secondary region. It satisfies the 15-minute RTO by maintaining a pre-provisioned, scaled-down application tier that can quickly scale up under load. This approach minimizes ongoing costs compared to a fully-scaled Active-Active deployment, and utilizes Route 53 Failover routing to automate redirection when the primary region is degraded.
Adım Adım Çözüm
Anahtar Kavram
Disaster recovery pattern selection based on RTO, RPO, and cost constraints.