[ 
https://issues.apache.org/jira/browse/ACCUMULO-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13440266#comment-13440266
 ] 

Eric Newton commented on ACCUMULO-736:
--------------------------------------

If you have fetched column N, you can get column N+1 by specifying a more 
complex range:

{noformat}
Range r = new Range(new Key(row, cf, columnN), false, null, false);
{noformat}

There is no way to just jump to a column using an integer offset, but I'm not 
sure that's really much use.  If it really is, you can write an iterator to do 
it, but either way it's relatively inefficient compared to seek() with the 
proper key data.

                
> Add Column Pagination Filter
> ----------------------------
>
>                 Key: ACCUMULO-736
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-736
>             Project: Accumulo
>          Issue Type: Wish
>          Components: client
>            Reporter: Pradeep Gollakota
>            Assignee: Billie Rinaldi
>
> Client application may need to perform pagination of data depending on the 
> number of columns returned. This would be more efficient if the database 
> itself handled the pagination.
> Similar to https://issues.apache.org/jira/browse/HBASE-2438

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to