Skip to content

Commit

Permalink
tracing: correct goroutine IDs for async tasks
Browse files Browse the repository at this point in the history
Spans capture the ID of the goroutine that created them, and expose it
in instrumentation. This patch makes the goroutine ID mutable, and
teaches the Stopper to update it for async tasks. This way, the spans
for the async tasks will have the correct goroutine ID - the task's
goroutine.

Release note: None
  • Loading branch information
andreimatei committed Jan 20, 2022
1 parent ebda0ec commit 168c3e3
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 11 deletions.
6 changes: 6 additions & 0 deletions pkg/util/stop/stopper.go
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,11 @@ func (s *Stopper) RunAsyncTaskEx(ctx context.Context, opt TaskOpts, f func(conte
}

// If the caller has a span, the task gets a child span.
//
// Note that we have to create the child in this parent goroutine; we can't
// defer the creation to the spawned async goroutine since the parent span
// might get Finish()ed by then. However, we'll update the child'd goroutine
// ID.
var sp *tracing.Span
switch opt.SpanOpt {
case FollowsFromSpan:
Expand All @@ -480,6 +485,7 @@ func (s *Stopper) RunAsyncTaskEx(ctx context.Context, opt TaskOpts, f func(conte
defer s.runPostlude()
if sp != nil {
defer sp.Finish()
sp.UpdateGoroutineIDToCurrent()
}
if alloc != nil {
defer alloc.Release()
Expand Down
14 changes: 12 additions & 2 deletions pkg/util/tracing/crdbspan.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ type crdbSpan struct {
traceID tracingpb.TraceID // probabilistically unique
spanID tracingpb.SpanID // probabilistically unique
parentSpanID tracingpb.SpanID
goroutineID uint64
operation string // name of operation associated with the span

startTime time.Time
Expand Down Expand Up @@ -66,6 +65,10 @@ type childRef struct {
type crdbSpanMu struct {
syncutil.Mutex

// goroutineID is the ID of the goroutine that created this span, or the goroutine that
// subsequently adopted it through Span.UpdateGoroutineIDToCurrent()).
goroutineID uint64

// parent is the span's local parent, if any. parent is not set if the span is
// a root or the parent span is remote.
//
Expand Down Expand Up @@ -531,7 +534,7 @@ func (s *crdbSpan) getRecordingNoChildrenLocked(
TraceID: s.traceID,
SpanID: s.spanID,
ParentSpanID: s.parentSpanID,
GoroutineID: s.goroutineID,
GoroutineID: s.mu.goroutineID,
Operation: s.operation,
StartTime: s.startTime,
Duration: s.mu.duration,
Expand Down Expand Up @@ -731,6 +734,13 @@ func (s *crdbSpan) withLock(f func()) {
f()
}

// setGoroutineID updates the span's goroutine ID.
func (s *crdbSpan) setGoroutineID(gid int64) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.goroutineID = uint64(gid)
}

var sortPool = sync.Pool{
New: func() interface{} {
return &Recording{}
Expand Down
11 changes: 11 additions & 0 deletions pkg/util/tracing/span.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (

"github.com/cockroachdb/cockroach/pkg/util/protoutil"
"github.com/cockroachdb/cockroach/pkg/util/tracing/tracingpb"
"github.com/petermattis/goid"
"go.opentelemetry.io/otel/attribute"
oteltrace "go.opentelemetry.io/otel/trace"
)
Expand Down Expand Up @@ -288,6 +289,16 @@ func (sp *Span) IsSterile() bool {
return sp.i.sterile
}

// UpdateGoroutineIDToCurrent updates the span's goroutine ID to the current
// goroutine. This should be called when a different goroutine takes ownership
// of a span.
func (sp *Span) UpdateGoroutineIDToCurrent() {
if sp.detectUseAfterFinish() {
return
}
sp.i.crdb.setGoroutineID(goid.Get())
}

// SpanMeta is information about a Span that is not local to this
// process. Typically, SpanMeta is populated from information
// about a Span on the other end of an RPC, and is used to derive
Expand Down
17 changes: 8 additions & 9 deletions pkg/util/tracing/tracer.go
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,6 @@ child operation: %s, tracer created at:
traceID = tracingpb.TraceID(randutil.FastInt63())
}
spanID := tracingpb.SpanID(randutil.FastInt63())
goroutineID := uint64(goid.Get())

// Now allocate the main *Span and contained crdbSpan.
// Allocate these together to save on individual allocs.
Expand All @@ -876,15 +875,15 @@ child operation: %s, tracer created at:
}{}

helper.crdbSpan = crdbSpan{
tracer: t,
traceID: traceID,
spanID: spanID,
goroutineID: goroutineID,
startTime: startTime,
logTags: opts.LogTags,
tracer: t,
traceID: traceID,
spanID: spanID,
startTime: startTime,
logTags: opts.LogTags,
mu: crdbSpanMu{
duration: -1, // unfinished
tags: helper.tagsAlloc[:0],
duration: -1, // unfinished
tags: helper.tagsAlloc[:0],
goroutineID: uint64(goid.Get()),
},
}
helper.crdbSpan.operation = opName
Expand Down

0 comments on commit 168c3e3

Please sign in to comment.