apache pig - Using Pig with Cassandra CQL3 -
when trying run pig against cql3 created cassandra schema,
-- script gets row count of given column family rows = load 'cassandra://keyspace1/columnfamily/' using cassandrastorage(); counted = foreach (group rows all) generate count($1); dump counted;
i following error.
error: column family 'columnfamily' not found in keyspace 'keyspace1'
i understand design, have been having trouble finding correct method load cql3 tables pig.
can point me in right direction? there missing bit of documentation?
this supported in cassandra 1.2.8
Comments
Post a Comment