[ https://issues.apache.org/jira/browse/CASSANDRA-5234?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13685665#comment-13685665
]
Cyril Scetbon edited comment on CASSANDRA-5234 at 6/17/13 4:00 PM:
-------------------------------------------------------------------
You definitely broke something as I get different results when dumping data for cql2 and cql3
tables (same structure).
CQL2 :
{code}
* format is x: {key: chararray,value_1: (name: chararray,value: int),filtre: (name: chararray,value:
int),columns: {(name: chararray,value: bytearray)}}
* rows are
(XXXX,(value_1,18584),(filtre,0),{})
(YYYY,(value_1,49926),(filtre,2),{})
{code}
CQL3 :
{code}
* format is x: {key: chararray,columns: {(name: (),value: bytearray)}}
* rows are
(XXXX,{((),),((filtre),),((value_1),??)})
(YYYY,{((),),((filtre),),((value_1),??)})
{code}
was (Author: cscetbon):
You definitely changed something as I get different results when dumping data for cql2
and cql3 tables (same structure).
CQL2 :
* format is x: {key: chararray,value_1: (name: chararray,value: int),filtre: (name: chararray,value:
int),columns: {(name: chararray,value: bytearray)}}
* rows are
(XXXX,(value_1,18584),(filtre,0),{})
(YYYY,(value_1,49926),(filtre,2),{})
CQL3 :
* format is x: {key: chararray,columns: {(name: (),value: bytearray)}}
* rows are
(XXXX,{((),),((filtre),),((value_1),??)})
(YYYY,{((),),((filtre),),((value_1),??)})
> Table created through CQL3 are not accessble to Pig 0.10
> --------------------------------------------------------
>
> Key: CASSANDRA-5234
> URL: https://issues.apache.org/jira/browse/CASSANDRA-5234
> Project: Cassandra
> Issue Type: Bug
> Components: Hadoop
> Affects Versions: 1.2.1
> Environment: Red hat linux 5
> Reporter: Shamim Ahmed
> Fix For: 1.2.6
>
> Attachments: 5234-1.2-patch.txt, 5234.tx
>
>
> Hi,
> i have faced a bug when creating table through CQL3 and trying to load data through
pig 0.10 as follows:
> java.lang.RuntimeException: Column family 'abc' not found in keyspace 'XYZ'
> at org.apache.cassandra.hadoop.pig.CassandraStorage.initSchema(CassandraStorage.java:1112)
> at org.apache.cassandra.hadoop.pig.CassandraStorage.setLocation(CassandraStorage.java:615).
> This effects from Simple table to table with compound key.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
|