Re: How many BATCH inserts in to many?

2013-01-12 Thread Alan Ristić
wauu! huh...em...wau - can't say anything else. Tnx for insight, it certanly gives me some "frame" how batch is performing. Tnx a lot. 2013/1/12 Carlos Rolo > 63k rec Lp, *Alan Ristić* *m*: 040 423 688

Re: Cassandra 1.2 Thrift and CQL 3 issue

2013-01-12 Thread Shahryar Sedghi
Thanks Brian it is not the same issue, and stack trace is different. It is a simple test case and I have 3 columns and I populate all of them with: cqlsh:somedb> CREATE TABLE test(interval int,id text, body text, primary key (interval, id)); cqlsh:somedb> insert into test (interval, id, body) val

Re: Cassandra 1.2 Thrift and CQL 3 issue

2013-01-12 Thread Brian O'Neill
I reported the issue here. You may be missing a component in your column name. https://issues.apache.org/jira/browse/CASSANDRA-5138 -brian On Jan 12, 2013, at 12:48 PM, Shahryar Sedghi wrote: > Hi > > I am trying to test my application that runs with JDBC, CQL 3 with Cassandra > 1.2. After

Re: java exception on start

2013-01-12 Thread Tim Dunphy
Nice info! Thanks! On Sat, Jan 12, 2013 at 12:56 PM, Michael Kjellman wrote: > https://issues.apache.org/jira/browse/CASSANDRA-4916 > > Fixed for 1.2.1! > > From: Tim Dunphy > Reply-To: "user@cassandra.apache.org" > Date: Saturday, January 12, 2013 9:51 AM > To: "user@cassandra.apache.org" > S

Re: java exception on start

2013-01-12 Thread Michael Kjellman
https://issues.apache.org/jira/browse/CASSANDRA-4916 Fixed for 1.2.1! From: Tim Dunphy mailto:bluethu...@gmail.com>> Reply-To: "user@cassandra.apache.org" mailto:user@cassandra.apache.org>> Date: Saturday, January 12, 2013 9:51 AM To: "user@cassandra.apache.org<

java exception on start

2013-01-12 Thread Tim Dunphy
Hello, I just upgraded to cassandra 1.2 and I notice that when I start the node I see this java exception: WARN 12:46:52,872 error reading saved cache /var/lib/cassandra/saved_caches/system-schema_columnfamilies-KeyCache-b.db java.io.EOFException at java.io.DataInputStream.readInt(DataI

Cassandra 1.2 Thrift and CQL 3 issue

2013-01-12 Thread Shahryar Sedghi
Hi I am trying to test my application that runs with JDBC, CQL 3 with Cassandra 1.2. After getting many weird errors and downgrading from JDBC to thrift, I realized the thrift on Cassandra 1.2 has issues with wide rows. If I define the table as: CREATE TABLE test(interval int,id text, body text,

Re: How many BATCH inserts in to many?

2013-01-12 Thread Carlos Rolo
Hello, I have managed to insert up to 63k records without any problem. In certain workloads I found that massive batch inserts perform way better than lots of not-so-massive inserts. I guess it also depends on your setup. Just try it. Alan Ristić escreveu: Hi, I'm implementing Facebook styl