Reorganize query-engine languages and inline OTLP bridge#2797
Draft
marcsnid wants to merge 8 commits intoopen-telemetry:mainfrom
Draft
Reorganize query-engine languages and inline OTLP bridge#2797marcsnid wants to merge 8 commits intoopen-telemetry:mainfrom
marcsnid wants to merge 8 commits intoopen-telemetry:mainfrom
Conversation
…eorganize-query-engine-languages # Conflicts: # rust/otap-dataflow/crates/otap/Cargo.toml # rust/otap-dataflow/crates/query-engine/src/pipeline/filter.rs
Codecov Report✅ All modified and coverable lines are covered by tests. ❌ Your project check has failed because the head coverage (80.69%) is below the target coverage (85.00%). You can increase the head coverage or adjust the target coverage.
Additional details and impacted files@@ Coverage Diff @@
## main #2797 +/- ##
===========================================
- Coverage 86.09% 80.69% -5.40%
===========================================
Files 694 166 -528
Lines 263431 48645 -214786
===========================================
- Hits 226788 39252 -187536
+ Misses 36119 8869 -27250
Partials 524 524
🚀 New features to boost your workflow:
|
…om:marcsnid/otel-arrow into marcsnid/reorganize-query-engine-languages
…om:marcsnid/otel-arrow into marcsnid/reorganize-query-engine-languages
…om:marcsnid/otel-arrow into marcsnid/reorganize-query-engine-languages
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.
Change Summary
Renames the
oplcrate toquery-engine-languagesand nests OPL as a submodule inside it. Adds the OTTL parser stub (fromexperimental/query_engine/ottl-parser) as a second submodule, giving us a single home for language parsers going forward. Also pullsengine-recordset-otlp-bridgedirectly intorecordset_kql_processoras a localotlp_bridgemodule so contrib-nodes doesn't depend on that external crate anymore.All existing tests pass, no behavior changes.
What issue does this PR close?
How are these changes tested?
Existing unit tests cover all moved code.
cargo xtask checkpasses (structure, fmt, clippy, full test suite).Are there any user-facing changes?
No.