We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, requests against Konnect do not take API rate limiting under account.
That means that when 429s start coming in from Konnect then no particular back off strategy is going to kick in.
This issue tracks the effort to implement such a mechanism so that hitting API quota is handled gracefully via most likely
return ctrl.Result{ RequeueAfter: <?>, }, nil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem statement
Currently, requests against Konnect do not take API rate limiting under account.
That means that when 429s start coming in from Konnect then no particular back off strategy is going to kick in.
This issue tracks the effort to implement such a mechanism so that hitting API quota is handled gracefully via most likely
Acceptance criteria
The text was updated successfully, but these errors were encountered: