If we add multiple statement with same primary key as below (col1 and col2 are primary key):-
insert into table (col1,col2,col3) values ('AAA','BBB', {10,20})
insert into table (col1,col2,col3) values ('AAA','BBB', {10,30})
Here, first entry will become tombstone?
When I tried these two statements and after nodetool flush, I used sstabledump utility to check what it shows, but in that no mention of the first statement. What and how exactly this operation gets performed?
When I checked with tracing on, it was showing 0 tombstone scans and I was confused at below line:-
Skipped 3/7 non-slice-intersecting sstables.
what it does indicate?
Thanks.