AWS recovery of its highly available services like S3 from an AZ crash.

0

From the documentation its mentioned For AWS S3 Standard tier, the data is replicated accross multiple AZ's. In case of an availability zone (AZ) crash, a) how soon does the AWS make the data available from another AZ where the data is replicated? b) Does the customer face any temporary outage in accessing the objects? c) Do we lose any data?

Das
asked 6 months ago1613 views
1 Answer
2

Answering your last question first - Do we lose any data? - S3 Standard has eleven 9s durability, which basically means if you have a billion objects you can expect to lose one object every hundred years https://aws.amazon.com/s3/storage-classes/#General_purpose

The answers to your other questions are linked - suppose your bucket is in us-east-1. This means every object in that bucket is replicated across a minimum of three AZs in that region (and as us-east-1 has six zones it's probably going to be replicated across them all).

When you access an object in a bucket normally, you don't know which AZ that copy of the object lives in, and you don't try and retrieve an object from us-east-1a or 1b or 1c and so on. All you know is you're accessing the object in a bucket that lives in us-east-1. So if an entire AZ goes down, the S3 service will just serve you out a copy of the object from another AZ that's still available. And you shouldn't face any increased time in accessing the object.

profile picture
EXPERT
Steve_M
answered 6 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