cmd/utils/app, db/integrity: add time budget for integrity checks#20773
Merged
Conversation
Add `--integrity.budget <duration>` to `erigon seg integrity` that caps total wall-clock time for an integrity run. - When set, checks are sorted cheap → heavy (based on `integrity.FastChecks` order) and each receives a per-check deadline of `remaining / remaining_checks`, so finishing early on a cheap check rolls budget forward to the heavy tail. - On per-check timeout: log `[integrity] budget exhausted, moving on` at INFO and continue to the next check. Not treated as an integrity failure — `--failFast` only reacts to actual integrity errors. - When not set (default): no change in behavior — user-supplied order preserved, no deadline applied. - `BlockReader.IntegrityTxnID` now takes `ctx` and polls every 1000 segments so `BlocksTxnID` honors the budget. - `CheckKvi` producer now checks `ctx` every 100k keys, so skip-heavy runs (e.g. `CommitmentKvi` with `SampleRatio=0`) don't overshoot their slice by minutes. - `doPublishable` takes `datadir.Dirs` directly instead of `*cli.Context`. follow up: - pick to release/3.4 - change automation script to allot 30min budget --------- Co-authored-by: Alex Sharov <AskAlexSharov@gmail.com>
sudeepdino008
approved these changes
Apr 24, 2026
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.
Cherry-pick of #20714 to release/3.4.