-
Notifications
You must be signed in to change notification settings - Fork 2.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
fix: Search/Query may failed during updating delegator cache #37174
Conversation
casue init query node client is too heavy, so we remove updateShardClient from leader mutex, which cause much more concurrent cornor cases. This PR delay query node client's init operation until `getClient` is called, then use leader mutex to protect updating shard client progress to avoid concurrent issues. Signed-off-by: Wei Liu <[email protected]>
Signed-off-by: Wei Liu <[email protected]>
if err != nil { | ||
return nil, err | ||
return errors.Wrap(err, fmt.Sprintf("create client for node=%d failed", n.info.nodeID)) |
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.
Will the already created client be cleaned up before returning an error?
Signed-off-by: Wei Liu <[email protected]>
@weiliu1031 E2e jenkins job failed, comment |
/run-cpu-e2e |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 2.4 #37174 +/- ##
==========================================
- Coverage 80.58% 80.54% -0.05%
==========================================
Files 1066 1068 +2
Lines 165285 165638 +353
==========================================
+ Hits 133197 133414 +217
- Misses 27749 27859 +110
- Partials 4339 4365 +26
|
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: czs007, weiliu1031 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
issue: #37115
pr: #37116
casue init query node client is too heavy, so we remove updateShardClient from leader mutex, which cause much more concurrent cornor cases.
This PR delay query node client's init operation until
getClient
is called, then use leader mutex to protect updating shard client progress to avoid concurrent issues.