-
Notifications
You must be signed in to change notification settings - Fork 331
Optimize scope lifecycle hot path #11079
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
Merged
gh-worker-dd-mergequeue-cf854d
merged 3 commits into
master
from
brian.marks/perf-scope-lifecycle
Apr 14, 2026
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
dd-trace-core/src/jmh/java/datadog/trace/core/ScopeLifecycleBenchmark.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| package datadog.trace.core; | ||
|
|
||
| import static java.util.concurrent.TimeUnit.MICROSECONDS; | ||
|
|
||
| import datadog.trace.bootstrap.instrumentation.api.AgentScope; | ||
| import datadog.trace.bootstrap.instrumentation.api.AgentSpan; | ||
| import org.openjdk.jmh.annotations.Benchmark; | ||
| import org.openjdk.jmh.annotations.BenchmarkMode; | ||
| import org.openjdk.jmh.annotations.Fork; | ||
| import org.openjdk.jmh.annotations.Level; | ||
| import org.openjdk.jmh.annotations.Measurement; | ||
| import org.openjdk.jmh.annotations.Mode; | ||
| import org.openjdk.jmh.annotations.OutputTimeUnit; | ||
| import org.openjdk.jmh.annotations.Scope; | ||
| import org.openjdk.jmh.annotations.Setup; | ||
| import org.openjdk.jmh.annotations.State; | ||
| import org.openjdk.jmh.annotations.TearDown; | ||
| import org.openjdk.jmh.annotations.Threads; | ||
| import org.openjdk.jmh.annotations.Warmup; | ||
|
|
||
| @State(Scope.Benchmark) | ||
| @Warmup(iterations = 3) | ||
| @Measurement(iterations = 5) | ||
| @BenchmarkMode(Mode.Throughput) | ||
| @Threads(8) | ||
| @OutputTimeUnit(MICROSECONDS) | ||
| @Fork(value = 1) | ||
| public class ScopeLifecycleBenchmark { | ||
| static final CoreTracer TRACER = CoreTracer.builder().build(); | ||
|
|
||
| @State(Scope.Thread) | ||
| public static class ThreadState { | ||
| AgentSpan span; | ||
| AgentSpan childSpan; | ||
| AgentScope activeScope; | ||
|
|
||
| @Setup(Level.Iteration) | ||
| public void setup() { | ||
| span = TRACER.startSpan("benchmark", "parent"); | ||
| childSpan = TRACER.startSpan("benchmark", "child"); | ||
| activeScope = TRACER.activateSpan(span); | ||
| } | ||
|
|
||
| @TearDown(Level.Iteration) | ||
| public void tearDown() { | ||
| activeScope.close(); | ||
| childSpan.finish(); | ||
| span.finish(); | ||
| } | ||
| } | ||
|
|
||
| @Benchmark | ||
| public void activateAndClose(ThreadState state) { | ||
| AgentScope scope = TRACER.activateSpan(state.span); | ||
| scope.close(); | ||
| } | ||
|
|
||
| @Benchmark | ||
| public void activateSameSpan(ThreadState state) { | ||
| AgentScope outer = TRACER.activateSpan(state.span); | ||
| AgentScope inner = TRACER.activateSpan(state.span); | ||
| inner.close(); | ||
| outer.close(); | ||
| } | ||
|
|
||
| @Benchmark | ||
| public void nestedActivateAndClose(ThreadState state) { | ||
| AgentScope parentScope = TRACER.activateSpan(state.span); | ||
| AgentScope childScope = TRACER.activateSpan(state.childSpan); | ||
| childScope.close(); | ||
| parentScope.close(); | ||
| } | ||
|
|
||
| @Benchmark | ||
| public AgentSpan activeSpanLookup() { | ||
| return TRACER.activeSpan(); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this change makes sense. Although in my experience usually the Iterator gets stack allocated by the JIT, so I'm not sure the provided explanation makes sense here.
That said, we'd have to look at an allocation profile to know for certain.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dug into this and the more accurate explanation is