Skip to content

Reduce payload size sent by agent in remote config#8238

Merged
andrewlock merged 2 commits into
masterfrom
andrew/remote-config/root-version
Mar 10, 2026
Merged

Reduce payload size sent by agent in remote config#8238
andrewlock merged 2 commits into
masterfrom
andrew/remote-config/root-version

Conversation

@andrewlock

Copy link
Copy Markdown
Member

Summary of changes

Stop sending the fixed RootVersion = 1 with every remote config request

Reason for change

Currently we're sending a fixed value of RootVersion = 1 for all our remote config requests, but doing so causes the agent to repeatedly send us all the root certificates, significantly increasing the payload size, because it thinks we haven't seen them. Sending the "final" version, acknowledges it, and stops all the extra data, saving ~35kB per call.

Implementation details

  • Deserialize the roots in GetRcmResponse, leaving them as base64 encoded strings (which is how they are sent in the payload)
  • When processing the response, de-encode the last root object, and deserialize it

This implementation avoids ~35kB per call for subsequent remote config requests.

Test coverage

Added unit test, and did manual test with the real agent, to confirm the expected behaviour (reduction in data sent)

Other details

https://datadoghq.atlassian.net/browse/LANGPLAT-940

All part of the Remote Config perf stack

@andrewlock
andrewlock requested a review from a team as a code owner February 23, 2026 17:51
@andrewlock andrewlock added type:performance Performance, speed, latency, resource usage (CPU, memory) area:remote-config labels Feb 23, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot 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: 33707ed9b0

ℹ️ About Codex in GitHub

Your team has set up Codex to 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 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

{
ArrayPool = JsonArrayPool.Shared,
};
var tufRoot = new JsonSerializer().Deserialize<MinimalTufRoot>(jsonReader);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Is this new JsonSerializer().Deserialize() called every 5 secs? Should we cache and reuse the JsonSerializer instance?

@andrewlock andrewlock Feb 25, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Yes it is 👍 It's a good question - the JsonConvert methods all create a throw-away one, so I'm not sure if we actually need a new one each time or not 🤔 I'll look into it, and see if we can/should cache them in general

@andrewlock
andrewlock force-pushed the andrew/remote-config/root-version branch from 33707ed to c42e395 Compare February 25, 2026 17:31
@pr-commenter

pr-commenter Bot commented Feb 25, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-03-10 10:41:12

Comparing candidate commit bc2260d in PR branch andrew/remote-config/root-version with baseline commit 59db4b3 in branch master.

