-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Enabled default throttling for all tasks submitted to cluster manager #17711
base: main
Are you sure you want to change the base?
Enabled default throttling for all tasks submitted to cluster manager #17711
Conversation
e8571ca
to
031e751
Compare
❌ Gradle check result for 031e751: 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? |
031e751
to
7aa3bc8
Compare
❌ Gradle check result for 7aa3bc8: 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 7aa3bc8: 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? |
7aa3bc8
to
f7ca2c0
Compare
❕ Gradle check result for f7ca2c0: 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. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #17711 +/- ##
============================================
+ Coverage 72.29% 72.47% +0.18%
- Complexity 65900 66073 +173
============================================
Files 5350 5350
Lines 306185 306211 +26
Branches 44373 44376 +3
============================================
+ Hits 221347 221923 +576
+ Misses 66670 66136 -534
+ Partials 18168 18152 -16 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Test Result (1 failure / -34) Flaky Test - #14289 |
❕ Gradle check result for 3306d3c: 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. |
Signed-off-by: Manik Garg <[email protected]>
3306d3c
to
ec0e94f
Compare
❌ Gradle check result for ec0e94f: 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? |
Test Result (2 failures / -1) Flaky test: |
DEFAULT_THRESHOLDS.put(ClusterManagerTaskKeys.CREATE_INDEX_KEY, 50); | ||
DEFAULT_THRESHOLDS.put(ClusterManagerTaskKeys.UPDATE_SETTINGS_KEY, 50); |
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.
For the ones with value=50, should we skip populating the map DEFAULT_THRESHOLDS
?
DEFAULT_THRESHOLDS.put(ClusterManagerTaskKeys.DELETE_SEARCH_PIPELINE_KEY, 200); | ||
DEFAULT_THRESHOLDS.put(ClusterManagerTaskKeys.CREATE_PERSISTENT_TASK_KEY, 200); | ||
DEFAULT_THRESHOLDS.put(ClusterManagerTaskKeys.FINISH_PERSISTENT_TASK_KEY, 200); | ||
DEFAULT_THRESHOLDS.put(ClusterManagerTaskKeys.REMOVE_PERSISTENT_TASK_KEY, 200); |
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.
why do we require 200 ? Can this be 50 as well given that the calls are task related and is expected to be low.
Description
Enabled default throttling for all tasks submitted to cluster manager.
Related Issues
Resolves #17685
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.