-
Notifications
You must be signed in to change notification settings - Fork 54
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
Add retries to worker health check #1009
Comments
As part of this issue, we can move the |
As part of this issue, we can change a bit the strategy for selecting available workers in order to get a more even distribution of requests: #1017 (comment) |
In a couple of sentences, could you describe how we could change the strategy? |
Currently we are using last in first out for the workers, a change to first in first out should reduce this. We don't need to change the structure used to contain the workers, but how we get workers. |
What should be done?
In the proxy, we should be able to define a number of retries for the health check before removing it from the list of available.
Also, health checks are being performed sequentially, we need to change the implementation to use parallel execution for this.
How should it be done?
When is this task done?
The task is done when a retry policy is in place and check calls are not sequential anymore.
Additional context
No response
The text was updated successfully, but these errors were encountered: