Skip to content

Andrei/symdb upload fields#50398

Open
andreimatei wants to merge 3 commits intomainfrom
andrei/symdb-upload-fields
Open

Andrei/symdb upload fields#50398
andreimatei wants to merge 3 commits intomainfrom
andrei/symdb-upload-fields

Conversation

@andreimatei
Copy link
Copy Markdown
Contributor

By duplicating some metadata out of the SymDB attachment body into the
EvP event body, we can avoid having to download the attachment in the
backend when we receive the upload.

ajwerner and others added 3 commits May 5, 2026 14:59
The SymDB upload pipeline previously held each batch in memory three times
over: as a []Scope slice, as a marshalled JSON []byte, and as a gzipped
[]byte. Batches were flushed by buffered function count (default 10000),
which let the in-memory []Scope grow large before any compression.

Replace UploadBatch([]Scope) with a streaming BatchEncoder that owns the
gzip writer and a json.Encoder wrapping it. Scopes are encoded straight
into the gzip stream as they arrive, the caller no longer accumulates a
slice, and flushes are triggered when the compressed buffer reaches a
threshold (DefaultFlushThresholdBytes = 2 MiB). The envelope is written
inside the gzip stream as {service,version,language,upload_id,batch_num,
scopes:[...],final}, with final written at flush time.

Threshold is soft: gzip's internal window means the flushed payload may
overshoot by up to ~32 KiB. A threshold <= 0 forces per-scope flushing,
preserving the cancel-between-flushes test behaviour previously achieved
with maxBufferFuncs=1.

ErrUpload is exposed as a sentinel so callers can distinguish HTTP-side
failures (retryable) from local encoder errors via errors.Is.

https://datadoghq.atlassian.net/browse/DEBUG-5553
... explaining the structure of the upload.
By duplicating some metadata out of the SymDB attachment body into the
EvP event body, we can avoid having to download the attachment in the
backend when we receive the upload.
@andreimatei andreimatei requested review from ajwerner and ojung May 5, 2026 19:46
@andreimatei andreimatei requested a review from a team as a code owner May 5, 2026 19:46
Copy link
Copy Markdown
Contributor

@ajwerner ajwerner left a comment

Choose a reason for hiding this comment

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

Give the PR a better title before you merge as that's what gets checked in.

Comment on lines 290 to 302
meta := []byte(`{
"ddsource": "dd_debugger",
"service": "` + s.service + `",
"version": "` + s.version + `",
"runtimeId": "` + s.runtimeID + `",
"debugger": {
"type": "symdb"
"type": "symdb",
"upload_id": "` + uploadID.String() + `",
"batch_num": ` + strconv.Itoa(batchNum) + `,
"final": ` + strconv.FormatBool(final) + `,
"attachment_size": ` + strconv.Itoa(len(compressedData)) + `
}
}`)
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.

nit: looking at this again, I'd prefer you actually did use the Marshal code -- version and service aren't sanitized anywhere. I don't have any reason to believe anything bad is going happen but it doesn't seem worth it to serialize like this.

@github-actions github-actions Bot added the short review PR is simple enough to be reviewed quickly label May 5, 2026
@dd-octo-sts
Copy link
Copy Markdown
Contributor

dd-octo-sts Bot commented May 5, 2026

Files inventory check summary

File checks results against ancestor 84ef6841:

Results for datadog-agent_7.80.0~devel.git.483.fa39ef9.pipeline.111594838-1_amd64.deb:

No change detected

@dd-octo-sts
Copy link
Copy Markdown
Contributor

dd-octo-sts Bot commented May 5, 2026

Static quality checks

✅ Please find below the results from static quality gates
Comparison made with ancestor 84ef684
📊 Static Quality Gates Dashboard
🔗 SQG Job

Successful checks

Info

