-
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
[WLM] Fix the QueryGroupTask logging bug #17169
[WLM] Fix the QueryGroupTask logging bug #17169
Conversation
* add wlm support for scroll API Signed-off-by: Kaushal Kumar <[email protected]> * add CHANGELOG entry Signed-off-by: Kaushal Kumar <[email protected]> * remove untagged tasks from WLM tracking Signed-off-by: Kaushal Kumar <[email protected]> * add UTs for invalid tasks Signed-off-by: Kaushal Kumar <[email protected]> * fix UT failures Signed-off-by: Kaushal Kumar <[email protected]> * rename a field in QueryGroupTask Signed-off-by: Kaushal Kumar <[email protected]> --------- Signed-off-by: Kaushal Kumar <[email protected]>
@kaushalmahi12 - We can probably skip the change for scroll API in 2.x, as even without that, the bug should get fixed? |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 2.x #17169 +/- ##
============================================
+ Coverage 71.89% 71.91% +0.01%
- Complexity 65852 65889 +37
============================================
Files 5332 5332
Lines 306587 306594 +7
Branches 44720 44721 +1
============================================
+ Hits 220429 220482 +53
+ Misses 67754 67734 -20
+ Partials 18404 18378 -26 ☔ View full report in Codecov by Sentry. |
server/src/main/java/org/opensearch/action/search/TransportSearchScrollAction.java
Outdated
Show resolved
Hide resolved
ec3dec0
to
d7be772
Compare
Signed-off-by: Kaushal Kumar <[email protected]>
d7be772
to
11bd8bd
Compare
❌ Gradle check result for 11bd8bd: TIMEOUT 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? |
@jainankitk @kaushalmahi12 FYI constructors can be exempt from the compatibility check as most API classes are not meant to be constructed by downstream components. See #14575 |
Thanks @andrross for sharing. Good to know about this! |
This change is taken from the PR: #16981 which fixes the #16874 bug.