I have a column family like this -
create column family TEST
with key_validation_class = 'UTF8Type'
and comparator = 'UTF8Type'
and default_validation_class = 'UTF8Type'
and column_metadata = [ {column_name : 'date', validation_class : DateType}];
And it's a dynamic column family which means we can insert lot of columns and there data at runtime... We want to keep only one column and its data in the above column family.. Which means we want to delete all other columns except that above one column and its data from this column family...
What is the best way to do this? Should we write a simple program to do this or there is any other way by which we can delete all the columns except that one column which I need and its data..
Thanks..