-
Notifications
You must be signed in to change notification settings - Fork 25.2k
SQL: Deprecation warning when querying a frozen index or listing frozen indices #81939
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
Labels
Comments
Pinging @elastic/es-ql (Team:QL) |
12 tasks
Luegg
pushed a commit
to Luegg/elasticsearch
that referenced
this issue
Feb 23, 2022
…yword (elastic#83943) Resolves elastic#81939 (part of elastic#70192) Deprecates the `index_include_frozen` REST parameter in the `/_sql` endpoint and all the syntax including the `FROZEN` keyword. # Conflicts: # x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/LogicalPlanBuilder.java
probakowski
pushed a commit
to probakowski/elasticsearch
that referenced
this issue
Feb 23, 2022
…yword (elastic#83943) Resolves elastic#81939 (part of elastic#70192) Deprecates the `index_include_frozen` REST parameter in the `/_sql` endpoint and all the syntax including the `FROZEN` keyword.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Frozen indices are deprecated which makes all the SQL features supporting frozen indices obsolete.
This includes:
index_include_frozen
request parameter in the_sql
endpointindex.include.frozen
(J|O)DBC driver settingsSHOW TABLES INCLUDE FROZEN
queries and theFROZEN INDEX
kind in the corresponding responseFROZEN
modifier inFROM
clauses (as inSELECT * FROM FROZEN archive
)_search
raises a deprecation warning when frozen indices are being searched withignore_throttled=false
. SQL could do the same when theindex_include_frozen
request parameter is set or when theFROZEN
keyword is used.Relates to #70192
The text was updated successfully, but these errors were encountered: