A digital marketing firm is deploying a content management application on Amazon EC2 instances. The application has two specific storage requirements:
1. A shared file system that allows multiple EC2 instances to simultaneously read and write web assets.
2. A high-performance, temporary block storage volume for processing intermediate scratch data that does not need to persist beyond the lifecycle of the instance.
Which two AWS storage options should the developer select to meet these requirements?
- Amazon Elastic File System (Amazon EFS)Answer
- Amazon EC2 Instance StoreAnswer
- CAmazon Elastic Block Store (Amazon EBS)
- DAmazon S3 Glacier Deep Archive
- EAWS Storage Gateway
Answer
The correct options are Amazon Elastic File System (Amazon EFS) and Amazon EC2 Instance Store.
The system requires a shared file system for concurrent access, which is solved by Amazon Elastic File System (Amazon EFS). It also requires temporary, high-performance block storage, which is perfectly matched by Amazon EC2 Instance Store because the data is transient and tied to the instance's lifecycle.
Step-by-Step Solution
Key Concept
Selecting appropriate AWS storage services (EFS for shared file systems, Instance Store for temporary high-performance block storage) based on application requirements.
Estimated Time:1m 30s