ci(connectors): raise vm.max_map_count for Doris in coverage job#3365
Merged
Conversation
The Doris connector sink (#3215) added the sysctl bump only to the pre-merge action, so the coverage-baseline job kept the runner default of 262144. Doris 4.0.3's start_be.sh hard-exits below 2000000, making the fixture preflight panic and failing all Doris sink integration tests post-merge. Mirror the same host-only sysctl step before the test run so the coverage job follows the identical container-boot path.
krishvishal
approved these changes
May 29, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3365 +/- ##
============================================
+ Coverage 73.56% 73.65% +0.09%
Complexity 943 943
============================================
Files 1222 1223 +1
Lines 114939 115710 +771
Branches 91676 92475 +799
============================================
+ Hits 84550 85222 +672
- Misses 27541 27588 +47
- Partials 2848 2900 +52
🚀 New features to boost your workflow:
|
spetz
approved these changes
May 29, 2026
ryankert01
approved these changes
May 29, 2026
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 Doris connector sink (#3215) added the sysctl bump only to the
pre-merge action, so the coverage-baseline job kept the runner
default of 262144. Doris 4.0.3's start_be.sh hard-exits below
2000000, making the fixture preflight panic and failing all Doris
sink integration tests post-merge.
Mirror the same host-only sysctl step before the test run so the
coverage job follows the identical container-boot path.