Eventual consistency is a consistency model used in distributed computing where, if no new updates are made to a given data item, all accesses to that item will eventually return the last updated value. This model prioritizes high availability and partition tolerance over strong, immediate consistency, allowing replicas in different parts of the system to diverge temporarily. It is a core concept within the CAP theorem, representing the typical trade-off chosen for scalable, fault-tolerant systems like distributed databases and multi-agent networks.
