Skip to content

Glacier Deep Archive Storage - Content Backup process & Pricing

0

Hi,

My requirement is :

  • Upload 50 TB of Data to Glacier Deep Archive Storage
  • the most cost effective method
  • Region : Asia Pacific (Mumbai)

The data to be uploaded had following specification :

  1. File Type : fbx/exr/ word/ excel/pnf/pdf/etc
  2. No of objects : No idea about this and not possible to calculate as the data is of huge size
  3. File size : 36kb to 200 gb

I did a trial :

  1. Uploaded two files and deleted one
  2. The bill that it shows isn't making sense with alot of breakdowns. Not able to understand

Require help with :

  1. The best process to upload my 50 TB data to Deep Archive storage so that monthly cost remains minimal
  2. Monthly Pricing and breakdown : What will the monthly bill look like for the data specified above and the amount? The pricing calculator is confusing for someone not familiar with AWS.
  3. Understanding of my bill -

I am a non technical person, so would need help with the steps for uploading the content to storage.

Also how to attach screenshots.

Hoping for a solution here, Shabnam

asked 3 years ago457 views

1 Answer
0

Uploading data :

You can use either the AWS Console or AWS CLI to take advantage of multipart uploads for large files and send your files directly to S3 Glacier Deep Archive Storage

Note that objects stored in Glacier cannot be accessed immediately and must be restored first, which can take several hours depending on the retrieval option you choose.

S3 provides alternative Glacier storage classes for more frequent access needs .These classes offer a wide range of retrieval times (milliseconds - 48 hours) for customers. https://aws.amazon.com/s3/storage-classes/glacier/

Option 1 - Upload directly to Glacier via console:

  1. Log in to AWS Console and go to S3
  2. Navigate to your bucket
  3. Click "Upload"
  4. Add your files (you can drag and drop)
  5. Click "Additional upload options"
  6. Under "Storage class" select Glacier Deep Archive
  7. Complete the upload

Option 2 - Upload directly to Glacier via CLI: Example of uploading a directory into Glacier Deep Archive:

aws s3 cp /local/directory s3://your-bucket/backup/ --recursive --storage-class DEEP_ARCHIVE

You also have the option of using AWS DataSync if you're transferring from on-premises or another region. https://docs.aws.amazon.com/datasync/latest/userguide/tutorials.html

Pricing for Mumbai:

S3 Glacier Deep Archive *** - For long-term data archiving that is accessed once or twice in a year and can be restored within 12 hours

All Storage / Month $0.002 per GB

For 50 TB (51,200 GB):

  • Storage: 51,200 GB * $0.002 = $102.4/month
  • PUT requests: Approximately $2.5 (assuming 50,000 files)
  • Data transfer IN: Free - Metadata storage: Approximately $0.16 (40 KB per object)

Estimated total: Around $105 per month Note: This is a basic estimate. Actual costs may vary based on exact usage.

Some tips to minimize costs:

  1. Avoid frequent retrievals from Deep Archive
  2. Don't delete files within 180 days of upload (to avoid early deletion fees)
  3. Use bulk retrieval tier when you need to retrieve files.
  4. Consider aggregating small files before upload
  5. Monitor your storage using AWS Cost Explorer

For billing questions, I’d direct you to the AWS S3 pricing page https://aws.amazon.com/s3/pricing/?nc=sn&loc=4 for the most accurate and up-to-date pricing information. This is because pricing can vary based on multiple factors and changes over time.

Cost Considerations

  • PUT requests: $0.05 per 1,000 requests


  • Storage overhead charges – Each archived object requires 40 KB of additional metadata. This includes 32 KB of metadata required to identify and retrieve your data, which is charged at the default rate for that storage class. An additional 8 KB data is required to maintain the user-defined name and metadata for archived objects, and is charged at the S3 Standard rate. 

If you are archiving small objects, consider these storage charges. Also consider aggregating many small objects into a smaller number of large objects to reduce overhead costs.


  • Multipart upload pricing – Objects in S3-storage-class-glacier; and S3 Glacier Deep Archive are billed at S3 Standard storage class rates when you upload them using multipart uploads. For more information, see Multipart upload and pricing.


  • Minimum 30 day storage charges – S3 Glacier Flexible Retrieval and S3 Glacier Deep Archive are long-term archival solutions. The minimal storage duration period is 90 days for the S3 Glacier Flexible Retrieval storage class and 180 days for S3 Glacier Deep Archive. Deleting data that is archived to these storage classes doesn't incur charges if the objects you delete are archived for more than the minimal storage duration period. If you delete or overwrite an archived object within the minimal duration period, Amazon S3 charges for the remainder of that duration.

Objects deleted prior to the minimum storage duration incur a pro-rated charge equal to the storage charge for the remaining days.


  • Data retrieval charges – When you restore archived objects to S3 Glacier Flexible Retrieval and S3 Glacier Deep Archive there are per-request data retrieval charges. These charges vary based on the retrieval tier you choose when you initiate a restore. For pricing information, see Amazon S3 pricing


To better understand your bill you can visit the Billing and Cost Management home in the AWS console. Here you can use Cost Explorer to visualize the cost breakdown. https://aws.amazon.com/aws-cost-management/aws-billing/

  1. Log into AWS Console
  2. Go to "Billing and Cost Management"
  3. Use "Cost Explorer" to visualize your costs
AWS

answered 2 years 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.