Q19 — AWS SAA-C03 Ch.12

Question 19 of 100 | ← Chapter 12

Q819. An ecommerce company is running a seasonal online sale. The company hosts its website on Amazon EC2 instances spanning multiple Availability Zones. The company wants its website to manage sudden traffic increases during the sale.Which solution will meet these requirements MOST cost-effectively?

Correct Answer: D. Configure an Auto Scaling group to scale out as traffic increases. Create a launch template to start new instances from a preconfigured Amazon Machine Image (AMI).

Explanation

By configuring an Auto Scaling group to scale out as traffic increases, the company can dynamically add more EC2 instances to handle the sudden traffic spikes during the seasonal online sale. This ensures that the website can handle increased user demand without causing performance issues or downtime.Creating a launch template allows for easy and efficient provisioning of new instances. By using a preconfigured AMI, the instances can quickly be launched with the necessary configurations and software already in place, reducing the setup time and effort.This solution is cost-effective because it allows the company to scale its infrastructure only when necessary, in response to increased traffic. During periods of normal or low traffic, the Auto Scaling group can scale in, reducing the number of instances and corresponding costs.Options A and B do not provide dynamic scaling capabilities, which may result in either insufficient capacity or excessive and unnecessary capacity during different periods of the sale.Option C, using CloudFront and ElastiCache, can improve performance by caching content but may not be the most cost-effective solution for managing sudden traffic increases. It also introduces additional complexity and management overhead.Therefore, option D is the most cost-effective solution for managing sudden traffic increases during the seasonal online sale.