Quality gate Change Size (prev → curr → max)
agent_deb_amd64 +3.86 KiB (0.00% increase) 740.963 → 740.967 → 750.310
agent_rpm_amd64 +3.86 KiB (0.00% increase) 740.947 → 740.950 → 750.280
agent_rpm_arm64 +2.34 KiB (0.00% increase) 719.026 → 719.028 → 724.050
agent_suse_amd64 +3.86 KiB (0.00% increase) 740.947 → 740.950 → 750.280
agent_suse_arm64 +2.34 KiB (0.00% increase) 719.026 → 719.028 → 724.050
docker_agent_amd64 +3.83 KiB (0.00% increase) 801.342 → 801.346 → 805.870
docker_agent_arm64 +2.34 KiB (0.00% increase) 804.251 → 804.253 → 809.730
docker_agent_jmx_amd64 +3.86 KiB (0.00% increase) 992.262 → 992.266 → 996.590
docker_agent_jmx_arm64 +2.34 KiB (0.00% increase) 983.949 → 983.951 → 989.410
23 successful checks with minimal change (< 2 KiB)
Quality gate Current Size
agent_deb_amd64_fips 699.151 MiB
agent_heroku_amd64 309.076 MiB
agent_rpm_amd64_fips 699.135 MiB
agent_rpm_arm64_fips 680.300 MiB
agent_suse_amd64_fips 699.135 MiB
agent_suse_arm64_fips 680.300 MiB
docker_cluster_agent_amd64 206.603 MiB
docker_cluster_agent_arm64 220.634 MiB
docker_cws_instrumentation_amd64 7.142 MiB
docker_cws_instrumentation_arm64 6.689 MiB
docker_host_profiler_amd64 301.101 MiB
docker_host_profiler_arm64 312.622 MiB
docker_dogstatsd_amd64 39.374 MiB
docker_dogstatsd_arm64 37.628 MiB
dogstatsd_deb_amd64 30.032 MiB
dogstatsd_deb_arm64 28.173 MiB
dogstatsd_rpm_amd64 30.032 MiB
dogstatsd_suse_amd64 30.032 MiB
iot_agent_deb_amd64 44.462 MiB
iot_agent_deb_arm64 41.442 MiB
iot_agent_deb_armhf 42.179 MiB
iot_agent_rpm_amd64 44.462 MiB
iot_agent_suse_amd64 44.462 MiB
On-wire sizes (compressed)
Quality gate Change Size (prev → curr → max)
agent_deb_amd64 -33.34 KiB (0.02% reduction) 175.268 → 175.236 → 179.160
agent_deb_amd64_fips -36.45 KiB (0.02% reduction) 167.002 → 166.967 → 174.440
agent_heroku_amd64 neutral 74.959 MiB → 80.310
agent_rpm_amd64 +5.47 KiB (0.00% increase) 177.309 → 177.315 → 182.080
agent_rpm_amd64_fips +18.25 KiB (0.01% increase) 168.365 → 168.383 → 174.140
agent_rpm_arm64 -59.6 KiB (0.04% reduction) 159.426 → 159.367 → 163.610
agent_rpm_arm64_fips +46.36 KiB (0.03% increase) 151.734 → 151.779 → 156.850
agent_suse_amd64 +5.47 KiB (0.00% increase) 177.309 → 177.315 → 182.080
agent_suse_amd64_fips +18.25 KiB (0.01% increase) 168.365 → 168.383 → 174.140
agent_suse_arm64 -59.6 KiB (0.04% reduction) 159.426 → 159.367 → 163.610
agent_suse_arm64_fips +46.36 KiB (0.03% increase) 151.734 → 151.779 → 156.850
docker_agent_amd64 -3.2 KiB (0.00% reduction) 267.710 → 267.707 → 272.990
docker_agent_arm64 +7.88 KiB (0.00% increase) 254.708 → 254.716 → 261.470
docker_agent_jmx_amd64 -3.78 KiB (0.00% reduction) 336.348 → 336.344 → 341.610
docker_agent_jmx_arm64 +8.97 KiB (0.00% increase) 319.350 → 319.358 → 326.050
docker_cluster_agent_amd64 neutral 72.426 MiB → 73.460
docker_cluster_agent_arm64 neutral 67.880 MiB → 68.680
docker_cws_instrumentation_amd64 neutral 2.999 MiB → 3.330
docker_cws_instrumentation_arm64 neutral 2.729 MiB → 3.090
docker_host_profiler_amd64 neutral 110.739 MiB → 125.600
docker_host_profiler_arm64 neutral 105.089 MiB → 120.000
docker_dogstatsd_amd64 neutral 15.240 MiB → 15.870
docker_dogstatsd_arm64 neutral 14.558 MiB → 14.890
dogstatsd_deb_amd64 neutral 7.942 MiB → 8.830
dogstatsd_deb_arm64 neutral 6.827 MiB → 7.750
dogstatsd_rpm_amd64 neutral 7.952 MiB → 8.840
dogstatsd_suse_amd64 neutral 7.952 MiB → 8.840
iot_agent_deb_amd64 -3.3 KiB (0.03% reduction) 11.703 → 11.700 → 13.210
iot_agent_deb_arm64 neutral 9.996 MiB → 11.620
iot_agent_deb_armhf neutral 10.205 MiB → 11.780
iot_agent_rpm_amd64 neutral 11.716 MiB → 13.230
iot_agent_suse_amd64 neutral 11.716 MiB → 13.230

