Add RecordBatch::ensure_schema for schema evolution#9798
Open
huymq1710 wants to merge 1 commit intoapache:mainfrom
Open
Add RecordBatch::ensure_schema for schema evolution#9798huymq1710 wants to merge 1 commit intoapache:mainfrom
RecordBatch::ensure_schema for schema evolution#9798huymq1710 wants to merge 1 commit intoapache:mainfrom
Conversation
RecordBatch::ensure_schema for schema evolutioRecordBatch::ensure_schema for schema evolution
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?
Rationale for this change
When Schema evolution happen, a table's schema may have columns that do not appear in individual
RecordBatches (e.g. older Parquet files missing columns added later). Query engines like DataFusion and Iceberg need to expand old batches withnullvalues to align them to a merged schemaWhat changes are included in this PR?
Add
RecordBatch::ensure_schema(target_schema)— a stateless method that adapts a batch to a target schemI follows the InfluxDB approach:
https://github.com/influxdata/influxdb3_core/blob/0f5ecbd6b17f83f7ad4ba55699fc2cd3e151cf94/arrow_util/src/util.rs#L28-L47
A
SchemaMapperfor repeated application (pre-computed mapping) will follow in a separate PRAre these changes tested?
Are there any user-facing changes?
New public method
RecordBatch::ensure_schemaonarrow-array