As per the Cassandra docs Isolation in Cassandra provides row-level isolation. This means that a write to a row within a single partition on a single node is only visible to the client performing the operation.
Now I assume that in cassandra docs by write they means both Insert and Update.
My question is:
Consider a scenario where I am updating a row and at the same time other user is also updating the same row. Now because of isolation guarantee provided by Cassandra we can't be sure what will be final state of updated row.
Is my understanding about Isolation in Cassandra db as seen from the above statement correct?