Uploaded image for project: 'ZooKeeper'
  1. ZooKeeper
  2. ZOOKEEPER-770

Slow add_auth calls with multi-threaded client

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Patch Available
    • Major
    • Resolution: Unresolved
    • 3.3.0, 3.3.3, 3.4.0
    • None
    • c client, contrib-bindings
    • None
    • ubuntu lucid (10.04), zk trunk (3.4)

    Description

      Calls to add_auth are a bit slow from the c client library. The auth callback typically takes multiple seconds to fire. I instrumented the java, c binding, and python binding with a few log statements to find out where the slowness was occuring ( http://bazaar.launchpad.net/~hazmat/zookeeper/fast-auth-instrumented/revision/647). It looks like when the io thread polls, it doesn't register interest in the incoming packet, so the auth success message from the server and the auth callback are only processed when the poll timeouts. I tried modifying mt_adapter.c so the poll registers interest in both events, this causes a considerably more wakeups but it does address the issue of making add_auth fast. I think the ideal solution would be some sort of additional auth handshake state on the handle, that zookeeper_interest could utilize to suggest both POLLIN|POLLOUT are wanted for subsequent calls to poll during the auth handshake handle state.

      i'm attaching a script that takes 13s or 1.6s for the auth callback depending on the session time out value (which in turn figures into the calculation of the poll timeout).

      Attachments

        1. ZOOKEEPER-770-FIX.patch
          0.4 kB
          Craig Calef
        2. ZOOKEEPER-770.patch
          2 kB
          Craig Calef
        3. ZOOKEEPER-770.patch
          0.4 kB
          Michi Mutsuzaki
        4. ZOOKEEPER-770.patch
          3 kB
          Michi Mutsuzaki
        5. authtest.py
          1 kB
          Kapil Thangavelu

        Issue Links

          Activity

            People

              cdcalef Craig Calef
              kapilt Kapil Thangavelu
              Votes:
              1 Vote for this issue
              Watchers:
              8 Start watching this issue

              Dates

                Created:
                Updated: