Re: : Read a negative frame size (-2113929216)!

2014-04-26 Thread Chris Lohfink
Try running with "-version:class" added to your jvm options on your client. Can you give the output for the jar files for thrift/cassandra? (i.e. cassandra, cassandra-thrift, and thrift lib) --- Chris Lohfink On Apr 25, 2014, at 11:30 PM, Vivek Mishra wrote: > TSocket socket = n

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Vivek Mishra
Just to add, it works fine with Cassandra 1.x and Datastax 1.x -Vivek On Sat, Apr 26, 2014 at 10:02 AM, Vivek Mishra wrote: > Yes i know. But i am not sure why is it failing, simply having Thrift jar > and cassandra-thrift in classpath doesn't fails. But as soon as i get > datastax one in class

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Vivek Mishra
Yes i know. But i am not sure why is it failing, simply having Thrift jar and cassandra-thrift in classpath doesn't fails. But as soon as i get datastax one in classpath, it started failing. Point is even if i am having both in classpath, switching b/w thrift and Datastax should work. -Vivek On

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Vivek Mishra
TSocket socket = new TSocket(host, Integer.parseInt(port)); TTransport transport = new TFramedTransport(socket); TProtocol protocol = new TBinaryProtocol(transport, true, true); cassandra_client = new Cassandra.Client(protocol); cassandr

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Benedict Elliott Smith
Vivek, The error you are seeing is a thrift error, but you say you are using the Java driver which does not operate over thrift: are you perhaps trying to connect the datastax driver to the thrift protocol port? The two protocols are not compatible, you must connect to the native_transport_port (b

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Alex Popescu
Can you share the relevant code snippet that leads to this exception? On Fri, Apr 25, 2014 at 4:47 PM, Vivek Mishra wrote: > datastax java driver 2.0.1 > > > > > On Sat, Apr 26, 2014 at 1:35 AM, Chris Lohfink > wrote: > >> what client are you using? >> >> On Apr 25, 2014, at 3:01 PM, Vivek Mis

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Vivek Mishra
datastax java driver 2.0.1 On Sat, Apr 26, 2014 at 1:35 AM, Chris Lohfink wrote: > what client are you using? > > On Apr 25, 2014, at 3:01 PM, Vivek Mishra wrote: > > It's a simple cql3 query to create keyspace. > > -Vivek > > > On Sat, Apr 26, 2014 at 1:28 AM, Chris Lohfink > wrote: > >> Di

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Chris Lohfink
what client are you using? On Apr 25, 2014, at 3:01 PM, Vivek Mishra wrote: > It's a simple cql3 query to create keyspace. > > -Vivek > > > On Sat, Apr 26, 2014 at 1:28 AM, Chris Lohfink > wrote: > Did you send an enormous write or batch write and it wrapped? Or is your > client trying to

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Vivek Mishra
It's a simple cql3 query to create keyspace. -Vivek On Sat, Apr 26, 2014 at 1:28 AM, Chris Lohfink wrote: > Did you send an enormous write or batch write and it wrapped? Or is your > client trying to use non-framed transport? > > Chris > > On Apr 25, 2014, at 2:50 PM, Vivek Mishra wrote: > >

Re: : Read a negative frame size (-2113929216)!

2014-04-25 Thread Chris Lohfink
Did you send an enormous write or batch write and it wrapped? Or is your client trying to use non-framed transport? Chris On Apr 25, 2014, at 2:50 PM, Vivek Mishra wrote: > This is what i am getting with Cassandra 2.0.7 with Thrift. > > > Caused by: org.apache.thrift.transport.TTransportExc