A genetics research laboratory runs a high-performance gene sequencing application on Amazon EC2 instances across multiple Availability Zones in a primary AWS Region. The application requires shared, concurrent access to a common file system that can store petabytes of genomic data with consistent sub-millisecond latencies. The laboratory needs to establish a disaster recovery (DR) architecture in a secondary AWS Region. The DR plan requires a Recovery Point Objective (RPO) of 15 minutes and a Recovery Time Objective (RTO) of less than 15 minutes for the shared storage layer. Which storage architecture should a solutions architect design to meet these requirements with the lowest operational overhead?
- Deploy Amazon Elastic File System (Amazon EFS) in the primary Region using the Regional storage class. Enable EFS Replication to automatically replicate data to the secondary AWS Region. In the event of a disaster, mount the replicated EFS file system on EC2 instances in the secondary Region.Answer
- BStore the genomic files in an Amazon S3 bucket. Configure an S3 Lifecycle policy to transition the files to Amazon S3 Glacier Flexible Retrieval immediately, and configure S3 Cross-Region Replication (CRR) to replicate the Glacier objects. During a disaster recovery event, initiate standard retrievals to restore access to the EC2 instances.
- CImplement Amazon EFS in the primary Region. Configure AWS Backup to perform daily backups of the file system and copy them to the secondary Region. In the event of a failover, restore the EFS file system from the copied backup and mount it on the EC2 instances in the secondary Region.
- DStore the genomic files on Amazon EBS volumes attached to the EC2 instances. Deploy an Amazon Aurora PostgreSQL database cluster in the primary Region with a Read Replica in the secondary Region, and configure the database replication to synchronize the EBS volume block changes between Regions.
Answer
Deploy Amazon Elastic File System (Amazon EFS) in the primary Region using the Regional storage class and enable native EFS Replication to the secondary Region.
The correct option is the one proposing Amazon Elastic File System (Amazon EFS) with EFS Replication. EFS provides shared, concurrent access suitable for high-performance applications, and native cross-Region replication replicates changes to a destination file system within minutes, satisfying both the 15-minute RPO and the sub-15-minute RTO requirements with minimal operational overhead.
Step-by-Step Solution
Key Concept
Amazon EFS Replication provides native cross-Region replication for shared file systems, offering low RPO (minutes) and RTO (minutes) for disaster recovery without operational complexity.