If we deleted a row with a consistency level of QUORUM and all our reads are using the same consistency level , how the deleted records comes again.
For example in a 3 node cluster with RF=3 and Consistency level = QUORUM.
I have deleted a row with consistency QUORUM and one node is failed at that time. So the failed node is unavailable to catch up this delete.
Let Cassandra to delete rows in each node while full compaction. After rows are deleted from these two nodes , consider the failed node become alive.
Since our consistency level is QUORUM we will get zero result from one of any replica node and the coordinator can assume that the row is already deleted and return null to client.
My doubt is why cassandra wait upto gc_grace_seconds for performing a complete delete of rows from nodes.