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

Filter on one CF and if a match, then load and return full row (WAS: Improve performance of scans with some kind of filters)

    XMLWordPrintableJSON

Details

    • Reviewed
    • Hide
      New method is added to Filter which allows filter to specify which CF is needed to it's operation.

      public boolean isFamilyEssential(byte[] name);

      When new row is considered, only data for essential family is loaded and filter applied. And only if filter accepts the row, rest of data is loaded.

      This feature is off by default. You can use Scan.setLoadColumnFamiliesOnDemand() to enable it on a per Scan basis. If not indicated for the Scan, boolean value for "hbase.hregion.scan.loadColumnFamiliesOnDemand" would be used (default to false).
      Show
      New method is added to Filter which allows filter to specify which CF is needed to it's operation. public boolean isFamilyEssential(byte[] name); When new row is considered, only data for essential family is loaded and filter applied. And only if filter accepts the row, rest of data is loaded. This feature is off by default. You can use Scan.setLoadColumnFamiliesOnDemand() to enable it on a per Scan basis. If not indicated for the Scan, boolean value for "hbase.hregion.scan.loadColumnFamiliesOnDemand" would be used (default to false).

    Description

      When the scan is performed, whole row is loaded into result list, after that filter (if exists) is applied to detect that row is needed.

      But when scan is performed on several CFs and filter checks only data from the subset of these CFs, data from CFs, not checked by a filter is not needed on a filter stage. Only when we decided to include current row. And in such case we can significantly reduce amount of IO performed by a scan, by loading only values, actually checked by a filter.

      For example, we have two CFs: flags and snap. Flags is quite small (bunch of megabytes) and is used to filter large entries from snap. Snap is very large (10s of GB) and it is quite costly to scan it. If we needed only rows with some flag specified, we use SingleColumnValueFilter to limit result to only small subset of region. But current implementation is loading both CFs to perform scan, when only small subset is needed.

      Attached patch adds one routine to Filter interface to allow filter to specify which CF is needed to it's operation. In HRegion, we separate all scanners into two groups: needed for filter and the rest (joined). When new row is considered, only needed data is loaded, filter applied, and only if filter accepts the row, rest of data is loaded. At our data, this speeds up such kind of scans 30-50 times. Also, this gives us the way to better normalize the data into separate columns by optimizing the scans performed.

      Attachments

        1. org.apache.hadoop.hbase.regionserver.TestHRegion-output.txt
          4.23 MB
          Ted Yu
        2. HBASE-5416-v9.patch
          59 kB
          Sergey Shelukhin
        3. HBASE-5416-v8.patch
          59 kB
          Sergey Shelukhin
        4. HBASE-5416-v7-rebased.patch
          32 kB
          Sergey Shelukhin
        5. HBASE-5416-v12.patch
          64 kB
          Sergey Shelukhin
        6. HBASE-5416-v12.patch
          64 kB
          Sergey Shelukhin
        7. HBASE-5416-v11.patch
          60 kB
          Sergey Shelukhin
        8. HBASE-5416-v10.patch
          60 kB
          Sergey Shelukhin
        9. Filtered_scans.patch
          8 kB
          Max Lapan
        10. Filtered_scans_v7.patch
          32 kB
          Max Lapan
        11. Filtered_scans_v5.patch
          22 kB
          Max Lapan
        12. Filtered_scans_v5.1.patch
          23 kB
          Max Lapan
        13. Filtered_scans_v4.patch
          16 kB
          Max Lapan
        14. Filtered_scans_v3.patch
          16 kB
          Max Lapan
        15. Filtered_scans_v2.patch
          10 kB
          Max Lapan
        16. 5416-v6.txt
          15 kB
          Ted Yu
        17. 5416-v5.txt
          16 kB
          Ted Yu
        18. 5416-v16.patch
          59 kB
          Ted Yu
        19. 5416-v15.patch
          59 kB
          Ted Yu
        20. 5416-v14.patch
          59 kB
          Ted Yu
        21. 5416-v13.patch
          59 kB
          Ted Yu
        22. 5416-TestJoinedScanners-0.94.txt
          7 kB
          Ted Yu
        23. 5416-Filtered_scans_v6.patch
          22 kB
          Ted Yu
        24. 5416-drop-new-method-from-filter.txt
          5 kB
          Ted Yu
        25. 5416-0.94-v3.txt
          33 kB
          Lars Hofhansl
        26. 5416-0.94-v2.txt
          33 kB
          Lars Hofhansl
        27. 5416-0.94-v1.txt
          33 kB
          Lars Hofhansl

        Issue Links

          Activity

            People

              sershe Sergey Shelukhin
              shmuma Max Lapan
              Votes:
              0 Vote for this issue
              Watchers:
              29 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: