Star Tree Implementation [OnHeap]#14512
Star Tree Implementation [OnHeap]#14512sachinpkale merged 16 commits intoopensearch-project:mainfrom
Conversation
|
❌ Gradle check result for e1bfa95: 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? |
server/src/main/java/org/apache/lucene/index/BaseSingleStarTreeBuilder.java
Outdated
Show resolved
Hide resolved
server/src/main/java/org/apache/lucene/index/BaseSingleStarTreeBuilder.java
Outdated
Show resolved
Hide resolved
server/src/main/java/org/apache/lucene/index/BaseSingleStarTreeBuilder.java
Outdated
Show resolved
Hide resolved
server/src/main/java/org/apache/lucene/index/BaseSingleStarTreeBuilder.java
Outdated
Show resolved
Hide resolved
server/src/main/java/org/apache/lucene/index/BaseSingleStarTreeBuilder.java
Outdated
Show resolved
Hide resolved
|
❌ Gradle check result for cc548f1: 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 cc548f1: 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? |
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
Signed-off-by: Sarthak Aggarwal <sarthagg@amazon.com>
|
❌ Gradle check result for e608c63: 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 081f8b8: UNSTABLE
Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
|
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-14512-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 a2cef8fcdeeaed4ca11f6c6d69a9c9cb5cd4d2c5
# Push it to GitHub
git push --set-upstream origin backport/backport-14512-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch/backport-2.xThen, create a pull request where the |
Description
This PR includes the algorithm to for creating the star tree data structure using the composite field. This includes the OnHeap Implementation to construct the star tree based on the composite index config specified by the user.
Built on top of: #14261
Related Issues
Resolves #14116
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.