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

Make it safe to shutdown a ThreadPoolTaskExecutor and backing NetworkInterfaceTL before starting it up

    • Type: Icon: Bug Bug
    • Resolution: Won't Fix
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • ALL
    • Service Arch 2021-11-15, Service Arch 2021-12-13, Service Arch 2022-1-10, Service Arch 2022-1-24
    • 4

      If we call shutdown on a NetworkInterfaceTL before it starts up, we simply move kStopped into its _state member and do nothing else: see here

      void NetworkInterfaceTL::shutdown() {
          if (_state.swap(kStopped) != kStarted)
              return;
      

      This becomes a problem if startup is ever called on the same NetworkInterfaceTL before shutdown completes; we'll fail this invariant in startup here:

      void NetworkInterfaceTL::startup() {
          stdx::lock_guard<Latch> lk(_mutex);
      
          _ioThread = stdx::thread([this] {
              setThreadName(_instanceName);
              _run();
          });
      
          invariant(_state.swap(kStarted) == kDefault);
      }
      

      because the _state will will been kStopped, not kDefault, before this was called.

      This is also a problem for the shutdown of ThreadPoolTaskExecutors, as they wrap a NetworkInterfaceTL. On startup, these executors call startup on the backing NetworkInterfaceTL. And if join is called on such an executor, it will call shutdown on the underlying NetworkInterface. So if join is called before startup is on such an executor, we'll encounter the same invariant.

      Acceptance criteria: make the invariant an exception/investigate it thoroughly and ensure lifetime semantics of NetworkInterfaceTL is clear

            Assignee:
            vojislav.stojkovic@mongodb.com Vojislav Stojkovic
            Reporter:
            george.wangensteen@mongodb.com George Wangensteen
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: