-
Notifications
You must be signed in to change notification settings - Fork 720
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
mcs: forward region requests to scheduling server #7023
Conversation
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
Skipping CI for Draft Pull Request. |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
51566c5
to
d5016d7
Compare
a46a3e5
to
8adb0d0
Compare
8adb0d0
to
239c75b
Compare
@rleungx: The specified target(s) for
Use
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/test build |
239c75b
to
5125b20
Compare
Codecov Report
@@ Coverage Diff @@
## master #7023 +/- ##
==========================================
+ Coverage 74.33% 74.40% +0.06%
==========================================
Files 437 440 +3
Lines 46855 47150 +295
==========================================
+ Hits 34831 35080 +249
- Misses 8947 8985 +38
- Partials 3077 3085 +8
Flags with carried forward coverage won't be shown. Click here to find out more. |
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.
the rest LGTM
pkg/core/region.go
Outdated
@@ -194,6 +195,54 @@ func RegionFromHeartbeat(heartbeat *pdpb.RegionHeartbeatRequest, opts ...RegionC | |||
return region | |||
} | |||
|
|||
// RegionFromForward constructs a Region from forwarded region heartbeat. | |||
func RegionFromForward(heartbeat *schedulingpb.RegionHeartbeatRequest, opts ...RegionCreateOption) *RegionInfo { |
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.
RegionFromForward and RegionFromHeartbeat seem to be different only regionKvSize := heartbeat.GetApproximateKvSize() / units.MiB
here.
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.
request type is different
} | ||
|
||
// processRegionHeartbeat updates the region information. | ||
func (c *Cluster) processRegionHeartbeat(region *core.RegionInfo) error { |
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.
Maybe we can reduce some of the duplicate functions, and of course, we can do it in the next pr.
ef6995f
to
97c330e
Compare
97c330e
to
bf547b5
Compare
Signed-off-by: Ryan Leung <[email protected]>
Signed-off-by: Ryan Leung <[email protected]>
Signed-off-by: Ryan Leung <[email protected]>
Signed-off-by: Ryan Leung <[email protected]>
Signed-off-by: Ryan Leung <[email protected]>
Signed-off-by: Ryan Leung <[email protected]>
Signed-off-by: Ryan Leung <[email protected]>
bf547b5
to
d5dbe36
Compare
Signed-off-by: Ryan Leung <[email protected]>
/merge |
@rleungx: It seems you want to merge this PR, I will help you trigger all the tests: /run-all-tests You only need to trigger
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
This pull request has been accepted and is ready to merge. Commit hash: d11279a
|
ref tikv#5839 Signed-off-by: Ryan Leung <[email protected]>
What problem does this PR solve?
Issue Number: Ref #5839.
What is changed and how does it work?
This PR is used to forward region requests to the scheduling server and let it handle the scheduling directly, the operator will be brought through forwarded heartbeat response to API server. Then send it to TiKV.
Check List
Tests
Release note