[Index Management] Added features parameter to ES request fetching indices#124163
Merged
yuliacech merged 2 commits intoelastic:mainfrom Feb 2, 2022
Merged
[Index Management] Added features parameter to ES request fetching indices#124163yuliacech merged 2 commits intoelastic:mainfrom
features parameter to ES request fetching indices#124163yuliacech merged 2 commits intoelastic:mainfrom
Conversation
…e ES performance
Contributor
|
Pinging @elastic/platform-deployment-management (Team:Deployment Management) |
Contributor
Author
|
@elasticmachine merge upstream |
💚 Build SucceededMetrics [docs]
History
To update your PR or re-run it, just comment with: |
Contributor
Author
|
Thank you, @sebelga! |
Contributor
💔 Backport failedThe pull request could not be backported due to the following error: How to fixRe-run the backport manually: Questions ?Please refer to the Backport tool documentation |
Contributor
|
Actual version released is 8.2.0 |
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.
Summary
This PR adds the parameter
featureswhen requesting the list of all indices from Elasticsearch that has been exposed by the ES team to improve performance of the Get Index API. This option allows to specify which index properties need to be computed when getting index information:aliases,settingsand/ormappings. For Index Management request, we don't need to compute mappings.Note: Related to #123629 that added
filter_paththat allows to specify which index properties need to be included in the ES response but even when excluded index properties were still being calculated in ES.