Is it possible to get values for col “a” with key “1” and col “b” for key “2” and cols “c” and “d” for key “3” etc’ from Cassandra in one query?
If yes, does hector support it?
(All these columns are in one column family and of the same type.)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s not supported by method mutliget_slice() in cassandra thrift API (http://wiki.apache.org/cassandra/API), and Hector works on top of this method.
Convenience method might be implemented in the client library with several calls to get_slice, but several network queries would be required anyway.