Purge Data

2011-06-09 Thread Bahadur, Kamal
>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

RE: Re : Re : selecting data

2011-05-20 Thread Bahadur, 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