How does Cassandra guarantee eventual consistency when concurrent writes happen?
For example, Client A writes to tableA.rowA.colA, while at the same time Client B writes to tableA.rowA.colA.
The coordinator nodes distribute the request to the replica nodes say NodeA NodeB and NodeC.
On NodeA, ClientA request arrives first. On NodeB, ClientB request arrives first. Then, will it be forever inconsistent?