Cassandra - conflict resolution for mixed column updates with identical timestamp
问题 I would like to know which write wins in case of two updates with the same client timestamp. Initial data: KeyA: { col1:"val AA", col2:"val BB", col3:"val CC"} Client 1 sends update: KeyA: { col1:"val C1", col2:"val B1"} Client 2 sends update: KeyA: { col1:"val C2", col2:"val B2"} Both updates have the same timestamp . What result will be returned by row query on KeyA ? { col1:"val C1", col2:"val B1", col3:"val CC"} - Clint 1 wins { col1:"val C2", col2:"val B2", col3:"val CC"} - Client 2 wins