Skip to content

fix(worker): reap deleted backends and stop models that live on a worker#10956

Merged
mudler merged 4 commits into
masterfrom
fix/reap-deleted-backend-process
Jul 19, 2026
Merged

fix(worker): reap deleted backends and stop models that live on a worker#10956
mudler merged 4 commits into
masterfrom
fix/reap-deleted-backend-process

Conversation

@localai-bot

Copy link
Copy Markdown
Collaborator

Three related backend-lifecycle defects from one production incident on a Jetson/Thor worker: a deleted backend's gRPC process survived ~40 minutes with its directory removed from disk, a later model load was routed to that orphan and failed with a certifi path pointing into the deleted directory, and the admin could not stop the model because the frontend reported it as not loaded.

1. backend.delete orphaned the process it claimed to delete

s.processes is keyed modelID#replicaIndex, so the backend name appears in no key and was recorded nowhere on the process. A delete keyed on a backend name resolved to zero keys via resolveProcessKeys (whose prefix path only matches a bare modelID), the stop silently no-op'd, and the files were removed out from under a live process — while the reply reported success and the endpoint returned 200.

Aliasing made a naive name match insufficient on its own: the model config referenced the alias (longcat-video) while the delete carried the concrete directory name (cuda13-nvidia-l4t-arm64-longcat-video).

  • records backendName on backendProcess
  • adds resolveProcessKeysForBackend, resolving alias↔concrete via ListSystemBackends before DeleteBackendFromSystem erases the metadata carrying the alias; resolution failure degrades to name-only matching so a delete never fails on it
  • gates the installBackend fast path on processMatchesBackend, so a reinstalled variant cannot inherit a deleted backend's port (processes with no recorded name, i.e. pre-upgrade, are still accepted so a rollout doesn't restart every running backend)
  • routes backend.stop through resolveStopTargets, which accepts a backend name, a model name, or an exact modelID#replica key — all three are published in practice: the admin UI sends a backend name, UnloadRemoteModel sends a model name, and fix(distributed): configurable remote model-load timeout, and reap the load when it times out #10948's reap sends an exact replica key. backend.delete stays strict, since its identifier is unambiguously a backend name.

2. /backend/shutdown reported a running model as missing

POST /backend/shutdown returned 500 model not found for a model demonstrably loaded on worker nvidia-thor with a live backend process.

ModelLoader.deleteProcess short-circuits on a miss in the replica's in-memory store. In distributed mode the authoritative record is the shared node registry, so any frontend replica that never served the model itself has no local entry. The remote-unload path documented at pkg/model/loader.go:28-34 sits below that short-circuit — unreachable in exactly the case it exists for. #10865 reworked this function but kept the short-circuit intact (pkg/model/process.go:59-63).

  • consults the remote unloader on a local-store miss, via a shared unloadRemote helper so both the miss path and the existing no-process path honour RemoteModelContextUnloader and preserve fix(model): make backend shutdown model-scoped #10865's force propagation
  • UnloadRemoteModelContext reports ErrRemoteModelNotLoaded when no node has the model — it previously returned nil, indistinguishable from a successful stop
  • the endpoint now returns 404 naming both scopes ("not loaded on this instance or on any worker node") instead of a blanket 500, plus 400 on an empty model and a JSON success body. Without this the loader-side fix is invisible to the operator.

3. Coverage for the bounded Free()

#10865 added workerBackendFreeTimeout (supervisor.go:30,243, lifecycle.go:261) with no test coverage, and that bound is load-bearing for the reap merged in #10948: stopBackendExact calls Free before proc.Stop(), and 37 Python backends default to PYTHON_GRPC_MAX_WORKERS=1, so a backend wedged in LoadModel has no thread to service it.

This branch originally carried its own bounding change; it is dropped as superseded — master's version is strictly better, as it releases the supervisor mutex across the Free and keeps the port reserved until termination. Only the regression test survives.

