-
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: maybe allgs should shrink after peak load #34457
Comments
In fact, allgs never been reduced, it is not conducive to stability, should provide a strategy to reduce, such as sysmon monitoring found that more than half of g are dead, then release it. |
This comment has been minimized.
This comment has been minimized.
Your observation is correct. Currently the runtime never frees the g objects created for goroutines, though it does reuse them. The main reason for this is that the scheduler often manipulates g pointers without write barriers (a lot of scheduler code runs without a P, and hence cannot have write barriers), and this makes it very hard to determine when a g can be garbage collected. One possible solution is to use an RCU-like reclamation scheme over the Ms that understands when each M's scheduler passes through a quiescent state. Then we could schedule unused gs to be reclaimed after a grace period, when all of the Ms have been in a quiescent state. Unfortunately, we can't simply use STWs to detect this grace period because those stop all Ps, so, just like the write barriers, those won't protect against scheduler instances manipulating gs without a P. @changkun, I'm not sure what your benchmark is measureing. Calling |
This comment has been minimized.
This comment has been minimized.
Calling Benchmark aside, though, I think we're all clear on the issue that Since gs are just heap allocated, it would make the most sense to collect them during GC like other heap allocations. The question is when it's safe to unlink them from |
so every time defer runtime.GC? |
@matteo-gz GC is run between benchmarks. For asking questions, see:
|
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Y
What operating system and processor architecture are you using (
go env
)?any
What did you do?
When serving a peak load, the system creates a lot of goroutines, and after that the goroutine garbages cause more CPU consuming.
This can be reproduced by:
after 10 seconds, the inuse objects still remain the same.

What did you expect to see?
The global goroutines shrink to a proper size.
What did you see instead?
Many inuse objects created by malg
The text was updated successfully, but these errors were encountered: