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

runtime: refresh MemStats for new GC #10323

Closed
aclements opened this issue Apr 3, 2015 · 10 comments
Closed

runtime: refresh MemStats for new GC #10323

aclements opened this issue Apr 3, 2015 · 10 comments
Milestone

Comments

@aclements
Copy link
Member

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

@aclements aclements added this to the Go1.5 milestone Apr 3, 2015
@aclements aclements self-assigned this Apr 4, 2015
@mkobetic
Copy link

mkobetic commented Apr 6, 2015

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:

$ ./test
1428348851168577701 2015-04-06 19:34:11.168577701 +0000 UTC
1649614797954478 1970-01-20 02:13:34.797954478 +0000 UTC
1649614798059819 1970-01-20 02:13:34.798059819 +0000 UTC
$ uname -a
Linux ... 3.18.8-031808-generic #201502271935 SMP Sat Feb 28 00:36:36 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
$ go version
go version go1.4.2 linux/amd64
$ uptime
 19:34:58 up 19 days,  2:14,  1 user,  load average: 3.79, 2.90, 2.40

@rsc
Copy link
Contributor

rsc commented Jun 8, 2015

@aclements worth looking at soon?

@rsc
Copy link
Contributor

rsc commented Jun 18, 2015

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.

@rsc rsc changed the title runtime: Some GC-related MemStats are wrong runtime: refresh MemStats for new GC Jun 18, 2015
@aclements
Copy link
Member Author

@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.

@gopherbot
Copy link
Contributor

CL https://golang.org/cl/11801 mentions this issue.

@mkobetic
Copy link

mkobetic commented Jul 1, 2015

Yes I meant PauseEnd, sorry about the typo.

@aclements
Copy link
Member Author

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.

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.

@gopherbot
Copy link
Contributor

CL https://golang.org/cl/11794 mentions this issue.

@nightlyone
Copy link
Contributor

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.

aclements added a commit that referenced this issue Jul 13, 2015

Verified

This commit was signed with the committer’s verified signature.
lukekarrys Luke Karrys
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>
aclements added a commit that referenced this issue Jul 13, 2015

Verified

This commit was signed with the committer’s verified signature.
lukekarrys Luke Karrys
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>
@gopherbot
Copy link
Contributor

CL https://golang.org/cl/12844 mentions this issue.

aclements added a commit that referenced this issue Jul 29, 2015
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>
@rsc rsc closed this as completed Jul 29, 2015
@golang golang locked and limited conversation to collaborators Aug 5, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

5 participants