-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Support object fields in star-tree index #16728
Support object fields in star-tree index #16728
Conversation
Signed-off-by: bharath-techie <bharath78910@gmail.com>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #16728 +/- ##
============================================
- Coverage 72.28% 72.28% -0.01%
- Complexity 65238 65286 +48
============================================
Files 5297 5299 +2
Lines 303351 303510 +159
Branches 43918 43935 +17
============================================
+ Hits 219279 219386 +107
- Misses 66120 66138 +18
- Partials 17952 17986 +34 ☔ View full report in Codecov by Sentry. |
Signed-off-by: bharath-techie <bharath78910@gmail.com>
|
server/src/main/java/org/opensearch/index/mapper/DocumentParser.java
Outdated
Show resolved
Hide resolved
Changes look good, please add changelog entry. |
❌ Gradle check result for 995f912: 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? |
3897a5e
to
4da6d64
Compare
Signed-off-by: bharath-techie <bharath78910@gmail.com>
4da6d64
to
797e3f1
Compare
❌ Gradle check result for 797e3f1: 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? |
797e3f1
to
270bc13
Compare
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-16728-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 d7641ca8788441e384fbde6c58b6f2530ec8772d
# Push it to GitHub
git push --set-upstream origin backport/backport-16728-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 |
--------- Signed-off-by: bharath-techie <bharath78910@gmail.com>
Description
We'll support object type fields with this change for star-tree index.
Star-tree index will still block array values for the object fields.
Example :
Related Issues
#16730
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.