An enterprise operates a citizen portal application using a multi-tier microservices architecture in the us-east-1 Region. The web tier consists of Amazon ECS tasks running on AWS Fargate behind an Application Load Balancer (ALB). The application logic runs on AWS Lambda behind Amazon API Gateway. The data tier utilizes Amazon DynamoDB. The entire environment is provisioned using AWS CloudFormation. To enhance the disaster recovery (DR) posture, the enterprise wants to establish a warm standby architecture in the us-west-2 Region with a Recovery Time Objective (RTO) of 15 minutes and a Recovery Point Objective (RPO) of 5 minutes. Which combination of actions should the Solutions Architect take to meet these requirements? (Select TWO.)
- Convert the Amazon DynamoDB tables into DynamoDB global tables to enable continuous replication between the primary and secondary regions.Cevap
- Pre-deploy the web and application infrastructure in the secondary region with the ECS service scaled to minimum capacity, and configure Amazon Route 53 active-passive failover routing linked to health checks.Cevap
- CSet up a daily backup schedule for DynamoDB tables using AWS Backup, copy the backups to the secondary region, and implement an automated AWS Lambda function to restore the tables during failover.
- DConfigure Route 53 failover records pointing to the ALBs in both regions without health checks to prevent false positive failovers, and plan to manually update the routing weights during a regional outage.
- EDeploy the ECS Fargate tasks in private subnets in the secondary region, and route all outbound internet traffic through a single NAT Gateway in one Availability Zone to minimize standby operational costs.
Cevap
Convert the DynamoDB tables to DynamoDB global tables for replication, and pre-deploy the application tier in the secondary region at minimum capacity while configuring Route 53 active-passive failover with health checks.
To meet the RPO of 5 minutes, DynamoDB global tables are required as they provide sub-second replication latency across AWS regions. To meet the RTO of 15 minutes, a warm standby strategy must have the infrastructure pre-deployed and running at minimal scale in the secondary region, combined with automated Route 53 active-passive failover routing. The failover routing must be linked to health checks to enable automated diversion of traffic to the standby region in the event of an outage.
Adım Adım Çözüm
Anahtar Kavram
Designing multi-region disaster recovery architectures with tight RPO and RTO constraints requires automated database replication (such as DynamoDB global tables) and pre-deployed compute tiers with automated DNS routing failover (such as Route 53 health-checked active-passive failover) while maintaining high availability best practices.