fix(ci): remove large-kona-sequencer rust-e2e variant#19553
Merged
Conversation
The large-kona-sequencer config (1 kona sequencer + 4 reth validators + 4 geth validators) runs the same tests as simple-kona-sequencer with no additional test logic — the tests just iterate over more nodes. The only difference is scale, but with 20+ processes on xlarge (8 vCPU, 16GB), kona-node engine API calls intermittently time out under resource pressure, causing TestSyncSafe to flake. The simple-kona-sequencer variant already covers the kona-sequencer + mixed-validator topology with 1 of each type. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
theochap
approved these changes
Mar 15, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #19553 +/- ##
========================================
Coverage 75.5% 75.5%
========================================
Files 675 675
Lines 71571 71571
========================================
+ Hits 54069 54090 +21
+ Misses 17358 17337 -21
Partials 144 144
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
ClaytonNorthey92
pushed a commit
to hemilabs/optimism
that referenced
this pull request
Mar 19, 2026
…ism#19553) The large-kona-sequencer config (1 kona sequencer + 4 reth validators + 4 geth validators) runs the same tests as simple-kona-sequencer with no additional test logic — the tests just iterate over more nodes. The only difference is scale, but with 20+ processes on xlarge (8 vCPU, 16GB), kona-node engine API calls intermittently time out under resource pressure, causing TestSyncSafe to flake. The simple-kona-sequencer variant already covers the kona-sequencer + mixed-validator topology with 1 of each type. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ClaytonNorthey92
pushed a commit
to hemilabs/optimism
that referenced
this pull request
Mar 23, 2026
…ism#19553) The large-kona-sequencer config (1 kona sequencer + 4 reth validators + 4 geth validators) runs the same tests as simple-kona-sequencer with no additional test logic — the tests just iterate over more nodes. The only difference is scale, but with 20+ processes on xlarge (8 vCPU, 16GB), kona-node engine API calls intermittently time out under resource pressure, causing TestSyncSafe to flake. The simple-kona-sequencer variant already covers the kona-sequencer + mixed-validator topology with 1 of each type. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
Remove the
large-kona-sequencerdevnet config from the rust-e2e CI pipeline. It runs the same tests assimple-kona-sequencer— the test code just iterates over more nodes in the preset slices. There's no test logic that specifically exercises multi-peer scenarios.With 9 CL + 9 EL nodes (~20 processes) on
xlarge(8 vCPU, 16GB), kona-node engine API calls intermittently time out under resource pressure, causingTestSyncSafeto flake with "operation failed permanently after 80 attempts: expected head to advance: local-safe".What's removed
large-kona-sequencerfrom the CI matrix inrust-e2e.ymllarge-kona-sequencerfrom therequired-rust-e2egaterust/kona/tests/justfileWhat remains
simple-kona-sequencer(1 kona sequencer + 1 reth validator + 1 geth validator) covers the same topology.Test plan
rust-e2e-simple-kona-sequencerstill passesrequired-rust-e2egate no longer references the removed job🤖 Generated with Claude Code