Queueing-time profiler aborts the whole instrumentation install under a JDK 24+ AOT cache (zero spans); disabling that one feature is enough
@mcculls is already working on this.
Since Sep 21, 2026.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 35/100
- Issue type
- Bug
- Clarity
- Clearly specified
- Activity status
- Active
- Tech stack
- java
- Domain
- observability
Research direction
Start with UnwrappingVisitor and the retransformation path involving RedefinitionStrategy and BatchAllocator. Reproduce with a JDK 25 AOT cache and the queueing-time profiler enabled, then verify that a failed optional transformation no longer aborts installation, spans remain available, and the degradation is logged at info level.
Written by the indexing model from the issue text.
Description
Tracer Version(s)
1.65.1, 1.66.0
Java Version(s)
25
JVM Vendor
Eclipse Adoptium / Temurin
Bug Report
TL;DR: with a JDK 25 AOT cache, the queueing-time profiler's failed retransformation batch silently aborts the entire instrumentation install (zero spans). Disabling that single feature — -Ddd.profiling.queueing.time.enabled=false — restores all spans and keeps every other profiling capability. Fully disabling the profiler is not necessary.
Behavior
With -XX:AOTCache enabled (jib containerizingMode=packaged, Spring Boot, JDK 25):
- The tracer starts normally, prints its configuration, reports
agent_error: false. - Not a single span is produced. No warnings at default log level.
- Only
-Ddd.trace.debug=truereveals:Exception while retransforming 574 classes.
Identical behaviour on 1.65.1 and 1.66.0, so not a recent regression.
Root cause
UnwrappingVisitor (queueing-time profiling) adds the TaskWrapper interface to the classes it instruments. Adding an interface is a structural change, which the JVM rejects on retransformation. Normally this works because the agent installs before those classes load — but a JDK 24+ AOT cache (JEP 483) materializes them before premain.
Since no BatchAllocator is configured, that is the single batch holding every class, and RedefinitionStrategy aborts the whole install. One unusable profiler feature takes all instrumentation down with it.
Why this is filed separately from #10479
#10479 covers partial span loss via the context-store weak-map fallback (addressed by #12105). This is a different mechanism with a total, silent loss — and a much narrower fix surface.
Expected Behavior
A retransformation failure of one optional profiling feature should not abort the entire instrumentation install, and the degradation should be visible at default log level.
Workaround
-Ddd.profiling.queueing.time.enabled=false — all spans return, all other profiling features (CPU, allocation, lock, IO, …) keep working.
The failing setup is exactly the one from the docs, with profiling enabled. Training with the explicit -javaagent:dd-java-agent.jar=aot_training argument fails the same way.
-XX:-AOTClassLinking also avoids it, but gives up the startup gain entirely: on our Spring service startup was 20.5s without a cache, 12.8s with it, and 21.0s with -XX:-AOTClassLinking.
Fix
#12506 retries the failed batch without the interface change. Queueing-time profiling itself keeps working — TaskWrapper is only read by QueueTimeEvent.setTask() and is guarded by instanceof, so the events, durations, scheduler, queue type and span ids are all still recorded; only the task field loses its type resolution (wrapper class instead of the real one). JFR table in #12506. The degradation is logged once at info. With that fix the workaround flag is no longer needed.
Reproduction Code
- Spring Boot app, jib
containerizingMode=packaged, JDK 25 (Temurin). - Training run:
-XX:AOTCacheOutput=app.aotwith the agent attached, then run with-XX:AOTCache=app.aot -javaagent:dd-java-agent.jar. - Send requests: zero spans. Add
-Ddd.profiling.queueing.time.enabled=false: all spans appear (245 spans in our 20-request measurement, identical to no-AOT baseline — table in #12506).
- Dominant language
- Java
- Stars
- 737
- Forks
- 361
- Avg merge
- 3d 20h
- Merged PRs (30d)
- 173
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from DataDog/dd-trace-java
-
type: feature request
Difficulty 1/5 1-3 hours Newbie friendliness 70/100
DataDog/dd-trace-java#10245 · 1 comment ·
-
Difficulty 4/5 3-5 days Newbie friendliness 62/100
DataDog/dd-trace-java#12608 ·
-
type: bug report
Difficulty 4/5 3-5 days Newbie friendliness 35/100
DataDog/dd-trace-java#12597 ·
-
Difficulty 3/5 1-2 days Newbie friendliness 25/100
DataDog/dd-trace-java#12480 ·
-
comp: tooling type: bug report
DataDog/dd-trace-java#12469 · 1 reaction · 1 assignee ·
All issues in DataDog/dd-trace-java
Similar issues
-
area/plugin
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
kestra-io/plugin-kestra#190 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
google-ai-edge/LiteRT-LM#3739 ·
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
integra-team-red/meet-map#249 ·
-
[Studio][Bug] Cancelled create-user dialog keeps the password and admin switch for the next attempt Open
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
apache/rocketmq-dashboard#5064 ·