-
Notifications
You must be signed in to change notification settings - Fork 1.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
unify leader change and machine not found #4022
Conversation
@@ -743,7 +743,8 @@ void MetaClient::getResponse(Request req, | |||
// succeeded | |||
pro.setValue(respGen(std::move(resp))); | |||
return; | |||
} else if (code == nebula::cpp2::ErrorCode::E_LEADER_CHANGED) { | |||
} else if (code == nebula::cpp2::ErrorCode::E_LEADER_CHANGED || | |||
code == nebula::cpp2::ErrorCode::E_MACHINE_NOT_FOUND) { |
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.
If so, why not just return E_MACHINE_NOT_FOUND
when the key not found in ActiveHostsMan::machineRegisted
...
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.
when the active hosts manager not found the hosts return E_MACHINE_NOT_FOUND
and set leader message
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.
I mean only leader could return E_MACHINE_NOT_FOUND
, follower will return LEADER_CHANGED, so we don't need to have to add any code in MetaClient
to handle E_MACHINE_NOT_FOUND
BTW, prefer to handle error code in heart beat.
|
|
Merge first, the code could be improved later |
Co-authored-by: Sophie <[email protected]>
Co-authored-by: Sophie <[email protected]>
* unify leader change and machine not found (#4022) Co-authored-by: Sophie <[email protected]> * delete src/common/encryption src/common/base/stringunorderedmap (#3867) * delete src/common/encryption * encryption format code * Update error message when connect with an out-of-date client (#4021) * Update error message * Do clientAddr check before FLAGS_enable_authorize check * Fix typo Co-authored-by: yaphet <[email protected]> Co-authored-by: Sophie <[email protected]> Co-authored-by: yuehua.jia <[email protected]>
What type of PR is this?
What problem(s) does this PR solve?
Issue(s) number:
Description:
How do you solve it?
Special notes for your reviewer, ex. impact of this fix, design document, etc:
Checklist:
Tests:
Affects:
Release notes:
Please confirm whether to be reflected in release notes and how to describe: