Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-98043

Investigate if cancellation is the cause of slow down of ticketholder

    • Type: Icon: Task Task
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • Workload Scheduling
    • WS Prioritized List
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      In the function `_performWaitForTicketUntil` in the ticketholder, we try to acquire a ticket in a loop. Logically, we would try the acquisition at the end of the loop since if we end up here, we already tried to acquire a ticket. However doing so slows down the loop and increase latency. This code is extremely sensitive to small changes.

      Here's some sys-perf patches that shows this sensitivity to change, and the slowdown:

      One hypothesis we have as to why this code is so sensitive to small change is that within the loop we check for cancellation using opCtx->checkForInterrupt(). This function calls a pure virtual function, then calls a function in the operation context. This could lead to load the opCtx in cache, displacing the cache for the acquisition loop. Also virtual calls are quite expensive. Since it looks like it's the only expensive operation in the body of the loop, it makes sense that it could be the cause for slowing it down.

            Assignee:
            Unassigned Unassigned
            Reporter:
            guillaume.racicot@mongodb.com Guillaume Racicot
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              None
              None
              None
              None