fix(ci): give e2e_multiple_blobs AVM check-circuit a larger timeout/CPU budget#23787
Closed
AztecBot wants to merge 1 commit into
Closed
fix(ci): give e2e_multiple_blobs AVM check-circuit a larger timeout/CPU budget#23787AztecBot wants to merge 1 commit into
AztecBot wants to merge 1 commit into
Conversation
Collaborator
Author
|
Automatically closing this stale claudebox draft PR (no updates for 5+ days). Re-open if still needed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
avm-check-circuitjob failed onnext(run 26784473487) with exit code 124 (timeout).A single input timed out —
e2e_multiple_blobstx0x17e546c9…— while every other input passed in ~4s:Root cause
Not a correctness bug or a hang. The
e2e_multiple_blobstx produces by far the largest AVM circuit (~700k rows). On the default isolate resources (2 CPUs, 8g), the per-input run breaks down as:All AVM check-circuit inputs share a single
TIMEOUT=30sbudget inavm_check_circuit_cmds. This input simply doesn't fit in 30s on 2 CPUs — exactly the case the existingWARNINGcomment in that function anticipated ("transactions could need more CPU and MEM than we allocate by default … they might start timing out").Fix
Add a per-input override (mirroring the per-test override idiom already used in
test_cmds) so the largee2e_multiple_blobscircuit getsCPUS=8:TIMEOUT=180s. More CPUs cut the CPU-bound trace generation substantially, and the longer timeout gives generous headroom for the check itself. All other small inputs keep the defaultTIMEOUT=30s/ 2 CPUs, so overall stage parallelism is unaffected. Peak memory (~3.9 GiB) is already under the 8g default, so MEM is left unchanged.Notes
nextas requested by the CI failure dispatch.Created by claudebox · group:
slackbot