A financial clearinghouse processes sensitive transactional data in its primary AWS Region (us-east-1). The current architecture consists of an Amazon Aurora PostgreSQL-Compatible Edition database cluster and an application tier running on Amazon EC2 instances in an Auto Scaling group behind an Application Load Balancer (ALB). The clearinghouse must implement a disaster recovery (DR) strategy in a secondary Region (us-west-2) to ensure business continuity. The DR solution must achieve a Recovery Point Objective (RPO) of less than 1 minute and a Recovery Time Objective (RTO) of less than 10 minutes, while minimizing ongoing compute costs. Which database and application deployment strategy should a solutions architect recommend 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. In us-west-2, pre-deploy the ALB and an Auto Scaling group with the minimum capacity set to 1 instance. Configure Amazon Route 53 failover routing with health checks to direct traffic to the secondary Region, and automate the promotion of the secondary database cluster in the event of a primary Region failure.Cevap
- BDeploy an Amazon Aurora Global Database with the primary cluster in us-east-1 and a secondary cluster in us-west-2. Create a launch template for the EC2 instances in us-west-2. Write an AWS Lambda function triggered by Amazon CloudWatch alarms to create the ALB, provision the Auto Scaling group from scratch, and promote the secondary database cluster only when a regional failover is initiated.
- CConfigure cross-region database replication using an Amazon RDS PostgreSQL Read Replica in us-west-2. Deploy a fully provisioned Auto Scaling group behind an ALB in us-west-2. Use Route 53 latency-based routing to distribute traffic. In the event of a disaster, manually promote the read replica to a primary database instance and update the application configuration files with the new endpoint.
- DConfigure daily backups of the Aurora cluster in us-east-1 and copy the snapshots to us-west-2, storing them in Amazon S3 Glacier Flexible Retrieval to minimize storage costs. Maintain a warm standby EC2 fleet behind an ALB in us-west-2. In the event of a disaster, initiate an expedited retrieval of the latest snapshot, restore the database cluster, and update Route 53 routing records.