A logistics company is designing the database tier for a real-time package tracking system. The database must be compatible with MySQL, support automatic failover within the primary AWS Region with a Recovery Time Objective (RTO) of less than 30 seconds and a Recovery Point Objective (RPO) of 0, and provide a cross-Region disaster recovery (DR) solution with an RTO of under 15 minutes and an RPO of under 5 seconds. Which combination of AWS database configurations will meet these requirements? (Select TWO.)
- Deploy the primary database as an Amazon Aurora MySQL DB cluster with a writer instance in one Availability Zone and a reader instance in another Availability Zone.Answer
- Configure an Amazon Aurora Global Database by adding a secondary Aurora DB cluster in the recovery Region, utilizing storage-level replication.Answer
- CDeploy a single-instance Amazon RDS for MySQL database in the primary Region, and create a cross-Region read replica in the recovery Region to handle automatic failover.
- DUse Amazon Route 53 latency routing to automatically redirect database write traffic between the primary and recovery database endpoints during a failover event.
- EImplement a Pilot Light disaster recovery strategy by copying hourly database backups to the recovery Region and provisioning a scaled-down database instance that remains in a stopped state until a failover is initiated.
Answer
Deploying the primary database as an Amazon Aurora MySQL DB cluster with a writer and a reader instance in different Availability Zones, and configuring an Amazon Aurora Global Database by adding a secondary cluster in the recovery Region.
The correct combination consists of deploying the primary database as an Amazon Aurora MySQL DB cluster with a reader instance in a different Availability Zone (providing local Multi-AZ high availability with RTO < 30 seconds and RPO = 0 via shared storage replication) and configuring an Amazon Aurora Global Database with a secondary cluster in the recovery Region (meeting the RTO of under 15 minutes and RPO of under 5 seconds through low-latency storage-level replication).
Step-by-Step Solution
Key Concept
Amazon Aurora Multi-AZ deployment and Aurora Global Databases for high availability and low-RPO/RTO cross-Region disaster recovery.
Estimated Time:2m 30s