Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Aws s3 reduced redundancy costs the same as standard?

I typed in the same parameters on s3 calculator for rss and standard and the result seems the same. I put in 10M put requests and 10M get requests for both and they came out to $5.38 under us-east zone.

Am i missing something here? Thank you in advance.

like image 232
shle2821 Avatar asked Aug 09 '16 07:08

shle2821


People also ask

What is the reduced redundancy option in Amazon S3?

Reduced Redundancy Storage (RRS) is an Amazon S3 storage option that enables customers to store noncritical, reproducible data at lower levels of redundancy than Amazon S3's standard storage.

What are the two types of redundancy in S3?

The Reduced Redundancy Storage Class Overview Currently Amazon S3 provides two storage options: STANDARD and REDUCED_REDUNDANCY. If you are storing your file with STANDARD storage option, Amazon S3 guarantes 99.999999999% durability and to sustain the concurrent loss of data in two facilities.

What is the difference between Amazon Glacier vs Amazon S3 standard?

Amazon S3 is a durable, secure, simple, and fast storage service, while Amazon S3 Glacier is used for archiving solutions. Use S3 if you need low latency or frequent access to your data. Use S3 Glacier for low storage cost, and you do not require millisecond access to your data.

What is the most cost-effective storage option in AWS?

The Amazon S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective access tier when access patterns change.


1 Answers

The requests do cost the same for both types of storage it costs exactly the same.

The pricing differences come down to cost per GB. For example storing 100GB in standard S3 storage will cost you $3. Storing the same amount of data in reduced redundancy will cost you $2,4.

Pricing for standard can be found here: https://aws.amazon.com/s3/pricing/.

While pricing for Reduced can be found here: https://aws.amazon.com/s3/reduced-redundancy/.

Update: As the comment below points out, now the the price for Standard storage is $0,023 per GB, so 100GB would cost $2,4 while the Reduced stayed at the same cost.

Now there's another option called Standard - Infrequent Access Storage, which has the same benefits of S3 Standard and has a cost of 0.0125 per GB, so storing 100GB on tier would cost $1,25, but there are some caveats to watch for:

  • Minimum object size of 128KB.
  • Minimum storage duration of 30 days (if you delete the object before you'll be billed for 30 days).
  • A per GB retrieval fee ($0.01 per GB) similar to the one present in AWS Glacier.
like image 187
Marc Lopez Rubio Avatar answered Dec 18 '22 08:12

Marc Lopez Rubio