Skip to content

feat(nativemem): categorized native-memory accounting — first cut - #669

Merged
rkennke merged 19 commits into
mainfrom
feat/native-mem-accounting
Jul 24, 2026
Merged

feat(nativemem): categorized native-memory accounting — first cut#669
rkennke merged 19 commits into
mainfrom
feat/native-mem-accounting

Conversation

@rkennke

@rkennkerkennke commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

What

Adds a NativeMem facility to measure the profiler's own native memory usage — currently we only observe whole-process RSS. Per-category live gauge, moving-window average, and a precise per-category peak, wired through the existing counter/JFR path.

Why

We measure the agent's native footprint only as an RSS delta (~150–200 MB) with no breakdown. This gives an in-process, attributable, categorized number we can trend, and a foundation for later pinpointing which code is responsible.

How

  • NativeMem (nativeMem.h / nativeMem.cpp): a NativeMemCategory enum whose per-category live gauges partition the total — each backing allocation belongs to exactly one category, so no double-counting.
  • Always-on, independent of the COUNTERS build flag: record() is a single relaxed atomic add. Most sites are off the signal path (malloc/new is not async-signal-safe anyway); the exception is CALLTRACE, whose arena allocates inside the sampling signal handler (via OS::safeAlloc), so record() is kept async-signal-safe there.
  • Precise per-category peak: record() maintains each category's high-water mark at allocation time via a relaxed CAS (common path is load+compare; CAS only on a new peak; frees skip it). Spikes between sample ticks are still captured.
  • sample() refreshes the moving-window averages and the observed total, ticked once per JFR chunk finish.
  • Exposure: totals mirror into NATIVE_MEM_{LIVE,AVG,MAX}_BYTES (JFR T_DATADOG_COUNTER + JNI debug counters); per-category native_mem_{live,avg,max}_bytes.<category> values reuse the same event format — no new event type.

Total peak: bracketed, no shared hotspot

A precise total peak would need a single global atomic hit by every allocation (a contention hotspot). Instead the total peak is bracketed:

  • NATIVE_MEM_MAX_BYTES = upper bound = sum of the precise per-category peaks.
  • native_mem_max_observed_total_bytes = lower bound = the largest instantaneous total seen at a sampling tick.

Instrumented categories

Tagged via record() at their backing alloc/free sites (precise, always-on):

  • CALLTRACELinearAllocator chunks (call-trace arena) + per-shard calltrace buffers.
  • DICTIONARY — both implementations: the older per-key-malloc Dictionary (symbols/packages — root/overflow DictTables + key strings, whose size is recovered via strlen at bulk-free), and the arena StringDictionary (arena chunks + root/overflow SBTables; keys live inside chunks so they're not counted separately). Counted unconditionally, independent of the diagnostic counters' offset gate. Single category — a per-role split, if ever wanted, belongs in a nested dimension.
  • THREAD_LOCALProfiledThread per thread.
  • JFR_BUFFERS — the Recording object (embeds the JFR buffer array).
  • LINE_TABLES — malloc'd JVMTI line-number table copies.
  • PERF — perf ring mmap (2 × page_size).
  • THREAD_FILTERChunkStorage chunks (bounded) + free-list array.

Gauge-mirrored (NativeMem::setLive() at a recompute site):

  • NATIVE_SYMBOLS — the profiler's per-native-library symbol tables used to symbolicate native frames (async-profiler's CodeCache; not the JVM code cache). Sourced from CodeCache::memoryUsage(), which is now accurate on main (fix(codecache): make memoryUsage() accurate and live #677 merged); the gauge is refreshed at dump/stop, the same cadence as the existing CODECACHE_NATIVE_SIZE_BYTES counter.

Not yet covered (reads 0):

  • The long tail — scattered new/malloc across the remaining files → best captured by malloc interception, not hand-tagging.

(CONTEXT was removed: the OTel context record is embedded in ProfiledThread, already counted under THREAD_LOCAL; a separate category would double-count or read a permanent 0.)

So the total is still a subset of the RSS delta until interception lands, but now covers the major consumers.

Avoiding double-counting

Call-trace bytes appear at three layers (safeAlloc mmap, LINEAR_ALLOCATOR_BYTES reserved chunks, CALLTRACE_STORAGE_BYTES used-within-chunks); summing counters would double/triple-count. NativeMem counts backing memory once per category; the existing reserved/used/waste counters remain an independent nested diagnostic dimension. The dictionary tagging follows the same rule — e.g. arena keys are inside chunks and are not counted separately.

Performance

Designed to be off the hot path. Measured in operations, not observed as a regression in this workload:

  • Per sample (signal handler): zero in the common case. A sample's CallTraceStorage::put normally just bump-allocates within an existing arena chunk and touches no record(). record() runs only when the call-trace arena grows a new chunk (8 MiB apart), and there it's a lock-free relaxed atomic add + high-water update — async-signal-safe.
  • Per backing allocation: ~1–2 relaxed atomic ops.record() is one relaxed fetch_add; on allocation it also does a relaxed load + compare, with a CAS only when a new per-category peak is set (rare, since the peak is monotonic). This sits next to a malloc/calloc/mmap/new that dominates the cost, so it's negligible. These sites (dictionary inserts, chunk/table growth, thread/lib/recording creation) are not per-sample.
  • Per JFR chunk finish: a fixed, tiny cost.sample() is O(categories × window) ≈ 9 × 64 folds; writeNativeMem() emits ~28 counter events. This runs once per chunk rotation (seconds–minutes), off the sampling path.
  • One extra pass at dictionary clear(): the per-key free now also does a strlen to recover the freed size, so clear() cost is O(sum of key lengths) rather than O(key count). clear() already walks every key; this is a marginal constant-factor increase, at dictionary rotation only.

No new locks, no shared global counter on the hot path (the total peak is bracketed precisely to avoid one), and the always-on atomics are relaxed. sample()/writeNativeMem() run within the existing recording flush.

Roadmap

  1. This PR — facility + precise per-category max (bracketed total) + the major consumers, including DICTIONARY.
  2. Malloc interception — capture the untagged long tail so categories sum toward the RSS delta, plus a reconciliation check to quantify what's still unattributed.

Testing

  • nativeMem_ut (7 tests): live tracking + total partition, single-sample avg==live, moving average, max high-water, precise per-category max catching an inter-sample spike (with the bracket), setLive gauge + peak retention, category names. (The non-negative invariant is enforced by an assert in record() rather than a dedicated clamp test.)
  • Lifecycle invariants for both dictionary implementations (dictionary_ut, stringDictionary_ut): accounting grows on insert, returns exactly to the construction baseline after clear(), and to zero after destruction — directly proving inc/dec pairing (incl. the strlen-at-free path and arena chunk growth).
  • THREAD_LOCAL lifecycle (thread_teardown_safety_ut, Linux): NM_THREAD_LOCAL returns to baseline after both release() and thread-exit teardown, proving the forTid/freeValue pairing.
  • Full :ddprof-lib:gtestDebug suite green (358 cross-platform tests, 0 failures locally; Linux-only perf/thread-teardown coverage runs in CI).

🤖 Generated with Claude Code

@dd-octo-sts

dd-octo-stsBot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

CI Test Results

Run:#30087824078 | Commit:2dbdad5 | Duration: 14m 29s (longest job)

All 32 test jobs passed

Status Overview

JDKglibc-aarch64/debugglibc-amd64/debugmusl-aarch64/debugmusl-amd64/debug
8---
8-ibm---
8-j9--
8-librca--
8-orcl---
11---
11-j9--
11-librca--
17--
17-graal--
17-j9--
17-librca--
21--
21-graal--
21-librca--
25--
25-graal--
25-librca--

Legend: ✅ passed | ❌ failed | ⚪ skipped | 🚫 cancelled

Summary: Total: 32 | Passed: 32 | Failed: 0


Updated: 2026-07-24 11:12:58 UTC

@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit e095203)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125289326 Commit: e095203a546caadc5ac26755383d0b2880957cf7