@cit-pr-commenter-54b7da
Copy link
Copy Markdown

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: 199e65cc-f238-4e2d-8059-f621a0866000

Baseline: 84ef684
Comparison: fa39ef9
Diff

Optimization Goals: ✅ No significant changes detected

Experiments ignored for regressions

Regressions in experiments with settings containing erratic: true are ignored.

perf experiment goal Δ mean % Δ mean % CI trials links
docker_containers_cpu % cpu utilization -3.22 [-6.13, -0.32] 1 Logs

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_logs % cpu utilization +2.62 [+1.65, +3.59] 1 Logs bounds checks dashboard
tcp_syslog_to_blackhole ingress throughput +2.09 [+1.88, +2.30] 1 Logs
quality_gate_metrics_logs memory utilization +1.68 [+1.45, +1.92] 1 Logs bounds checks dashboard
file_tree memory utilization +0.56 [+0.51, +0.60] 1 Logs
otlp_ingest_logs memory utilization +0.46 [+0.36, +0.56] 1 Logs
uds_dogstatsd_20mb_12k_contexts_20_senders memory utilization +0.42 [+0.37, +0.46] 1 Logs
ddot_metrics memory utilization +0.35 [+0.17, +0.53] 1 Logs
ddot_metrics_sum_cumulative memory utilization +0.16 [+0.01, +0.32] 1 Logs
ddot_logs memory utilization +0.07 [+0.02, +0.12] 1 Logs
ddot_metrics_sum_delta memory utilization +0.06 [-0.11, +0.23] 1 Logs
uds_dogstatsd_to_api_v3 ingress throughput +0.02 [-0.18, +0.22] 1 Logs
file_to_blackhole_100ms_latency egress throughput +0.02 [-0.14, +0.17] 1 Logs
uds_dogstatsd_to_api ingress throughput +0.01 [-0.20, +0.21] 1 Logs
tcp_dd_logs_filter_exclude ingress throughput -0.02 [-0.11, +0.08] 1 Logs
file_to_blackhole_500ms_latency egress throughput -0.03 [-0.43, +0.38] 1 Logs
file_to_blackhole_1000ms_latency egress throughput -0.06 [-0.49, +0.38] 1 Logs
file_to_blackhole_0ms_latency egress throughput -0.07 [-0.62, +0.49] 1 Logs
quality_gate_idle memory utilization -0.09 [-0.14, -0.05] 1 Logs bounds checks dashboard
quality_gate_idle_all_features memory utilization -0.09 [-0.13, -0.06] 1 Logs bounds checks dashboard
ddot_metrics_sum_cumulativetodelta_exporter memory utilization -0.22 [-0.45, +0.01] 1 Logs
docker_containers_memory memory utilization -0.29 [-0.39, -0.20] 1 Logs
otlp_ingest_metrics memory utilization -0.59 [-0.73, -0.44] 1 Logs
docker_containers_cpu % cpu utilization -3.22 [-6.13, -0.32] 1 Logs

