Eventual consistency is a guarantee that, in the absence of new updates, all replicas of a data item in a distributed system will eventually converge to the same value. This model, formalized by Werner Vogels, explicitly trades strong consistency for high availability and partition tolerance, as dictated by the CAP theorem. It is foundational to massively scalable systems like Amazon DynamoDB and Apache Cassandra, where temporary read-write conflicts are acceptable for performance.
