Re: batch_mutate silently failing in Cassandra

2010-09-07 Thread Jonathan Ellis
QUORUM of ReplicationFactor=1 is 1. All consistency levels should work fine as long as RF <= node count. If you are seeing it work at CL.ONE but not at QUORUM then that is probably a bug. On Tue, Sep 7, 2010 at 7:36 PM, Lucas Nodine wrote: > Partially Resolved... > > Taking your advise (both Jo

Re: batch_mutate silently failing in Cassandra

2010-09-07 Thread Lucas Nodine
Partially Resolved... Taking your advise (both Jonathan and Aaron's) I was able to track the problem down. The issue was that running insert (also batch_mutate) and using a consistencylevel of quorum on a cluster of 1 server with a replication factor of 1 does not work. Well, that is not accurat

Re: batch_mutate silently failing in Cassandra

2010-09-07 Thread Lucas Nodine
Jonathan, I have done it successfully with insert, but I have not tried it with mutate. I'll give that a try tonight. Thanks On Tue, Sep 7, 2010 at 2:54 PM, Jonathan Ellis wrote: > I would try to get a single hard-coded column to insert, before doing > something more complex. > > You can also

Re: batch_mutate silently failing in Cassandra

2010-09-07 Thread Aaron Morton
Turn up the logging to DEBUG level (in config/log4-server.properties) and check that you are sending what you think you are. AaronOn 08 Sep, 2010,at 02:11 AM, Lucas Nodine wrote:Hello all, I have posted the following to Stackoverflow, but thought that I would also try the list.  If you have any s

Re: batch_mutate silently failing in Cassandra

2010-09-07 Thread Jonathan Ellis
I would try to get a single hard-coded column to insert, before doing something more complex. You can also enable debug logging on the server and see if that matches what you want the client to be doing. On Tue, Sep 7, 2010 at 9:11 AM, Lucas Nodine wrote: > Hello all, > > I have posted the follo

batch_mutate silently failing in Cassandra

2010-09-07 Thread Lucas Nodine
Hello all, I have posted the following to Stackoverflow, but thought that I would also try the list. If you have any suggestions, please let me know I am working with Cassandra 0.6.5 using the thrift interface. I am trying to use the batch_mutate method call, however, when I execute it, I receiv