Can someone please explain how to do update using datastax QueryBuilder
java API 1.04. I've tried:
Query update = QueryBuilder
.update("demo", "user")
.with(set("col1", "val1"))
.and(set("col2","val2"))
.where(eq("col3","val3"));
but
Is there a vanilla cassandra sqoop driver for importing data into hadoop? I
know datastax cassandra comes with the utility however i'm interested in
vanilla cassandra.
Many thanks.
cassandra 2.0, cqlsh 3.0.
I was trying to import csv file (fields delimited by |) however import
chokes after certain number of lines with the following error:
Bad Request: line 1:300 no viable alternative at input '-'
Aborting import at record #514 (line 515). Previously-inserted values still
pr