Bounds Checks: ❌ Failed

perf experiment bounds_check_name replicates_passed observed_value links
docker_containers_cpu simple_check_run 10/10 693 ≥ 26
docker_containers_memory memory_usage 10/10 261.73MiB ≤ 370MiB
docker_containers_memory simple_check_run 10/10 693 ≥ 26
file_to_blackhole_0ms_latency memory_usage 10/10 0.18GiB ≤ 1.20GiB
file_to_blackhole_0ms_latency missed_bytes 10/10 0B = 0B
file_to_blackhole_1000ms_latency memory_usage 10/10 0.22GiB ≤ 1.20GiB
file_to_blackhole_1000ms_latency missed_bytes 10/10 0B = 0B
file_to_blackhole_100ms_latency memory_usage 10/10 0.19GiB ≤ 1.20GiB
file_to_blackhole_100ms_latency missed_bytes 10/10 0B = 0B
file_to_blackhole_500ms_latency memory_usage 10/10 0.20GiB ≤ 1.20GiB
file_to_blackhole_500ms_latency missed_bytes 10/10 0B = 0B
quality_gate_idle intake_connections 10/10 3 ≤ 4 bounds checks dashboard
quality_gate_idle memory_usage 0/10 158.81MiB > 147MiB bounds checks dashboard
quality_gate_idle_all_features intake_connections 10/10 3 ≤ 4 bounds checks dashboard
quality_gate_idle_all_features memory_usage 10/10 486.15MiB ≤ 495MiB bounds checks dashboard
quality_gate_logs intake_connections 10/10 4 ≤ 6 bounds checks dashboard
quality_gate_logs memory_usage 10/10 190.94MiB ≤ 195MiB bounds checks dashboard
quality_gate_logs missed_bytes 10/10 0B = 0B bounds checks dashboard
quality_gate_metrics_logs cpu_usage 10/10 352.75 ≤ 2000 bounds checks dashboard
quality_gate_metrics_logs intake_connections 10/10 3 ≤ 6 bounds checks dashboard
quality_gate_metrics_logs memory_usage 10/10 389.52MiB ≤ 430MiB bounds checks dashboard
quality_gate_metrics_logs missed_bytes 10/10 0B = 0B bounds checks dashboard

Explanation

Confidence level: 90.00%
Effect size tolerance: |Δ mean %| ≥ 5.00%

Performance changes are noted in the perf column of each table:

  • ✅ = significantly better comparison variant performance
  • ❌ = significantly worse comparison variant performance
  • ➖ = no significant change in performance

A regression test is an A/B test of target performance in a repeatable rig, where "performance" is measured as "comparison variant minus baseline variant" for an optimization goal (e.g., ingress throughput). Due to intrinsic variability in measuring that goal, we can only estimate its mean value for each experiment; we report uncertainty in that value as a 90.00% confidence interval denoted "Δ mean % CI".

For each experiment, we decide whether a change in performance is a "regression" -- a change worth investigating further -- if all of the following criteria are true:

  1. Its estimated |Δ mean %| ≥ 5.00%, indicating the change is big enough to merit a closer look.

  2. Its 90.00% confidence interval "Δ mean % CI" does not contain zero, indicating that if our statistical model is accurate, there is at least a 90.00% chance there is a difference in performance between baseline and comparison variants.

  3. Its configuration does not mark it "erratic".

CI Pass/Fail Decision

Failed. Some Quality Gates were violated.

  • quality_gate_idle_all_features, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check memory_usage: 0/10 replicas passed. Failed 10 which is > 0. Gate FAILED.
  • quality_gate_logs, bounds check missed_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check missed_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check cpu_usage: 10/10 replicas passed. Gate passed.

Base automatically changed from ajwerner/symdb-streaming to main May 6, 2026 17:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

short review PR is simple enough to be reviewed quickly

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants