Re: CDH4 + Cassandra 1.2 Integration Issue

2013-04-11 Thread aaron morton
cqlsh in cassandra 1.2 defaults to cql 3. - Aaron Morton Freelance Cassandra Consultant New Zealand @aaronmorton http://www.thelastpickle.com On 10/04/2013, at 6:55 PM, Gurminder Gill wrote: > Ah ha. So, the client defaults to CQL 2. Anyway of changing that? I tired > libthrif

Re: CDH4 + Cassandra 1.2 Integration Issue

2013-04-09 Thread Gurminder Gill
Ah ha. So, the client defaults to CQL 2. Anyway of changing that? I tired libthrift 0.9 as well but it doesn't work. Thanks. On Tue, Apr 9, 2013 at 11:29 PM, Shamim wrote: > Hello, > if you created your table with cql then you have to add COMPACT > STORAGE as follows: > CREATE TABLE user (

Re: CDH4 + Cassandra 1.2 Integration Issue

2013-04-09 Thread Shamim
Hello,   if you created your table with cql then you have to add COMPACT STORAGE as follows: CREATE TABLE user (   id int PRIMARY KEY,   age int,   fname text,   lname text ) WITH COMPACT STORAGE -- Best regards   Shamim A. 10.04.2013, 08:22, "Gurminder Gill" : > I was able to start a MR

CDH4 + Cassandra 1.2 Integration Issue

2013-04-09 Thread Gurminder Gill
I was able to start a MR job after patching Cassandra.Hadoop as per CASSANDRA-5201 . But then, ColumnFamilyRecordReader pukes within the MapTask. It is unable to read CF definition in the sample keyspace. The CF "user" does exist. *How can "cf