I am having trouble trying to query a CF with a composite key of 2 columns: comment_key and prattle_key.
Here is the CF definition:
CREATE TABLE comments (
comment_key text,
prattle_key text,
parent_key text,
depth int,
author text,
date_created timestamp,
body text,
PRIMARY KEY (comment_key, prattle_key)
) WITH
comment='' AND
caching='KEYS_ONLY' AND
read_repair_chance=0.100000 AND
gc_grace_seconds=864000 AND
replicate_on_write='true' AND
compaction_strategy_class='SizeTieredCompactionStrategy' AND
compression_parameters:sstable_compression='SnappyCompressor';
Here is my Java Code:
Composite key = new Composite();
key.addComponent(prattleKey, StringSerializer.get());
key.addComponent(commentKey, StringSerializer.get());
SliceQuery<Composite, String, String> query = HFactory.createSliceQuery(keyspace, CompositeSerializer.get(), StringSerializer.get(), StringSerializer.get());
query.setColumnFamily("comments").setKey(key).setColumnNames("parent_key", "body", "depth", "date", "author");
QueryResult<ColumnSlice<String, String>> queryResult = query.execute();
ColumnSlice<String, String> cs = queryResult.get();
I get the following error message:
InvalidRequestException(why:Not enough bytes to read value of component 0)
Using the command line CQL utility, I can select all 3 rows in the ColumnFamily just fine, so I know that there is data in there.
Any assistance would be greatly appreciated! Thanks!