A medical imaging enterprise hosts a PACS (Picture Archiving and Communication System) on AWS. The application runs on a fleet of auto-scaled Amazon EC2 instances across multiple Availability Zones in the primary Region. The architecture requires:
- An Amazon RDS for PostgreSQL database hosting clinical transaction metadata.
- A shared storage layer containing raw DICOM image files (average size ) that must be read and written concurrently by the EC2 fleet.
The enterprise must design a disaster recovery (DR) architecture in a secondary AWS Region. The DR plan requires a Recovery Point Objective (RPO) of under and a Recovery Time Objective (RTO) of under for both the database and the image files.
Which architectural design meets these requirements while minimizing recovery time?
- Deploy the primary database in a Multi-AZ configuration, and create a cross-Region read replica in the DR Region to be promoted upon failover. Store the DICOM images on a Regional Amazon Elastic File System (Amazon EFS) file system, and configure Amazon EFS Replication to replicate the file system to the DR Region. Deploy a Warm Standby environment in the DR Region with a pre-provisioned, scaled-down EC2 fleet.Answer
- BDeploy the primary database in a Multi-AZ configuration, and create a cross-Region read replica in the DR Region. Store the DICOM images on a Regional Amazon EFS file system, and use an AWS Backup lifecycle policy to transition and replicate the EFS backups to an Amazon S3 Glacier Flexible Retrieval vault in the DR Region. Deploy a Warm Standby environment in the DR Region.
- CDeploy the primary database in a Multi-AZ configuration, and create a cross-Region read replica in the DR Region. Store the DICOM images on a Regional Amazon EFS file system, and configure Amazon EFS Replication to the DR Region. Deploy a Pilot Light environment in the DR Region with all EC2 application instances stopped, relying on automated scripts to start the instances immediately upon failover.
- DDeploy a Single-AZ primary database with a local read replica in a different Availability Zone configured as the primary automatic failover target. Store the DICOM images on Amazon EBS General Purpose SSD (gp3) volumes attached to the EC2 instances, and configure EBS snapshot replication to the DR Region. Deploy a Warm Standby environment in the DR Region.