[AURON #1852] Init flink module#1887
Merged
Tartarus0zm merged 2 commits intoapache:masterfrom Jan 14, 2026
Merged
Conversation
Contributor
Author
|
@richox @merrily01 PTAL |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR initializes the Flink module structure by splitting the auron-flink-extension into three submodules: auron-flink-planner, auron-flink-runtime, and auron-flink-assembly. The parent module is converted to a POM packaging type to manage these child modules, with dependencies and build configurations distributed appropriately.
Changes:
- Converted auron-flink-extension from a JAR module to a POM parent module
- Created auron-flink-runtime module with minimal dependencies on auron-core and proto
- Created auron-flink-planner module with comprehensive Flink dependencies, properties, and test infrastructure
- Created auron-flink-assembly module with shade plugin configuration for packaging
- Updated CI workflow to test the new auron-flink-planner module
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| auron-flink-extension/pom.xml | Converted to POM packaging and added three submodule declarations |
| auron-flink-extension/auron-flink-runtime/pom.xml | New runtime module with basic Auron dependencies |
| auron-flink-extension/auron-flink-planner/pom.xml | New planner module with comprehensive Flink dependencies and test configuration |
| auron-flink-extension/auron-flink-assembly/pom.xml | New assembly module with shade plugin for JAR packaging |
| auron-flink-extension/auron-flink-planner/src/test/java/.../AuronFlinkTableTestBase.java | Base test class for Flink table tests |
| auron-flink-extension/auron-flink-planner/src/test/java/.../AuronFlinkCalcITCase.java | Integration test for Flink Calc operator |
| .github/workflows/flink.yml | Updated module path to test auron-flink-planner |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
richox
approved these changes
Jan 14, 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.
Which issue does this PR close?
Closes #1852
Rationale for this change
The Flink extension module has been split into distinct components based on functionality:
What changes are included in this PR?
add auron-flink-planner, auron-flink-runtime and auron-flink-assembly module.
Are there any user-facing changes?
NO
How was this patch tested?
not need test