Eventual Consistency
A common consistency model in NoSQL, where data updates may not be immediately reflected across all replicas, prioritizing availability.
📜
The statement of the theorem
Consider a distributed system with replicas, , and a state variable . Let be the state of replica at time . The system is eventually consistent if, for any write operation applied at time , the state converges to the final state for all as . Formally, there exists a time such that for all and all , . This convergence is guaranteed despite potential network partitions.
Source: Wikipedia