A financial technology company is designing a disaster recovery (DR) architecture for a critical transaction ledger application. The application will be deployed across two AWS Regions: `us-east-1` as the primary region and `us-west-2` as the secondary region. The company has specified a Recovery Time Objective (RTO) of minutes and a Recovery Point Objective (RPO) of minutes. The application runs on Amazon EC2 instances in Auto Scaling groups behind Application Load Balancers, and uses an Amazon Aurora PostgreSQL DB cluster. The DR strategy must minimize running costs during normal operations while meeting the RTO and RPO, and public traffic must automatically fail over to the secondary region if the primary region becomes unhealthy. Which combination of actions should the Solutions Architect select to meet these requirements? (Select TWO.)
- Create an Amazon Aurora Global Database with the primary cluster in `us-east-1` and a secondary cluster in `us-west-2`. Deploy a minimum-size Aurora replica instance in the secondary cluster to minimize running cost, and use automation to scale up the instance class before promoting the secondary cluster during a failover event.Cevap
- Configure Amazon Route 53 public DNS with active-passive failover routing. Point the primary record to the Application Load Balancer in `us-east-1` with an associated Amazon Route 53 health check, and point the secondary record to the Application Load Balancer in `us-west-2`.Cevap
- CConfigure AWS Backup to take hourly snapshots of the Aurora DB cluster in `us-east-1` and copy them to `us-west-2`. In the event of a disaster, restore the DB cluster from the latest snapshot in the secondary region and update the application configuration.
- DSet up an Amazon Aurora PostgreSQL DB cluster with cross-region read replicas. Enable Aurora Auto Scaling on the reader instances in `us-west-2` to handle write traffic by automatically promoting the reader with the lowest replication lag.
- EConfigure Route 53 with latency-based routing to split traffic between the Application Load Balancers in both regions, and create a single Route 53 Private Hosted Zone associated only with the `us-east-1` VPC for internal microservice resolution.