-
Notifications
You must be signed in to change notification settings - Fork 25.6k
ESQL: Honor skip_unavailable setting for nonmatching indices errors at planning time #116348
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
Merged
quux00
merged 26 commits into
elastic:main
from
quux00:esql-ccs/skip_unavailable-missing-indices-t2
Nov 14, 2024
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
de67736
Intmd commit - going to split into refactoring ticket
quux00 0669837
updateExecutionInfoWithClustersWithNoMatchingIndices updated to follo…
quux00 d89845b
Update docs/changelog/116348.yaml
quux00 1b0dc2e
Fixed checkstyle issues
quux00 3e824b1
It turns out we cannot rely on Map<String, IndexMode> indexNameWithMo…
quux00 33cd137
Fixed forbiddenAPI issues in CrossClustersQueryIT
quux00 c5bf23e
Added CrossClusterEsqlRCS1MissingIndicesIT
quux00 3b55eed
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 d72f22a
Added index aliases and filtered alias to CrossClustersQueryIT for no…
quux00 0693265
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 a619698
Added tests against index with no mappings to ensure correct error me…
quux00 3016c28
I have decided that this ticket will NOT try to handle missing enrich…
quux00 1c0e8ca
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 510ac39
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 906fb86
PR feedback - simplified EsqlSessionCCSUtils.missingIndicesIsFatal
quux00 c9a6433
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 211c7d0
Now handling date math in EsqlSessionCCSUtils.concreteIndexRequested
quux00 3fef0ba
Updatec yaml changelog with proper title and issue ref
quux00 3172e79
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 690670a
PR feedback: Removed IndexResolution.valid(EsIndex index,Set<String> …
quux00 931f83d
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 6c06c68
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 8d4d89b
Update docs/changelog/116348.yaml
quux00 13c5c96
Changing IndexResolution toString for invalid cases causes tests to b…
quux00 f6b9ec5
Merge remote-tracking branch 'elastic/main' into esql-ccs/skip_unavai…
quux00 6e99656
Fix changelong error
quux00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| pr: 116348 | ||
| summary: "ESQL: Honor skip_unavailable setting for nonmatching indices errors at planning time" | ||
| area: ES|QL | ||
| type: enhancement | ||
| issues: [ 114531 ] |
1,069 changes: 839 additions & 230 deletions
1,069
...rc/internalClusterTest/java/org/elasticsearch/xpack/esql/action/CrossClustersQueryIT.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You probably want to have the resolved indices in toString()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. Updated in next push.