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

[region_mover]: Adjust region_mover script to retry unloading a server a configurable number of times in case of region splits/merges

    XMLWordPrintableJSON

Details

    Description

      Observed behavior:
      In about 5% of cases, my rolling upgrade tests fail because of stuck regions during a region server unload. My theory is that this occurs when region assignment information changes between the time the region list is generated, and the time when the region is to be moved.

      An example of such a region information change is a split or merge.

      Example:
      Regionserver A has 100 regions (#0-#99). The balancer is turned off and the regionmover script is called to unload this regionserver. The regionmover script will generate the list of 100 regions to be moved and then proceed down that list, moving the regions off in series. However, there is a region, #84, that has split into two daughter regions while regions 0-83 were moved. The script will be stuck trying to move #84, timeout, and then the failure will bubble up (attempt 1 failed).

      Proposed solution:
      This specific failure mode should be caught and the region_mover script should now attempt to move off all the regions. Now, it will have 16+1 (due to split) regions to move. There is a good chance that it will be able to move all 17 off without issues. However, should it encounter this same issue (attempt 2 failed), it will retry again. This process will continue until the maximum number of unload retry attempts has been reached.

      This is not foolproof, but let's say for the sake of argument that 5% of unload attempts hit this issue, then with a retry count of 3, it will reduce the unload failure probability from 0.05 to 0.000125 (0.05^3).

      Next steps:
      I am looking for feedback on this approach. If it seems like a sensible approach, I will create a strawman patch and test it.

      Attachments

        1. HBASE-10924-0.94-v3.patch
          10 kB
          Aleksandr Shulman
        2. HBASE-10924-0.94-v2.patch
          10 kB
          Aleksandr Shulman

        Activity

          People

            Unassigned Unassigned
            aleksshulman Aleksandr Shulman
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: