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

[uber hbck] Online automated repair of table integrity and region consistency problems

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.90.5, 0.92.0, 0.94.0, 0.95.2
    • 0.94.0, 0.95.0
    • hbck
    • None
    • Reviewed
    • Hide
      HBaseFsck (hbck) has been updated with new repair capabilities. hbck is a tool for checking the region consistency and the table integrity invariants of a running HBase cluster. Checking region consistency verifies that .META., region deployment on region servers and the state of data in HDFS (.regioninfo files) all are in accordance. Table integrity checks verify that all possible row keys resolve to exactly one region of a table -- e.g. there are no individual degenerate or backwards regions; no holes between regions; and no overlapping regions. Previously hbck had the ability to diagnose inconsistencies but only had the ability to repair deployment region consistency problems. The updated version now has been augmented with the ability repair region consistency problems in .META. (by patching holes), repair overlapping regions (via merging), patch region holes (by fabricating new regions), and detecting and adopting orphaned regions (by fabricating new .regioninfo file if it is missing in a region's dir).

      Caveats:
      * The new hbck selects repairs assuming that HDFS as ground truth, the previous version treated .META. as ground truth.
      * The hbck '-fix' option is present but deprecated and replaced with '-fixAssignments' option.
      * This tool adds APIs in 0.90.7, 0.92.2 and 0.94.0 for clean repairs. The 0.90 version of the tool is compatible with HBase 0.90+, but may require restarting the master or individual individual regionserver for table enable/disable/delete commands to work properly.
      Show
      HBaseFsck (hbck) has been updated with new repair capabilities. hbck is a tool for checking the region consistency and the table integrity invariants of a running HBase cluster. Checking region consistency verifies that .META., region deployment on region servers and the state of data in HDFS (.regioninfo files) all are in accordance. Table integrity checks verify that all possible row keys resolve to exactly one region of a table -- e.g. there are no individual degenerate or backwards regions; no holes between regions; and no overlapping regions. Previously hbck had the ability to diagnose inconsistencies but only had the ability to repair deployment region consistency problems. The updated version now has been augmented with the ability repair region consistency problems in .META. (by patching holes), repair overlapping regions (via merging), patch region holes (by fabricating new regions), and detecting and adopting orphaned regions (by fabricating new .regioninfo file if it is missing in a region's dir). Caveats: * The new hbck selects repairs assuming that HDFS as ground truth, the previous version treated .META. as ground truth. * The hbck '-fix' option is present but deprecated and replaced with '-fixAssignments' option. * This tool adds APIs in 0.90.7, 0.92.2 and 0.94.0 for clean repairs. The 0.90 version of the tool is compatible with HBase 0.90+, but may require restarting the master or individual individual regionserver for table enable/disable/delete commands to work properly.

    Description

      The current (0.90.5, 0.92.0rc2) versions of hbck detects most of region consistency and table integrity invariant violations. However with '-fix' it can only automatically repair region consistency cases having to do with deployment problems. This updated version should be able to handle all cases (including a new orphan regiondir case). When complete will likely deprecate the OfflineMetaRepair tool and subsume several open META-hole related issue.

      Here's the approach (from the comment of at the top of the new version of the file).

      /**
       * HBaseFsck (hbck) is a tool for checking and repairing region consistency and
       * table integrity.  
       * 
       * Region consistency checks verify that META, region deployment on
       * region servers and the state of data in HDFS (.regioninfo files) all are in
       * accordance. 
       * 
       * Table integrity checks verify that that all possible row keys can resolve to
       * exactly one region of a table.  This means there are no individual degenerate
       * or backwards regions; no holes between regions; and that there no overlapping
       * regions. 
       * 
       * The general repair strategy works in these steps.
       * 1) Repair Table Integrity on HDFS. (merge or fabricate regions)
       * 2) Repair Region Consistency with META and assignments
       * 
       * For table integrity repairs, the tables their region directories are scanned
       * for .regioninfo files.  Each table's integrity is then verified.  If there 
       * are any orphan regions (regions with no .regioninfo files), or holes, new 
       * regions are fabricated.  Backwards regions are sidelined as well as empty
       * degenerate (endkey==startkey) regions.  If there are any overlapping regions,
       * a new region is created and all data is merged into the new region.  
       * 
       * Table integrity repairs deal solely with HDFS and can be done offline -- the
       * hbase region servers or master do not need to be running.  These phase can be
       * use to completely reconstruct the META table in an offline fashion. 
       * 
       * Region consistency requires three conditions -- 1) valid .regioninfo file 
       * present in an hdfs region dir,  2) valid row with .regioninfo data in META,
       * and 3) a region is deployed only at the regionserver that is was assigned to.
       * 
       * Region consistency requires hbck to contact the HBase master and region
       * servers, so the connect() must first be called successfully.  Much of the
       * region consistency information is transient and less risky to repair.
       */
      

      Attachments

        1. 5128-trunk.addendum
          6 kB
          Ted Yu
        2. hbase-5128-0.90-v2.patch
          165 kB
          Jonathan Hsieh
        3. hbase-5128-0.90-v2b.patch
          152 kB
          Jonathan Hsieh
        4. hbase-5128-0.90-v4.patch
          155 kB
          Jonathan Hsieh
        5. hbase-5128-0.92-v2.patch
          151 kB
          Jonathan Hsieh
        6. hbase-5128-0.92-v4.patch
          155 kB
          Jonathan Hsieh
        7. hbase-5128-0.94-v2.patch
          151 kB
          Jonathan Hsieh
        8. hbase-5128-0.94-v4.patch
          155 kB
          Jonathan Hsieh
        9. hbase-5128-trunk.patch
          153 kB
          Jonathan Hsieh
        10. hbase-5128-trunk-v2.patch
          151 kB
          Jonathan Hsieh
        11. hbase-5128-v3.patch
          154 kB
          Jonathan Hsieh
        12. hbase-5128-v4.patch
          156 kB
          Jonathan Hsieh

        Issue Links

          Activity

            People

              jmhsieh Jonathan Hsieh
              jmhsieh Jonathan Hsieh
              Votes:
              0 Vote for this issue
              Watchers:
              10 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: