-
Notifications
You must be signed in to change notification settings - Fork 5.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
br: optimize memory allocation in waitUntilAllScheduleStopped #58806
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @arturmelanchyk. Thanks for your PR. I'm waiting for a pingcap member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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-sigs/prow repository. |
Hi @arturmelanchyk. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. 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-sigs/prow repository. |
/ok-to-test |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #58806 +/- ##
================================================
+ Coverage 73.4645% 74.6848% +1.2202%
================================================
Files 1676 1691 +15
Lines 464424 463892 -532
================================================
+ Hits 341187 346457 +5270
+ Misses 102397 95827 -6570
- Partials 20840 21608 +768
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Signed-off-by: Artur Melanchyk <[email protected]>
2131787
to
49cd4f6
Compare
[FORMAT CHECKER NOTIFICATION] Notice: To remove the 📖 For more info, you can check the "Contribute Code" section in the development guide. Notice: To remove the For example:
📖 For more info, you can check the "Contribute Code" section in the development guide. |
Hi @hawkingrei |
@hawkingrei |
Hello @arturmelanchyk , This has the following labels set:
Usually we require a linked issue that describes the problem etc. For some small, technical issues we sometimes don't need this, which is indicated by the Could you check the "Manual test" checkbox if you have done manual testing, showing that the problem is gone? |
@@ -353,6 +353,8 @@ func waitUntilAllScheduleStopped(ctx context.Context, cfg Config, allStores []*m | |||
defer mutex.Unlock() | |||
allRegions = append(allRegions, regions...) | |||
} | |||
|
|||
storeLeaderRegionsFlat := make([]*metapb.Region, 0, 100*len(allStores)) |
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.
Why 100? Maybe add a comment? Do you expect 100 regions per store?
@@ -371,7 +373,7 @@ func waitUntilAllScheduleStopped(ctx context.Context, cfg Config, allStores []*m | |||
return errors.Trace(err) | |||
} | |||
|
|||
storeLeaderRegions := make([]*metapb.Region, 0, 100) | |||
storeLeaderRegions := storeLeaderRegionsFlat[i*100 : 0 : (i+1)*100] |
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.
Is this the same 100? does it need to be kept in sync with the other 100 on line 357? If so, maybe put it in a variable.
/cc @hawkingrei |
I suggest giving some benchmark data to verify the performance improvement here |
Yes. See also https://pkg.go.dev/testing#hdr-Benchmarks |
What problem does this PR solve?
Issue Number: close #xxx
Problem Summary:
What changed and how does it work?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.