Skip to content
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

Support retry delay with jitter? #509

Open
rileytomasek opened this issue May 31, 2023 · 4 comments
Open

Support retry delay with jitter? #509

rileytomasek opened this issue May 31, 2023 · 4 comments

Comments

@rileytomasek
Copy link

Thanks for creating ky! I used it extensively in my libraries and projects.

I'm running into an issue where I'm making a lot of calls in parallel to an API with a rate limit and the 429 retries are all happening at the same time and triggering the rate limit again. I've tested with a forked version of Ky and adding a random jitter to the retry time makes things much better.

I'm happy to contribute a PR, but wanted to see which, if any, solutions you are open to:

  1. Add a random jitter (and potentially a way to control it) to the retry calculation here
  2. Allow passing a custom function to replace BACKOFF_FACTOR * (2 ** (this._retryCount - 1)) * 1000
  3. Make it possible to do this from the beforeRetry hook?

For more context, what I tested was calculating a jitter factor like JITTER_FACTOR * randomBetween(1, -1) and then multiplying the existing retry time by that. It could be configured so that the default value is 1, so there is no change to existing retry time calculation.

@sindresorhus
Copy link
Owner

Yes, I'm open to all of this. 👍

@sindresorhus
Copy link
Owner

@rileytomasek Only number 2 of these requests have been done.

@sindresorhus sindresorhus reopened this Oct 22, 2023
@rileytomasek
Copy link
Author

@sindresorhus can’t number 1 be accomplished by adding jitter to the delay function? I’m not familiar with the beforeRetry hook to know if you could do it there, but is it required if you have 1 and 2?

@sindresorhus
Copy link
Owner

It can yes, but I think it could still be useful to have it built-in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants