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

Cleanup the locking contention in the master

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Blocker
    • Resolution: Fixed
    • 0.90.2
    • 0.92.0
    • None
    • None
    • Incompatible change, Reviewed
    • Hide
      The master now creates the znode when closing a region, which is an incompatible change.
      SplitTransaction now waits on the master to delete the znode that it created before it can finish.
      The master doesn't keep track of znodes being deleted and created anymore, it was getting out of sync too easily.
      Show
      The master now creates the znode when closing a region, which is an incompatible change. SplitTransaction now waits on the master to delete the znode that it created before it can finish. The master doesn't keep track of znodes being deleted and created anymore, it was getting out of sync too easily.

    Description

      The new master uses a lot of synchronized blocks to be safe, but it only takes a few jstacks to see that there's multiple layers of lock contention when a bunch of regions are moving (like when the balancer runs). The main culprits are regionInTransition in AssignmentManager, ZKAssign that uses ZKW.getZNnodes (basically another set of region in transitions), and locking at the RegionState level.

      My understanding is that even tho we have multiple threads to handle regions in transition, everything is actually serialized. Most of the time, lock holders are talking to ZK or a region server, which can take a few milliseconds.

      A simple example is when AssignmentManager wants to update the timers for all the regions on a RS, it will usually be waiting on another thread that's holding the lock while talking to ZK.

      Attachments

        1. HBASE-3789-trunk.patch
          36 kB
          Jean-Daniel Cryans
        2. HBASE-3789-v4-0.90.patch
          27 kB
          Jean-Daniel Cryans

        Issue Links

          Activity

            People

              jdcryans Jean-Daniel Cryans
              jdcryans Jean-Daniel Cryans
              Votes:
              1 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: