I'm having an issue while deleting row key in Cassandra. Whenever I delete Row Key all the columns contained by that RowKey are deleted but RowKey itself is not deleted. Can anybody tell me how to remove a rowkey, once it is inserted in columnfamily.
I'm looking forward to do that via thrift client.
This is a side effect of how distributed deletes work in Cassandra. From the Cassandra wiki page on distributed deletes:
Also take a look at this question on the FAQ: Why do deleted keys show up during range scans?