fix(ci): benchmark_regression job intermittently hangs/times out and never signals real regressions correctly #86
Labels
No labels
auto/blocked-by-deps
auto/ci-timeout
auto/claimed-implementer
auto/claimed-merge
auto/claimed-reviewer
auto/driver-down
auto/invariant-violation
auto/last-attempt-tier-0
auto/last-attempt-tier-1
auto/last-attempt-tier-2
auto/last-attempt-tier-min
Automation Tracking
auto/needs-conflict-resolution
auto/needs-implementer
auto/postmortem
auto/ready-to-merge
auto/restart-throttled
auto/revert
auto/sentinel
auto/stale-inactivity
auto/unstable
Blocked
Bounty
$100
Bounty
$1000
Bounty
$10000
Bounty
$20
Bounty
$2000
Bounty
$250
Bounty
$50
Bounty
$500
Bounty
$5000
Bounty
$750
MoSCoW
Could have
MoSCoW
Must have
MoSCoW
Should have
Needs Feedback
Points
1
Points
13
Points
2
Points
21
Points
3
Points
34
Points
5
Points
55
Points
8
Points
88
Priority
Backlog
Priority
CI Blocker
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Signed-off: Owner
Signed-off: Scrum Master
Signed-off: Tech Lead
Spike
State
Completed
State
Duplicate
State
In Progress
State
In Review
State
Paused
State
Unverified
State
Verified
State
Wont Do
Type
Automation
Type
Bug
Type
Discussion
Type
Documentation
Type
Epic
Type
Feature
Type
Legendary
Type
Refactor
Type
Support
Type
Task
Type
Testing
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Depends on
#87 fix(ci): make benchmark_regression job fast and correctly fail on regressions
cleveragents/cleveractors-core
Reference
cleveragents/cleveractors-core#86
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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?
Metadata
Background and context
While investigating a hung
benchmarkCI job on PR #85's run (https://git.cleverthis.com/cleveragents/cleveractors-core/actions/runs/31568/jobs/205876), the "Run ASV benchmark regression check via nox" step ran for 41m13s and ended infailure, withcontinue-on-error: trueso it did not block the PR. Fixing this uncovered three compounding issues rather than one.Issue 1 — ASV calibration overhead
noxfile.py'sbenchmark_regressionsession ranasv continuous origin/master HEAD --show-stderrwith none of ASV's speed-oriented flags. By default, ASV auto-calibrates the iteration count per benchmark, runs multiple timed repeats, and repeats the whole cycle acrossprocesses(default 2) — for 2 commits × 69 benchmarks = 138 full calibrated runs. Individual benchmarks cost 20-90s of wall clock between log entries, while their actual measured cost was microseconds-to-low-milliseconds — ASV's own calibration/repeat overhead, not the code under test, dominated total time.Issue 2 — packaging bottleneck (surfaced after fixing #1)
After scoping ASV's
--quickflag to CI (fixing issue 1), a second, independent run (https://git.cleverthis.com/cleveragents/cleveractors-core/actions/runs/31578/jobs/205924) still took ~14 minutes.asv.conf.json'sbuild_command/install_command/uninstall_commandused plainpython -m build/pip, which silently spent ~11 minutes per run — PEP 517 build isolation plus a full, uncachedpip installof the whole dependency tree (langchain/langgraph, etc.) per compared commit, with no console output during pip's resolver work.uv(already installed and used elsewhere in this CI job) doesn't share pip's slow/silent resolver behavior, but a naive swap to bareuv build/uv pip install/uv pip uninstallinitially failed withModuleNotFoundError: No module named 'cleveractors', because:find_executable()only searches each managed virtualenv's ownbin/directory, never$PATH— so a system-leveluvbinary is invisible to it unless installed into that venv.uv pip install/uv pip uninstall(unlikepython -m pip install, which is unambiguous becausepythonitself is resolved from inside the target venv) has no reliable way to infer which of ASV's several per-commit venvs to target without an explicit--pythonargument.Issue 3 — success_codes never matched ASV's real exit code
asv continuousreturns the booleanworsenedas its process exit code:0= no significant regression,1= a benchmark measurably worsened past--factor. There is no exit code2in this ASV version.noxfile.py's pre-existingsuccess_codes=[0, 2]therefore never matched the real "worsened" code (1), so the session — and by extension the CI job step — failed unconditionally on any regression signal, real or noise, ever since this job was first wired into CI. This was independent of issues 1 and 2 and pre-dated all of this work.Current behavior (before this fix)
noxfile.py'sbenchmark_regressionsession does not forward extra CLI args toasv continuous, always running full (non-quick) calibration.asv.conf.jsonuses plainpython -m build/pipfor its own per-commit environment build/install/uninstall.noxfile.py'ssuccess_codes=[0, 2]for theasv continuouscall does not include1, the actual "worsened" exit code.failureregardless of whether a real regression occurred.Expected behavior
benchmark_regressionrun completes reliably in a small fraction of the previous time (--quick, scoped to CI only via*session.posargs).uv(fast, no silent resolver backtracking), correctly targeting each per-commit venv viamatrix-bootstrappeduv+ explicit--python {env_dir}/bin/python.asv continuousreports a real, significant regression (success_codes=[0]) — not on every run regardless of significance.continue-on-error: trueon the job (unchanged) is what keeps this from blocking the PR merge.noxfile.py'sbenchmark_regressionsession when invoked without extra args, for use at other CI stages later.Acceptance criteria
noxfile.py'sbenchmark_regressionsession forwards*session.posargstoasv continuous..gitea/workflows/ci.yml'sbenchmarkjob invokesnox -s benchmark_regression -- --quick.asv.conf.json'sbuild_command/install_command/uninstall_commanduseuv, withuvbootstrapped viamatrixand--python {env_dir}/bin/pythonpassed explicitly.noxfile.py'ssuccess_codesfor theasv continuouscall corrected to[0].rm -rf .asv/env .asv/resultsbetween runs): completes in ~3-11 minutes; correctly reportsfailedwhen a real regression is detected between the compared commits.benchmarkjob completes in a small fraction of the previous ~41 minutes, and that its conclusion matches whether a real regression was detected.nox -s coverage_reportunaffected (this change touches CI workflow/noxfile.py/asv.conf.json only, nosrc/changes).Supporting information
asv continuous --help:--quick, -q Do a "quick" run, where each benchmark function is run only once...asv/commands/continuous.py):return worsened— confirms the real exit-code semantics (0/1, never 2).asv/environment.py: find_executable): confirms the search is restricted to the managed venv's ownbin/, explaining why a system-leveluvwasn't found until added viamatrix.Subtasks
*session.posargsinnoxfile.py'sbenchmark_regressionsession--quickto.gitea/workflows/ci.yml'sbenchmarkjob invocation onlyasv.conf.json's build/install/uninstall commands touv, bootstrapped viamatrixand targeted via explicit--python {env_dir}/bin/pythonnoxfile.py'ssuccess_codesforasv continuousto[0]nox -s coverage_report(expected unaffected; confirm no regression)nox(all default sessions), fix any errorsDefinition of Done
This issue is complete when:
🤖 Generated with Claude Code
fix(ci): benchmark_regression job intermittently hangs/times out under full ASV calibrationto fix(ci): benchmark_regression job intermittently hangs/times out and never signals real regressions correctly