-
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
Changes to build star tree in off heap #14817
Changes to build star tree in off heap #14817
Conversation
c459d9a
to
551e941
Compare
❌ Gradle check result for c459d9a: 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 551e941: 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? |
551e941
to
853be87
Compare
❌ Gradle check result for 853be87: 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? |
...va/org/opensearch/index/compositeindex/datacube/startree/builder/OffHeapStarTreeBuilder.java
Outdated
Show resolved
Hide resolved
❌ Gradle check result for fed49c9: 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? |
fed49c9
to
dc6bd14
Compare
Signed-off-by: Bharathwaj G <[email protected]>
99c5a21
to
0d753f2
Compare
❌ Gradle check result for 0d753f2: 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? |
0d753f2
to
0a10ea9
Compare
❌ Gradle check result for 0a10ea9: 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? |
…off_heap_star_tree
0a10ea9
to
8d50c39
Compare
❕ Gradle check result for 8d50c39: 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. |
server/src/main/java/org/opensearch/common/util/ByteArrayBackedBitset.java
Show resolved
Hide resolved
--------- Signed-off-by: Bharathwaj G <[email protected]>
--------- Signed-off-by: Bharathwaj G <[email protected]>
--------- Signed-off-by: Bharathwaj G <[email protected]> (cherry picked from commit a918530) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
--------- (cherry picked from commit a918530) Signed-off-by: Bharathwaj G <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
--------- Signed-off-by: Bharathwaj G <[email protected]>
Description
Sort and aggregation of segment documents when building star tree takes up lots of resources if they are stored in in-memory structures like Lists. So this issue tracks the off heap implementation where we store and retrieve the star tree documents in off heap method using temporary files.
Related Issues
Resolves #14815
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.