In the updated Cassandra thrift interface I found new service method get_paged_slice but it still not described in wiki.
Who can explain me how does it works and what is its purpose?
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.
This method is intended to iterate over all columns of row range. It should be used when the rows are too long, and the method
get_range_slicesis inconvenient.The method returns all columns of the row specified by
KeyRange, starting from column specified bystart_column. If the row ends before collecting enough results, the response is filled up with starting columns of the next row. Next time it should be called with last returned row id and last column name as params.I suppose, it’s not described on wiki, since it’s somewhat experimental yet (as of version 1.1.6):