Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

S3 US Standard region

According to this post S3 US-Standard replicates objects in US-Standard to several regions: Amazon S3 Object Replication However, the most recent documentation says that US Standard is just an alias for the Virginia region. Are S3 objects still replicated across multiple regions in US Standard, and if yes where can I read more about it?

like image 246
Nutel Avatar asked Apr 04 '16 21:04

Nutel


1 Answers

US-Standard is an old naming convention, it was used at the time there was only one US region. US-Standard has now be renamed US-East-1 to be consistent with other naming schemes.

http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region :

Amazon S3 renamed the US Standard region to the US East (N. Virginia) region to be consistent with AWS regional naming conventions. There is no change to the endpoint and you do not need to make any changes to your application.

Also, consistency model has been modified to align with consistency model provided by other S3 regions.

https://aws.amazon.com/s3/faqs/

Amazon S3 buckets in all Regions provide read-after-write consistency for PUTS of new objects and eventual consistency for overwrite PUTS and DELETES.

In the old times where us-east was the only region in the US, S3's US Standard used coast-coast replicate of data, as per
https://forums.aws.amazon.com/message.jspa?messageID=497527 (2013)
https://forums.aws.amazon.com/message.jspa?messageID=262345 (2011)

Nothing in the current documentation indicates that these mechanisms are still used today (2016)

like image 135
Sébastien Stormacq Avatar answered Sep 28 '22 06:09

Sébastien Stormacq