-
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
Searching multiple aliases using wildcard and ignore_unavailable=true throws index closed exception #13278
Labels
Comments
@javanna any ideas here? |
sorry it took me a while to get to this, I confirm it's a bug, we don't look at the state of the aliases although we should after #9057. Need to dig deeper to see if this is a regression or just something that we never really covered. |
Nice, thanks for the confirmation |
clintongormley
added
:Aliases
:Data Management/Indices APIs
APIs to create and manage indices and templates
labels
Oct 15, 2015
I'm seeing the same issue. When can we expect a fix and in which version of es? (currently on 1.6) |
s1monw
added a commit
to s1monw/elasticsearch
that referenced
this issue
Jan 11, 2016
We fail today with ClusterBlockExceptions if an alias expands to a closed index during search since we miss to check the index option down the road after we expanded aliases. Closes elastic#13278
s1monw
added a commit
to s1monw/elasticsearch
that referenced
this issue
Jan 11, 2016
We fail today with ClusterBlockExceptions if an alias expands to a closed index during search since we miss to check the index option down the road after we expanded aliases. Closes elastic#13278
s1monw
added a commit
that referenced
this issue
Jan 11, 2016
We fail today with ClusterBlockExceptions if an alias expands to a closed index during search since we miss to check the index option down the road after we expanded aliases. Closes #13278
s1monw
added a commit
that referenced
this issue
Jan 11, 2016
We fail today with ClusterBlockExceptions if an alias expands to a closed index during search since we miss to check the index option down the road after we expanded aliases. Closes #13278
s1monw
added a commit
that referenced
this issue
Jan 11, 2016
We fail today with ClusterBlockExceptions if an alias expands to a closed index during search since we miss to check the index option down the road after we expanded aliases. Closes #13278
This was referenced Jan 13, 2016
clintongormley
added
:Data Management/Indices APIs
APIs to create and manage indices and templates
and removed
:Aliases
labels
Feb 13, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Each of my
logstash-YYYY.MM.DD
indices has a filtered alias added to it namederror_messages-YYYY.MM.DD
. Any that are older than 30 days are closed.I'm seeing strange behavior when trying to do a match_all query on
error_messages-*
.This is using the Java transport client. ES version 1.6.0.
So I set
IndicesOptions.lenientExpandOpen()
to ignore unavailable indices and got a different (but similiar) error.Interestingly, this query works via HTTP API in Marvel:
Also interesting is if I use the concrete index pattern
logstash-*
, the queries work in Java.The text was updated successfully, but these errors were encountered: