I didn’t get from the documentation what happens after a node fails during writes. I got the idea of quorum but what happens after “the write transaction” fails? For example:
- I inserted the record and chose the level of consistency equal to QUORUM.
- Assume QUORUM = 3 nodes and 2 of 3, or just 1 of 3 nodes wrote the date but the rest didn’t and failed.
- I got an error.
What happens with the record on the nodes which wrote it?
How can Casandra prevent propagating this row to other nodes through a replica synchronization?
Or if I get errors on writing it actually means that this row could appear within some time on each replica?