-
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: refresh MemStats for new GC #10323
Comments
There seems to be something seriously wrong with the MemStat.PastEnd values on Linux. On MacOSX they seem to be the same precision and semantics as MemStat.LastGC, but on Linux they seem to be nanosecond precision but not in epoch time, but since the host started. If I run http://play.golang.org/p/9xM4uvMs6m on linux I get this result:
|
@aclements worth looking at soon? |
Updating the subject. In addition to stats that are flat wrong, we need to revise MemStats as needed to expose the information we want people to be able to extract from running programs in use cases like monitoring of GC performance. At the least I think we'd want some running totals and the overall % GC usage reported by the GODEBUG=gctrace=1 mode. |
@mkobetic, I assume you mean PauseEnd. It looks like that was true in Go 1.4, so this isn't a new bug, but it is a bug. On Linux we use CLOCK_MONOTONIC for that field, which is where the funny number it coming from (on Darwin we use gettimeofday). We should use gettimeofday for both LastGC and PauseEnd. I'll send a CL. |
CL https://golang.org/cl/11801 mentions this issue. |
Yes I meant PauseEnd, sorry about the typo. |
Do we want to take this opportunity to make MemStats more flexible? Any public field we add may lock us in or force us to synthesize less than meaningful values when the memory manager's design changes in the future. There's a tension between exposing more information for better performance debugging and exposing as little as possible lest we violate compatibility in the future. Compatibility aside, ideally we would expose enough information to reconstruct the gctrace line programmatically. I can imagine various more flexible APIs that would let a caller dynamically detect what information is available. It could be interface-based, map-based, or even reflection-based. |
CL https://golang.org/cl/11794 mentions this issue. |
Another option could be to exempt such internal information explicitly from the Go1 contract, because it simply exposes too much internal detail. Otherwise it might converge to report misleading data after more radical GC changes. As a developer I prefer breaking on compile over misleading at runtime. |
Currently we report MemStats.PauseEnd in nanoseconds, but with no particular 0 time. On Linux, the 0 time is when the host started. On Darwin, it's the UNIX epoch. This is also inconsistent with the other absolute time in MemStats, LastGC, which is always reported in nanoseconds since 1970. Fix PauseEnd so it's always reported in nanoseconds since 1970, like LastGC. Fixes one of the issues raised in #10323. Change-Id: Ie2fe3169d45113992363a03b764f4e6c47e5c6a8 Reviewed-on: https://go-review.googlesource.com/11801 Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Russ Cox <rsc@golang.org>
These memstats are currently being computed by gcMark, which was appropriate in Go 1.4, but gcMark is now just one part of a bigger picture. In particular, it can't account for the sweep termination pause time, it can't account for all of the mark termination pause time, and the reported "pause end" and "last GC" times will be slightly earlier than they really are. Lift computing of these statistics into func gc, which has the appropriate visibility into the process to compute them correctly. Fixes one of the issues in #10323. This does not add new statistics appropriate to the concurrent collector; it simply fixes existing statistics that are being misreported. Change-Id: I670cb16594a8641f6b27acf4472db15b6e8e086e Reviewed-on: https://go-review.googlesource.com/11794 Reviewed-by: Russ Cox <rsc@golang.org>
CL https://golang.org/cl/12844 mentions this issue. |
This adds a GCCPUFraction field to MemStats that reports the cumulative fraction of the program's execution time spent in the garbage collector. This is equivalent to the utilization percent shown in the gctrace output and makes this available programmatically. This does make one small effect on the gctrace output: we now report the duration of mark termination up to just before the final start-the-world, rather than up to just after. However, unlike stop-the-world, I don't believe there's any way that start-the-world can block, so it should take negligible time. While there are many statistics one might want to expose via MemStats, this is one of the few that will undoubtedly remain meaningful regardless of future changes to the memory system. The diff for this change is larger than the actual change. Mostly it lifts the code for computing the GC CPU utilization out of the debug.gctrace path. Updates #10323. Change-Id: I0f7dc3fdcafe95e8d1233ceb79de606b48acd989 Reviewed-on: https://go-review.googlesource.com/12844 Reviewed-by: Russ Cox <rsc@golang.org>
We need to change how we update some of the fields of memstats to reflect the new state of the world with the concurrent collector. At least pause_total_ns, pause_ns, and pause_end are no longer quite right.
(We don't have to fix this right now. I'm filing an issue just so we don't lose track of it.)
@RLH
The text was updated successfully, but these errors were encountered: