I am new to Cassandra DB. I would like to know write sequence of Cassandra DB. Please clarify which approach Cassandra follow
Sequence Approach:
client -> Commit log -> Mem table -> response back to client
Parallel Approach:
Client -> ( commit and Mem table writes in parallel ) -> response back to client
Query: 1. if Cassandra follows sequence , how it will be fast as writing in two table sequence ?
- if Cassandra follows parallel, if write failure in commit or mem table what is response back to client.