I assume you are using the leveled compaction strategy because you have 5mb
sstables and 5mb is the default size for leveled compaction.

To change this default, you can run the following in the cassandra-cli:

update column family cf_name with compaction_strategy_options = 
{sstable_size_in_mb: 256};

To force the current sstables to be rewritten, I think you'll need to issue a
nodetool scrub on each node. Someone please correct me if I'm wrong on this.

Faraaz

On Thu, Jul 11, 2013 at 11:34:08AM -0700, chandra Varahala wrote:
> Hello ,
> 
>  I have small size of sstables like 5mb around 2000 files. Is there a way i 
> can
> merge into  bigger size ?
> 
> thanks
> chandra

Reply via email to