[AURON #2030] Add Native Scan Support for Apache Hudi Copy-On-Write Tables.#2031
Open
slfan1989 wants to merge 2 commits intoapache:masterfrom
Open
[AURON #2030] Add Native Scan Support for Apache Hudi Copy-On-Write Tables.#2031slfan1989 wants to merge 2 commits intoapache:masterfrom
slfan1989 wants to merge 2 commits intoapache:masterfrom
Conversation
…rite Tables. Signed-off-by: slfan1989 <slfan1989@apache.org>
…rite Tables. Signed-off-by: slfan1989 <slfan1989@apache.org>
Contributor
Author
|
Spark 3.0 and 3.1 don’t support time travel yet, so I’ll revise the unit tests accordingly. |
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 #2030
Rationale for this change
This PR adds native scan support for Hudi Copy-On-Write (COW) tables, enabling Auron to accelerate Hudi table reads by converting
FileSourceScanExecoperations to native Parquet/ORC scan implementations.What changes are included in this PR?
1. New Module:
thirdparty/auron-hudiHudiConvertProvider: ImplementsAuronConvertProviderSPI to intercept and convert HudiFileSourceScanExecto native scansHoodieParquetFileFormat,HoodieOrcFileFormat)NativeParquetScanExecorNativeOrcScanExecHudiScanSupport: Core detection and validation logicNewHoodie*format rejection.hoodie/hoodie.propertiesas.of.instant,as.of.timestampoptions)2. Configuration
spark.auron.enable.hudi.scanconfig option (default:true)3. Build & Integration
Maven: New profile
hudi-0.15with enforcer ruleshudiEnabled=truepropertyBuild Script: Enhanced
auron-build.sh--hudi <VERSION>parameterhudiEnabledpropertyCI/CD: New workflow
.github/workflows/hudi.ymlAre there any user-facing changes?
New Configuration Option
How was this patch tested?
Add Junit Test.