
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
An ecommerce company wants to launch a one-deal-a-day website on AWS. Each day will feature exactly one product on sale for a period of 24 hours. The company wants to be able to handle millions of requests each hour with millisecond latency during peak hours.
Which solution will meet these requirements with the LEAST operational overhead?
A
Use Amazon S3 to host the full website in different S3 buckets. Add Amazon CloudFront distributions. Set the S3 buckets as origins for the distributions. Store the order data in Amazon S3.
B
Deploy the full website on Amazon EC2 instances that run in Auto Scaling groups across multiple Availability Zones. Add an Application Load Balancer (ALB) to distribute the website traffic. Add another ALB for the backend APIs. Store the data in Amazon RDS for MySQL.
C
Migrate the full application to run in containers. Host the containers on Amazon Elastic Kubernetes Service (Amazon EKS). Use the Kubernetes Cluster Autoscaler to increase and decrease the number of pods to process bursts in traffic. Store the data in Amazon RDS for MySQL.
D
Use an Amazon S3 bucket to host the website's static content. Deploy an Amazon CloudFront distribution. Set the S3 bucket as the origin. Use Amazon API Gateway and AWS Lambda functions for the backend APIs. Store the data in Amazon DynamoDB.
Explanation:
Option D is the correct answer because it provides the LEAST operational overhead while meeting all requirements:
Option A: Storing order data in S3 is inappropriate for transactional data. S3 is for object storage, not for database operations with ACID properties.
Option B: EC2-based solution requires significant operational overhead - managing Auto Scaling groups, patching OS, monitoring instances, managing RDS databases.
Option C: EKS/Kubernetes requires even more operational overhead than EC2 - managing container orchestration, cluster scaling, pod management, etc.
This architecture perfectly matches the "one-deal-a-day" use case where traffic can spike dramatically during peak hours, requiring automatic scaling with minimal operational effort.