
Answer-first summary for fast verification
Answer: Configure Amazon Route 53 and an Amazon S3 bucket for website hosting. Upload the game files to the S3 bucket. Use Amazon CloudFront for the website. Publish the game download URL for users to download the package.
The correct answer is C. Configuring Amazon Route 53 along with an Amazon S3 bucket for website hosting, and using Amazon CloudFront to distribute content is the most effective solution for improved download performance and low transfer costs. This setup leverages CloudFront’s global content delivery network (CDN) to cache the game files at edge locations worldwide, providing faster download speeds regardless of the user's location. S3 provides a scalable and durable storage solution, and the combination of these services addresses both performance and cost efficiency, making it the optimal choice for this scenario. Options A and B involve using EC2 instances and load balancers, which can be more complex and less cost-effective compared to the S3 and CloudFront solution. Option D, while also leveraging S3, does not use CloudFront and adds complexity with the 'Requester Pays' feature, which is unnecessary for this use case.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
A company has recently developed a new release of a popular video game, which is approximately 5 GB in size, and aims to make it available for public download. The company currently hosts downloads for existing releases from a publicly accessible, Linux-based FTP site located in their on-premises data center. Anticipating widespread global demand, the company seeks a solution that enhances download performance and minimizes transfer costs for users regardless of their geographical location.
A
Store the game files on Amazon EBS volumes mounted on Amazon EC2 instances within an Auto Scaling group. Configure an FTP service on the EC2 instances. Use an Application Load Balancer in front of the Auto Scaling group. Publish the game download URL for users to download the package.
B
Store the game files on Amazon EFS volumes that are attached to Amazon EC2 instances within an Auto Scaling group. Configure an FTP service on each of the EC2 instances. Use an Application Load Balancer in front of the Auto Scaling group. Publish the game download URL for users to download the package.
C
Configure Amazon Route 53 and an Amazon S3 bucket for website hosting. Upload the game files to the S3 bucket. Use Amazon CloudFront for the website. Publish the game download URL for users to download the package.
D
Configure Amazon Route 53 and an Amazon S3 bucket for website hosting. Upload the game files to the S3 bucket. Set Requester Pays for the S3 bucket. Publish the game download URL for users to download the package.