]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: reduce GC assist extra credit
authorRhys Hiltner <rhys@justin.tv>
Fri, 22 Jul 2016 23:36:30 +0000 (16:36 -0700)
committerAustin Clements <austin@google.com>
Wed, 27 Jul 2016 18:56:04 +0000 (18:56 +0000)
Mutator goroutines that allocate memory during the concurrent mark
phase are required to spend some time assisting the garbage
collector. The magnitude of this mandatory assistance is proportional
to the goroutine's allocation debt and subject to the assistance
ratio as calculated by the pacer.

When assisting the garbage collector, a mutator goroutine will go
beyond paying off its allocation debt. It will build up extra credit
to amortize the overhead of the assist.

In fast-allocating applications with high assist ratios, building up
this credit can take the affected goroutine's entire time slice.
Reduce the penalty on each goroutine being selected to assist the GC
in two ways, to spread the responsibility more evenly.

First, do a consistent amount of extra scan work without regard for
the pacer's assistance ratio. Second, reduce the magnitude of the
extra scan work so it can be completed within a few hundred
microseconds.

Commentary on gcOverAssistWork is by Austin Clements, originally in
https://golang.org/cl/24704

Updates #14812
Fixes #16432

Change-Id: I436f899e778c20daa314f3e9f0e2a1bbd53b43e1
Reviewed-on: https://go-review.googlesource.com/25155
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
Reviewed-by: Rick Hudson <rlh@golang.org>
Reviewed-by: Chris Broadfoot <cbro@golang.org>
src/runtime/mgc.go
src/runtime/mgcmark.go

index 1eabf43d6f24c1eeabec8e413e716c6afbde4935..3b238cba1cab74669f45ed4af2d6d064cf3a7ad0 100644 (file)
@@ -741,11 +741,10 @@ const gcCreditSlack = 2000
 // can accumulate on a P before updating gcController.assistTime.
 const gcAssistTimeSlack = 5000
 
-// gcOverAssistBytes determines how many extra allocation bytes of
-// assist credit a GC assist builds up when an assist happens. This
-// amortizes the cost of an assist by pre-paying for this many bytes
-// of future allocations.
-const gcOverAssistBytes = 1 << 20
+// gcOverAssistWork determines how many extra units of scan work a GC
+// assist does when an assist happens. This amortizes the cost of an
+// assist by pre-paying for this many bytes of future allocations.
+const gcOverAssistWork = 64 << 10
 
 var work struct {
        full  uint64                   // lock-free list of full blocks workbuf
index 00b96fd00beed2d03157cd7f3965196d23b149fe..aa7f7a7769303ff83a18b2c88e97a0707cec8e97 100644 (file)
@@ -393,10 +393,15 @@ func gcAssistAlloc(gp *g) {
        }
 
        // Compute the amount of scan work we need to do to make the
-       // balance positive. We over-assist to build up credit for
-       // future allocations and amortize the cost of assisting.
-       debtBytes := -gp.gcAssistBytes + gcOverAssistBytes
+       // balance positive. When the required amount of work is low,
+       // we over-assist to build up credit for future allocations
+       // and amortize the cost of assisting.
+       debtBytes := -gp.gcAssistBytes
        scanWork := int64(gcController.assistWorkPerByte * float64(debtBytes))
+       if scanWork < gcOverAssistWork {
+               scanWork = gcOverAssistWork
+               debtBytes = int64(gcController.assistBytesPerWork * float64(scanWork))
+       }
 
 retry:
        // Steal as much credit as we can from the background GC's