feat(core): support variant reads via arrow-rs#631
Draft
wirybeaver wants to merge 1 commit into
Draft
Conversation
Enable parquet-rs Variant support and map Hudi Avro variant logical records to Arrow extension-marked struct fields. Add Avro schema/reader tests and Parquet base-file read/projection tests covering VariantArray conversion. Refs apache#630
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.
Closes #630.
Summary
Adds read compatibility for Hudi Variant columns by using arrow-rs/parquet-rs Variant support rather than adding a hudi-rs-specific Variant model.
What changes are included in this PR?
Dependencies: Arrow-rs Variant
parquet/variant_experimentalin the workspace dependency.parquet::variant::{VariantType, VariantArray}APIs available in the current Arrow/Parquet 57 dependency line.Core: Schema / Read Compatibility
logicalType = "variant"during Avro-to-Arrow conversion.Structfields witharrow.parquet.variantextension metadata.RecordBatchvalues.Avro
metadata,value, and optionaltyped_value.VariantArray::try_new.Parquet
Out of scope
Test Plan
make format-rustcargo test -p hudi-core avro_to_arrow --libcargo test -p hudi-core file_group::base_file::parquet::tests --libcargo test -p hudi-core --libmake check-rustmake test-rustcargo +1.91.1 check --workspace --all-targets --all-featuresgit diff --checkPython checks were not run locally because
ruff,mypy, anduvare not installed in this environment.