Optimize in-progress tests and suites lookup#6728
Merged
nikita-tkachenko-datadog merged 3 commits intoMar 8, 2024
Merged
Conversation
nikita-tkachenko-datadog
force-pushed
the
nikita-tkachenko/early-flakiness-detection
branch
from
February 23, 2024 20:40
a7b55a4 to
b1243c5
Compare
BenchmarksStartupParameters
See matching parameters
SummaryFound 0 performance improvements and 0 performance regressions! Performance is the same for 42 metrics, 12 unstable metrics. LoadParameters
See matching parameters
SummaryFound 0 performance improvements and 0 performance regressions! Performance is the same for 11 metrics, 15 unstable metrics. Request duration reports for insecure-bankgantt
title insecure-bank - request duration [CI 0.99] : candidate=1.31.0-SNAPSHOT~ec35a3182f, baseline=1.31.0-SNAPSHOT~2f0211b9b3
dateFormat X
axisFormat %s
section baseline
no_agent (360.134 µs) : 340, 380
. : milestone, 360,
iast (479.956 µs) : 459, 501
. : milestone, 480,
iast_FULL (534.337 µs) : 514, 555
. : milestone, 534,
iast_GLOBAL (502.345 µs) : 481, 524
. : milestone, 502,
iast_HARDCODED_SECRET_DISABLED (472.089 µs) : 452, 492
. : milestone, 472,
iast_INACTIVE (453.457 µs) : 433, 474
. : milestone, 453,
iast_TELEMETRY_OFF (475.084 µs) : 454, 496
. : milestone, 475,
tracing (438.553 µs) : 418, 459
. : milestone, 439,
section candidate
no_agent (363.778 µs) : 344, 383
. : milestone, 364,
iast (474.287 µs) : 453, 495
. : milestone, 474,
iast_FULL (534.986 µs) : 515, 555
. : milestone, 535,
iast_GLOBAL (496.988 µs) : 476, 518
. : milestone, 497,
iast_HARDCODED_SECRET_DISABLED (471.714 µs) : 451, 492
. : milestone, 472,
iast_INACTIVE (453.879 µs) : 433, 475
. : milestone, 454,
iast_TELEMETRY_OFF (472.405 µs) : 452, 493
. : milestone, 472,
tracing (440.537 µs) : 420, 461
. : milestone, 441,
Request duration reports for petclinicgantt
title petclinic - request duration [CI 0.99] : candidate=1.31.0-SNAPSHOT~ec35a3182f, baseline=1.31.0-SNAPSHOT~2f0211b9b3
dateFormat X
axisFormat %s
section baseline
no_agent (1.338 ms) : 1319, 1357
. : milestone, 1338,
appsec (1.774 ms) : 1751, 1798
. : milestone, 1774,
iast (1.536 ms) : 1513, 1559
. : milestone, 1536,
profiling (1.576 ms) : 1551, 1600
. : milestone, 1576,
tracing (1.524 ms) : 1500, 1549
. : milestone, 1524,
section candidate
no_agent (1.35 ms) : 1331, 1370
. : milestone, 1350,
appsec (1.755 ms) : 1731, 1778
. : milestone, 1755,
iast (1.51 ms) : 1486, 1533
. : milestone, 1510,
profiling (1.533 ms) : 1510, 1557
. : milestone, 1533,
tracing (1.5 ms) : 1476, 1523
. : milestone, 1500,
|
Base automatically changed from
nikita-tkachenko/early-flakiness-detection
to
master
February 27, 2024 14:12
nikita-tkachenko-datadog
force-pushed
the
nikita-tkachenko/test-lookup-optimization
branch
from
February 27, 2024 14:13
bed7dd7 to
05440f0
Compare
nikita-tkachenko-datadog
deleted the
nikita-tkachenko/test-lookup-optimization
branch
March 8, 2024 14:17
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What Does This Do
Optimizes lookup of in-progress test and test suites for JUnit 5-based frameworks.
ConcurrentHashMapused for storing in-progress tests and suites is being replaced withContextStorethat is backed by a field that the tracer injects into JUnit'sTestDescriptorclass (so a test or a test suite corresponding to a specific descriptor is obtained directly from the field).Jira ticket: CIVIS-9262