Medium1 markMultiple Choice
AWS SAA-C03 · Question 64 · Domain 4.4: Network Cost Optimization
A company hosts a popular public website on Amazon EC2 instances behind an Application Load Balancer (ALB). The website serves a large amount of static media files (images and videos). The company's AWS bill shows high 'Data Transfer Out to Internet' costs. What is the MOST cost-effective way to reduce these data transfer costs?
A company hosts a popular public website on Amazon EC2 instances behind an Application Load Balancer (ALB). The website serves a large amount of static media files (images and videos). The company's AWS bill shows high 'Data Transfer Out to Internet' costs. What is the MOST cost-effective way to reduce these data transfer costs?
Answer options:
A.
Move the static media files to Amazon S3 and serve them directly from S3.
B.
Implement Amazon CloudFront and configure the ALB as the origin.
C.
Enable compression on the Application Load Balancer.
D.
Use AWS Global Accelerator to route the traffic.
How to approach this question
To reduce Data Transfer Out costs for web traffic, use CloudFront.
Full Answer
B.Implement Amazon CloudFront and configure the ALB as the origin.✓ Correct
Implement Amazon CloudFront and configure the ALB as the origin.
Amazon CloudFront is a Content Delivery Network (CDN). By caching static assets at edge locations, you reduce the load on your EC2 instances. More importantly for cost, data transfer from AWS origins (like EC2, ALB, or S3) to CloudFront is free, and CloudFront's data transfer out to the internet pricing is often lower than EC2's.
Common mistakes
Thinking moving to S3 solves the *data transfer* cost. S3 solves *storage* cost, but CloudFront solves *data transfer* cost.
Practice the full AWS SAA-C03 Practice Exam 1
65 questions · hints · full answers · grading
More questions from this exam
Q01A company has multiple AWS accounts in an AWS Organizations organization. The security team wants...MediumQ02A solutions architect is designing an application that will run on Amazon EC2 instances. The appl...EasyQ03A company wants to implement a federated identity solution for its employees to access the AWS Ma...MediumQ04A mobile application needs to access Amazon DynamoDB directly to read user-specific data. The app...HardQ05A company is hosting a web application on Amazon EC2 instances. The application connects to an Am...Medium
Expert