Skip to content
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

pkg: reduce the allocation of observe #8188

Merged
merged 3 commits into from
May 21, 2024
Merged

Conversation

rleungx
Copy link
Member

@rleungx rleungx commented May 17, 2024

What problem does this PR solve?

Issue Number: ref #7897

What is changed and how does it work?

new:
Screenshot 2024-05-17 at 16 39 10

$ benchstat old.txt new.txt
goos: linux
goarch: amd64
pkg: github.com/tikv/pd/pkg/statistics
cpu: Intel(R) Xeon(R) Gold 6240 CPU @ 2.60GHz
           │   old.txt   │               new.txt               │
           │   sec/op    │   sec/op     vs base                │
Observe-72   2.003µ ± 8%   1.298µ ± 7%  -35.22% (p=0.000 n=10)

           │   old.txt   │              new.txt               │
           │    B/op     │    B/op     vs base                │
Observe-72   410.5 ± 22%   306.0 ± 0%  -25.46% (p=0.000 n=10)

           │  old.txt   │               new.txt               │
           │ allocs/op  │ allocs/op   vs base                 │
Observe-72   3.000 ± 0%   0.000 ± 0%  -100.00% (p=0.000 n=10)

Check List

Tests

  • Unit test

Release note

None.

Signed-off-by: Ryan Leung <[email protected]>
Copy link
Contributor

ti-chi-bot bot commented May 17, 2024

[REVIEW NOTIFICATION]

This pull request has been approved by:

  • JmPotato
  • nolouch

To complete the pull request process, please ask the reviewers in the list to review by filling /cc @reviewer in the comment.
After your PR has acquired the required number of LGTMs, you can assign this pull request to the committer in the list by filling /assign @committer in the comment to help you merge this pull request.

The full list of commands accepted by this bot can be found here.

Reviewer can indicate their review by submitting an approval review.
Reviewer can cancel approval by submitting a request changes review.

@ti-chi-bot ti-chi-bot bot added do-not-merge/needs-linked-issue release-note-none Denotes a PR that doesn't merit a release note. labels May 17, 2024
@ti-chi-bot ti-chi-bot bot requested review from HuSharp and JmPotato May 17, 2024 08:40
@ti-chi-bot ti-chi-bot bot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed do-not-merge/needs-linked-issue labels May 17, 2024
@ti-chi-bot ti-chi-bot bot added the status/LGT1 Indicates that a PR has LGTM 1. label May 21, 2024
} else if typ == MissPeer {
for i := 0; i < len(regionStatisticTypes); i++ {
condition := RegionStatisticType(1 << i)
if conditions&condition != 0 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer writing like this to prevent a big nest:

Suggested change
if conditions&condition != 0 {
if conditions&condition == 0 {
continue
}
// Switch logic

Signed-off-by: Ryan Leung <[email protected]>
Copy link

codecov bot commented May 21, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 77.36%. Comparing base (2fabb74) to head (6c3f0ea).

Current head 6c3f0ea differs from pull request most recent head b770f44

Please upload reports for the commit b770f44 to get more accurate results.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #8188      +/-   ##
==========================================
+ Coverage   77.34%   77.36%   +0.01%     
==========================================
  Files         471      471              
  Lines       61368    61398      +30     
==========================================
+ Hits        47466    47500      +34     
+ Misses      10341    10335       -6     
- Partials     3561     3563       +2     
Flag Coverage Δ
unittests 77.36% <100.00%> (+0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

@rleungx rleungx requested a review from JmPotato May 21, 2024 04:00
@ti-chi-bot ti-chi-bot bot added status/LGT2 Indicates that a PR has LGTM 2. and removed status/LGT1 Indicates that a PR has LGTM 1. labels May 21, 2024
@rleungx
Copy link
Member Author

rleungx commented May 21, 2024

/merge

Copy link
Contributor

ti-chi-bot bot commented May 21, 2024

@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 /merge once, and if the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes.

If you have any questions about the PR merge process, please refer to pr process.

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.

Copy link
Contributor

ti-chi-bot bot commented May 21, 2024

This pull request has been accepted and is ready to merge.

Commit hash: 6c3f0ea

@ti-chi-bot ti-chi-bot bot added the status/can-merge Indicates a PR has been approved by a committer. label May 21, 2024
@rleungx
Copy link
Member Author

rleungx commented May 21, 2024

/merge

Copy link
Contributor

ti-chi-bot bot commented May 21, 2024

@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 /merge once, and if the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes.

If you have any questions about the PR merge process, please refer to pr process.

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.

@ti-chi-bot ti-chi-bot bot merged commit 7731ee4 into tikv:master May 21, 2024
15 checks passed
@rleungx rleungx deleted the improve-observe branch May 21, 2024 09:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release-note-none Denotes a PR that doesn't merit a release note. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. status/can-merge Indicates a PR has been approved by a committer. status/LGT2 Indicates that a PR has LGTM 2.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants