Re: Cassandra Data Archiving

2012-06-01 Thread Shubham Srivastava
Samal that's pretty smart stuff From: samal [mailto:samalgo...@gmail.com] Sent: Friday, June 01, 2012 11:24 AM To: user@cassandra.apache.org user@cassandra.apache.org Subject: Re: Cassandra Data Archiving I believe you are talking about HDD space, consumed by user generated data which is no

Re: About Composite range queries

2012-06-01 Thread Cyril Auburtin
ok sorry I thought columns inside a row had their keys hashed also So they are just putted as raw bytes thx 2012/6/1 aaron morton aa...@thelastpickle.com If you hash 4 composite keys, let's say ('A','B','C'), ('A','D','C'), ('A','E','X'), ('A','R','X'), you have only 4 hashes or you have

row_cache_provider = 'SerializingCacheProvider'

2012-06-01 Thread ruslan usifov
Hello I begin use SerializingCacheProvider for rows cashing, and got extremely JAVA heap grows. But i think that this cache provider doesn't use JAVA heap

Re: How can we use composite indexes and secondary indexes together

2012-06-01 Thread Vivek Mishra
Have a look at Kundera (https://github.com/impetus-opensource/Kundera). It does provide some sort of support (using Lucene) and allow you to deal with association in JPA way. -Vivek On Fri, Jun 1, 2012 at 6:54 AM, aaron morton aa...@thelastpickle.comwrote: If you want to do arbitrary complex

TimedOutException()

2012-06-01 Thread Oleg Dulin
We are using Cassandra 1.1.0 with an older Pelops version, but I don't think that in itself is a problem here. I am getting this exception: TimedOutException() at org.apache.cassandra.thrift.Cassandra$get_slice_result.read(Cassandra.java:7660) at

Re: 1.1 not removing commit log files?

2012-06-01 Thread Rob Coli
On Thu, May 31, 2012 at 7:01 PM, aaron morton aa...@thelastpickle.com wrote: But that talks about segments not being cleared at startup. Does not explain why they were allowed to get past the limit in the first place. Perhaps the commit log size tracking for this limit does not, for some

Re: Invalid Counter Shard errors?

2012-06-01 Thread Charles
Ok, will do. Thanks for the reply. C -- View this message in context: http://cassandra-user-incubator-apache-org.3065146.n2.nabble.com/Invalid-Counter-Shard-errors-tp7580163p7580189.html Sent from the cassandra-u...@incubator.apache.org mailing list archive at Nabble.com.

Secondary Indexes, Quorum and Cluster Availability

2012-06-01 Thread Jim Ancona
Hi, We have an application with two code paths, one of which uses a secondary index query and the other, which doesn't. While testing node down scenarios in our cluster we got a result which surprised (and concerned) me, and I wanted to find out if the behavior we observed is expected.

Re: TimedOutException()

2012-06-01 Thread Tyler Hobbs
On Fri, Jun 1, 2012 at 9:39 AM, Oleg Dulin oleg.du...@gmail.com wrote: Is my understanding correct that this is where cassandra is telling us it can't accomplish something within that timeout value -- as opposed to network timeout ? Where is it set ? That's correct. Basically, the

Re: tokens and RF for multiple phases of deployment

2012-06-01 Thread Chong Zhang
I followed the doc to add the new node. After the nodetool repair, the 'Load' on the new node in DC2 increased to 250M. But the 'Owns' col are still 50%, 50%, 0%, and I guess it's OK because the new token value is 1? Thanks, Chong On Thu, May 31, 2012 at 9:52 PM, aaron morton

nodes moving spontaneously

2012-06-01 Thread Curt Allred
We have a 10 node cluster (v0.7.9) split into 2 datacenters. Three times we have seen nodes move themselves to different locations in the ring. In each case, the move unbalanced the ring. In one case a node moved to the opposite side of the ring. Sometime after the first spontaneous move we

Re: nodes moving spontaneously

2012-06-01 Thread Tyler Hobbs
OpsCenter just periodically calls describe_ring() on different nodes in the cluster, so that's how it's getting that information. Maybe try running nodetool ring on each node in your cluster to make sure they all have the same view of the ring? On Fri, Jun 1, 2012 at 4:01 PM, Curt Allred

Connecting Javaee server to Cassandra

2012-06-01 Thread xsdt
I have an existing javaee application running on JBoss-7 and using postgresql which I now want to replace with Cassandra-1.1. Hours of Internet search and I can't find any useful information, example or hint on how to connect Javaee server i.e JBoss to Cassandra (or might it even be necessary

Re: TimedOutException()

2012-06-01 Thread Oleg Dulin
Tyler Hobbs ty...@datastax.com wrote: On Fri, Jun 1, 2012 at 9:39 AM, Oleg Dulin oleg.du...@gmail.com wrote: Is my understanding correct that this is where cassandra is telling us it can't accomplish something within that timeout value -- as opposed to network timeout ? Where is it set ?