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

release-21.1: sql: use stmt's span for exec stats propagation #61758

Merged
merged 1 commit into from
Mar 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/sql/conn_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -1463,12 +1463,16 @@ func (ex *connExecutor) execCmd(ctx context.Context) error {
return err // err could be io.EOF
}

// Ensure that every statement has a tracing span set up.
ctx, sp := tracing.EnsureChildSpan(
ctx, ex.server.cfg.AmbientCtx.Tracer,
// We print the type of command, not the String() which includes long
// statements.
cmd.command())
defer sp.Finish()
// We expect that the span is not used directly, so we'll overwrite the
// local variable.
sp = nil

if log.ExpensiveLogEnabled(ctx, 2) || ex.eventLog != nil {
ex.sessionEventf(ctx, "[%s pos:%d] executing %s",
Expand Down
49 changes: 33 additions & 16 deletions pkg/sql/instrumentation.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,11 @@ type instrumentationHelper struct {
finishCollectionDiagnostics func()
withStatementTrace func(trace tracing.Recording, stmt string)

sp *tracing.Span
origCtx context.Context
evalCtx *tree.EvalContext
sp *tracing.Span
// If true, the instrumentation helper is responsible for finishing sp.
finishSpan bool
origCtx context.Context
evalCtx *tree.EvalContext

// If savePlanForStats is true, the explainPlan will be collected and returned
// via PlanForStats().
Expand Down Expand Up @@ -164,22 +166,38 @@ func (ih *instrumentationHelper) Setup(

ih.savePlanForStats = appStats.shouldSaveLogicalPlanDescription(fingerprint, implicitTxn)

if sp := tracing.SpanFromContext(ctx); sp != nil && sp.IsVerbose() {
// If verbose tracing was enabled at a higher level, stats collection is
// enabled so that stats are shown in the traces, but no extra work is
// needed by the instrumentationHelper.
ih.collectExecStats = true
return ctx, false
if sp := tracing.SpanFromContext(ctx); sp != nil {
ih.sp = sp
ih.finishSpan = false
if sp.IsVerbose() {
// If verbose tracing was enabled at a higher level, stats
// collection is enabled so that stats are shown in the traces, but
// no extra work is needed by the instrumentationHelper.
ih.collectExecStats = true
return ctx, false
}
} else {
if util.CrdbTestBuild {
panic(errors.AssertionFailedf("the context doesn't have a tracing span"))
}
}

ih.collectExecStats = collectExecStats

if !ih.collectBundle && ih.withStatementTrace == nil && ih.outputMode == unmodifiedOutput {
if ih.collectExecStats {
// If we need to collect stats, create a non-verbose child span. Stats
// will be added as structured metadata and processed in Finish.
ih.origCtx = ctx
if ih.sp != nil {
// The span present in the context is sufficient for us to
// record stats as structured metadata, so there is nothing else
// to do.
return ctx, true
}
// This is an edge case when the span is not present in the original
// context for some reason. This should *never* happen, but we
// choose to be defensive about it.
newCtx, ih.sp = tracing.EnsureChildSpan(ctx, cfg.AmbientCtx.Tracer, "traced statement")
ih.finishSpan = true
return newCtx, true
}
return ctx, false
Expand All @@ -190,6 +208,7 @@ func (ih *instrumentationHelper) Setup(
ih.origCtx = ctx
ih.evalCtx = p.EvalContext()
newCtx, ih.sp = tracing.StartVerboseTrace(ctx, cfg.AmbientCtx.Tracer, "traced statement")
ih.finishSpan = true
return newCtx, true
}

Expand All @@ -204,15 +223,13 @@ func (ih *instrumentationHelper) Finish(
res RestrictedCommandResult,
retErr error,
) error {
if ih.sp == nil {
return retErr
ctx := ih.origCtx
if ih.finishSpan {
ih.sp.Finish()
}

// Record the statement information that we've collected.
// Note that in case of implicit transactions, the trace contains the auto-commit too.
ih.sp.Finish()
ctx := ih.origCtx

trace := ih.sp.GetRecording()

if ih.withStatementTrace != nil {
Expand Down