Add retrier interface and exponential backoff class.#15
Merged
Conversation
This was referenced Feb 26, 2026
Draft
f28ff0f to
81d6f86
Compare
81d6f86 to
54f4dd9
Compare
Divyansh-db
approved these changes
Mar 2, 2026
Contributor
|
Just a question, why have we not implemented RetryOnCode() as it exists in Go SDK? |
Contributor
Author
Yeah, I will do that later. This PR doesn't complete the porting. |
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.
🥞 Stacked PR
Use this link to review incremental changes.
What changes are proposed in this pull request?
Add the
apimodule with retry infrastructure, ported from the Go SDK's api/retrier.go. This is the first building block of the API execution layer.BackoffPolicy— exponential backoff with jitter, computing a random delay in [0, current] that grows by a configurable factor and is capped at a maximum. Based on the Exponential Backoff And Jitter pattern.Retrier— interface for retry decisions, returning a delay in milliseconds orundefinedif the error is not retriable.retryOn— factory function that pairs a backoff policy with a custom predicate to produce aRetrier.BackoffPolicyOptions— exported configuration interface with JSDoc.Notable deviations from Go:
time.Duration→ milliseconds asnumber.Retrier.isRetriablereturnsnumber | undefinedinstead of(Duration, bool)— idiomatic TypeScript.How is this tested?
Unit tests.