fix: a lane at zero slots tried to empty a pool billiard will not empty (4295)
CI / lint (push) Successful in 4s
CI / extension-version (push) Successful in 4s
Build images / sign-extension (push) Successful in 5s
Build images / build-agent (push) Successful in 7s
CI / frontend-build (push) Successful in 24s
CI / backend-lint-and-test (push) Failing after 40s
Build images / build-web (push) Successful in 2m1s
CI / integration (push) Successful in 2m11s
Build images / smoke-web (push) Successful in 1m0s
Build images / promote (push) Skipped

Found on the operator's live deploy, not in CI:

    [scheduler] worker_control: ml reconciled 1 -> 0 slots
    [ml] pidbox command error:
         ValueError("Can't shrink pool. All processes busy!")

ML ships at 0 stored slots and disabled, and `gen_supervisord` starts every
lane at one process so `add_consumer` has something to reach. So the stored
value and the running pool disagreed by one, permanently: billiard will not
remove the last worker, and `set_lane_slots_sync` returns True on SENDING the
control message — the refusal happens later, on the worker. The reconcile
logged a successful correction and reported `changed: ['ml']` every tick,
forever, on the default configuration of every install.

Lesson #4183 in production: an enforcer whose target is unreachable re-does
its own work on every pass and says it worked.

The floor is now one PROCESS, in one place — `effective_slots()` — applied
wherever a target is COMPARED as well as wherever one is sent. Comparing
against the unclamped 0 sees a difference no control message can ever close,
which is the same non-convergence one layer up.

Zero slots still means zero WORK: the lane's consumers are cancelled, and the
idle process is what the enable switch lands on.

A cross-file guard ties the generator's starting concurrency to the same
function, so the two ends of the floor cannot drift apart again.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LVjrnpQjRgHdvq95rASoiR
This commit is contained in:
2026-09-23 10:58:58 -04:00
co-authored by Claude Opus 5
parent a987ca41ca
commit 86d6509936
3 changed files with 145 additions and 2 deletions
+31
View File
@@ -270,3 +270,34 @@ def test_supervisorctl_can_reach_supervisord():
assert talking == f"unix://{listening}", (
f"supervisorctl talks to {talking}, supervisord listens on {listening}"
)
def test_each_program_starts_at_the_smallest_pool_the_control_path_allows():
"""The two ends of the same floor, asserted together.
`gen_supervisord` starts every lane at `max(1, default_slots)` because
billiard will not run a pool of zero. `worker_control` has the same floor
for the opposite reason: it cannot SHRINK to zero either —
[ml] pidbox command error:
ValueError("Can't shrink pool. All processes busy!")
Live, 2026-09-23. ML starts at one process and stores zero, so the
reconcile tried 1 -> 0 on every tick, billiard refused, and
`set_lane_slots_sync` — which returns True on SENDING the message —
reported the lane changed forever (lesson #4183, on the default
configuration of every install).
Two constants, in two files, that must agree or the container cannot
settle. Asserted through `effective_slots` rather than against a literal
1, so raising the floor moves both ends at once.
"""
from backend.app.services.worker_control import effective_slots
cp = _parse()
for lane in LANES:
env = cp.get(f"program:{lane.name}", "environment")
want = effective_slots(lane.default_slots)
assert f"CELERY_CONCURRENCY={want}," in env, (
f"{lane.name} starts at a size the control path cannot reach"
)
+72
View File
@@ -666,3 +666,75 @@ def test_the_round_trip_bound_matches_the_reads_actually_made():
f"inspect_lanes_sync makes {reads} reads but CONTROL_ROUND_TRIPS "
f"says {wc.CONTROL_ROUND_TRIPS}"
)
# --- a pool cannot be emptied ------------------------------------------------
def test_a_lane_at_zero_slots_is_never_shrunk_to_an_empty_pool(monkeypatch):
"""The error in the operator's live log, 2026-09-23:
[scheduler] worker_control: ml reconciled 1 -> 0 slots
[ml] pidbox command error:
ValueError("Can't shrink pool. All processes busy!")
billiard refuses to remove the last worker, so a lane at zero stored slots
could never reach its target — and `set_lane_slots_sync` returns True on
SENDING the message, so the reconcile logged success and reported the lane
as `changed` on every tick, forever. Lesson #4183 in production, on the
default configuration of every install.
"""
control = _stub_control(monkeypatch)
_stub_live(monkeypatch, "ml", pools={"host-a": 1}, consuming=set())
wc.reconcile_lanes_sync({"ml": (0, False)})
assert control.shrank == [], "tried to empty a pool billiard will not empty"
def test_that_lane_then_reports_nothing_to_do(monkeypatch):
"""The fixed point. It is not enough to stop sending the doomed message —
the reconcile must also stop CALLING the lane changed, or the log fills
with a correction that never corrects anything."""
_stub_control(monkeypatch)
_stub_live(monkeypatch, "ml", pools={"host-a": 1}, consuming=set())
result = wc.reconcile_lanes_sync({"ml": (0, False)})
assert result["changed"] == []
def test_zero_slots_still_means_zero_work(monkeypatch):
"""The floor is one PROCESS, not one consumer. A lane at zero keeps an
idle worker so the enable switch has something to reach, and stays off
because its queues are cancelled."""
control = _stub_control(monkeypatch)
_stub_live(monkeypatch, "ml", pools={"host-a": 1}, consuming={"ml"})
wc.reconcile_lanes_sync({"ml": (0, False)})
assert control.cancelled == [("ml", ["host-a"])]
def test_the_floor_applies_to_a_direct_resize_too(monkeypatch):
"""Not only the reconcile — the UI dial and the autoscaler go through the
same function, so the clamp belongs there rather than at each caller."""
control = _stub_control(monkeypatch)
state = _stub_live(monkeypatch, "worker", pools={"host-a": 3})
wc.set_lane_slots_sync(LANES_BY_NAME["worker"], 0, live=state)
assert control.shrank == [(2, ["host-a"])], "should stop at one, not zero"
def test_the_autoscaler_will_not_shrink_into_an_empty_pool(monkeypatch):
"""A lane whose operator value is 0 and whose live pool is the floor has
nowhere to shrink to — and saying `shrank` every minute is the same
non-convergence wearing a different hat."""
control = _stub_control(monkeypatch)
_autoscale_live(monkeypatch, pools={"host-a": 1}, active=0, reserved=0, depth=0)
d = _worker(wc.autoscale_lanes_sync({"worker": (8, 0, True)}))
assert d.action == "held"
assert control.shrank == []