An enterprise healthcare platform hosts its critical medical imaging application in the `us-east-1` Region. The application runs on Amazon EC2 instances distributed across three Availability Zones (AZs) and requires concurrent, POSIX-compliant read/write access to shared storage for active patient scans. Active scans must be immediately resilient to AZ-level failures. Scans older than days must be transitioned to a lower-cost tier to optimize costs, but must remain accessible within an emergency retrieval window of under minutes. Additionally, a disaster recovery (DR) site in the `us-west-2` Region must be maintained using a pilot light strategy. The DR site has a target Recovery Point Objective (RPO) of minutes and a Recovery Time Objective (RTO) of minutes. Which storage architecture meets all of these requirements with the lowest operational complexity?
- Deploy a Multi-AZ Amazon EFS file system in us-east-1 and configure an EFS Lifecycle policy to transition files to EFS Archive after days. Enable EFS Replication to copy data to a destination EFS file system in us-west-2. Deploy pilot light EC2 instances in us-west-2 that remain stopped until a failover event, at which point they are started and mount the replicated EFS file system.Answer
- BDeploy a Multi-AZ Amazon EFS file system in us-east-1. Implement a custom script to move files older than days to Amazon S3 Glacier Flexible Retrieval using Standard retrieval. Configure EFS Replication to a destination EFS file system in us-west-2, and maintain stopped EC2 instances in us-west-2 to mount the replica during failover.
- CDeploy a Multi-AZ Amazon EFS file system in us-east-1 and configure an EFS Lifecycle policy to transition files to EFS Archive after days. Set up AWS Backup to copy EFS snapshots to us-west-2 once daily. Deploy pilot light EC2 instances in us-west-2 that remain stopped, and restore the EFS file system from the daily backup during a failover event.
- DDeploy a Multi-AZ Amazon EFS file system in us-east-1 and configure an EFS Lifecycle policy to transition files to EFS Archive after days. To implement disaster recovery, configure an Amazon RDS PostgreSQL DB instance with a Read Replica in us-west-2, and use the database replication stream to synchronize EFS mount points and file changes, promoting the replica during failover.