-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[ML] Disable EIS rate limiting within the inference API #133845
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
Merged
jonathan-buttner
merged 17 commits into
elastic:main
from
jonathan-buttner:ml-remove-eis-rl
Sep 3, 2025
Merged
Changes from 6 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
006bdf2
Starting refactor
jonathan-buttner 2a7ff64
Merge branch 'main' of github.com:elastic/elasticsearch into ml-remov…
jonathan-buttner fca2543
Not sending enabled field across nodes
jonathan-buttner 80d4224
Adding transport version change
jonathan-buttner 2ca11e2
Merge branch 'main' of github.com:elastic/elasticsearch into ml-remov…
jonathan-buttner d8b841f
Removing minimum settings changes
jonathan-buttner 97a3730
Addressing feedback
jonathan-buttner cee82cf
Merge branch 'main' of github.com:elastic/elasticsearch into ml-remov…
jonathan-buttner dc7f53b
Rejecting rate limit field
jonathan-buttner df0a224
Ensure parsing from index does not throw
jonathan-buttner 314b4ba
Merge branch 'main' of github.com:elastic/elasticsearch into ml-remov…
jonathan-buttner 910d317
Adding test to throw when rate limit is in request
jonathan-buttner 6fd0c6d
Merge branch 'main' into ml-remove-eis-rl
jonathan-buttner 48e88b3
Returning validation exception for rate limit field
jonathan-buttner a1d75fe
Merge branch 'main' of github.com:elastic/elasticsearch into ml-remov…
jonathan-buttner 04d5699
Merge branch 'ml-remove-eis-rl' of github.com:jonathan-buttner/elasti…
jonathan-buttner dfd9154
Merge branch 'main' of github.com:elastic/elasticsearch into ml-remov…
jonathan-buttner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With these changes, the
context
argument is no longer used, so it can be removed. This also applies to the other*ServiceSettings
classes.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah great point. I'm going to remove them from the
*Settings
classes but leave them in the models just in case we need the context for a settings class in the future. That way we don't have to plumb it through again.