How to overcome S3 bucket DTO for large file downloads?

0

We have a s3 bucket containing our game installer of 12GB. We want people to download it obviously from a link. But the issue is since the data transfer out in S3 is expensive, the AWS bills are shooting up. Can someone suggest an alternative for S3 buckets or a different approach where users can download our installer, but can overcome this DTO fee which is insanely high in this case? Will using Cloudfront help reduce the costs significantly in this case?

2 Answers
2
profile pictureAWS
EXPERT
answered 8 months ago
  • Hi Didier, Thanks for your answer. I have already gone through the DTO costs of both S3 and CloudFront and the DTO costs are almost the same. I don't see any huge difference in DTO pricing of the two btw different regions. In such case, how will cloudfront help cut costs as while people are downloading from CDN, still DTO is happening every download. Any help would be appreciated. Thanks

1

Using CloudFront reduces Data Transfer costs for 3 reasons:

  1. DTO of CloudFront is less than DTO of S3
  2. CloudFront Free Tier covers the first 1 TB per month
  3. Data transfers from S3 to CloudFront are free

For example, S3 DTO (in N.Amer) for the first 10 TB/month costs $0.09 per GB while CloudFront DTO for the First 10TB/month (in N.Amer) is $0.085 per GB. Both services have lower $/GB as volume increases but the rate of decrease is the same making CloudFront always the most cost-effective approach.

Also, the cost for each edge location varies. So, specifying price classes may further reduce DTO costs by excluding CloudFront edge locations that have a higher cost.

AWS
answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions