62.8k views
2 votes
S3 has what consistency model for PUTS of new objects?

A. Write After Read Consistency
B. Usual Consistency
C. Eventual Consistency
D. Read After Write Consistency

User Persiflage
by
7.1k points

1 Answer

6 votes

Final answer:

Amazon S3 follows a read-after-write consistency model for PUTS of new objects, where the object is immediately accessible after the upload.

Step-by-step explanation:

Amazon S3 (Simple Storage Service) provides read-after-write consistency for PUTS of new objects. This means that once a new object has been uploaded (PUT operation), it can be retrieved (GET operation) immediately. This consistency model ensures that when a new file is written to S3, it will be available for access as soon as the write is acknowledged. This model contrasts with eventual consistency, which is used for overwrite PUTS and DELETES, where changes might not be immediately visible.

User ToYonos
by
8.1k points