We have counter column family , something like that: create column family visits_counter_cf with key_validation_class =UTF8Type and comparator = 'CompositeType(LongType, LongType, UTF8Type)' and default_validation_class=CounterColumnType;
When we delete a row from this column family (we using Hector) in the CLI it looks deleted But then when we increment counters in the same row (the same rowkey) it continues increment the counters from the previous counter values (the values before deletion). Please help to understand this behavior,