You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@fluo.apache.org by keith-turner <gi...@git.apache.org> on 2016/08/11 14:40:44 UTC

[GitHub] incubator-fluo issue #759: Add scanner over multiple Spans

GitHub user keith-turner opened an issue:

    https://github.com/apache/incubator-fluo/issues/759

    Add scanner over multiple Spans

    The original intent of #626 was to support fetching multiple Spans. This was not done because the result may not fit into memory.  At the time when #626 was worked on the Scanner API was in a bad state.  After the scanner the scanner API improvements in #639, it would be relatively easy to add multiple spans to the API.  Could support something like the following.
    
    ```java
    Snapshot snap = ...
    snap.scanner().over(span1, span2, span3).build();
    
    Collection<Span> spans = ...
    snap.scanner().over(spans).fetch(col1, col2).build()
    ```
    
    Multiple spans may result in out of order key iteration.

----

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---