A financial firm is migrating a compliance application to AWS. The application has two key storage requirements:
1. It needs a persistent block storage volume to host a transactional database run on a single Amazon EC2 instance.
2. It needs a shared file storage solution that can be mounted concurrently by multiple EC2 instances across different Availability Zones to share application configuration files.
Which two AWS storage services should the firm select to meet these requirements? (Select TWO.)
- Amazon Elastic Block Store (Amazon EBS)Answer
- Amazon Elastic File System (Amazon EFS)Answer
- CAmazon Simple Storage Service (Amazon S3)
- DAmazon EC2 Instance Store
- EAmazon S3 Glacier Flexible Retrieval
Answer
Amazon Elastic Block Store (Amazon EBS) and Amazon Elastic File System (Amazon EFS)
The correct options are Amazon Elastic Block Store (Amazon EBS) and Amazon Elastic File System (Amazon EFS). Amazon EBS offers low-latency, persistent block storage volumes that attach to a single EC2 instance, matching the requirements of transactional databases. Amazon EFS offers a managed, scalable network file system that supports the NFS protocol, allowing multiple EC2 instances to read and write configuration files concurrently across multiple Availability Zones.
Step-by-Step Solution
Key Concept
Distinguishing between block storage (EBS), file storage (EFS), and object storage (S3) based on application access patterns and persistence requirements.