Test foliage with curl retry backoff and download concurrency limit#1249
Closed
angerman wants to merge 2 commits intoIntersectMBO:mainfrom
Closed
Test foliage with curl retry backoff and download concurrency limit#1249angerman wants to merge 2 commits intoIntersectMBO:mainfrom
angerman wants to merge 2 commits intoIntersectMBO:mainfrom
Conversation
Point foliage input at angerman/foliage#fix/retry-backoff-download-concurrency (input-output-hk/foliage#115) to test the fix for transient HTTP 502 failures under high parallelism (-j 0).
The previous commit only updated flake.lock (locked section) but nix resolves from the original URL in flake.nix, so the old foliage was still being used. Update flake.nix to point directly at the PR branch.
Contributor
Author
|
Reopening as a non-fork PR so CI has access to signing keys for deploy-check. |
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
Test PR to validate input-output-hk/foliage#115 which adds:
--retry 3 --retry-connrefused— retries transient HTTP errors (408, 429, 500, 502, 503, 504) with exponential backoff (1s, 2s, 4s)Resource— prevents hundreds of simultaneous curl processes from overwhelming GitHub when running with-j 0This addresses the repeated transient HTTP 502 failures seen in #1248 (failed 4 times before succeeding on the 5th manual re-run, each time on a different package).
Changes
flake.lockto point foliage input atangerman/foliage@fix/retry-backoff-download-concurrencyExpected outcome
The CI build should succeed without the transient 502 failures that previously required manual re-runs.