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

Make Thrift server thread pool bounded and add a command-line UI test

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 0.94.0
    • None
    • None
    • Reviewed

    Description

      This started as an internal hotfix where we found out that the Thrift server spawned 15000 threads. To bound the thread pool size I added a custom thread pool server implementation called HBaseThreadPoolServer into HBase codebase, and made the following parameters configurable from both command line and as config settings: minWorkerThreads, maxWorkerThreads, and maxQueuedRequests. Under an increasing load, the server creates new threads for every connection before the pool size reaches minWorkerThreads. After that, the server puts new connections into the queue and only creates a new thread when the queue is full. If an attempt to create a new thread fails, the server drops connection. The default TThreadPoolServer would crash in that case, but it never happened because the thread pool was unbounded, so the server would hang indefinitely, consume a lot of memory, and cause huge latency spikes on the client side.

      Another part of this fix is refactoring and unit testing of the command-line part of the Thrift server. The logic there is sufficiently complicated, and the existing ThriftServer class does not test that part at all. The new TestThriftServerCmdLine test starts the Thrift server on a random port with various combinations of options and talks to it through the client API from another thread.

      Attachments

        1. ASF.LICENSE.NOT.GRANTED--D531.4.patch
          55 kB
          Phabricator
        2. ASF.LICENSE.NOT.GRANTED--D531.3.patch
          55 kB
          Phabricator
        3. ASF.LICENSE.NOT.GRANTED--D531.2.patch
          50 kB
          Phabricator
        4. ASF.LICENSE.NOT.GRANTED--D531.1.patch
          50 kB
          Phabricator
        5. 4863.addendum
          0.8 kB
          Ted Yu
        6. 0002-Fix-thread-leaks-in-the-HBase-thread-pool-server.patch
          58 kB
          Mikhail Gryzykhin
        7. 0001-Fix-thread-leaks-in-the-HBase-thread-pool-server.patch
          58 kB
          Mikhail Gryzykhin

        Issue Links

          Activity

            People

              mikhail Mikhail Gryzykhin
              mikhail Mikhail Gryzykhin
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: