S3 Object locking and eventual consistency?

0

Hi,

According to the S3 documentation then S3 offers eventual consistency for DELETES.
Thus you may be able to down the content of a key shortly after it has been deleted.

But, what if you set object locking on a key by using setObjectRetention.
If setObjectRetention succeeds, can it then be assumed that no delete on the key (or a versionid of they key) was in progress being propagated through out S3?

Best regards
Thomas

asked 5 years ago372 views
2 Answers
0

Hi Thomas,

S3 Object Lock is different from object locking in the context of consistency.

The former is an S3 feature that allows you to store objects using a write-once-read-many (WORM) model. S3 Object Lock prevent an object from being deleted or overwritten for a fixed amount of time or indefinitely. See documentation <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">here</a>. This is different from object locking in the context of consistency i.e. if two PUT requests are simultaneously made to the same key, the request with the latest time stamp wins. Amazon S3 does not currently support Object Locking. See documentation <a href ="https://docs.aws.amazon.com/AmazonS3/latest/dev/Introduction.html">here</a>.

Just like delete requests, Object Lock requests are also eventually consistent. As a result, an object lock request submitted at about the same time as a delete request, may not block that delete from occurring.

I hope this answers your question.

Edited by: ruhi-aws on Aug 14, 2019 10:50 AM

Edited by: ruhi-aws on Aug 14, 2019 10:51 AM

answered 5 years ago
0

Thanks for the answer.
Best regards
Thomas

answered 5 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.

Guidelines for Answering Questions