Kassandra, Hector: how to get a specific set of columns for certain keys from a column family in 1 call?

If there are row keys, enter a list of keys and for each row key I need a certain set of columns, for some columns the row rows can be different, and for some row keys they can be different.

How can I do this in Hector?

mutliget_slice methods requires keys to be in range plus it does not allow 
different ranges for different keys too.

I cannot find a suitable Hector class that satisfies this multiget requirement

EDIT: -

I could not find any way, currently I am using mutliget_slice with a combined column list for all keys and then filtering

+4
source share
1 answer

No.

Java (https://github.com/datastax/java-driver) , , , . ( , .)

, , , , , .

+1

All Articles