A pharmaceutical research company operates a clinical trial monitoring application. The application stores real-time patient telemetry data in an Amazon Aurora PostgreSQL DB cluster. The company requires a disaster recovery strategy across two AWS Regions. The database configuration must achieve a Recovery Point Objective (RPO) of less than seconds and a Recovery Time Objective (RTO) of less than minutes. Additionally, researchers in both regions need low-latency access to read the telemetry data. Which database configuration meets these requirements with the least operational complexity?
- Deploy an Amazon Aurora Global Database with the primary DB cluster in the main region and a secondary DB cluster in the recovery region.Cevap
- BDeploy an Amazon RDS for PostgreSQL database in the primary region, create a cross-region Read Replica in the recovery region, and configure the application to automatically promote the replica during an outage.
- CConfigure a Pilot Light disaster recovery strategy by deploying a stopped Amazon Aurora DB cluster in the recovery region, copying snapshots hourly, and restoring them during a failure.
- DDeploy independent Amazon Aurora DB clusters in both regions, and configure Amazon Route 53 latency-based routing to dynamically route write requests and handle failover.
Cevap
Deploy an Amazon Aurora Global Database with the primary DB cluster in the main region and a secondary DB cluster in the recovery region.
The correct database configuration is to deploy an Amazon Aurora Global Database. Aurora Global Databases use storage-based replication to copy data to secondary regions with a typical replication lag of less than second, fulfilling the RPO constraint of less than seconds. The secondary cluster allows read scaling with local low latency for remote users. In the event of a primary region outage, the secondary cluster can be promoted to a primary read-write cluster in less than minutes, meeting the RTO constraint.
Adım Adım Çözüm
Anahtar Kavram
Amazon Aurora Global Database replication and regional failover capabilities.
Tahmini Süre:1m 30s