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

posta 5 anni fa383 visualizzazioni
2 Risposte
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

con risposta 5 anni fa
0

Thanks for the answer.
Best regards
Thomas

con risposta 5 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande