Split actor retry exhaustion outcomes and increase backoff - #7414
Merged
Merged
Conversation
apeacock1991
force-pushed
the
sol/actor-retry-policy
branch
from
September 17, 2026 16:07
7f5d07a to
6fc6947
Compare
jtolio
approved these changes
Sep 17, 2026
Contributor
|
@apeacock1991 Bonk workflow was cancelled. View workflow run · To retry, trigger Bonk again. |
Distinguish retry loops that reach the attempt limit from those that run out of retry-start budget. This lets observers identify which constraint ended the loop.
Raise the full-jitter base delay from 50ms to 500ms. The four retry caps now span 500ms through 4s, giving transient failures more time to clear without increasing the attempt limit or retry budget.
apeacock1991
force-pushed
the
sol/actor-retry-policy
branch
from
September 18, 2026 09:04
6fc6947 to
06f6bb3
Compare
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.
Actor retry metrics currently combine attempt-limit and retry-budget exhaustion under one outcome. This splits them into
attempts_exhaustedandretry_budget_exhaustedso operators can tell which constraint stopped a retry loop.Raise the full-jitter base from 50ms to 500ms. There's evidence we're rapidly retrying and hitting the retry limit, so spacing them out more to see if that aids recovery rate.