- Buckets in all Regions have:
- Read-after-write consistency for PUTS of new objects
- Eventual consistency for overwrite PUTS and DELETES
- Read-after-write consistency lets you retrieve objects immediately after creating them
- Eventual consistency may return old data
Eventually Consistent Read | Consistent Read |
---|---|
Stale reads possible | No stale reads |
Lowest read latency | Potential higher read latency |
Highest read throughput | Potential lower read throughput |