Re: disk space issue

2014-10-01 Thread Dominic Letz
This is a shot into the dark but you could check whether you have too many snapshots laying around that you actually don't need. You can get rid of those with a quick nodetool clearsnapshot. On Wed, Oct 1, 2014 at 5:49 AM, cem cayiro...@gmail.com wrote: Hi All, I have a 7 node cluster. One

Re: disk space issue

2014-10-01 Thread Sumod Pawgi
In the past in such scenarios it has helped us to check the partition where cassandra is installed and allocate more space for the partition. Maybe it is a disk space issue but it is good to check if it is related to the space allocation for the partition issue. My 2 cents. Sent from my iPhone

Re: disk space issue

2014-10-01 Thread Nikolay Mihaylov
my 2 cents: try major compaction on the column family with TTL's - for sure will be faster than full rebuild. also try not cassandra related things, such check and remove old log files, backups etc. On Wed, Oct 1, 2014 at 9:34 AM, Sumod Pawgi spa...@gmail.com wrote: In the past in such

Re: Not-Equals (!=) in Where Clause

2014-10-01 Thread Sylvain Lebresne
Right, my bad, thanks Tyler for the correction. On Tue, Sep 30, 2014 at 5:44 PM, Tyler Hobbs ty...@datastax.com wrote: I think Sylvain may not have had his coffee yet. You can't use IF's in SELECT statements, but you can in INSERT/UPDATE/DELETE: UPDATE foo SET a = 0 WHERE k = 0 IF b != 0;

Regarding Cassandra-Stress tool

2014-10-01 Thread shahab
Hi, I am trying to benchmark our custom schema in Cassandra and I managed to run it. However there are couple of setting and issues which I couldn't find any solution/explanation for. I appreciate any comments. 1- The default number of warm-up iterations in stress tool is about 5. I would

Re: disk space issue

2014-10-01 Thread Ken Hancock
Major compaction is bad if you're using size-tiered, especially if you're already having capacity issues. Once you have one huge table, with default settings, you'll need 4x that huge table worth of storage in order for it to compact again to ever reclaim your TTL'd data. If you're running into

cassandra stress tools

2014-10-01 Thread shahab
Hi, I am trying to benchmark our custom schema in Cassandra and I managed to run it. However there are couple of setting and issues which I couldn't find any solution/explanation for. I appreciate any comments. 1- The default number of warm-up iterations in stress tool is about 5. I would

CASSANDRA-7649 : upgrade existing db to 2.0.10

2014-10-01 Thread Desimpel, Ignace
I deploy/distribute the Cassandra database as an embedded service allowing me to create a basic cassandra.yaml file based on the global cluster of machines (seeds, non-seeds, ports, disks, etc...). That allows me to configure and upgrade my own software and the cassandra software using the same

Re: disk space issue

2014-10-01 Thread cem
thanks for the answers! Cem On Wed, Oct 1, 2014 at 2:38 PM, Ken Hancock ken.hanc...@schange.com wrote: *https://github.com/hancockks/cassandra-compact-cf https://github.com/hancockks/cassandra-compact-cf* On Tue, Sep 30, 2014 at 5:49 PM, cem cayiro...@gmail.com wrote: Hi All, I have a 7

Cassaandra Java 8

2014-10-01 Thread Tony Anecito
Hi All, Has anyone done any performance testing of say Cassandra 2.1 using Java 8? Thanks,-Tony

Question about incremental repair

2014-10-01 Thread John Sumsion
If you only run incremental repairs, does that mean that bitrot will go undetected for already repaired sstables? If so, is there any other process that will detect bitrot for all the repaired sstables other than full repair (or an unfortunate user)? John... NOTICE: This email message is

Re: Question about incremental repair

2014-10-01 Thread Tyler Hobbs
Compressed SSTables store a checksum for every compressed block, which is checked each time the block is decompressed. I believe there's a ticket out there to add something similar for non-compressed SSTables. We also store the sha1 hash of SSTables in its own file on disk. On Wed, Oct 1, 2014

Re: Question about incremental repair

2014-10-01 Thread Robert Coli
On Wed, Oct 1, 2014 at 3:11 PM, Tyler Hobbs ty...@datastax.com wrote: Compressed SSTables store a checksum for every compressed block, which is checked each time the block is decompressed. I believe there's a ticket out there to add something similar for non-compressed SSTables. We also

Re: cassandra stress tools

2014-10-01 Thread Sumod Pawgi
Not a direct answer to your post but you can also take a look at YCSB. Sent from my iPhone On 01-Oct-2014, at 8:38 pm, shahab shahab.mok...@gmail.com wrote: Hi, I am trying to benchmark our custom schema in Cassandra and I managed to run it. However there are couple of setting and