-
Notifications
You must be signed in to change notification settings - Fork 25.1k
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
SQL: Support Frozen indices #39390
Labels
Comments
Pinging @elastic/es-search |
I would be in favor of giving the user the option (or explicit consent) that they want to search such an index. Just like ES itself "asks" for such a special consent through |
costin
added a commit
to costin/elasticsearch
that referenced
this issue
Apr 25, 2019
Allow querying of FROZEN indices both through dedicated SQL grammar extension: > SELECT field FROM FROZEN index and also through driver configuration parameter, namely: > index.include.frozen: true/false Fix elastic#39390 Fix elastic#39377
costin
added a commit
that referenced
this issue
May 9, 2019
matriv
pushed a commit
to matriv/elasticsearch
that referenced
this issue
May 24, 2019
Allow querying of FROZEN indices both through dedicated SQL grammar extension: > SELECT field FROM FROZEN index and also through driver configuration parameter, namely: > index.include.frozen: true/false Fix elastic#39390 Fix elastic#39377 (cherry picked from commit 2445a93)
gurkankaymak
pushed a commit
to gurkankaymak/elasticsearch
that referenced
this issue
May 27, 2019
Allow querying of FROZEN indices both through dedicated SQL grammar extension: > SELECT field FROM FROZEN index and also through driver configuration parameter, namely: > index.include.frozen: true/false Fix elastic#39390 Fix elastic#39377
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Introduced in 6.6, frozen indices support searches within certain constraints.
SQL should be able to detect them and run queries around them. Even better, it should chose the correct search options (such as
pre_filter_shard_size
).Related to #39377
The text was updated successfully, but these errors were encountered: