Hi,
If I delete every keys in a ColumnFamily in a Cassandra db using remove(key)
, then if I use get_range_slices
, rows are still there but without columns. How could I remove entire rows?
Thanks Tobia Loschiavo
Hi,
If I delete every keys in a ColumnFamily in a Cassandra db using remove(key)
, then if I use get_range_slices
, rows are still there but without columns. How could I remove entire rows?
Thanks Tobia Loschiavo
Just been having the same issue and I found that:
This has been fixed in 0.7 (https://issues.apache.org/jira/browse/CASSANDRA-1027). And backported to 0.6.3
This is also relevant: https://issues.apache.org/jira/browse/CASSANDRA-494
I tested with cassandra 0.63 and the problem is still the same. I don't think that bug fix is for getting rid of the deleted row ids. See
http://wiki.apache.org/cassandra/FAQ#range_ghosts
for more information.