An energy utility company's smart grid platform processes real-time telemetry from millions of meters. The ingestion layer runs on a fleet of Amazon EC2 instances distributed across three Availability Zones. This tier requires a shared, highly available file storage layer that supports concurrent read/write access. Additionally, the company must retain raw data logs for years to meet regulatory compliance, with an administrative requirement to retrieve any archived log within minutes.
Which combination of AWS storage configurations will meet these requirements? (Select TWO.)
- Configure an Amazon Elastic File System (Amazon EFS) file system using the EFS Standard storage class to mount on the EC2 instances.Answer
- Store compliance logs in Amazon S3 and implement an S3 Lifecycle policy to transition objects to Amazon S3 Glacier Instant Retrieval.Answer
- CProvision an Amazon EBS gp3 volume with Multi-Attach enabled and mount it across all EC2 instances in the three Availability Zones.
- DStore compliance logs in Amazon S3 and implement an S3 Lifecycle policy to transition objects to Amazon S3 Glacier Deep Archive using standard retrieval.
- EDeploy an Amazon RDS Multi-AZ DB instance with read replicas in each Availability Zone to act as the shared file repository for the EC2 fleet.
Answer
The correct configurations are to mount an Amazon Elastic File System (Amazon EFS) file system using the EFS Standard storage class on the EC2 instances, and to store compliance logs in Amazon S3 with an S3 Lifecycle policy transitioning them to Amazon S3 Glacier Instant Retrieval.
The correct configurations involve using Amazon Elastic File System (Amazon EFS) and Amazon S3 Glacier Instant Retrieval. Amazon EFS provides a serverless, fully managed, shared file system that can be accessed concurrently by EC2 instances across multiple Availability Zones, ensuring high availability and resilience. For the archiving requirement, storing logs in Amazon S3 and transitioning them to Amazon S3 Glacier Instant Retrieval ensures the logs are cost-effectively stored for years while maintaining the ability to retrieve them in milliseconds, meeting the RTO of minutes.
Step-by-Step Solution
Key Concept
Designing a resilient, multi-AZ shared file storage layer combined with a compliant, fast-retrieval archive solution.
Estimated Time:2m 0s