⚠️ Significant outliers

  • 🟢 future-genetic (JDK 21): runtime -3.6% (2121→2045 ms)
  • 🔴 future-genetic (JDK 25): runtime +5.6% (1976→2086 ms)
Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10287 ms (21 iters)✅ 10260 ms (21 iters)≈ -0.3% (±10.9%)— / —
akka-uct25✅ 8867 ms (24 iters)✅ 8805 ms (24 iters)≈ -0.7% (±9.8%)— / —
finagle-chirper21✅ 5933 ms (33 iters)✅ 5935 ms (33 iters)≈ +0% (±24.9%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5475 ms (36 iters)✅ 5453 ms (36 iters)≈ -0.4% (±24.5%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2648 ms (71 iters)✅ 2700 ms (69 iters)≈ +2% (±2.7%)— / —
fj-kmeans25✅ 2825 ms (66 iters)✅ 2836 ms (66 iters)≈ +0.4% (±2.6%)— / —
future-genetic21✅ 2121 ms (88 iters)✅ 2045 ms (90 iters)🟢 -3.6%— / —
future-genetic25✅ 1976 ms (94 iters)✅ 2086 ms (89 iters)🔴 +5.6%— / —
naive-bayes21✅ 1230 ms (139 iters)✅ 1259 ms (137 iters)≈ +2.4% (±32.9%)— / —
naive-bayes25✅ 1015 ms (168 iters)✅ 1011 ms (169 iters)≈ -0.4% (±31.6%)— / —
reactors21✅ 15811 ms (16 iters)✅ 16445 ms (15 iters)≈ +4% (±7.6%)— / —
reactors25✅ 18243 ms (15 iters)✅ 18764 ms (15 iters)≈ +2.9% (±4.1%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅3 / 12094 / 1933✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅1 / 32216 / 2195✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅4 / 28790 / 8777✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅1 / 38165 / 8254✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅2 / 21283 / 1240✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅1 / 21289 / 1281✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅✅ / 22935 / 2926✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅1 / 22884 / 2927✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅4 / 23486 / 3580✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅5 / ✅3448 / 3533✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅1 / ✅1512 / 1844✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅1 / 11866 / 1889✅ / ✅✅ / ✅

@datadog-prod-us1-5

This comment has been minimized.

@dd-octo-sts

dd-octo-stsBot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

Reliability & Chaos Results

All reliability & chaos checks passed Pipeline: https://gitlab.ddbuild.io/DataDog/java-profiler/-/pipelines/126272097

@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit 62b6f2c)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125313150 Commit: 62b6f2cdc90e727ad72f0bcc5a37ef184201f0f7

⚠️ Significant outliers

  • 🟢 future-genetic (JDK 21): runtime -2.6% (2122→2066 ms)
  • 🟢 future-genetic (JDK 25): runtime -5.4% (2071→1960 ms)
Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10303 ms (21 iters)✅ 10356 ms (21 iters)≈ +0.5% (±10.7%)— / —
akka-uct25✅ 9028 ms (24 iters)✅ 8895 ms (24 iters)≈ -1.5% (±9.8%)— / —
finagle-chirper21✅ 5921 ms (33 iters)✅ 5936 ms (33 iters)≈ +0.3% (±25.2%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5537 ms (36 iters)✅ 5535 ms (36 iters)≈ -0% (±24.4%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2705 ms (70 iters)✅ 2667 ms (69 iters)≈ -1.4% (±2.6%)— / —
fj-kmeans25✅ 2829 ms (66 iters)✅ 2824 ms (66 iters)≈ -0.2% (±2.6%)— / —
future-genetic21✅ 2122 ms (88 iters)✅ 2066 ms (90 iters)🟢 -2.6%— / —
future-genetic25✅ 2071 ms (90 iters)✅ 1960 ms (94 iters)🟢 -5.4%— / —
naive-bayes25✅ 1022 ms (167 iters)✅ 1012 ms (169 iters)≈ -1% (±31.6%)— / —
reactors21✅ 16191 ms (15 iters)✅ 15952 ms (15 iters)≈ -1.5% (±6.7%)— / —
reactors25✅ 18581 ms (15 iters)✅ 18426 ms (15 iters)≈ -0.8% (±3.8%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅2 / ✅1975 / 2029✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅✅ / ✅2406 / 2283✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅7 / 78749 / 8443✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅1 / 28539 / 8755✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅5 / 31305 / 1244✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅4 / 11284 / 1292✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅✅ / 13065 / 2961✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅2 / 42938 / 2818✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅5 / 43483 / 3485✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅1 / ✅1495 / 1554✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅1 / ✅1874 / 1984✅ / ✅✅ / ✅

@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit bdf9f55)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125648678 Commit: bdf9f55c6eff51a319914246b6bc15f6307be7da

✅ Within expected boundaries

No significant runtime deltas (all within run-to-run noise) and no internal-counter outliers.

Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10249 ms (21 iters)✅ 10281 ms (21 iters)≈ +0.3% (±10.9%)— / —
akka-uct25✅ 8849 ms (24 iters)✅ 8841 ms (24 iters)≈ -0.1% (±10.1%)— / —
finagle-chirper21✅ 5980 ms (33 iters)✅ 5982 ms (33 iters)≈ +0% (±25.9%)⚠️ W:3 / ⚠️ W:4
finagle-chirper25✅ 5494 ms (36 iters)✅ 5505 ms (36 iters)≈ +0.2% (±24.7%)⚠️ W:4 / ⚠️ W:3
fj-kmeans21✅ 2819 ms (66 iters)✅ 2825 ms (66 iters)≈ +0.2% (±2.5%)— / —
future-genetic21✅ 2141 ms (87 iters)✅ 2100 ms (88 iters)≈ -1.9% (±2.7%)— / —
future-genetic25✅ 2082 ms (89 iters)✅ 2128 ms (87 iters)≈ +2.2% (±2.6%)— / —
naive-bayes21✅ 1229 ms (139 iters)✅ 1235 ms (138 iters)≈ +0.5% (±32.9%)— / —
naive-bayes25✅ 984 ms (173 iters)✅ 1018 ms (168 iters)≈ +3.5% (±32.6%)— / —
reactors21✅ 15877 ms (15 iters)✅ 15755 ms (15 iters)≈ -0.8% (±8.7%)— / —
reactors25✅ 18486 ms (15 iters)✅ 18630 ms (15 iters)≈ +0.8% (±4.4%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅3 / 12044 / 1900✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅2 / 32166 / 2375✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅3 / 48177 / 8568✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅✅ / 18459 / 8227✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅1 / 11274 / 1269✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅✅ / 21275 / 1300✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅4 / 13074 / 2943✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅✅ / 12833 / 2770✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅2 / 23517 / 3483✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅3 / 23468 / 3482✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅✅ / ✅1646 / 1662✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅✅ / 11906 / 1963✅ / ✅✅ / ✅

@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit f1a84c6)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125658666 Commit: f1a84c60a8b99c21a4d57835fc7da23b96871e0a

⚠️ Significant outliers

  • 🟢 future-genetic (JDK 21): runtime -4.8% (2141→2039 ms)
Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10309 ms (21 iters)✅ 10323 ms (21 iters)≈ +0.1% (±10.8%)— / —
akka-uct25✅ 8961 ms (24 iters)✅ 8884 ms (24 iters)≈ -0.9% (±9.8%)— / —
finagle-chirper21✅ 6042 ms (33 iters)✅ 5955 ms (33 iters)≈ -1.4% (±25.3%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5468 ms (36 iters)✅ 5531 ms (36 iters)≈ +1.2% (±25%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2649 ms (70 iters)✅ 2695 ms (70 iters)≈ +1.7% (±2.7%)— / —
fj-kmeans25✅ 2800 ms (67 iters)✅ 2807 ms (66 iters)≈ +0.3% (±2.6%)— / —
future-genetic21✅ 2141 ms (87 iters)✅ 2039 ms (90 iters)🟢 -4.8%— / —
future-genetic25✅ 2088 ms (89 iters)✅ 2127 ms (87 iters)≈ +1.9% (±2.5%)— / —
naive-bayes21✅ 1227 ms (139 iters)✅ 1280 ms (134 iters)≈ +4.3% (±33%)— / —
naive-bayes25✅ 1024 ms (167 iters)✅ 1022 ms (167 iters)≈ -0.2% (±32%)— / —
reactors21✅ 16285 ms (15 iters)✅ 16003 ms (15 iters)≈ -1.7% (±5.7%)— / —
reactors25✅ 18050 ms (15 iters)✅ 18143 ms (15 iters)≈ +0.5% (±6%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅✅ / 52017 / 2009✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅1 / 12344 / 2264✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅3 / 58749 / 8648✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅3 / 48234 / 8352✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅2 / 21239 / 1269✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅2 / 21267 / 1274✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅3 / 13072 / 2901✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅✅ / 12974 / 2854✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅2 / 23509 / 3545✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅3 / ✅3490 / 3444✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅1 / ✅1756 / 1751✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅✅ / 11854 / 1753✅ / ✅✅ / ✅

@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit 277e2d8)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125665685 Commit: 277e2d80bb9893784ce7e4ca60240217faeaaa71

⚠️ Significant outliers

  • 🟢 future-genetic (JDK 21): runtime -5.6% (2159→2039 ms)
  • 🔴 future-genetic (JDK 25): runtime +4% (2030→2111 ms)
  • 🟢 reactors (JDK 21): runtime -9.6% (16429→14845 ms)
Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10393 ms (21 iters)✅ 10229 ms (21 iters)≈ -1.6% (±11%)— / —
akka-uct25✅ 8931 ms (24 iters)✅ 8766 ms (24 iters)≈ -1.8% (±9.8%)— / —
finagle-chirper21✅ 6009 ms (33 iters)✅ 5981 ms (33 iters)≈ -0.5% (±24.6%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5507 ms (36 iters)✅ 5496 ms (36 iters)≈ -0.2% (±24.7%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2761 ms (68 iters)✅ 2694 ms (70 iters)≈ -2.4% (±2.7%)— / —
fj-kmeans25✅ 2757 ms (68 iters)✅ 2798 ms (67 iters)≈ +1.5% (±2.7%)— / —
future-genetic21✅ 2159 ms (86 iters)✅ 2039 ms (92 iters)🟢 -5.6%— / —
future-genetic25✅ 2030 ms (91 iters)✅ 2111 ms (88 iters)🔴 +4%— / —
naive-bayes21✅ 1283 ms (133 iters)✅ 1258 ms (136 iters)≈ -1.9% (±32.4%)— / —
naive-bayes25✅ 1019 ms (168 iters)✅ 1020 ms (168 iters)≈ +0.1% (±31.8%)— / —
reactors21✅ 16429 ms (15 iters)✅ 14845 ms (17 iters)🟢 -9.6%— / —
reactors25✅ 18219 ms (15 iters)✅ 18034 ms (15 iters)≈ -1% (±4.2%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅8 / 11988 / 2062✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅1 / 92080 / 2084✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅4 / 38485 / 8415✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅3 / 28560 / 8615✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅4 / 21282 / 1286✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅6 / 11278 / 1295✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅2 / 13002 / 3031✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅2 / ✅2944 / 2864✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅2 / 33504 / 3524✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅2 / 63485 / 3488✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅✅ / ✅1536 / 1691✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅1 / ✅1780 / 1837✅ / ✅✅ / ✅

@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit ac8c128)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125736830 Commit: ac8c128f639c2eaf1c7d2b6526a1106e2d09ca0f

⚠️ Significant outliers

  • 🟢 future-genetic (JDK 25): runtime -3.7% (2130→2051 ms)
Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10383 ms (21 iters)✅ 10256 ms (21 iters)≈ -1.2% (±11.4%)— / —
akka-uct25✅ 8923 ms (24 iters)✅ 8855 ms (24 iters)≈ -0.8% (±10%)— / —
finagle-chirper21✅ 5980 ms (33 iters)✅ 6028 ms (33 iters)≈ +0.8% (±25.1%)⚠️ W:4 / ⚠️ W:4
finagle-chirper25✅ 5483 ms (36 iters)✅ 5498 ms (36 iters)≈ +0.3% (±24.1%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2749 ms (68 iters)✅ 2717 ms (69 iters)≈ -1.2% (±2.7%)— / —
fj-kmeans25✅ 2826 ms (66 iters)✅ 2762 ms (67 iters)≈ -2.3% (±2.6%)— / —
future-genetic21✅ 2042 ms (91 iters)✅ 2044 ms (90 iters)≈ +0.1% (±2.6%)— / —
future-genetic25✅ 2130 ms (87 iters)✅ 2051 ms (90 iters)🟢 -3.7%— / —
naive-bayes25✅ 1008 ms (170 iters)✅ 1009 ms (169 iters)≈ +0.1% (±31.7%)— / —
reactors21✅ 16229 ms (15 iters)✅ 16543 ms (15 iters)≈ +1.9% (±7.5%)— / —
reactors25✅ 18332 ms (15 iters)✅ 18379 ms (15 iters)≈ +0.3% (±3.4%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅2 / 12019 / 2112✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅2 / ✅2418 / 2216✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅5 / 48420 / 8855✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅✅ / 38622 / 8796✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅6 / 21266 / 1280✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅1 / ✅1307 / 1266✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅✅ / 13019 / 2888✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅1 / ✅2890 / 2833✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅✅ / ✅✅ / ✅✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅4 / 33505 / 3444✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅✅ / ✅1626 / 1497✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅✅ / 11806 / 1830✅ / ✅✅ / ✅

CopilotAI review requested due to automatic review settings July 21, 2026 09:23

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Introduces a new NativeMem facility to attribute the profiler’s own native memory usage into a small set of categories, tracking per-category live bytes, a moving-window average, and a precise per-category peak; totals are exported via existing counter/JFR pathways.

Changes:

  • Added NativeMem core implementation (nativeMem.h/.cpp) with per-category live/avg/max tracking and tests.
  • Instrumented major native allocation sites (calltrace arena/buffers, dictionaries, thread-local data, thread filter, perf mmap, line tables, JFR recording buffers, native symbols gauge) to record alloc/free deltas.
  • Emitted totals through the counters table and per-category metrics through T_DATADOG_COUNTER events on chunk finish.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.

Show a summary per file
FileDescription
ddprof-lib/src/test/cpp/stringDictionary_ut.cppAdds lifecycle accounting-balance test for StringDictionaryBuffer NM_DICTIONARY instrumentation.
ddprof-lib/src/test/cpp/nativeMem_ut.cppNew unit tests covering live/avg/max semantics, peaks between samples, clamping behavior, and category names.
ddprof-lib/src/test/cpp/dictionary_ut.cppAdds lifecycle accounting-balance test for Dictionary NM_DICTIONARY instrumentation.
ddprof-lib/src/main/cpp/threadLocalData.hRecords NM_THREAD_LOCAL on ProfiledThread creation via forTid.
ddprof-lib/src/main/cpp/threadLocalData.cppRecords NM_THREAD_LOCAL decrements on TLS destruction/release paths.
ddprof-lib/src/main/cpp/threadFilter.cppAccounts for thread-filter chunk and freelist backing allocations under NM_THREAD_FILTER.
ddprof-lib/src/main/cpp/stringDictionary.hAccounts arena chunks + SBTable allocations/frees under NM_DICTIONARY.
ddprof-lib/src/main/cpp/profiler.cppAccounts per-shard calltrace buffer allocations/frees under NM_CALLTRACE; mirrors native symbol gauge via setLive.
ddprof-lib/src/main/cpp/perfEvents_linux.cppAccounts perf ring mmap/unmap under NM_PERF.
ddprof-lib/src/main/cpp/nativeMem.hDefines categories and NativeMem API (record/setLive/sample/live/avg/max/totals).
ddprof-lib/src/main/cpp/nativeMem.cppImplements totals, sampling window averaging, reset, and category naming.
ddprof-lib/src/main/cpp/linearAllocator.cppAccounts calltrace arena chunk alloc/free under NM_CALLTRACE.
ddprof-lib/src/main/cpp/flightRecorder.hDeclares Recording helpers to sample/export native-mem metrics.
ddprof-lib/src/main/cpp/flightRecorder.cppSamples native-mem each chunk and emits totals + per-category counter events.
ddprof-lib/src/main/cpp/dictionary.hAccounts root table allocation under NM_DICTIONARY.
ddprof-lib/src/main/cpp/dictionary.cppAccounts key-string alloc/free and overflow/root table alloc/free under NM_DICTIONARY.
ddprof-lib/src/main/cpp/counters.hAdds total native-mem counters (live/avg/max) to the counter table.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment threadddprof-lib/src/main/cpp/flightRecorder.cpp
Comment threadddprof-lib/src/main/cpp/flightRecorder.cpp
@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit 8a9567f)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125902089 Commit: 8a9567ffdf0aa4fa3a506eb82912c4bcd4cdd609

✅ Within expected boundaries

No significant runtime deltas (all within run-to-run noise) and no internal-counter outliers.

Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10186 ms (21 iters)✅ 10281 ms (21 iters)≈ +0.9% (±11.6%)— / —
akka-uct25✅ 8926 ms (24 iters)✅ 8870 ms (24 iters)≈ -0.6% (±10.2%)— / —
finagle-chirper21✅ 5952 ms (33 iters)✅ 6019 ms (33 iters)≈ +1.1% (±25.7%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5541 ms (35 iters)✅ 5513 ms (36 iters)≈ -0.5% (±24.8%)⚠️ W:4 / ⚠️ W:3
fj-kmeans21✅ 2722 ms (69 iters)✅ 2779 ms (67 iters)≈ +2.1% (±2.7%)— / —
fj-kmeans25✅ 2791 ms (67 iters)✅ 2820 ms (66 iters)≈ +1% (±2.6%)— / —
future-genetic21✅ 2089 ms (89 iters)✅ 2091 ms (89 iters)≈ +0.1% (±2.7%)— / —
future-genetic25✅ 2068 ms (89 iters)✅ 2054 ms (90 iters)≈ -0.7% (±2.7%)— / —
naive-bayes21✅ 1290 ms (133 iters)✅ 1228 ms (139 iters)≈ -4.8% (±32%)— / —
naive-bayes25✅ 1016 ms (169 iters)✅ 1025 ms (167 iters)≈ +0.9% (±31.6%)— / —
reactors21✅ 16308 ms (15 iters)✅ 16584 ms (15 iters)≈ +1.7% (±7.9%)— / —
reactors25✅ 17591 ms (15 iters)✅ 18412 ms (15 iters)≈ +4.7% (±5.9%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅1 / ✅1948 / 1908✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅3 / ✅2298 / 2155✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅2 / 28534 / 8361✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅1 / ✅8731 / 8511✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅3 / 61249 / 1252✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅1 / 21265 / 1305✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅3 / 22953 / 2951✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅3 / 52919 / 2902✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅4 / 33496 / 3510✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅3 / 73506 / 3485✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅1 / 11655 / 1670✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅1 / 11735 / 1903✅ / ✅✅ / ✅

CopilotAI review requested due to automatic review settings July 21, 2026 11:52
@rkennke
rkennkeforce-pushed the feat/native-mem-accounting branch from 8a9567f to 3c82245CompareJuly 21, 2026 11:52

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.

Comments suppressed due to low confidence (1)

ddprof-lib/src/main/cpp/flightRecorder.cpp:1815

  • writeNativeMem() serializes values with Buffer::putVar64(u64). If any native-mem gauge goes negative (possible until all free sites are instrumented), the implicit signed->unsigned conversion will emit a huge varint. Clamp to 0 before encoding to keep the JFR/counter stream valid.
 auto emit = [&](const char *label, long long value) {
int start = buf->skip(1);
buf->putVar64(T_DATADOG_COUNTER);
buf->putVar64(_start_ticks);
buf->putUtf8(label);
buf->putVar64(value);
writeEventSizePrefix(buf, start);
flushIfNeeded(buf);

Comment threadddprof-lib/src/main/cpp/nativeMem.cpp
Comment threadddprof-lib/src/main/cpp/profiler.cpp
@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit 3c82245)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125929510 Commit: 3c82245cff2102b58ef2e0ca5e28df5faf67d3b7

✅ Within expected boundaries

No significant runtime deltas (all within run-to-run noise) and no internal-counter outliers.

Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10196 ms (21 iters)✅ 10303 ms (21 iters)≈ +1% (±11%)— / —
akka-uct25✅ 8881 ms (24 iters)✅ 8870 ms (24 iters)≈ -0.1% (±10%)— / —
finagle-chirper21✅ 5949 ms (33 iters)✅ 5963 ms (33 iters)≈ +0.2% (±25.5%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5429 ms (36 iters)✅ 5455 ms (36 iters)≈ +0.5% (±23.8%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2755 ms (68 iters)✅ 2758 ms (68 iters)≈ +0.1% (±2.8%)— / —
fj-kmeans25✅ 2822 ms (66 iters)✅ 2830 ms (66 iters)≈ +0.3% (±2.6%)— / —
future-genetic21✅ 2080 ms (89 iters)✅ 2046 ms (90 iters)≈ -1.6% (±2.5%)— / —
future-genetic25✅ 2064 ms (90 iters)✅ 2114 ms (88 iters)≈ +2.4% (±2.5%)— / —
naive-bayes21✅ 1270 ms (135 iters)✅ 1278 ms (134 iters)≈ +0.6% (±32.9%)— / —
naive-bayes25✅ 1011 ms (169 iters)✅ 1015 ms (168 iters)≈ +0.4% (±31.7%)— / —
reactors21✅ 17509 ms (15 iters)✅ 16616 ms (15 iters)≈ -5.1% (±7.9%)— / —
reactors25✅ 18621 ms (15 iters)✅ 18322 ms (15 iters)≈ -1.6% (±3.9%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅1 / 31953 / 1993✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅7 / 32318 / 2195✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅3 / 38547 / 8631✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅✅ / 28658 / 8388✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅1 / 41268 / 1277✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅2 / 11267 / 1274✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅4 / 12930 / 2911✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅2 / ✅2869 / 2933✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅1 / 33541 / 3482✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅3 / 43499 / 3480✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅1 / ✅1717 / 1831✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅✅ / ✅1914 / 1928✅ / ✅✅ / ✅

CopilotAI review requested due to automatic review settings July 21, 2026 13:01

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 17 out of 17 changed files in this pull request and generated no new comments.

Comments suppressed due to low confidence (1)

ddprof-lib/src/main/cpp/flightRecorder.cpp:1801

  • NativeMem::sample() explicitly clamps negative per-category live values to 0 when computing totals/averages, but the exported total live counter uses NativeMem::liveTotal(), which can go negative if any category is temporarily negative (the scenario sample() is already designed to tolerate). This can produce a nonsensical negative "native_mem_live_bytes" in the counter stream and makes the totals inconsistent with the sampled/clamped window.
 // per-category values are emitted by writeNativeMem().
Counters::set(NATIVE_MEM_LIVE_BYTES, NativeMem::liveTotal());
Counters::set(NATIVE_MEM_AVG_BYTES, NativeMem::avgTotal());
Counters::set(NATIVE_MEM_MAX_BYTES, NativeMem::maxTotal());

CopilotAI review requested due to automatic review settings July 21, 2026 13:14
@rkennke
rkennke marked this pull request as ready for review July 21, 2026 13:14
@rkennke
rkennke requested a review from a team as a code ownerJuly 21, 2026 13:14

@chatgpt-codex-connectorchatgpt-codex-connectorBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit:19db9d3172

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment threadddprof-lib/src/main/cpp/flightRecorder.cpp Outdated
Comment threadddprof-lib/src/main/cpp/profiler.cpp Outdated

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 17 out of 17 changed files in this pull request and generated 2 comments.

Comment threadddprof-lib/src/main/cpp/profiler.cpp Outdated
Comment threadddprof-lib/src/test/cpp/nativeMem_ut.cpp
@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit 19db9d3)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/125953166 Commit: 19db9d3172a3b825b2a3c2d9cde16d419f2a16ab

✅ Within expected boundaries

No significant runtime deltas (all within run-to-run noise) and no internal-counter outliers.

Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10184 ms (21 iters)✅ 10222 ms (21 iters)≈ +0.4% (±10.7%)— / —
akka-uct25✅ 8849 ms (24 iters)✅ 8836 ms (24 iters)≈ -0.1% (±9.6%)— / —
finagle-chirper21✅ 5977 ms (33 iters)✅ 5959 ms (33 iters)≈ -0.3% (±25.1%)⚠️ W:3 / ⚠️ W:3
finagle-chirper25✅ 5517 ms (36 iters)✅ 5496 ms (36 iters)≈ -0.4% (±24.5%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2786 ms (67 iters)✅ 2784 ms (67 iters)≈ -0.1% (±2.7%)— / —
fj-kmeans25✅ 2840 ms (66 iters)✅ 2827 ms (66 iters)≈ -0.5% (±2.6%)— / —
future-genetic21✅ 2062 ms (91 iters)✅ 2079 ms (89 iters)≈ +0.8% (±2.7%)— / —
future-genetic25✅ 2115 ms (87 iters)✅ 2078 ms (89 iters)≈ -1.7% (±2.6%)— / —
naive-bayes21✅ 1252 ms (136 iters)✅ 1266 ms (135 iters)≈ +1.1% (±33.2%)— / —
naive-bayes25✅ 988 ms (173 iters)✅ 1018 ms (168 iters)≈ +3% (±32.6%)— / —
reactors21✅ 16944 ms (15 iters)✅ 15943 ms (15 iters)≈ -5.9% (±7.3%)— / —
reactors25✅ 18369 ms (15 iters)✅ 18723 ms (15 iters)≈ +1.9% (±5.7%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅3 / ✅1939 / 1856✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅1 / 12331 / 2274✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅2 / 18422 / 8566✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅4 / 18696 / 8393✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅✅ / 11268 / 1272✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅✅ / 51299 / 1292✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅2 / 23012 / 2985✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅4 / 22914 / 2832✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅1 / 43478 / 3535✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅3 / 13463 / 3510✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅1 / 21715 / 1726✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅1 / ✅1873 / 1930✅ / ✅✅ / ✅

@kaahoskaahos left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the work, I've left some comments! let me know what you think.

Comment threadddprof-lib/src/main/cpp/nativeMem.cpp
Comment threadddprof-lib/src/test/cpp/dictionary_ut.cpp Outdated
Comment threadddprof-lib/src/test/cpp/stringDictionary_ut.cpp
Comment threadddprof-lib/src/main/cpp/threadLocalData.h Outdated
Comment threadddprof-lib/src/main/cpp/perfEvents_linux.cpp
rkennkeand others added 10 commits July 24, 2026 11:50
Two invariants the accounting relies on are now asserted (stripped under
NDEBUG, so no release cost and never in a real signal handler):
- Per-category live bytes never go negative: record() asserts the
post-update value >= 0. A negative means an unbalanced/oversized free.
This lets liveTotal() sum without clamping, since each term is >= 0.
- Dictionary keys are NUL-free strings of exactly `length`: allocateKey()
asserts strlen == length. The NM_DICTIONARY free path recovers a key's
size via strlen at clear(), so an embedded NUL would under-count; the
assert trips in debug/gtest instead of silently drifting.
The sample() clamp is retained as a release-mode safety net for the
asserted-impossible negative case, and its comment updated to say so. The
old NegativeLiveClampedInSample test is removed: it deliberately drove a
category negative, which now (correctly) trips the record() assert.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Review fixes:
- Clamp per-category live to 0 at the emit boundary (liveTotal() and
writeNativeMem()). These values are serialized via putVar64(u64); a
negative gauge would otherwise emit a huge varint and corrupt the
counter stream. Matches the clamping sample() already does. The
record() invariant asserts non-negative in debug; this guards the
release path where the assert is stripped.
- Move the NM_JFR_BUFFERS decrement in FlightRecorder::stop() to after
`delete rec`: ~Recording() runs finishChunk(), which emits the counters
for the final chunk while the buffers are still live, so account the
free only once it has happened.
- Reword the "lower bound" description of the observed total: the sampled
per-category sum is not an atomic snapshot, so it can drift above or
below a true instantaneous total; it is an approximate sampled figure,
and maxTotal() remains the authoritative ceiling.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…s on stop
Review fixes:
- Reallocate the per-shard calltrace buffers in two phases: allocate all
CONCURRENCY_LEVEL replacements first, and only swap/free/account if all
succeed. A mid-loop allocation failure now leaves the profiler entirely
unchanged (old buffers, _max_stack_depth, and NM_CALLTRACE accounting
stay consistent), instead of the previous partial-swap + reset of
_max_stack_depth to 0 that mis-accounted a later resize.
- Extract updateNativeLibMemStats(): read native_libs.memoryUsage() once
(was called three times) and publish the CODECACHE counters plus the
NM_NATIVE_SYMBOLS gauge. Call it from both dump() and stop() (before
_jfr.stop()), so the final chunk reflects native-symbol memory even when
stopping without a preceding dump.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The per-thread PerfEvent array (max_events * sizeof(PerfEvent)) is real
perf-engine memory that NM_PERF omitted — it counted only the ring
mappings. Add paired inc/dec around the calloc/free in start(), guarded
on non-null so a prior calloc failure is not mis-accounted.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
- Add two tests proving NM_THREAD_LOCAL balances across the ProfiledThread
lifecycle: the decrement lives in freeValue(), reached both via
release() -> ThreadLocal::clear() and via the pthread-key destructor on
thread exit. Both paths return the gauge to baseline.
- dictionary_ut.cpp: update copyright to 2025, 2026.
- stringDictionary_ut.cpp: add the missing Datadog copyright header.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Two follow-up review fixes:
- ProfiledThread::deleteForTest() (UNIT_TEST helper) deleted the object
directly, bypassing freeValue()'s NM_THREAD_LOCAL decrement and leaking
live bytes across tests that use it. It stands in for freeValue()'s
delete, so mirror the decrement.
- In ~ThreadFilter(), record the decrements after the memory is actually
freed: delete the chunk before its decrement, and reset the _free_list
unique_ptr explicitly before recording (rather than letting it free the
array after the destructor body runs). Keeps the gauge from leading the
free during teardown.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Consistency: the two-phase resize recorded the NM_CALLTRACE decrement
before free(prev); the other decrement sites (FlightRecorder::stop,
~ThreadFilter) account the free after it happens. Reorder to match.
Functionally equivalent (free doesn't read the counter), purely for
uniformity.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Consistency (same as the calltrace-buffer and ~ThreadFilter sites): record
the NM_PERF decrement for the old _events array after free(_events) rather
than before. Capture the old size first, since _max_events is overwritten
by the reallocation.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Consistency with the other decrement sites (calltrace resize, perf
_events, ~ThreadFilter): record the NM_THREAD_LOCAL decrement after
delete pt rather than before. sizeof is a compile-time constant, so no
value is lost by deleting first.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Sweep the remaining "record before free" decrement sites to record after
the free, consistent with the calltrace/perf/thread-local/ThreadFilter
sites (avoids a transient underreport if sampling races teardown):
- StringArena chunk frees (~StringArena, reset()).
- SBTable frees (freeOverflowNodes, ~StringDictionaryBuffer).
- Dictionary key strings (capture strlen+1 before free, record after) and
overflow DictTable frees.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

@jbachorikjbachorik left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work!
Can you plz consider adding some smoke tests? Mybe extending the existing tests to assert the presence of the NM accounting counters and that they are sane?

CopilotAI review requested due to automatic review settings July 24, 2026 10:37
@rkennke
rkennkeforce-pushed the feat/native-mem-accounting branch from a364b5a to 1194e30CompareJuly 24, 2026 10:37

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 19 out of 19 changed files in this pull request and generated 4 comments.

Comment threadddprof-lib/src/main/cpp/nativeMem.h
Comment threadddprof-lib/src/main/cpp/nativeMem.cpp
Comment threadddprof-lib/src/test/cpp/nativeMem_ut.cpp
Comment threadddprof-lib/src/test/cpp/dictionary_ut.cpp Outdated
Add an end-to-end smoke test asserting the always-on native-memory
accounting counters (native_mem_live_bytes / _avg_bytes / _max_bytes)
are emitted into the recording after a short profiling run and hold
their sanity invariants: the peak total (sum of precise per-category
peaks) brackets both the live total and the moving-window average.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
CopilotAI review requested due to automatic review settings July 24, 2026 10:46

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

Replace the full Apache-2.0 boilerplate in nativeMem.{h,cpp} and
nativeMem_ut.cpp with the short-form copyright + SPDX identifier used
across the tree, and normalize the dictionary_ut.cpp copyright line.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
CopilotAI review requested due to automatic review settings July 24, 2026 10:55

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 20 out of 20 changed files in this pull request and generated 1 comment.

Comment threadddprof-lib/src/main/cpp/flightRecorder.cpp
@dd-octo-sts

Copy link
Copy Markdown
Contributor

Benchmark Results (commit 9ebd615)

Pipeline: https://gitlab.ddbuild.io/DataDog/apm-reliability/benchmarking-platform/-/pipelines/126754088 Commit: 9ebd615918dfe731c6441b43a53938a18c0c1d3b

⚠️ Significant outliers

  • 🔴 future-genetic (JDK 21): runtime +6.2% (2050→2177 ms)
Runtime details (per benchmark × JDK)
BenchmarkJDKLatestDevΔ (dev vs latest)Issues L/D
akka-uct21✅ 10265 ms (21 iters)✅ 10278 ms (21 iters)≈ +0.1% (±10.6%)— / —
akka-uct25✅ 8824 ms (24 iters)✅ 8954 ms (24 iters)≈ +1.5% (±10.7%)— / —
finagle-chirper21✅ 5964 ms (33 iters)✅ 5999 ms (33 iters)≈ +0.6% (±25.1%)⚠️ W:4 / ⚠️ W:3
finagle-chirper25✅ 5467 ms (36 iters)✅ 5493 ms (36 iters)≈ +0.5% (±24.3%)⚠️ W:3 / ⚠️ W:3
fj-kmeans21✅ 2747 ms (68 iters)✅ 2682 ms (70 iters)≈ -2.4% (±2.6%)— / —
fj-kmeans25✅ 2832 ms (66 iters)✅ 2821 ms (66 iters)≈ -0.4% (±2.5%)— / —
future-genetic21✅ 2050 ms (90 iters)✅ 2177 ms (85 iters)🔴 +6.2%— / —
future-genetic25✅ 2068 ms (90 iters)✅ 2074 ms (89 iters)≈ +0.3% (±2.7%)— / —
naive-bayes21✅ 1260 ms (135 iters)✅ 1226 ms (138 iters)≈ -2.7% (±32.6%)— / —
naive-bayes25✅ 1031 ms (166 iters)✅ 1015 ms (168 iters)≈ -1.6% (±31.9%)— / —
reactors21✅ 16158 ms (15 iters)✅ 15977 ms (15 iters)≈ -1.1% (±6.3%)— / —
reactors25✅ 18443 ms (15 iters)✅ 18665 ms (15 iters)≈ +1.2% (±4.9%)— / —
Internal counter details (ddprof)

ddprof internal counters, latest / dev (✅ = 0, · = unavailable):

BenchmarkJDKDropped recDropped jvmtiDropped traceSkipped WCAGCT failUnwind fail
akka-uct21✅ / ✅✅ / ✅✅ / 11952 / 1889✅ / ✅✅ / ✅
akka-uct25✅ / ✅✅ / ✅2 / ✅2080 / 2128✅ / ✅✅ / ✅
finagle-chirper21✅ / ✅✅ / ✅1 / 28693 / 8617✅ / ✅✅ / ✅
finagle-chirper25✅ / ✅✅ / ✅1 / ✅8629 / 8362✅ / ✅✅ / ✅
fj-kmeans21✅ / ✅✅ / ✅✅ / 11245 / 1246✅ / ✅✅ / ✅
fj-kmeans25✅ / ✅✅ / ✅3 / 31285 / 1291✅ / ✅✅ / ✅
future-genetic21✅ / ✅✅ / ✅✅ / ✅2979 / 3063✅ / ✅✅ / ✅
future-genetic25✅ / ✅✅ / ✅1 / ✅2971 / 2936✅ / ✅✅ / ✅
naive-bayes21✅ / ✅✅ / ✅3 / 33497 / 3449✅ / ✅✅ / ✅
naive-bayes25✅ / ✅✅ / ✅8 / 23515 / 3457✅ / ✅✅ / ✅
reactors21✅ / ✅✅ / ✅2 / ✅1725 / 1589✅ / ✅✅ / ✅
reactors25✅ / ✅✅ / ✅1 / ✅1933 / 1891✅ / ✅✅ / ✅

@rkennke
rkennke merged commit b1eace6 into mainJul 24, 2026
106 checks passed
@rkennke
rkennke deleted the feat/native-mem-accounting branch July 24, 2026 11:31
@github-actionsgithub-actionsBot added this to the 1.48.0 milestone Jul 24, 2026
rkennke added a commit that referenced this pull request Jul 30, 2026
Three follow-ups from a closer look at the consolidated report:
- Corrected the "cumulative high-water mark" description of NM_* counters
to match what PR #669 actually implements: every category is a live
gauge with a continuously-tracked peak and moving-window average, all
exposed separately in JFR. The report previously implied calltrace/
dictionary/etc. were structurally different from thread_local; they're
not -- they just happen not to see any frees during a short run.
- Replaced the speculative "appears to be a genuine gap" explanation for
NM_DICTIONARY's flatness with a confirmed one: temporary source
instrumentation (added, checked, and reverted -- not part of the
committed harness) showed Lookup::resolveMethod, the only path that
inserts real class names into the dictionary for wall-clock-sampled
stacks, is never invoked at all on this build, despite thousands of
distinct sampled classes appearing in the same JFR file's rendered
output. Updated the allocs-mode explanation to match, since it rested
on the same now-corrected assumption.
- Added a paired with/without-agent RSS+NMT comparison at the same N
values, to isolate the profiler's own overhead from JVM/OS thread cost
-- the previous version only had agent-attached numbers, which
couldn't answer "how much does the profiler itself add."
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
rkennke added a commit that referenced this pull request Jul 31, 2026
Uses the full jcmd VM.native_memory summary output already captured by
run_repeated_sweep.sh (previously only Thread/Total were extracted) to
attribute the ~102 MB with/without-agent RSS delta at N=150,000 classes:
- 44% (45.5 MB) is visible to NMT -- real JVM-side cost, split across
Class (+13.6 MB), Internal (+11.6 MB), Java Heap (+10.4 MB), and NMT's
own tracking overhead (+10.3 MB). Identifies a strong, well-documented
candidate mechanism for the Class line: JVMTI_EVENT_CLASS_PREPARE (only
registered when this agent is attached) triggers GetClassMethods()
jmethodID preloading per class (jvmSupport.cpp:160), which the
function's own comment already flags as causing "significant memory
growth" under high class churn. Not independently confirmed by
toggling it off, so recorded as a lead, not a closed finding.
- 56% (57 MB) is invisible to NMT (the profiler's own malloc/new), of
which only 15-25 MB is explained by this profiler's own NM_CALLTRACE
counter. The remaining ~32-42 MB is unattributed by either lens --
flagged explicitly as a probable real gap in PR #669's NativeMem
coverage rather than just an unexplained number, with MethodMap/
MethodInfo (already known to have zero NativeMem::record calls) as the
leading suspect worth sizing directly in a follow-up.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants

@rkennke@jbachorik@kaahos