b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / All required checks pass (push) Waiting to run
65 lines
2.4 KiB
Python
65 lines
2.4 KiB
Python
"""Shared daemon-thread ThreadPoolExecutor.
|
||
|
||
Stdlib ``ThreadPoolExecutor`` workers are non-daemon AND are registered in
|
||
``concurrent.futures.thread._threads_queues``, whose atexit hook
|
||
(``_python_exit``) joins every worker unconditionally — even after
|
||
``shutdown(wait=False)``. A single wedged worker (tool blocked on network
|
||
I/O, hung provider daemon, stuck subagent) therefore blocks interpreter
|
||
exit forever. This is the root cause of multi-minute CLI exits on long
|
||
sessions: every abandoned concurrent-tool batch leaves workers that the
|
||
exit hook insists on joining.
|
||
|
||
``DaemonThreadPoolExecutor`` spawns daemon workers and skips the
|
||
``_threads_queues`` registration, so:
|
||
|
||
- ``_python_exit`` never joins them, and
|
||
- the interpreter's non-daemon thread join at shutdown skips them.
|
||
|
||
Semantics are otherwise identical (initializer/initargs, work queue,
|
||
idle-thread reuse). Use it for any pool whose work is best-effort or
|
||
independently interruptible and must never hold the process open:
|
||
concurrent tool execution, background memory sync, catalog fan-out,
|
||
subagent timeout wrappers. Do NOT use it for work that must complete
|
||
before exit (durable writes) — those belong on foreground threads with
|
||
explicit bounded joins.
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
import threading
|
||
import weakref
|
||
from concurrent.futures import ThreadPoolExecutor
|
||
from concurrent.futures.thread import _worker
|
||
|
||
__all__ = ["DaemonThreadPoolExecutor"]
|
||
|
||
|
||
class DaemonThreadPoolExecutor(ThreadPoolExecutor):
|
||
"""ThreadPoolExecutor variant whose workers do not block process exit."""
|
||
|
||
def _adjust_thread_count(self) -> None:
|
||
# Mirrors CPython's implementation (3.8–3.13) with two changes:
|
||
# daemon=True and no _threads_queues registration.
|
||
if self._idle_semaphore.acquire(timeout=0):
|
||
return
|
||
|
||
def weakref_cb(_, q=self._work_queue):
|
||
q.put(None)
|
||
|
||
num_threads = len(self._threads)
|
||
if num_threads < self._max_workers:
|
||
thread_name = "%s_%d" % (self._thread_name_prefix or self, num_threads)
|
||
t = threading.Thread(
|
||
name=thread_name,
|
||
target=_worker,
|
||
args=(
|
||
weakref.ref(self, weakref_cb),
|
||
self._work_queue,
|
||
self._initializer,
|
||
self._initargs,
|
||
),
|
||
daemon=True,
|
||
)
|
||
t.start()
|
||
self._threads.add(t)
|