Re: Disabling compaction

2014-10-10 Thread Parag Shah
<mailto:user@cassandra.apache.org>" mailto:user@cassandra.apache.org>> Subject: Re: Disabling compaction this is fixed in 2.0.8; https://issues.apache.org/jira/browse/CASSANDRA-7187<https://urldefense.proofpoint.com/v2/url?u=https-3A__issu

Re: Disabling compaction

2014-10-10 Thread Marcus Eriksson
ksson > Reply-To: "user@cassandra.apache.org" > Date: Thursday, October 9, 2014 at 11:56 PM > To: "user@cassandra.apache.org" > Subject: Re: Disabling compaction > > what version are you on? > > On Thu, Oct 9, 2014 at 10:33 PM, Parag Shah wrote: &

Re: Disabling compaction

2014-10-10 Thread Parag Shah
ay, October 9, 2014 at 11:56 PM To: "user@cassandra.apache.org<mailto:user@cassandra.apache.org>" mailto:user@cassandra.apache.org>> Subject: Re: Disabling compaction what version are you on? On Thu, Oct 9, 2014 at 10:33 PM, Parag Shah mailto:ps...@proofpoint.com>> wrot

Re: Disabling compaction

2014-10-09 Thread Marcus Eriksson
what version are you on? On Thu, Oct 9, 2014 at 10:33 PM, Parag Shah wrote: > Hi all, > > I am trying to disable compaction for a few select tables. Here is > a definition of one such table: > > CREATE TABLE blob_2014_12_31 ( > blob_id uuid, > blob_index int, > blob_chunk blob, >

Disabling compaction

2014-10-09 Thread Parag Shah
Hi all, I am trying to disable compaction for a few select tables. Here is a definition of one such table: CREATE TABLE blob_2014_12_31 ( blob_id uuid, blob_index int, blob_chunk blob, PRIMARY KEY (blob_id, blob_index) ) WITH bloom_filter_fp_chance=0.01 AND caching='KEYS_ONL

RE: Safely Disabling Compaction

2012-05-20 Thread Viktor Jevdokimov
in error, please contact the sender immediately and irrevocably delete this message and any copies. From: Vijay [mailto:vijay2...@gmail.com] Sent: Friday, May 18, 2012 06:09 To: user@cassandra.apache.org Cc: cassandra-u...@incubator.apache.org Subject: Re: Safely Disabling Compaction I would

Re: Safely Disabling Compaction

2012-05-20 Thread aaron morton
.lang.reflect.InvocationTargetException > ... > org.apache.cassandra.config.CFMetaData.createCompactionStrategyInstance(CFMetaData.java:839) >... 14 more > Caused by: java.lang.RuntimeException: The max_compaction_threshold cannot > be smaller than the min. > at > org.apache

Re: Safely Disabling Compaction

2012-05-17 Thread Vijay
t;at > > org.apache.cassandra.db.ColumnFamilyStore.setMaximumCompactionThreshold(ColumnFamilyStore.java:1740) >at org.apache. > > > Is there another solution for more safely enabling/disabling compaction? > > Thanks! > > -- > View this message

Re: Disabling compaction?

2011-03-18 Thread Jason Harvey
Got my answer from the #cassandra channel: I can set max_compaction_threshold to 0 to prevent compaction from occurring while I rebuild everything. Thanks! Jason Harvey On Mar 18, 5:45 pm, Jason Harvey wrote: > Hey everyone, > > Is there a way to prevent cassandra from compacting while it is >

Disabling compaction?

2011-03-18 Thread Jason Harvey
Hey everyone, Is there a way to prevent cassandra from compacting while it is running? I am having to do some scrub+sstable2json->json2sstable magic, and I don't want the data changing at all while I am in the process. Thanks, Jason