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

Set max_threads according to the number of physical cpu cores #6481

Merged
merged 6 commits into from
Dec 15, 2022

Conversation

xzhangxian1008
Copy link
Contributor

What problem does this PR solve?

Issue Number: close #6480

Problem Summary:

What is changed and how it works?

Check List

Tests

  • Unit test
  • Integration test
  • Manual test (add detailed scripts or steps below)
  • No code

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

None

@ti-chi-bot
Copy link
Member

ti-chi-bot commented Dec 12, 2022

[REVIEW NOTIFICATION]

This pull request has been approved by:

  • bestwoody
  • yibin87

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 added 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. labels Dec 12, 2022
@xzhangxian1008
Copy link
Contributor Author

/cc @windtalker @yibin87

@JaySon-Huang
Copy link
Contributor

Can we remove the contrib/libcpuid ?

@xzhangxian1008
Copy link
Contributor Author

Can we remove the contrib/libcpuid ?

After decoupling the storage and compute, compute layer will have to get these information by itself, instead of from proxy.

Copy link
Contributor

@yibin87 yibin87 left a comment

Choose a reason for hiding this comment

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

Please double check the "server_info.cpu_info.physical_cores" value in docker env. Others lgtm

@ti-chi-bot ti-chi-bot added the status/LGT1 Indicates that a PR has LGTM 1. label Dec 12, 2022
@Lloyd-Pottiger
Copy link
Contributor

Lloyd-Pottiger commented Dec 12, 2022

why is physical cpu cores? IMO, logical_cpu_cores / 2 is better

@Lloyd-Pottiger
Copy link
Contributor

why is physical cpu cores? IMO, logical_cpu_cores / 2 is better

the number of physical cpu cores in CH is also equal to logical_cpu_cores / 2, rather than the number of real hardware cores.

@ti-chi-bot ti-chi-bot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Dec 14, 2022
@ti-chi-bot ti-chi-bot added status/LGT2 Indicates that a PR has LGTM 2. and removed status/LGT1 Indicates that a PR has LGTM 1. labels Dec 14, 2022
@xzhangxian1008
Copy link
Contributor Author

/run-all-tests

Copy link
Contributor

@windtalker windtalker left a comment

Choose a reason for hiding this comment

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

LGTM

@xzhangxian1008
Copy link
Contributor Author

/run-all-tests

@windtalker windtalker added the needs-cherry-pick-release-6.5 Should cherry pick this PR to release-6.5 branch. label Dec 15, 2022
@windtalker
Copy link
Contributor

/merge

@ti-chi-bot
Copy link
Member

@windtalker: 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
Copy link
Member

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

Commit hash: 5f7408d

@ti-chi-bot ti-chi-bot added the status/can-merge Indicates a PR has been approved by a committer. label Dec 15, 2022
@ti-chi-bot ti-chi-bot merged commit c51206f into pingcap:master Dec 15, 2022
@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created to branch release-6.5: #6489.

@breezewish
Copy link
Member

https://github.com/ClickHouse/ClickHouse/blob/master/src/Common/getNumberOfPhysicalCPUCores.cpp#L51

In clickhouse, when cores < 32, it will set max threads according to logical cores instead of physical cores. May be we could follow this pattern?

@JaySon-Huang
Copy link
Contributor

JaySon-Huang commented Jan 31, 2023

The reason of changes in this PR is:

https://github.com/pingcap/tiflash/pull/6430/files#diff-64dad304ef83932f1dc505de02b2bca69271c6af8023291c2a71c61778e84dc2R168-R172
In #6430, SettingsMaxThreads is set to logical CPU cores but not physical cores. After that, TiFlash uses more threads to run some queries, which may bring performance regression. So keep the old logic by this PR.

@xzhangxian1008 xzhangxian1008 deleted the fix_cpus branch January 31, 2023 09:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-cherry-pick-release-6.5 Should cherry pick this PR to release-6.5 branch. 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.

Set max_threads according to the number of physical cpu cores
8 participants