An organization runs a content management system (CMS) on a cluster of Amazon EC2 instances distributed across three Availability Zones. The CMS requires a shared storage solution that supports POSIX-compliant file system operations, allows concurrent read-and-write access from all instances, and automatically scales throughput as storage needs grow. Which two AWS storage configurations should a solutions architect select to meet these requirements? (Select TWO.)
- Create an Amazon Elastic File System (Amazon EFS) file system.Answer
- Configure EFS mount targets in the subnets of each Availability Zone where the EC2 instances are running.Answer
- CProvision an Amazon EBS gp3 volume and enable the Multi-Attach feature to share it across the EC2 instances.
- DDeploy an Amazon EBS io2 Block Express volume and attach it to all EC2 instances across the three Availability Zones.
- ECreate an Amazon S3 bucket and use AWS Storage Gateway Volume Gateway in cached mode to mount the storage locally on the instances.
Answer
Create an Amazon Elastic File System (Amazon EFS) file system and configure EFS mount targets in the subnets of each Availability Zone where the EC2 instances are running.
The correct architecture uses Amazon EFS, which provides a serverless network file system that supports simultaneous connections from EC2 instances in multiple Availability Zones. By placing EFS mount targets in the subnets of each Availability Zone where the instances reside, those instances can concurrently mount the file system over the network using standard NFS protocols.
Step-by-Step Solution
Key Concept
Amazon EFS provides concurrent, POSIX-compliant shared file storage across multiple Availability Zones via Mount Targets.
Estimated Time:50s