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

executor: remove unnecessary memory allocation in (*HashAggExec).initPartialWorkers #52418

Merged
merged 5 commits into from
May 13, 2024

Conversation

xzhangxian1008
Copy link
Contributor

@xzhangxian1008 xzhangxian1008 commented Apr 8, 2024

What problem does this PR solve?

Issue Number: close #52321

Problem Summary:

What changed and how does it work?

no_optimization
no optimization
optimized
optimization

no optimization flame graph
optimization flame graph

Check List

Tests

  • Unit test
  • Integration test
  • Manual test (add detailed scripts or steps below)
  • No need to test
    • I checked and no code files have been changed.

Side effects

  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Breaking backward compatibility

Documentation

  • Affects user behaviors
  • Contains syntax changes
  • Contains variable changes
  • Contains experimental features
  • Changes MySQL compatibility

Release note

Please refer to Release Notes Language Style Guide to write a quality release note.

None

@ti-chi-bot ti-chi-bot bot added release-note-none Denotes a PR that doesn't merit a release note. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Apr 8, 2024
Copy link

tiprow bot commented Apr 8, 2024

Hi @xzhangxian1008. Thanks for your PR.

PRs from untrusted users cannot be marked as trusted with /ok-to-test in this repo meaning untrusted PR authors can never trigger tests themselves. Collaborators can still trigger tests on the PR using /test all.

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/test-infra repository.

Copy link

codecov bot commented Apr 8, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 74.4476%. Comparing base (cfbabfa) to head (61ddc98).
Report is 125 commits behind head on master.

Additional details and impacted files
@@               Coverage Diff                @@
##             master     #52418        +/-   ##
================================================
+ Coverage   72.3769%   74.4476%   +2.0706%     
================================================
  Files          1474       1517        +43     
  Lines        427589     465159     +37570     
================================================
+ Hits         309476     346300     +36824     
- Misses        98890      98921        +31     
- Partials      19223      19938       +715     
Flag Coverage Δ
integration 48.6013% <100.0000%> (?)
unit 71.9969% <100.0000%> (+0.7368%) ⬆️

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

Components Coverage Δ
dumpling 53.9957% <ø> (ø)
parser ∅ <ø> (∅)
br 36.5363% <ø> (-4.6730%) ⬇️

@ti-chi-bot ti-chi-bot bot added size/M Denotes a PR that changes 30-99 lines, ignoring generated files. and removed size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Apr 10, 2024
@xzhangxian1008
Copy link
Contributor Author

/cc @XuHuaiyu @hawkingrei

@ti-chi-bot ti-chi-bot bot requested review from hawkingrei and XuHuaiyu April 11, 2024 02:07
@hawkingrei
Copy link
Member

@xzhangxian1008 Can you add some profiler to verify your improvement.

@hawkingrei
Copy link
Member

/retest

@xzhangxian1008
Copy link
Contributor Author

@xzhangxian1008 Can you add some profiler to verify your improvement.

ok

@xzhangxian1008
Copy link
Contributor Author

/cc @hawkingrei @XuHuaiyu

@ti-chi-bot ti-chi-bot bot added approved needs-1-more-lgtm Indicates a PR needs 1 more LGTM. labels Apr 24, 2024
@xzhangxian1008
Copy link
Contributor Author

/cc @XuHuaiyu

2 similar comments
@xzhangxian1008
Copy link
Contributor Author

/cc @XuHuaiyu

@xzhangxian1008
Copy link
Contributor Author

/cc @XuHuaiyu

@xzhangxian1008 xzhangxian1008 requested a review from XuHuaiyu May 9, 2024 03:10
},
}

func getBuffer() (*[][]aggfuncs.PartialResult, *[][]byte) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Why use *[][]xx instead of [][]xx

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Why use *[][]xx instead of [][]xx

It's better to return pointer type in sync.Pool, refer

@xzhangxian1008
Copy link
Contributor Author

/cc @XuHuaiyu

@ti-chi-bot ti-chi-bot bot requested a review from XuHuaiyu May 13, 2024 01:08
Copy link

ti-chi-bot bot commented May 13, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: hawkingrei, XuHuaiyu

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

The pull request process is described here

Needs approval from an approver in each of these files:
  • OWNERS [XuHuaiyu,hawkingrei]

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ti-chi-bot ti-chi-bot bot added lgtm and removed needs-1-more-lgtm Indicates a PR needs 1 more LGTM. labels May 13, 2024
Copy link

ti-chi-bot bot commented May 13, 2024

[LGTM Timeline notifier]

Timeline:

  • 2024-04-24 06:39:58.252263172 +0000 UTC m=+155954.992166081: ☑️ agreed by hawkingrei.
  • 2024-05-13 02:22:41.706961137 +0000 UTC m=+1447115.464096705: ☑️ agreed by XuHuaiyu.

Copy link

tiprow bot commented May 13, 2024

@xzhangxian1008: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
tidb_parser_test 61ddc98 link true /test tidb_parser_test
fast_test_tiprow 61ddc98 link true /test fast_test_tiprow

Full PR test history. Your PR dashboard.

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. I understand the commands that are listed here.

@ti-chi-bot ti-chi-bot bot merged commit 3239d12 into pingcap:master May 13, 2024
21 of 23 checks passed
@xzhangxian1008 xzhangxian1008 deleted the fix-52321 branch May 13, 2024 06:39
terry1purcell pushed a commit to terry1purcell/tidb that referenced this pull request May 17, 2024
RidRisR pushed a commit to RidRisR/tidb that referenced this pull request May 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved lgtm release-note-none Denotes a PR that doesn't merit a release note. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

reuse memory when to (*HashAggExec).initPartialWorkers
3 participants