Q11 — AWS SAA-C03 Ch.1

Question 11 of 65 | ← Chapter 1

Q11. A company is hosting a web application on AWS using a single Amazon EC2 instance that stores user- uploaded documents in an Amazon EBS volume.For better scalability and availability the company duplicated the architecture and created a second EC2 instance and EBS volume in another Availability Zone: placing both behind an Application Load Balancer. After completing this change users reported that each time they refreshed the website they could see one subset of their documents or the other but never all of the documents at the same time. What should a solutions architect propose to ensure users see all of their documents at once''

Correct Answer: C. Copy the data from both EBS volumes to Amazon EFS.Modify the application to save new documents to Amazon EFS.

Explanation

While both EBS and EFS offer great features, these two storage solutions are actually built for two completely different uses. EBS volumes are limited to a single instance, and, more importantly, then can only be accessed by one instance at a time. With EFS, you can have hundreds or thousands of instances accessing the file system simultaneously. This makes AWS EFS a great fit for any use that requires a decent performing centralized shared storage--uses like media processing or shared code repositories. user will never get all the documents at one place in other solutions. https://docs.aws.amazon.com/efs/ latest/ug/how-it-works.html#how-it-works-ec2