Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a columnfamily with a composite key:

create column family MyCF
with key_validation_class = 'CompositeType(UTF8Type, UTF8Type)'
and comparator = 'CompositeType(UTF8Type, UTF8Type)'
and default_validation_class='CompositeType(UTF8Type, UTF8Type)'
;

and I have stored the row key with the following values 1:1,2:2,1:3,2:1,1:2,2:3

RowKey: 1:1
= (column=colum1, value=value1, timestamp=1351093372962000)

RowKey: 2:2
=> (column=colum1, value=value1, timestamp=1351093411137000)

RowKey: 1:3
= (column=colum1, value=value1, timestamp=1351093385820000)

RowKey: 2:1
= (column=colum1, value=value1, timestamp=1351093401162000)

RowKey: 1:2
= (column=colum1, value=value1, timestamp=1351093379274000)

RowKey: 2:3
= (column=colum1, value=value1, timestamp=1351093421393000)

After loading Cassandra, I want to recover all the rows that starts with 1, that are 1:1, 1:2 and 1:3

I've tried to do it using Hector and Thrift but I haven't been able to find any information on the docs.

With CQL is not possible to recover it because this kind of queries are not supported or this is what it is said on the forums.

I've also manage to recover the information by selecting the row keys (1:1, 1:2, 1:3) and this works correctly, but what I really need to do is recover the information asking only the first element of the compositive key.

How can I do it?

Thanks

share|improve this question

closed as not a real question by casperOne Oct 26 '12 at 12:43

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.