RowMutation rm = new RowMutation(ksname, key.key);
for (int c = 0; c < columns; c++)
{
rm.add(new QueryPath(cfname, null, ByteBufferUtil.bytes("column" + c)), value, 0);
}
rm.apply();
store.forceBlockingFlush();
}
store.forceMajorCompaction();
LeveledCompactionStrategy strat = (LeveledCompactionStrategy)store.getCompactionStrategy();