Uploaded image for project: 'HBase'
  1. HBase
  2. HBASE-13071

Hbase Streaming Scan Feature

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 2.0.0
    • None
    • None
    • Reviewed
    • Hide
      MOTIVATION

      A pipelined scan API is introduced for speeding up applications that combine massive data traversal with compute-intensive processing. Traditional HBase scans save network trips through prefetching the data to the client side cache. However, they prefetch synchronously: the fetch request to regionserver is invoked only when the entire cache is consumed. This leads to a stop-and-wait access pattern, in which the client stalls until the next chunk of data is fetched. Applications that do significant processing can benefit from background data prefetching, which eliminates this bottleneck. The pipelined scan implementation overlaps the cache population at the client side with application processing. Namely, it issues a new scan RPC when the iteration retrieves 50% of the cache. If the application processing (that is, the time between invocations of next()) is substantial, the new chunk of data will be available before the previous one is exhausted, and the client will not experience any delay. Ideally, the prefetch and the processing times should be balanced.

      API AND CONFIGURATION

      Asynchronous scanning can be configured either globally for all tables and scans, or on per-scan basis via a new Scan class API.

      Configuration in hbase-site.xml: hbase.client.scanner.async.prefetch, default false:

       <property>
         <name>hbase.client.scanner.async.prefetch</name>
         <value>true</value>
       </property>

      API - Scan#setAsyncPrefetch(boolean)

            Scan scan = new Scan();
            scan.setCaching(1000);
            scan.setMaxResultSize(BIG_SIZE);
            scan.setAsyncPrefetch(true);
              ...
            ResultScanner scanner = table.getScanner(scan);

      IMPLEMENTATION NOTES

      Pipelined scan is implemented by a new ClientAsyncPrefetchScanner class, which is fully API-compatible with the synchronous ClientSimpleScanner. ClientAsyncPrefetchScanner is not instantiated in case of small (Scan#setSmall) and reversed (Scan#setReversed) scanners. The application is responsible for setting the prefetch size in a way that the prefetch time and the processing times are balanced. Note that due to double buffering, the client side cache can use twice as much memory as the synchronous scanner.

      Generally, this feature will put more load on the server (higher fetch rate -- which is the whole point). Also, YMMV.
      Show
      MOTIVATION A pipelined scan API is introduced for speeding up applications that combine massive data traversal with compute-intensive processing. Traditional HBase scans save network trips through prefetching the data to the client side cache. However, they prefetch synchronously: the fetch request to regionserver is invoked only when the entire cache is consumed. This leads to a stop-and-wait access pattern, in which the client stalls until the next chunk of data is fetched. Applications that do significant processing can benefit from background data prefetching, which eliminates this bottleneck. The pipelined scan implementation overlaps the cache population at the client side with application processing. Namely, it issues a new scan RPC when the iteration retrieves 50% of the cache. If the application processing (that is, the time between invocations of next()) is substantial, the new chunk of data will be available before the previous one is exhausted, and the client will not experience any delay. Ideally, the prefetch and the processing times should be balanced. API AND CONFIGURATION Asynchronous scanning can be configured either globally for all tables and scans, or on per-scan basis via a new Scan class API. Configuration in hbase-site.xml: hbase.client.scanner.async.prefetch, default false:  <property>    <name>hbase.client.scanner.async.prefetch</name>    <value>true</value>  </property> API - Scan#setAsyncPrefetch(boolean)       Scan scan = new Scan();       scan.setCaching(1000);       scan.setMaxResultSize(BIG_SIZE);       scan.setAsyncPrefetch(true);         ...       ResultScanner scanner = table.getScanner(scan); IMPLEMENTATION NOTES Pipelined scan is implemented by a new ClientAsyncPrefetchScanner class, which is fully API-compatible with the synchronous ClientSimpleScanner. ClientAsyncPrefetchScanner is not instantiated in case of small (Scan#setSmall) and reversed (Scan#setReversed) scanners. The application is responsible for setting the prefetch size in a way that the prefetch time and the processing times are balanced. Note that due to double buffering, the client side cache can use twice as much memory as the synchronous scanner. Generally, this feature will put more load on the server (higher fetch rate -- which is the whole point). Also, YMMV.

    Description

      A scan operation iterates over all rows of a table or a subrange of the table. The synchronous nature in which the data is served at the client side hinders the speed the application traverses the data: it increases the overall processing time, and may cause a great variance in the times the application waits for the next piece of data.

      The scanner next() method at the client side invokes an RPC to the regionserver and then stores the results in a cache. The application can specify how many rows will be transmitted per RPC; by default this is set to 100 rows.
      The cache can be considered as a producer-consumer queue, where the hbase client pushes the data to the queue and the application consumes it. Currently this queue is synchronous, i.e., blocking. More specifically, when the application consumed all the data from the cache — so the cache is empty — the hbase client retrieves additional data from the server and re-fills the cache with new data. During this time the application is blocked.

      Under the assumption that the application processing time can be balanced by the time it takes to retrieve the data, an asynchronous approach can reduce the time the application is waiting for data.

      We attach a design document.
      We also have a patch that is based on a private branch, and some evaluation results of this code.

      Attachments

        1. HBaseStreamingScanDesign.pdf
          121 kB
          Eshcar Hillel
        2. HbaseStreamingScanEvaluation.pdf
          162 kB
          Eshcar Hillel
        3. 99.eshcar.png
          24 kB
          Michael Stack
        4. hits.eshcar.png
          13 kB
          Michael Stack
        5. gc.eshcar.png
          25 kB
          Michael Stack
        6. network.png
          15 kB
          Michael Stack
        7. HbaseStreamingScanEvaluationwithMultipleClients.pdf
          353 kB
          Eshcar Hillel
        8. latency.png
          9 kB
          Michael Stack
        9. gc.png
          12 kB
          Michael Stack
        10. hits.png
          10 kB
          Michael Stack
        11. hits.delay.png
          11 kB
          Michael Stack
        12. latency.delay.png
          11 kB
          Michael Stack
        13. gc.delay.png
          12 kB
          Michael Stack
        14. HBASE-13071_trunk_rebase_1.0.patch
          31 kB
          Eshcar Hillel
        15. HBASE-13071_trunk_rebase_2.0.patch
          34 kB
          Eshcar Hillel
        16. Releasenote-13071.txt
          2 kB
          Edward Bortnikov
        17. HBASE-13071-trunk-bug-fix.patch
          2 kB
          Eshcar Hillel
        18. HBASE-13071-BRANCH-1.patch
          34 kB
          Eshcar Hillel
        19. HBASE-13071-0_98.patch
          35 kB
          Eshcar Hillel

        Issue Links

          Activity

            People

              eshcar Eshcar Hillel
              eshcar Eshcar Hillel
              Votes:
              0 Vote for this issue
              Watchers:
              33 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: