forked from actions/runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Copilot/migrate selfupdater retryhelper #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jamesfrasca
wants to merge
10
commits into
main
Choose a base branch
from
copilot/migrate-selfupdater-retryhelper
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
1c51181
Add minimal RetryHelper and migrate RunnerDotcomServer
jamesfrasca dec9142
Migrate ConfigurationManager retry loops to RetryHelper
jamesfrasca 3134c50
Migrate EstablishVssConnection to RetryHelper
jamesfrasca 4f7006e
Migrate LocationServer retries to RetryHelper
jamesfrasca 1e9ba05
Add context-aware RetryHelper operation callbacks
jamesfrasca 14772b8
Migrate SelfUpdater download retries to RetryHelper
jamesfrasca dc0a097
Refactor retry flow to OperationOutcome model
jamesfrasca 7dc5ff0
Add standard RetryBackoffs policies
jamesfrasca ff636ea
Migrate service-call retries to RetryHelper
jamesfrasca 2a1616a
Migrate worker container retries to RetryHelper
jamesfrasca File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,117 @@ | ||
| using System; | ||
|
|
||
| namespace GitHub.Runner.Common | ||
| { | ||
| public static class RetryBackoffs | ||
| { | ||
| public static Func<int, int, Exception, TimeSpan> Fixed(TimeSpan delay) | ||
| { | ||
| if (delay < TimeSpan.Zero) | ||
| { | ||
| throw new ArgumentOutOfRangeException(nameof(delay)); | ||
| } | ||
|
|
||
| return (_, _, _) => delay; | ||
| } | ||
|
|
||
| public static Func<int, int, Exception, TimeSpan> Random(TimeSpan minDelay, TimeSpan maxDelay) | ||
| { | ||
| ValidateRange(minDelay, maxDelay); | ||
|
|
||
| return (_, _, _) => NextDelay(minDelay, maxDelay); | ||
| } | ||
|
|
||
| public static Func<int, int, Exception, TimeSpan> Exponential(TimeSpan minDelay, TimeSpan maxDelay, TimeSpan deltaDelay) | ||
| { | ||
| ValidateRange(minDelay, maxDelay); | ||
| if (deltaDelay < TimeSpan.Zero) | ||
| { | ||
| throw new ArgumentOutOfRangeException(nameof(deltaDelay)); | ||
| } | ||
|
|
||
| return (attempt, _, _) => | ||
| { | ||
| var exponent = Math.Max(0, attempt); | ||
| var additional = (Math.Pow(2.0, exponent) - 1.0) * deltaDelay.TotalMilliseconds; | ||
| var delayMs = Math.Min(minDelay.TotalMilliseconds + additional, maxDelay.TotalMilliseconds); | ||
| return TimeSpan.FromMilliseconds(Math.Max(0, delayMs)); | ||
| }; | ||
| } | ||
|
|
||
| public static Func<int, int, Exception, TimeSpan> ExponentialFullJitter(TimeSpan minDelay, TimeSpan maxDelay, TimeSpan deltaDelay) | ||
| { | ||
| ValidateRange(minDelay, maxDelay); | ||
| if (deltaDelay < TimeSpan.Zero) | ||
| { | ||
| throw new ArgumentOutOfRangeException(nameof(deltaDelay)); | ||
| } | ||
|
|
||
| return (attempt, _, _) => | ||
| { | ||
| var exponent = Math.Max(0, attempt); | ||
| var additional = (Math.Pow(2.0, exponent) - 1.0) * deltaDelay.TotalMilliseconds; | ||
| var capMs = Math.Min(minDelay.TotalMilliseconds + additional, maxDelay.TotalMilliseconds); | ||
| var floorMs = minDelay.TotalMilliseconds; | ||
|
|
||
| if (capMs <= floorMs) | ||
| { | ||
| return TimeSpan.FromMilliseconds(floorMs); | ||
| } | ||
|
|
||
| var jitterMs = global::System.Random.Shared.NextDouble() * (capMs - floorMs); | ||
| return TimeSpan.FromMilliseconds(floorMs + jitterMs); | ||
| }; | ||
| } | ||
|
|
||
| public static Func<int, int, Exception, TimeSpan> DecorrelatedJitter(TimeSpan minDelay, TimeSpan maxDelay) | ||
| { | ||
| ValidateRange(minDelay, maxDelay); | ||
|
|
||
| var previous = minDelay; | ||
| return (_, _, _) => | ||
| { | ||
| var upperBoundMs = Math.Min(maxDelay.TotalMilliseconds, previous.TotalMilliseconds * 3); | ||
| if (upperBoundMs <= minDelay.TotalMilliseconds) | ||
| { | ||
| previous = minDelay; | ||
| return previous; | ||
| } | ||
|
|
||
| var nextMs = minDelay.TotalMilliseconds + (global::System.Random.Shared.NextDouble() * (upperBoundMs - minDelay.TotalMilliseconds)); | ||
| previous = TimeSpan.FromMilliseconds(nextMs); | ||
| return previous; | ||
| }; | ||
| } | ||
|
|
||
| private static void ValidateRange(TimeSpan minDelay, TimeSpan maxDelay) | ||
| { | ||
| if (minDelay < TimeSpan.Zero) | ||
| { | ||
| throw new ArgumentOutOfRangeException(nameof(minDelay)); | ||
| } | ||
|
|
||
| if (maxDelay < TimeSpan.Zero) | ||
| { | ||
| throw new ArgumentOutOfRangeException(nameof(maxDelay)); | ||
| } | ||
|
|
||
| if (maxDelay < minDelay) | ||
| { | ||
| throw new ArgumentOutOfRangeException(nameof(maxDelay)); | ||
| } | ||
| } | ||
|
|
||
| private static TimeSpan NextDelay(TimeSpan minDelay, TimeSpan maxDelay) | ||
| { | ||
| if (minDelay == maxDelay) | ||
| { | ||
| return minDelay; | ||
| } | ||
|
|
||
| var minMs = minDelay.TotalMilliseconds; | ||
| var rangeMs = maxDelay.TotalMilliseconds - minMs; | ||
| var jitterMs = global::System.Random.Shared.NextDouble() * rangeMs; | ||
| return TimeSpan.FromMilliseconds(minMs + jitterMs); | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we create a helper function that automatically wraps functions in OperationOutcome objects?