5 questions to test your understanding
Two replicas both receive updates A and B. Replica 1 receives A then B; Replica 2 receives B then A. Under plain eventual consistency (but not SEC), what is guaranteed?
What property of CRDTs mathematically guarantees that replicas satisfying SEC will converge to the same state?
Under strong eventual consistency, two replicas that have received the same set of updates will converge to identical states even if those updates arrived in different orders.
To maintain strong eventual consistency, replicas should refuse concurrent writes during a network partition and wait for the partition to heal before accepting new updates.
Explain why plain eventual consistency is insufficient for collaborative text editing, and how strong eventual consistency addresses the gap.