We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GOMAXPROCS sets the maximum number of CPUs that can be executing. this call will go away when the scheduler improves.
GOMAXPROCS
Default of GOMAXPROCS set by runtime.NumCPU and for normal machine is perfect.
runtime.NumCPU
But on Linux container CPU quota sometime is limit and make performance issue.
We can use https://github.com/uber-go/automaxprocs and set GOMAXPROCS base on machine state.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the problem you'd like to have solved
GOMAXPROCS
sets the maximum number of CPUs that can be executing. this call will go away when the scheduler improves.Default of
GOMAXPROCS
set byruntime.NumCPU
and for normal machine is perfect.But on Linux container CPU quota sometime is limit and make performance issue.
Describe the ideal solution
We can use https://github.com/uber-go/automaxprocs and set
GOMAXPROCS
base on machine state.The text was updated successfully, but these errors were encountered: