-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Derived Field] Integration tests for derived fields #13721
[Derived Field] Integration tests for derived fields #13721
Conversation
❌ Gradle check result for 2648711: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 17b7d5b: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
17b7d5b
to
bd085ed
Compare
❌ Gradle check result for bd085ed: null Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for bd085ed: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for bd085ed: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
bd085ed
to
0dc0e59
Compare
Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com>
❌ Gradle check result for 0aa121d: Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com>
Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com>
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.
lgtm - @rishabhmaurya pls tag flakies here if not already done.
❌ Gradle check result for ed2223a: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch/backport-2.x
# Create a new branch
git switch --create backport/backport-13721-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 c49eca4061d3af9af77a3eacd28043200343ba98
# Push it to GitHub
git push --set-upstream origin backport/backport-13721-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch/backport-2.x Then, create a pull request where the |
…ect#13721) * Integration test for derived fields * tests derived fields when defined in index mappings * tests derived fields when defined in query * tests mappings and settings updates for derived fields * tests index and search analyzer applicability on derived fields * tests query string Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * rename source_indexed_field to prefilter_field Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * Add entry to CHANGELOG Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> --------- Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> (cherry picked from commit c49eca4)
* Fix the breaking change check due to Derived fields changes in 2.15 Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * [Derived Field] Integration tests for derived fields (#13721) * Integration test for derived fields * tests derived fields when defined in index mappings * tests derived fields when defined in query * tests mappings and settings updates for derived fields * tests index and search analyzer applicability on derived fields * tests query string Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * rename source_indexed_field to prefilter_field Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * Add entry to CHANGELOG Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> --------- Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> (cherry picked from commit c49eca4) --------- Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com>
* Fix the breaking change check due to Derived fields changes in 2.15 Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * [Derived Field] Integration tests for derived fields (opensearch-project#13721) * Integration test for derived fields * tests derived fields when defined in index mappings * tests derived fields when defined in query * tests mappings and settings updates for derived fields * tests index and search analyzer applicability on derived fields * tests query string Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * rename source_indexed_field to prefilter_field Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * Add entry to CHANGELOG Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> --------- Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> (cherry picked from commit c49eca4) --------- Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> Signed-off-by: kkewwei <kkewwei@163.com>
…ect#13721) * Integration test for derived fields * tests derived fields when defined in index mappings * tests derived fields when defined in query * tests mappings and settings updates for derived fields * tests index and search analyzer applicability on derived fields * tests query string Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * rename source_indexed_field to prefilter_field Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> * Add entry to CHANGELOG Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com> --------- Signed-off-by: Rishabh Maurya <rishabhmaurya05@gmail.com>
Description
ignore_malformed
,format
,source_indexed_field
andproperties
for explicit type definitions.The diff will reduce once preceding PRs are merged - #13592, #13717 and #13720
Related Issues
Resolves
#13715
#13143
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.