Skip to content

S3 vs EFS pricing consideration

0

Hello, I have 400gb of data stored in S3 in eu-central-1 region. I would like to compare costs between:

  • Twice a month, download the data to efs in same region, keep it for 2 hours and delete it.
  • Download the data once in efs, and twice a month sync the data from s3.

S3 sets the pricing for GET operations for every 1000 requests but i don't know how many requests are necessary to download that amount of data.

1 Answer
0

To compare the costs between using S3 and EFS for your data needs, think about how you’ll be using each service. If you download 400 GB of data to EFS twice a month and keep it there for only 2 hours each time, you’ll primarily incur costs for S3 GET requests and temporary EFS storage. S3 charges per 1,000 GET requests, and while this could be minimal if you're downloading large chunks of data at once, it can add up if many small requests are made.

On the other hand, if you download the 400 GB once to EFS and then sync data twice a month, you’ll still face S3 costs for each sync operation, which could be significant if the process involves many requests. With EFS, you'd pay for continuous storage of 400 GB plus the cost of syncing data from S3.

In essence, using EFS might be more expensive over time due to higher storage costs, while frequent S3 GET requests could also lead to notable expenses. Your decision should hinge on the balance between these costs and how often and in what manner you access the data.

EXPERT
answered a year 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.