-
Notifications
You must be signed in to change notification settings - Fork 17.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
runtime: gc goroutine occasionally use 100% CPU #61046
Comments
Hm, this looks suspiciously like #57523. The fix for that was backported to Go 1.19, but I think the fix is only present in Go 1.19.7 and later. I noticed you're using Go 1.19.4. Can you try Go 1.19.7 and see if you can reproduce? Thanks! |
@mknyszek thx I have a question, as mentioned in #57523 , the cpu usage should drop after sweeping, but what i observed was continuously 100%,is this related to here is the callchains
|
@mknyszek I reproduce it in go 1.20.5,which shows lower probability, with the same perf record. only 2 goroutines are running goroutine 3 [running]: goroutine 23 [running]: runtime.forcegchelper() block at semacquire(&gcsema) goroutine 2 [semacquire]: many goroutines block at semacquire(&work.startSema) |
What version of Go are you using (
go version
)?go version 1.19.4
linux
amd64
Does this issue reproduce with the latest release?
not sure
What operating system and processor architecture are you using (
go env
)?GOARCH="amd64"
GOOS="linux"
What did you do?
run my application(using cgo) bind to last processor using taskset -c xx
(I'm looking for a way to reproduce this issue stably...)
What did you expect to see?
the cpu usage is stable
What did you see instead?
the cpu usage increased to 100% occasionally sometime
If I a) attached and detached the process using gdb or b) sent SIGSTOP and SIGCONT,the cpu usage was restored
top -Hp pid
one thread used 100% cpu
perf record -F 999 -t tid
result:
The text was updated successfully, but these errors were encountered: