>From the documentation, I came to know that there is a limitation of
maximum number (2 billion) of columns that a column family can have. My
questions is, is there a way to purge the old columns when the number of
columns is nearing the 2 billion mark?
Thanks,
Kamal
This is how you create it dynamically:
KsDef ksdef = new KsDef();
ksdef.name = "ProgKS";
ksdef.replication_factor = 1;
ksdef.strategy_class =
"org.apache.cassandra.locator.RackUnawareStrategy";
List cfdefs = new ArrayList();
CfDef cfdef1 = new CfDef();
cfdef1.name = "ProgCF1";
cfdef1.ke