fix(perf): update df_engine mount path to /home/nonroot in syslog-tcp-otelcol nightly suite#3032
Merged
lquerel merged 1 commit intoMay 19, 2026
Conversation
Contributor
There was a problem hiding this comment.
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…-otelcol nightly suite
16aa1b5 to
75cc246
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3032 +/- ##
==========================================
- Coverage 85.95% 85.95% -0.01%
==========================================
Files 725 725
Lines 276289 276289
==========================================
- Hits 237485 237474 -11
- Misses 38280 38291 +11
Partials 524 524
🚀 New features to boost your workflow:
|
lquerel
approved these changes
May 19, 2026
Merged
via the queue into
open-telemetry:main
with commit May 19, 2026
5bcb1d1
84 of 86 checks passed
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.
The nightly Pipeline Performance Tests run 26069747923 failed in the "Run syslog TCP performance test otelcol log suite" step because the backend (
df_engine) container never became ready (readiness check timed out after 10 attempts).Root cause: PR #2919 switched the
df_engineimage from musl/alpine to glibc/distroless, changing the in-container home directory from/home/dataflowto/home/nonroot, and updated the volume mount path in all then-existing nightly docker yamls. Thesyslog-tcp-otelcol-docker.yamlsuite (added concurrently in #2962) was missed, so it was still mounting the backend config at/home/dataflow/config.yaml— a path that doesn't exist in the new image — causing the backend container to fail to start.This one-line change brings it in line with the other nightly suites.