The spec stands up a real pb.RegisterBackendServer whose Free handler blocks forever. A stub socket that accepted TCP without speaking gRPC was tried first and passed against the very bug it targets — gRPC's own ~20s connect timeout was bounding the call because the handshake never completed.

Notes for reviewers

  • Rebased onto current master. The original three commits were collapsed into one because their boundaries reflected the pre-fix(model): make backend shutdown model-scoped #10865 base and had become misleading — one of them would have carried a message describing a production change whose diff no longer existed.
  • The free_timeout_test.go fixture process is deliberately never started. go-processmanager v0.1.1 has a data racereadPID() writes Process.pid unsynchronized, reached from Stop(), IsAlive(), and its own monitor goroutine. Starting a real process would turn the fail-closed -race conformance gate red on an upstream defect. Filed as data race: readPID() writes Process.pid unsynchronized, reachable from Stop(), IsAlive() and the internal monitor goroutine go-processmanager#5. The tradeoff is that the spec proves the stop is reached and the slot released — which is exactly what an unbounded Free prevents — but not that SIGTERM/SIGKILL landed, which is go-processmanager's contract rather than the supervisor's.

Known risk

Reaping on delete now recycles the backend's port via freePorts, which the next startBackend may immediately reuse. A controller holding the old address can then pass probeHealth against a different backend on that port, since the probe verifies liveness rather than identity. Narrow, and strictly better than routing into a deleted directory, but the failure is silent — tracked as #10952.

Verification

make lint (new-from origin/master)          0 issues.
coverage gate                                48.5% -> 53.4%
scripts/model-lifecycle-conformance.sh:
  [1/3] pkg/model 2.952s | pkg/grpc 2.191s | core/services/worker 6.602s   (-race)
  [2/3] core/services/nodes 1.241s
  [3/3] FizzBee: Valid Nodes 1458, IsLive: true, PASSED

🤖 Generated with Claude Code

mudler added 2 commits July 19, 2026 11:16
Three related backend-lifecycle defects, all reachable from the same
production incident on a Jetson/Thor worker: a deleted backend's gRPC
process survived ~40 minutes with its directory removed from disk, a later
model load was routed to that orphan and failed with a certifi path pointing
into the deleted directory, and the admin could not stop the model because
the frontend reported it as not loaded.

1. backend.delete orphaned the process it claimed to delete
------------------------------------------------------------
s.processes is keyed by `modelID#replicaIndex` (buildProcessKey), so the
backend name never appeared in a key and was recorded nowhere on the
process. backend.delete resolved its target via isRunning/stopBackend, whose
prefix path only matches a bare *modelID* - a delete keyed on a backend name
resolved to zero keys, the stop silently no-op'd, and the files were removed
out from under a live process.

The install fast path then handed that orphan back out: it returns any live
process for the (model, replica) slot without checking which backend started
it, so a reinstalled variant inherited the deleted backend's port.

- Record backendName on backendProcess, threaded installBackend ->
  startBackend.
- Add resolveProcessKeysForBackend, matching the recorded name and resolving
  alias <-> concrete via ListSystemBackends *before* DeleteBackendFromSystem
  erases the metadata that carries the alias. Alias resolution failure
  degrades to name-only matching so a delete never fails on it.
- backend.stop goes through resolveStopTargets, which accepts a backend
  name, a model name, or an exact modelID#replica key. Its payload field is
  named "backend" but is published with all three meanings: the admin UI
  sends a backend name, UnloadRemoteModel sends a model name, and the
  router's abandoned-load reap (#10948) sends an exact replica key.
  Narrowing it to backend names alone would strand the latter two.
  backend.delete stays strict - its identifier is unambiguously a backend.
- Gate the install fast path on processMatchesBackend so a slot held by a
  different backend is restarted rather than reused. Processes with no
  recorded name (pre-upgrade) are accepted, so rollout does not restart
  every running backend.
