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

Add HTable accessor to get regions for a key range

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 0.92.1, 0.94.0
    • Client
    • None
    • Reviewed

    Description

      It would be nice to have an accessor to find all regions that overlap with a particular range of keys. Right now, the only way to accomplish that is to call HTable.getStartEndKeys(), then follow that with calls to getRegionLocation() for the range of keys you are interested in. This algorithm has 2 drawbacks:

      • It returns more keys than is necessary most of the time. This is especially evident if there are a lot of regions comprising the table and the range of keys is small.
      • It always does a scan of .META. via MetaScannerVisitor for at least HTable.getStartEndKeys(), and perhaps for HRegionLocations that are not already cached by the client.

      An accessor that limited its scans to a specified range could avoid scanning .META. at all if the HRegionLocations being fetched were already cached by the client, thereby potentially making this operation faster in common cases.

      Here's a proposal for the accessor:

      /**

      • Get the corresponding regions for an arbitrary range of keys.
      • <p>
      • @param startRow Starting row in range, inclusive
      • @param endRow Ending row in range, inclusive
      • @return A list of HRegionLocations corresponding to the regions that
      • contain the specified range
      • @throws IOException if a remote or network exception occurs
        */
        public List<HRegionLocation> getRegionsInRange(final byte [] startKey,
        final byte [] endKey) throws IOException

      Attachments

        1. HBASE-5489-4.patch
          0.7 kB
          David S. Wang
        2. HBASE-5489-3-0.92.1.patch
          10 kB
          David S. Wang
        3. HBASE-5489-3.patch
          5 kB
          David S. Wang
        4. HBASE-5489-2.patch
          5 kB
          David S. Wang

        Issue Links

          Activity

            People

              dsw David S. Wang
              dsw David S. Wang
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: