Archived
runtime divergence: embedding persistence and SIGPIPE exist only in neuron's vendored el_runtime.c #86
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Two copies of
el_runtime.chave diverged, and the shared one — which every component except the neuron soul compiles against — is missing two fixes that are already written and proven.Measured
include_embel/lang/releases/v1.0.0-20260501/el_runtime.c(shared, what CI pulls)el/lang/el-compiler/runtime/el_runtime.cneuron/vendor/el-runtime/v1.0.0-20260501/el_runtime.cSame version string. Different contents.
Why it matters
Embedding persistence. The engram's own build recipe (
.gitea/workflows/*) pulls the runtime from the el release registry, so a correctly-built engram still cannot persist meaning-vectors. On 2026-08-09 a vectorised graph was loaded into the operator's store: it returned{"ok":true}, node counts matched exactly, the save reported success — and every one of 39,957 vectors was silently discarded. Rebuilding the same source against the vendored runtime persisted all 39,957 across akill -9.Crash protection. A client hanging up mid-response kills a daemon with no SIGPIPE handling. The operator's soul crashed this way repeatedly on 2026-08-08 (recorded exit signal 13), each crash costing ~25 minutes of unavailability. The fix exists in the vendored copy only.
Consequence
Any component that builds against the shared runtime is permanently behind on both. That is currently everything except the neuron soul, which vendors its own copy.
Ask
Propagate the
include_emband SIGPIPE changes from the vendored copy intolang/releases/v1.0.0-20260501/el_runtime.c, or record a deliberate decision that the vendored copy is authoritative and have other components vendor it too.We can prepare the PR — flagging rather than pushing unreviewed changes into shared infrastructure we cannot test every consumer of.