- stopBackendExact reports a real stop failure - the process still being
  alive afterwards, which is precisely what finishBackendStop already
  detects to keep the entry and its port reserved - and backend.delete no
  longer replies success when it knew about a process and could not kill it.
  "No process was running" stays a success but is logged, so the orphan case
  is visible rather than silent.

2. /backend/shutdown reported a running model as missing
---------------------------------------------------------
ModelLoader.deleteProcess short-circuits on a miss in this replica's
in-memory store. In distributed mode the authoritative record of "is this
model loaded" is the shared node registry: a frontend replica that never
served the model itself (load balancer picked a peer, or the replica
restarted) has no local entry. The remote unload path that pkg/model
documents ("when ShutdownModel is called for a model with no local process,
UnloadRemoteModel is called") sat behind that short-circuit, unreachable in
exactly the case it exists for. #10865 reworked this function but kept the
short-circuit at the top, so the gap survived that refactor.

- deleteProcess consults the remote unloader on a local-store miss, via a
  shared unloadRemote helper so this branch and the existing
  no-local-process branch both prefer #10865's RemoteModelContextUnloader,
  preserving force propagation across the distributed boundary.
- UnloadRemoteModelContext reports ErrRemoteModelNotLoaded when no node has
  the model; it previously returned nil, making a no-op stop
  indistinguishable from a real one. The converse case (nodes have it, none
  could be stopped) already errors since #10865 joined the per-node
  failures, so that half of the original fix was dropped as redundant.
- Only when the model is absent locally AND cluster-wide does the endpoint
  report not-found, now 404 naming both scopes rather than a bare 500.
- modelNotFoundErr becomes the exported ErrModelNotFound so the HTTP layer
  can map it without string matching; watchdog's identity comparison becomes
  errors.Is.

3. Coverage for the bounded Free() that #10865 shipped untested
----------------------------------------------------------------
The original branch also bounded the pre-stop Free(), but #10865 landed that
fix first (workerBackendFreeTimeout, applied in both stopBackendExact and
handleModelUnload). That production change is therefore DROPPED here as
superseded - master's version is strictly better, since it also releases the
supervisor mutex across the call and keeps the port reserved until
termination completes.

What #10865 did not ship is a test, and the bound is load-bearing: the
router-side reap in #10948 sends backend.stop for an abandoned load, and
against a wedged backend an unbounded Free would swallow that stop before it
reached the process. Nothing failed if the bound regressed.

The spec stands up a real gRPC backend server whose Free handler never
returns - what a Python backend looks like when its single worker thread
(PYTHON_GRPC_MAX_WORKERS=1 on 37 backends) is occupied by a stuck LoadModel.
A stub socket is not sufficient and was tried first: without a completed
HTTP/2 handshake, gRPC's own ~20s connect timeout ends the call, so that
version passed against the very bug it targets. With the connection READY,
only the caller's deadline can end it, so the spec hangs to its 60s limit if
the timeout is removed and passes with it.

Its fixture process is deliberately never started. go-processmanager v0.1.1
writes Process.pid from readPID() without synchronization, so a live process
races its own monitor goroutine under -race - reproducible with a bare
Run()+Stop() and unrelated to this spec. Since
scripts/model-lifecycle-conformance.sh runs this package with -race and is
fail-closed, starting one would turn that gate red on an upstream defect. An
unstarted process still proves the point: the stop is reached and the slot
released, which is exactly what an unbounded Free prevents.

Verified: make lint (new-from-merge-base origin/master) reports 0 issues;
scripts/model-lifecycle-conformance.sh passes all three stages including the
FizzBee liveness check (1458 states, IsLive: true).

Assisted-by: Claude:claude-opus-4-8 golangci-lint
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2035a4d made UnloadRemoteModel return ErrRemoteModelNotLoaded when no node
holds the model, so ShutdownModel could answer 404 instead of a misleading
500. That narrowed a shared adapter contract to serve one caller and broke
the documented idempotent-unload guarantee, which CI caught on PR #10956:

  [FAIL] Node Backend Lifecycle (NATS-driven) > NATS backend.stop events
         should be no-op for models not on any node [Distributed]
         Expected success, but got: model not loaded on any node

The spec name states the contract outright. The matching unit assertion was
updated in that commit; this e2e one was missed because it lives under
tests/e2e/ with no build tags and does not run in package-scoped test runs.

Caller audit - who breaks when an idempotent unload becomes an error:

- pkg/model/watchdog.go:902 (LRU memory reclaimer) is the serious one. It
  untracks a model ONLY when shutdown returns nil or ErrModelNotFound. A new
  error type means the model is never untracked, so the reclaimer keeps
  re-selecting the same entry and never reclaims - a live wedge whenever a
  local store entry outlives the remote model.
- core/services/galleryop/managers_local.go:43 (DeleteModel) would warn on
  every deletion of an already-unloaded model.
- core/services/modeladmin/{state,config,remote_sync}.go stop instances
  best-effort against models that are frequently not loaded.
- deleteProcess itself: the no-local-process branch returns the unload result
  directly, so a stale local entry for a model no longer on any node turned a
  previously-successful cleanup into a failure.

Only ShutdownModel wants the distinction, and only on the local-store-miss
path. So the distinction moves to the caller instead of the contract:

- UnloadRemoteModel/UnloadRemoteModelContext return nil again when no node
  has the model, and ErrRemoteModelNotLoaded is removed.
- New optional RemoteModelPresenceChecker (HasRemoteModel) answers the
  question directly. deleteProcess consults it BEFORE unloading, because an
  idempotent unload cannot report afterwards whether anything was stopped.
  Absent locally AND cluster-wide is the only case that reports 404.
- A failed registry lookup is surfaced rather than reported as absence: an
  unreachable registry is not evidence a model is gone, and answering a
  confident 404 off a failed lookup is how an operator gets told a running
  model does not exist.
- Unloaders that predate the extension keep working - deleteProcess attempts
  the unload rather than refusing it - and compile-time assertions in the
  nodes package now pin all three optional interfaces, since both are
  consumed by runtime type assertion where drift degrades behavior silently
  instead of failing the build.

The contract is now pinned at both levels that disagreed, each spec pointing
at the other: "with no nodes returns nil" in unloader_test.go and "should be
no-op for models not on any node" in node_lifecycle_test.go.

Verified: full distributed e2e suite 233 passed / 0 failed (the suite that
failed 232/1 in CI); pkg/model and core/services/nodes green; make lint
new-from-merge-base reports 0 issues.

Assisted-by: Claude:claude-opus-4-8 golangci-lint
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
@localai-bot

Copy link
Copy Markdown
Collaborator Author

Second commit 2b7a04936 partially reverts a contract change from the first, after CI caught it. Recording why here, since the diff alone does not explain it.

What CI caught. tests/e2e/distributed/node_lifecycle_test.go:145 — "should be no-op for models not on any node" — failed with model not loaded on any node. The first commit had UnloadRemoteModel return a new ErrRemoteModelNotLoaded where it previously returned nil, so /backend/shutdown could tell "not loaded anywhere" from "stopped successfully" and answer 404 instead of a misleading 500.

Why the spec was right and the change was wrong. That spec deliberately pins idempotent no-op semantics, and a caller audit found the e2e failure was the least serious consequence:

  • pkg/model/watchdog.go:902 — the LRU reclaimer. It untracks a model only when shutdown returns nil or ErrModelNotFound. That is an allow-list, so a new error type skips the untrack entirely, the reclaimer re-selects the same entry forever, and memory is never reclaimed. A permanent wedge in exactly the distributed deployments this PR targets — and no test would have caught it.
  • pkg/model/process.go — the no-local-process branch returns the unload result directly, so a stale local entry for a model no longer on any node turned successful cleanup into failure.
  • galleryop/managers_local.go DeleteModel, and modeladmin/{state,config,remote_sync}.go — best-effort stops that legitimately run against already-unloaded models would have started erroring or warning.

Only one production caller of UnloadRemoteModel exists, and only its store-miss path wanted the distinction. Narrowing a shared adapter's contract to serve one call site was the wrong shape.

The fix. ErrRemoteModelNotLoaded is removed and the adapter returns nil again. A new optional RemoteModelPresenceChecker.HasRemoteModel answers presence directly, consulted before unloading — an idempotent unload cannot report afterwards whether anything was stopped. A failed registry lookup surfaces as an error rather than as absence, since answering a confident 404 off a failed lookup is the same class of bug as the original 500.

The e2e spec is unchanged and passes as originally written. The only edit to that file is a comment cross-referencing the unit-level spec, because the two disagreeing about the same contract is what let this reach CI. Both now name each other and state the watchdog dependency, so the next person changing it sees the cost.

Also added compile-time assertions for the three optional interfaces in the nodes package — they are consumed by runtime type assertion, where a signature drift silently downgrades behavior (losing force propagation, or the presence check) instead of failing the build. That is the same failure mode as the one that bit here.

Verified locally before push: ginkgo --label-filter='Distributed && !VLLMMultinode' -r ./tests/e2e/distributed → 233 passed, 0 failed, 1 skipped (the suite CI failed 232/1 on). Coverage 48.5% → 53.4%. make lint 0 issues.

A worker returns a stopped backend's gRPC port to its allocator as soon as
the process is confirmed dead, and hands it to the next backend that starts.
The controller's NodeModel row for the old address survives, and both
SmartRouter.probeHealth and the HealthMonitor per-model probe verify
liveness, not identity, so once an unrelated backend binds the recycled port
the stale row passes every check and the request is served by the wrong
backend instead of failing.

backend.delete is newly able to trigger this: before #10956 a delete never
actually stopped a process, so it never recycled a port. backend.upgrade has
the identical gap and always did — upgradeBackend force-stops every process
using the binary and starts none back up, while
DistributedBackendManager.UpgradeBackend never removes rows. model.unload is
the one path that gets this right today: it calls RemoveAllNodeModelReplicas
straight after StopBackend.

Report the process keys the worker terminated on the delete and upgrade
replies, and drop the matching rows in RemoteUnloaderAdapter, which already
holds a ModelLocator with RemoveNodeModel. All three call sites funnel
through that adapter, so no new interface, DB migration, or proto change is
needed. A key is reported only once its process is confirmed gone, so the
list stays trustworthy on the partial-failure replies too.

Old workers never populate the new fields. ReportsStoppedProcesses tells
"stopped nothing" apart from "does not report", so an old worker's silence
falls back to the pre-existing probe-based staleness recovery instead of
being mistaken for a completed cleanup.

Quarantine released ports for a short window as an interlock covering the
NATS round-trip between the worker freeing the port and the controller
dropping the row. It is deliberately not derived from HealthCheckInterval:
that cadence is operator-tunable and the per-model reaper can be disabled
outright, so coupling a worker-local constant to it would be silently wrong
on some clusters. Eager row removal is the fix; the delay only closes the
handoff gap.

Identity verification in probeHealth was considered and rejected: Health and
Status carry no backend identity, so it needs a proto change plus an
implementation in 36 Python and 4 C++ Health servicers, it is fail-open for
any backend not yet rebuilt, and the probeCache short-circuit means it would
not even execute during the 30s window where the misroute happens.

Fixes #10952
Refs #10954, #10956

Assisted-by: Claude:claude-opus-4-8 golangci-lint
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
@localai-bot

Copy link
Copy Markdown
Collaborator Author

Third commit 4843d57c8closes the "Known risk" this PR documents, so the window never exists on master. Tracked as #10952.

Folding it in here rather than as a follow-up PR: this PR is what makes port recycling reachable (before it, backend.delete never actually stopped a process, so a delete never freed a port), and shipping the mitigation separately would leave a silent-misroute window open between the two merges.

The framing that makes the bug obvious: UnloadModel (core/services/nodes/router.go:1550-1560) calls RemoveAllNodeModelReplicas immediately after StopBackend. DeleteBackend and UpgradeBackend never remove rows at all. Delete and upgrade are the two paths that recycle a port without telling anyone; unload is the one that gets it right.

upgradeBackend (core/services/worker/install.go:186-200) force-stops every process for the backend and has the identical gap — that was not in the original issue and was found during this work.

Why not identity verification in probeHealth (the approach #10952 originally suggested as more complete), rejected on three independent grounds, recorded so it is not rediscovered:

  • no identity exists to assert on — Health returns Reply (backend.proto:337-346), Status returns StatusResponse (:682-691), HealthMessage is empty (:262), so there is nowhere to send an expected identity either. It needs a proto change plus implementations in 36 Python and 4 C++ servicers.
  • fail-open during rolling upgrades — the controller must treat an empty identity as "allow", so the bug persists for every backend not yet rebuilt.
  • decisive: it would never execute in the failure window. probeHealth short-circuits on probeCache (probe_cache.go:75-92, 30s TTL, keyed nodeID|addr), and the address was probed successfully while the old backend was alive — so for up to 30s after the port is rebound, DoOrCached returns true with no round-trip. Always executing it defeats a cache that exists to fix a real queue-stalling bug.

The fix. StoppedProcessKeys []string + ReportsStoppedProcesses bool on BackendDeleteReply / BackendUpgradeReply; the controller drops rows in RemoteUnloaderAdapter using the registry ModelLocator and RemoveNodeModel it already held. No new interface, no migration, no proto change, and all three call sites funnel through the adapter.

Two contract details worth reviewer attention:

  • A key is reported only after its process is confirmed dead, so the list is trustworthy even on failure replies and rows drop regardless of Success. This matters: handleBackendDelete has two failure paths after the stop loop (file removal, re-registration) where processes are already dead and ports already recycled — gating removal on Success would have stranded exactly those rows. Conversely the abort-on-stop-failure path reports nothing, so a surviving process keeps its row.
  • Upgrade's speculative bare-backend key is filtered out. upgradeBackend appends buildProcessKey("", req.Backend, replica), which usually matches nothing; reporting it would ask the controller to delete a row keyed on the backend name, which could collide with a model whose ID equals it.

Old workers. ReportsStoppedProcesses is what makes an empty list interpretable — false means "predates this field", and the adapter leaves rows alone and falls back to probe-based recovery. Specs cover old-worker delete, old-worker upgrade, new-worker-with-nothing-stopped, and raw-JSON decode of a legacy reply (fed as raw JSON precisely so they can express a shape the current struct cannot produce).

Port quarantine, 15s, swept lazily on allocation, as an interlock for the NATS round-trip window between the worker freeing the port and the controller dropping the row. The comment states explicitly that it is not derived from HealthCheckInterval and why that coupling would be unsound (the interval is operator-configurable and DisablePerModelHealthCheck can switch the reaper off entirely), and that raising it is not a substitute for eager row removal.

model.ParseBackendProcessKey sits beside BackendProcessKey and shares its separator. It splits at the last separator, not the first — model IDs may contain #, and a first-split would address a nonexistent row while leaving the real stale one in place.

Three pre-existing assertions in replica_test.go that asserted immediate freePorts reuse were rewritten to assert the quarantine holds the port — an intentional behavior change, not an accommodation.

Verification: make lint 0 issues; coverage gate OK (53.4% vs 48.5% baseline); Worker Suite 85 passed / 0 failed (81 pre-existing + 4 new quarantine specs); no real process started under -race, so go-processmanager#5 stays out of the fail-closed conformance gate.

Not done, deliberately: the coverage gate suggests make test-coverage-baseline (53.4% vs a committed 48.5%). The baseline file is untouched — moving the ratchet is a separate deliberate act, and +4.9pp is larger than these changes plausibly account for, so the baseline may be stale from earlier truncated runs on this box.

go-processmanager wrote Process.PID from readPID() with no synchronization
while its own monitor goroutine cleared the same field on exit, so a bare
Run()+Stop() tripped the race detector without any concurrent access from
the caller. LocalAI hit this on every backend stop.

Upstream fixed it in a94e2b7 by guarding PID with a mutex and adding
CurrentPID() as a race-safe accessor. The exported field was kept to avoid
a breaking change but is now deprecated: a direct read still races the
monitor. No tag carries the fix yet, so pin the pseudo-version.

GetGRPCPID reads through CurrentPID() instead of the field. The accessor
returns the same string under an RLock, so the empty-PID and strconv error
paths are unchanged; it is the only direct field read in the tree.

With the race gone, the Free-timeout spec no longer has to leave its
fixture process unstarted. It now runs a real child and asserts the child
genuinely exits, which is exactly what the earlier workaround gave up: the
spec could show the stop was reached and the slot released, but not that
SIGTERM ever landed. Termination is observed through Done(), which closes
only once the library has waited on the child. The pidfile-based liveness
helpers cannot serve here, because Stop() deletes the pidfile while
releasing the handle and so reports "not alive" even if no signal was sent.

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Code:claude-opus-4-8[1m] [Read] [Edit] [Bash]
@localai-bot

Copy link
Copy Markdown
Collaborator Author

Fourth commit 957c3d5f2 — bumps go-processmanager and uses the bump to restore an assertion this PR had to give up.

Why the bump. This PR's free_timeout_test.go originally left its fixture process deliberately unstarted, because starting a real process under -race tripped a data race in go-processmanager v0.1.1 (readPID() writing Process.PID unsynchronized while the library's own monitor goroutine read it) and would have turned the fail-closed scripts/model-lifecycle-conformance.sh gate red on an upstream bug. The recorded cost: the spec could prove the stop was reached and the slot released, but not that SIGTERM/SIGKILL actually landed.

That race is now fixed upstream (mudler/go-processmanager#6). Pinned to v0.1.2-0.20260719202549-a94e2b7e5f4f — a pseudo-version, as upstream has not cut a tag past v0.1.1.

Migration. The upstream fix deprecated the exported PID field (a direct read still races with the monitor clearing it on exit) and added CurrentPID(). pkg/model/process.go:224 (GetGRPCPID) was the only direct .PID read on a go-processmanager Process in the tree — confirmed by grepping all *.go including tests/e2e/. CurrentPID() is an RLock-guarded read of the same field, so ""-when-unstarted semantics and the existing strconv.Atoi error path are unchanged; verified against upstream source rather than assumed.

The assertion, restored. The spec now Run()s a real /bin/sleep 300 child and after the stop asserts both that Done() closes (which only happens once go-processmanager has Wait()ed on the child) and that the PID is gone via a kernel Signal(0) probe.

The Signal(0) probe is deliberate and worth a reviewer's attention: IsAlive() and every pidfile-based helper are useless as termination assertions here, because Stop() deletes the pidfile in release(). They would report "not alive" even if no signal had ever been sent, so a test built on them would pass against a completely broken stop.

The new assertions were falsified before being trusted — pointing the supervisor at a decoy process made the spec fail on the Done() assertion, confirming it has teeth. Reverted immediately after.

Verification with a real process started under -race:

==> [1/3] Go lifecycle and busy-accounting conformance with -race
ok  pkg/model  2.910s
ok  pkg/grpc   2.145s
ok  core/services/worker  6.550s
==> [2/3] ok  core/services/nodes  1.219s
==> [3/3] FizzBee ... PASSED
==> model-lifecycle-conformance OK (Go + FizzBee)

So the upstream fix holds under LocalAI's own fail-closed race gate, not only in its own suite.

make lint 0 issues; coverage gate OK at 53.4% (baseline 48.5%, untouched).

Note for anyone running the gate on a shared box: core/http needs LOCALAI_TEST_HTTP_PORT set when something else holds :9090, otherwise it burns all five flake-retries on bind: address already in use and fails on an environmental collision rather than a real one.

@mudler
mudler merged commit f735cb2 into master Jul 19, 2026
68 checks passed
@mudler
mudler deleted the fix/reap-deleted-backend-process branch July 19, 2026 23:09
mudler added a commit that referenced this pull request Jul 20, 2026
… coverage-ratchet fixes (#10989)

* fix(http): make /readyz reflect startup readiness instead of always 200

/readyz was registered as a static handler returning 200 unconditionally,
so it carried no information: it was green whenever it could be reached at
all. Readiness could not distinguish "serving" from "still starting", and
any future change that started the HTTP listener earlier would silently
turn the probe into a lie.

Track startup completion on the Application (atomic flag, flipped at the
very end of New() on the success path only) and have the readiness handler
consult it per request, returning 503 with a small JSON body while startup
is in progress. A nil readiness source fails open so embedders keep the
historical behaviour.

/healthz is deliberately left readiness-independent. Liveness and readiness
answer different questions, and failing liveness during a long preload makes
an orchestrator restart the pod mid-download so the preload never finishes.

This matters because since #10949 the startup preload materializes
HuggingFace artifacts for managed backends: tens of GB for a large model
(31 GB observed on a live cluster). Both probes stay in quietPaths and stay
exempt from auth.

Note the listener is still started only after New() returns, so today the
not-ready state is not observable over HTTP. Moving the listener earlier is
a separate, deliberate decision and is not made here.

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude:claude-opus-4-8 [Claude Code]

* chore(gitignore): anchor the mock-backend pattern so its source dir is traversable

The bare `mock-backend` pattern matched the *directory*
tests/e2e/mock-backend/, not just the binary built into it. Git will not
descend into an ignored directory even for tracked files, so
`git add tests/e2e/mock-backend/main.go` required -f. This was hit while
working on #10970.

Anchor it to the artifact's full path. The built binary stays ignored (it is
also covered by tests/e2e/mock-backend/.gitignore) while the source directory
becomes traversable again.

Verified with `git check-ignore -v`: a new source file under
tests/e2e/mock-backend/ is no longer ignored, and the binary produced by
`make build-mock-backend` still is.

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude:claude-opus-4-8 [Claude Code]

* chore(coverage): raise the coverage ratchet from 48.5% to 54.2%

The committed baseline had drifted well below reality: it still read 48.5%
while a full instrumented run measures 54.2%. A stale-low baseline makes the
gate meaningless — coverage could regress by more than 5 percentage points
and still pass.

Raising a ratchet is a deliberate act, not something to fold into an
unrelated fix, so it gets its own commit. The headroom was earned by tests
landed in #10946, #10947, #10948, #10949, #10956, #10967, #10968, #10970 and
#10975.

Measured with `make test-coverage` on this branch (the same instrumented run
`make test-coverage-baseline` uses: ginkgo over ./pkg and ./core plus the
in-process tests/e2e suite, --covermode=atomic, --coverpkg over core/... and
pkg/..., generated protobuf excluded). The run completed with exit 0 and zero
spec failures; the total was then written with the exact command the
test-coverage-baseline target uses:

  go tool cover -func=coverage/coverage.out \
    | awk '/^total:/{gsub(/%/,"",$NF); print $NF}' > coverage-baseline.txt

Verified afterwards with scripts/coverage-check.sh, which reports OK.

Note the measured figure includes the readiness specs added earlier on this
branch, so it is a demonstrated floor rather than an estimate.

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude:claude-opus-4-8 [Claude Code]

---------

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants