Uploaded image for project: 'WiredTiger'
  1. WiredTiger
  2. WT-7203

Add WT diagnostic mode test for conflicting session use by a thread

    • Type: Icon: Technical Debt Technical Debt
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • Labels:
      None

      It is generally not safe to actively use multiple WT sessions from a single thread.  For example, if a thread has an open transaction on Session1, it should not make WT calls with Session2.  This can lead to deadlock or cache stuck.

      These issues can be hard to detect in a complex application.  See, for example, SERVER-51281. To facilitate debugging such issues, WT could implement some sanity checking in diagnostic mode.  

      One way to do this might be to maintain a table mapping threadIDs to the last session used by the thread.  On a new API call, WT would check the calling thread's entry in this table and return/log an error if it corresponds to a session with an active transaction that is different than one in the call.

      There are probably smarter ways to accomplish this.  

            Assignee:
            backlog-server-storage-engines [DO NOT USE] Backlog - Storage Engines Team
            Reporter:
            keith.smith@mongodb.com Keith Smith
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated: