fix(ci): upgrade rust-e2e-large-kona-sequencer to 2xlarge resource class#19552
Closed
fix(ci): upgrade rust-e2e-large-kona-sequencer to 2xlarge resource class#19552
Conversation
The large-kona-sequencer devnet config spins up 9 nodes (1 kona sequencer with reth + 4 kona validators with reth + 4 kona validators with geth). On xlarge (8 vCPU, 16GB RAM) the container is consistently killed by the OOM killer before any test step runs, producing failures with no visible failed steps. Split large-kona-sequencer out of the matrix and give it 2xlarge (16 vCPU, 32GB RAM) to accommodate the memory requirements of the full devnet. Fixes flaky failures on #19548 (job 4581496) and #19525 (job 4581006). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
theochap
approved these changes
Mar 15, 2026
Member
theochap
left a comment
There was a problem hiding this comment.
Let's also reduce the number of validator nodes in the large kona sequencer preset
Contributor
Author
|
Claude: Closing in favor of removing the variant entirely. It runs the same tests as |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #19552 +/- ##
==========================================
- Coverage 75.5% 75.5% -0.1%
==========================================
Files 675 675
Lines 71571 71571
==========================================
- Hits 54079 54073 -6
- Misses 17348 17354 +6
Partials 144 144
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
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.
Summary
Upgrade the
rust-e2e-large-kona-sequencerCI job fromxlarge(8 vCPU, 16GB) to2xlarge(16 vCPU, 32GB) to fix a flakyTestSyncSafefailure.Root Cause
The
large-kona-sequencerdevnet config spins up ~20+ processes: 9 L2 CL nodes (1 kona sequencer + 4 kona-reth validators + 4 kona-geth validators), 9 L2 EL nodes, plus L1, batcher, and supervisor. Onxlarge, resource contention causes kona-node engine API calls to time out:When payload insertions fail, the safe head can't advance, and
TestSyncSafeexhausts its retry budget (80 attempts * 2s = 160s) with:This failure was previously invisible at the test level because the rust-e2e jobs didn't report JUnit XML results to CircleCI. It showed up only as a job-level failure. #19548 adds
store_test_resultsto make these visible.Change
Added a
resource_classparameter torust-e2e-sysgo-tests(defaults toxlargeso existing variants are unchanged) and splitlarge-kona-sequencerout of the matrix withresource_class: 2xlarge.Test plan
rust-e2e-large-kona-sequencerpasses on 2xlarge🤖 Generated with Claude Code