-
Notifications
You must be signed in to change notification settings - Fork 725
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
client/http: add scheduleUpdateMembersInfo to get the latest members ASAP #7675
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,8 @@ type clientInner struct { | |
ctx context.Context | ||
cancel context.CancelFunc | ||
|
||
updateMembersInfoNotifier chan struct{} | ||
|
||
sync.RWMutex | ||
pdAddrs []string | ||
leaderAddrIdx int | ||
|
@@ -73,7 +75,12 @@ type clientInner struct { | |
|
||
func newClientInner(source string) *clientInner { | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
return &clientInner{ctx: ctx, cancel: cancel, leaderAddrIdx: -1, source: source} | ||
return &clientInner{ | ||
ctx: ctx, | ||
cancel: cancel, | ||
updateMembersInfoNotifier: make(chan struct{}, 1), | ||
leaderAddrIdx: -1, | ||
source: source} | ||
} | ||
|
||
func (ci *clientInner) init() { | ||
|
@@ -97,6 +104,13 @@ func (ci *clientInner) close() { | |
} | ||
} | ||
|
||
func (ci *clientInner) scheduleUpdateMembersInfo() { | ||
select { | ||
case ci.updateMembersInfoNotifier <- struct{}{}: | ||
default: | ||
} | ||
} | ||
|
||
// getPDAddrs returns the current PD addresses and the index of the leader address. | ||
func (ci *clientInner) getPDAddrs() ([]string, int) { | ||
ci.RLock() | ||
|
@@ -158,6 +172,8 @@ func (ci *clientInner) requestWithRetry( | |
if err == nil { | ||
return nil | ||
} | ||
// Schedule the members info update if the leader request failed to get the latest leader as soon as possible. | ||
ci.scheduleUpdateMembersInfo() | ||
log.Debug("[pd] request leader addr failed", | ||
zap.String("source", ci.source), zap.Int("leader-idx", leaderAddrIdx), zap.String("addr", addr), zap.Error(err)) | ||
} | ||
|
@@ -169,11 +185,13 @@ func (ci *clientInner) requestWithRetry( | |
addr = ci.pdAddrs[idx] | ||
err = ci.doRequest(ctx, addr, reqInfo, headerOpts...) | ||
if err == nil { | ||
break | ||
return nil | ||
} | ||
log.Debug("[pd] request follower addr failed", | ||
zap.String("source", ci.source), zap.Int("idx", idx), zap.String("addr", addr), zap.Error(err)) | ||
} | ||
// Schedule the members info update if all the requests failed to get the latest members as soon as possible. | ||
ci.scheduleUpdateMembersInfo() | ||
return err | ||
} | ||
|
||
|
@@ -258,17 +276,17 @@ func (ci *clientInner) doRequest( | |
} | ||
|
||
func (ci *clientInner) membersInfoUpdater(ctx context.Context) { | ||
ci.updateMembersInfo(ctx) | ||
log.Info("[pd] http client member info updater started", zap.String("source", ci.source)) | ||
ticker := time.NewTicker(defaultMembersInfoUpdateInterval) | ||
defer ticker.Stop() | ||
for { | ||
ci.updateMembersInfo(ctx) | ||
select { | ||
case <-ctx.Done(): | ||
log.Info("[pd] http client member info updater stopped", zap.String("source", ci.source)) | ||
return | ||
case <-ticker.C: | ||
ci.updateMembersInfo(ctx) | ||
case <-ci.updateMembersInfoNotifier: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fallthrough There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||
} | ||
} | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
better using retry mechanism
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.
After using ServiceDiscovery, we can use
ScheduleCheckMemberChanged
. How about waiting for #7668