Found 6 performance improvements and 10 performance regressions! Performance is the same for 162 metrics, 14 unstable metrics.

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟥 execution_time [+79.499ms; +79.632ms] or [+65.659%; +65.768%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net6.0

  • 🟥 execution_time [+28.107ms; +32.425ms] or [+14.091%; +16.255%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net6.0

  • 🟩 execution_time [-28.652ms; -22.394ms] or [-12.785%; -9.993%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs netcoreapp3.1

  • 🟩 execution_time [-22.833ms; -22.059ms] or [-11.280%; -10.898%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1

  • 🟥 execution_time [+35.170µs; +60.151µs] or [+10.544%; +18.032%]
  • 🟥 throughput [-406.731op/s; -256.718op/s] or [-13.556%; -8.556%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net6.0

  • 🟥 execution_time [+90.803ms; +93.156ms] or [+91.343%; +93.709%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+14.019ms; +20.402ms] or [+6.426%; +9.352%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟥 execution_time [+32.733ms; +36.543ms] or [+19.958%; +22.281%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 throughput [-251.717op/s; -97.674op/s] or [-15.805%; -6.133%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net6.0

  • 🟩 throughput [+41198.437op/s; +55944.401op/s] or [+6.486%; +8.807%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync netcoreapp3.1

  • 🟩 throughput [+24062.916op/s; +30491.307op/s] or [+5.822%; +7.377%]

scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog netcoreapp3.1

  • 🟥 execution_time [+10.347ms; +15.816ms] or [+5.265%; +8.048%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog netcoreapp3.1

  • 🟥 execution_time [+22.689ms; +30.029ms] or [+13.192%; +17.461%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net6.0

  • 🟩 execution_time [-75.277ms; -74.074ms] or [-45.827%; -45.095%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore netcoreapp3.1

  • 🟩 throughput [+14474594.101op/s; +15584433.663op/s] or [+6.416%; +6.908%]

@andrewlock
andrewlock force-pushed the andrew/remote-config/remove-regex branch from 2a6bccf to 6fe01d4 Compare March 10, 2026 08:21
@andrewlock
andrewlock requested review from a team as code owners March 10, 2026 08:21
@andrewlock
andrewlock requested review from kathiehuang and link04 and removed request for a team March 10, 2026 08:21
Base automatically changed from andrew/remote-config/remove-regex to master March 10, 2026 09:57
Previously, we were always sending the same rootversion, which meant that RCM was always sending us the signatures, which significantly increases the payload size sent to us (~35kB of data)

We still pay the cost of this the first time _and_ we now materialize the strings, but we avoid it for all subsequent requests
@andrewlock
andrewlock force-pushed the andrew/remote-config/root-version branch from c42e395 to bc2260d Compare March 10, 2026 09:58
@dd-trace-dotnet-ci-bot

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8238) and master.

✅ No regressions detected - check the details below

Full Metrics Comparison

FakeDbCommand

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration74.39 ± (74.41 - 74.71) ms76.39 ± (76.29 - 76.65) ms+2.7%✅⬆️
.NET Framework 4.8 - Bailout
duration79.78 ± (79.58 - 79.94) ms80.29 ± (79.97 - 80.32) ms+0.6%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1076.78 ± (1079.28 - 1086.68) ms1086.73 ± (1089.10 - 1096.31) ms+0.9%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms22.71 ± (22.67 - 22.75) ms22.96 ± (22.92 - 23.00) ms+1.1%✅⬆️
process.time_to_main_ms86.02 ± (85.83 - 86.21) ms86.98 ± (86.78 - 87.17) ms+1.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.91 ± (10.91 - 10.91) MB10.92 ± (10.92 - 10.92) MB+0.1%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.66 ± (22.63 - 22.70) ms22.86 ± (22.81 - 22.91) ms+0.8%✅⬆️
process.time_to_main_ms87.21 ± (87.06 - 87.36) ms88.35 ± (88.13 - 88.58) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.94 ± (10.94 - 10.95) MB10.94 ± (10.94 - 10.95) MB-0.0%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms246.25 ± (242.16 - 250.35) ms244.75 ± (240.78 - 248.72) ms-0.6%
process.time_to_main_ms490.46 ± (489.76 - 491.16) ms497.05 ± (496.36 - 497.74) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed47.65 ± (47.63 - 47.67) MB47.63 ± (47.61 - 47.65) MB-0.0%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 6 - Baseline
process.internal_duration_ms21.47 ± (21.43 - 21.51) ms21.72 ± (21.67 - 21.77) ms+1.2%✅⬆️
process.time_to_main_ms74.43 ± (74.25 - 74.60) ms75.98 ± (75.83 - 76.13) ms+2.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.62 ± (10.62 - 10.63) MB10.65 ± (10.65 - 10.65) MB+0.2%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms21.55 ± (21.50 - 21.60) ms21.72 ± (21.67 - 21.77) ms+0.8%✅⬆️
process.time_to_main_ms76.37 ± (76.21 - 76.54) ms77.51 ± (77.31 - 77.71) ms+1.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.68 ± (10.67 - 10.68) MB10.76 ± (10.76 - 10.76) MB+0.8%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms252.32 ± (248.83 - 255.81) ms257.10 ± (253.31 - 260.89) ms+1.9%✅⬆️
process.time_to_main_ms473.46 ± (472.82 - 474.11) ms482.45 ± (481.54 - 483.35) ms+1.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.39 ± (48.37 - 48.41) MB48.37 ± (48.35 - 48.39) MB-0.0%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.1%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms19.60 ± (19.57 - 19.64) ms20.04 ± (20.00 - 20.08) ms+2.2%✅⬆️
process.time_to_main_ms73.61 ± (73.47 - 73.75) ms75.75 ± (75.57 - 75.93) ms+2.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.67 ± (7.66 - 7.67) MB7.66 ± (7.66 - 7.67) MB-0.0%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.64 ± (19.59 - 19.68) ms19.99 ± (19.94 - 20.04) ms+1.8%✅⬆️
process.time_to_main_ms75.36 ± (75.19 - 75.52) ms76.64 ± (76.47 - 76.81) ms+1.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.73 ± (7.71 - 7.74) MB7.73 ± (7.72 - 7.74) MB+0.1%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms190.89 ± (189.95 - 191.83) ms192.98 ± (192.22 - 193.75) ms+1.1%✅⬆️
process.time_to_main_ms457.23 ± (456.27 - 458.19) ms459.31 ± (458.58 - 460.03) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed36.10 ± (36.05 - 36.15) MB36.11 ± (36.07 - 36.15) MB+0.0%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)-0.2%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration193.56 ± (193.52 - 194.32) ms195.09 ± (194.84 - 195.78) ms+0.8%✅⬆️
.NET Framework 4.8 - Bailout
duration197.64 ± (197.69 - 198.49) ms199.07 ± (198.77 - 199.55) ms+0.7%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1146.51 ± (1148.07 - 1155.43) ms1158.51 ± (1161.77 - 1170.75) ms+1.0%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms189.13 ± (188.74 - 189.52) ms192.87 ± (192.45 - 193.29) ms+2.0%✅⬆️
process.time_to_main_ms81.89 ± (81.68 - 82.10) ms84.06 ± (83.80 - 84.31) ms+2.6%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.06 ± (16.04 - 16.09) MB16.06 ± (16.04 - 16.08) MB-0.0%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (19 - 20)-0.3%
.NET Core 3.1 - Bailout
process.internal_duration_ms189.33 ± (188.89 - 189.78) ms193.50 ± (193.02 - 193.98) ms+2.2%✅⬆️
process.time_to_main_ms83.51 ± (83.30 - 83.73) ms85.03 ± (84.78 - 85.28) ms+1.8%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.08 ± (16.06 - 16.11) MB16.15 ± (16.13 - 16.18) MB+0.4%✅⬆️
runtime.dotnet.threads.count21 ± (20 - 21)21 ± (21 - 21)+0.1%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms437.11 ± (434.15 - 440.06) ms443.23 ± (440.78 - 445.69) ms+1.4%✅⬆️
process.time_to_main_ms476.81 ± (476.23 - 477.39) ms479.49 ± (478.84 - 480.14) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed57.93 ± (57.81 - 58.04) MB57.93 ± (57.81 - 58.06) MB+0.0%✅⬆️
runtime.dotnet.threads.count29 ± (29 - 30)29 ± (29 - 30)+0.0%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms192.40 ± (192.08 - 192.73) ms192.03 ± (191.71 - 192.35) ms-0.2%
process.time_to_main_ms70.73 ± (70.53 - 70.93) ms70.82 ± (70.63 - 71.01) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.12 ± (15.98 - 16.26) MB16.16 ± (16.03 - 16.29) MB+0.2%✅⬆️
runtime.dotnet.threads.count19 ± (18 - 19)19 ± (19 - 19)+0.0%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms192.72 ± (192.25 - 193.18) ms191.97 ± (191.62 - 192.33) ms-0.4%
process.time_to_main_ms71.88 ± (71.70 - 72.06) ms71.76 ± (71.62 - 71.89) ms-0.2%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.43 ± (16.40 - 16.45) MB16.37 ± (16.27 - 16.47) MB-0.4%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-1.1%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms454.63 ± (452.75 - 456.52) ms450.13 ± (448.16 - 452.09) ms-1.0%
process.time_to_main_ms451.57 ± (450.87 - 452.27) ms452.30 ± (451.77 - 452.82) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed57.94 ± (57.84 - 58.03) MB58.08 ± (57.98 - 58.18) MB+0.2%✅⬆️
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)+0.2%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms190.36 ± (190.02 - 190.69) ms190.59 ± (190.18 - 191.00) ms+0.1%✅⬆️
process.time_to_main_ms70.17 ± (69.96 - 70.39) ms70.23 ± (70.02 - 70.45) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.75 ± (11.72 - 11.78) MB11.79 ± (11.76 - 11.82) MB+0.3%✅⬆️
runtime.dotnet.threads.count18 ± (18 - 18)18 ± (18 - 18)-0.8%
.NET 8 - Bailout
process.internal_duration_ms189.62 ± (189.26 - 189.98) ms190.65 ± (190.26 - 191.04) ms+0.5%✅⬆️
process.time_to_main_ms71.03 ± (70.89 - 71.16) ms71.64 ± (71.48 - 71.81) ms+0.9%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.84 ± (11.81 - 11.88) MB11.80 ± (11.77 - 11.84) MB-0.3%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.1%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms368.38 ± (367.01 - 369.74) ms367.76 ± (366.33 - 369.19) ms-0.2%
process.time_to_main_ms434.42 ± (433.78 - 435.06) ms435.74 ± (434.95 - 436.53) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed47.85 ± (47.81 - 47.89) MB47.72 ± (47.67 - 47.76) MB-0.3%
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)-0.1%
Comparison explanation

Execution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

Duration charts
FakeDbCommand (.NET Framework 4.8)
gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (76ms)  : 74, 79
    master - mean (75ms)  : 73, 77

    section Bailout
    This PR (8238) - mean (80ms)  : 78, 82
    master - mean (80ms)  : 78, 82

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (1,093ms)  : 1039, 1147
    master - mean (1,083ms)  : 1029, 1136

Loading
FakeDbCommand (.NET Core 3.1)
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (117ms)  : 113, 121
    master - mean (116ms)  : 111, 121

    section Bailout
    This PR (8238) - mean (118ms)  : 115, 121
    master - mean (117ms)  : 115, 119

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (780ms)  : 714, 846
    master - mean (765ms)  : 696, 833

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (104ms)  : 101, 108
    master - mean (102ms)  : 100, 105

    section Bailout
    This PR (8238) - mean (106ms)  : 103, 108
    master - mean (105ms)  : 102, 107

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (772ms)  : 705, 840
    master - mean (757ms)  : 694, 820

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (104ms)  : 101, 107
    master - mean (101ms)  : 98, 104

    section Bailout
    This PR (8238) - mean (105ms)  : 103, 107
    master - mean (103ms)  : 100, 105

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (690ms)  : 670, 710
    master - mean (679ms)  : 659, 700

Loading
HttpMessageHandler (.NET Framework 4.8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (195ms)  : 190, 200
    master - mean (194ms)  : 189, 198

    section Bailout
    This PR (8238) - mean (199ms)  : 195, 203
    master - mean (198ms)  : 194, 202

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (1,166ms)  : 1097, 1235
    master - mean (1,152ms)  : 1098, 1206

Loading
HttpMessageHandler (.NET Core 3.1)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (285ms)  : 278, 293
    master - mean (280ms)  : 270, 290

    section Bailout
    This PR (8238) - mean (287ms)  : 279, 296
    master - mean (282ms)  : 275, 288

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (952ms)  : 913, 992
    master - mean (947ms)  : 902, 991

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (271ms)  : 266, 277
    master - mean (271ms)  : 267, 276

    section Bailout
    This PR (8238) - mean (272ms)  : 267, 277
    master - mean (273ms)  : 266, 279

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (932ms)  : 901, 963
    master - mean (937ms)  : 908, 966

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8238) - mean (270ms)  : 265, 276
    master - mean (270ms)  : 264, 276

    section Bailout
    This PR (8238) - mean (272ms)  : 266, 278
    master - mean (270ms)  : 265, 276

    section CallTarget+Inlining+NGEN
    This PR (8238) - mean (835ms)  : 819, 850
    master - mean (833ms)  : 807, 859

Loading

@andrewlock
andrewlock merged commit fa298ba into master Mar 10, 2026
139 checks passed
@andrewlock
andrewlock deleted the andrew/remote-config/root-version branch March 10, 2026 15:14
@github-actions github-actions Bot added this to the vNext-v3 milestone Mar 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:remote-config type:performance Performance, speed, latency, resource usage (CPU, memory)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants