What does eventual consistency mean?
- A Replicas converge to the same value given enough time without new updates
- B Data is never consistent
- C Consistency is checked hourly
- D Writes are always immediate
Answer
Replicas converge to the same value given enough time without new updates
It suits systems prioritising availability, but application logic must tolerate reading a stale value shortly after a write.





