unsubscribe

2010-12-10 Thread Massimo Carro
unsubscribe Massimo Carro www.liquida.it - www.liquida.com

Re: Quorum: killing 1 out of 3 server kills the cluster (?)

2010-12-10 Thread Timo Nentwig
On Dec 9, 2010, at 18:50, Tyler Hobbs wrote: If you switch your writes to CL ONE when a failure occurs, you might as well use ONE for all writes. ONE and QUORUM behave the same when all nodes are working correctly. That's finally a precise statement! :) I was wondering what to at least 1

Re: [RELEASE] 0.7.0 rc2

2010-12-10 Thread Nate McCall
RPM is available from http://rpm.riptano.com Artifacts for maven folks are available as well: http://mvn.riptano.com/content/repositories/riptano/ -Nate On Fri, Dec 10, 2010 at 11:00 AM, Eric Evans eev...@rackspace.com wrote: I'd have thought all that turkey and stuffing would have done more

Re: unsubscribe

2010-12-10 Thread Eric Evans
On Fri, 2010-12-10 at 10:17 +0100, Massimo Carro wrote: unsubscribe http://wiki.apache.org/cassandra/FAQ#unsubscribe -- Eric Evans eev...@rackspace.com

Estimate Keys - JMX

2010-12-10 Thread Dan Hendry
Recent versions of Cassandra (I noticed it in RC1, which is what I am using) add a very cool estimateKeys JMX operation for each column family. I have a quick question: Is the value an estimate for the number of keys on a particular node or for the entire cluster? I have a 5 node cluster

Re: Stuck with adding nodes

2010-12-10 Thread Daniel Doubleday
Thanks for your help Peter. We gave up and rolled back to our mysql implementation (we did all writes to our old store in parallel so we did not lose anything). Problem was that every solution we came up with would require at least on major compaction before the new nodes could join and our

cassandra database viewer

2010-12-10 Thread Liangzhao Zeng
Is there any database viewer in cassandra to browser the content of the database, like what DB2 or oracle have? Thanks, Liangzhao

hazelcast

2010-12-10 Thread B. Todd Burruss
http://www.hazelcast.com/product.jsp has anyone tested hazelcast as a distributed locking mechanism for java clients? seems very attractive on the surface.

Re: Memory leak with Sun Java 1.6 ?

2010-12-10 Thread Peter Schuller
 Over the past month or so, it looks like memory has slowly  been exhausted.  Both nodetool drain and jmap can't run, and  produce this error:     Error occurred during initialization of VM     Could not reserve enough space for object heap  We've got Xmx/Xms set to 4GB.  top shows free

Re: hazelcast

2010-12-10 Thread Germán Kondolf
Hi, I'm using it as a complement of cassandra, to avoid duplicate searches and duplicate content in a given moment in time. It works really nice by now, no critical issues, at least the functionallity I'm using from it. -- //GK german.kond...@gmail.com // sites http://twitter.com/germanklf

Re: hazelcast

2010-12-10 Thread Germán Kondolf
I don't know much about Zookeeper, but as far as I read, it is out of JVM process. Hazelcast is just a framework and you can programmatically start and shutdown the cluster, it's just an xml to configure it. Hazelcast also provides good caching features to integrate with Hibernate, distributed

Re: How do you implement pagination?

2010-12-10 Thread Joshua Partogi
So you're actually getting n+1 record? Correct? So this is the right way to do it? On Sat, Dec 11, 2010 at 1:02 PM, Tyler Hobbs ty...@riptano.com wrote: Yes, what you described is the correct way to do it. Your next slice will start with that 11th column. - Tyler On Fri, Dec 10, 2010 at

Re: hazelcast

2010-12-10 Thread Mubarak Seyed
How about KeptCollections (backs by ZooKeeper)? https://github.com/anthonyu/KeptCollections Thanks, Mubarak On Fri, Dec 10, 2010 at 12:15 PM, Germán Kondolf german.kond...@gmail.comwrote: I don't know much about Zookeeper, but as far as I read, it is out of JVM process. Hazelcast is just a

RE: How do you implement pagination?

2010-12-10 Thread Dan Hendry
Or you can just start at the 1 + nth id given ids must be unique (you don't have to specify an existing id as the start of a slice). You don't HAVE to load the n + 1 record. This (slightly) more optimal approach has the disadvantage that you don't know with certainty when you have reached the

Re: Running multiple instances on a single server --micrandra ??

2010-12-10 Thread Edward Capriolo
On Thu, Dec 9, 2010 at 10:40 PM, Bill de hÓra b...@dehora.net wrote: On Tue, 2010-12-07 at 21:25 -0500, Edward Capriolo wrote: The idea behind micrandra is for a 6 disk system run 6 instances of Cassandra, one per disk. Use the RackAwareSnitch to make sure no replicas live on the same node.

Re: Running multiple instances on a single server --micrandra ??

2010-12-10 Thread Edward Capriolo
On Fri, Dec 10, 2010 at 11:39 PM, Edward Capriolo edlinuxg...@gmail.com wrote: On Thu, Dec 9, 2010 at 10:40 PM, Bill de hÓra b...@dehora.net wrote: On Tue, 2010-12-07 at 21:25 -0500, Edward Capriolo wrote: The idea behind micrandra is for a 6 disk system run 6 instances of Cassandra, one

RE: Cassandra for Ad-hoc Aggregation and formula calculation

2010-12-10 Thread Dan Hendry
Perhaps other, more experienced and reputable contributors to this list can comment but to be frank: Cassandra is probably not for you (at least for now). I personally feel Cassandra is one of the stronger NoSQL options out there and has the potential to become the defacto standard; but its not