-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Remove support for GET _aliases #15817
Comments
There used to be a difference between GET _alias and GET _aliases (the details of which escape me) which Kibana depended on, but I think this has been resolved. @rashidkpc could you confirm? |
@spalger you were looking at this the other day. Where did we decide to go with it? |
I was looking at this from the perspective of removing it from the client, not sure how it relates to Kibana. |
this appears to be a duplicate of #13906. +1 for removing asap, especially given that filtering aliases by name doesn't work. |
Thank you @javanna. For whatever reason I did not find this issue. Closing this then. |
GET /{index}/_aliases/{name}
is supposed to filter aliases by index and/or by name.But if you want to filter only by alias
name
, it gives you back all indices:We don't document
GET _aliases
anymore so may be we should remove its support as we can do the same thing withGET _alias
API.Might be related to #4743
Related to elastic/elasticsearch-js#331
The text was updated successfully, but these errors were encountered: