-
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
Disable concurrent aggs for Diversified Sampler and Sampler aggs #11087
Disable concurrent aggs for Diversified Sampler and Sampler aggs #11087
Conversation
Signed-off-by: Jay Deng <jayd0104@gmail.com>
8e63dcc
to
e122ba5
Compare
Compatibility status:Checks if related components are compatible with change 8e63dcc Incompatible componentsIncompatible components: [https://github.com/opensearch-project/performance-analyzer.git] Skipped componentsCompatible componentsCompatible components: [https://github.com/opensearch-project/security.git, https://github.com/opensearch-project/alerting.git, https://github.com/opensearch-project/index-management.git, https://github.com/opensearch-project/anomaly-detection.git, https://github.com/opensearch-project/sql.git, https://github.com/opensearch-project/job-scheduler.git, https://github.com/opensearch-project/asynchronous-search.git, https://github.com/opensearch-project/observability.git, https://github.com/opensearch-project/common-utils.git, https://github.com/opensearch-project/k-nn.git, https://github.com/opensearch-project/reporting.git, https://github.com/opensearch-project/cross-cluster-replication.git, https://github.com/opensearch-project/security-analytics.git, https://github.com/opensearch-project/custom-codecs.git, https://github.com/opensearch-project/performance-analyzer-rca.git, https://github.com/opensearch-project/ml-commons.git, https://github.com/opensearch-project/opensearch-oci-object-storage.git, https://github.com/opensearch-project/geospatial.git, https://github.com/opensearch-project/notifications.git, https://github.com/opensearch-project/neural-search.git] |
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #11087 +/- ##
============================================
+ Coverage 71.19% 71.23% +0.03%
- Complexity 58759 58773 +14
============================================
Files 4872 4872
Lines 276780 276773 -7
Branches 40241 40240 -1
============================================
+ Hits 197061 197156 +95
+ Misses 63331 63212 -119
- Partials 16388 16405 +17
|
Gradle Check (Jenkins) Run Completed with:
|
...internalClusterTest/java/org/opensearch/search/aggregations/bucket/DiversifiedSamplerIT.java
Show resolved
Hide resolved
server/src/internalClusterTest/java/org/opensearch/search/aggregations/bucket/SamplerIT.java
Show resolved
Hide resolved
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-11087-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1130d656a64a3c8e7476c5776b9e6c9efe937255
# Push it to GitHub
git push --set-upstream origin backport/backport-11087-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 |
@jed326 please send manual backport to |
Sorry about the delay @jed326 , it seems like @peternied just merged it |
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com>
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com>
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com>
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com>
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com>
) (#11105) Signed-off-by: Jay Deng <jayd0104@gmail.com>
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com>
…nsearch-project#11087) Signed-off-by: Jay Deng <jayd0104@gmail.com> Signed-off-by: Shivansh Arora <hishiv@amazon.com>
Description
Disable concurrent aggs for Diversified Sampler and Sampler aggs. See #11075 (comment) for more details.
Related Issues
Resolves #10046
Resolves #10893
Resolves #10822
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.