-
Notifications
You must be signed in to change notification settings - Fork 160
Support for importing Arrow extension arrays into core vortex arrays and ParquetVariant support. #8125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AdamGS
wants to merge
2
commits into
develop
Choose a base branch
from
adamg/parquet-arrow-import-export
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Support for importing Arrow extension arrays into core vortex arrays and ParquetVariant support. #8125
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,122 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| // SPDX-FileCopyrightText: Copyright the Vortex contributors | ||
|
|
||
| use std::sync::Arc; | ||
|
|
||
| use arrow_array::Array as _; | ||
| use arrow_array::ArrayRef as ArrowArrayRef; | ||
| use arrow_array::cast::AsArray; | ||
| use arrow_schema::DataType; | ||
| use arrow_schema::Field; | ||
| use arrow_schema::extension::EXTENSION_TYPE_NAME_KEY; | ||
| use parquet_variant_compute::VariantArray as ArrowVariantArray; | ||
| use vortex_array::ArrayRef; | ||
| use vortex_array::ExecutionCtx; | ||
| use vortex_array::IntoArray; | ||
| use vortex_array::VTable; | ||
| use vortex_array::arrow::ArrowExport; | ||
| use vortex_array::arrow::ArrowExportVTable; | ||
| use vortex_array::arrow::ArrowImport; | ||
| use vortex_array::arrow::ArrowImportVTable; | ||
| use vortex_array::arrow::ArrowSession; | ||
| use vortex_array::dtype::DType; | ||
| use vortex_error::VortexResult; | ||
| use vortex_error::vortex_err; | ||
| use vortex_session::registry::CachedId; | ||
| use vortex_session::registry::Id; | ||
|
|
||
| use crate::ParquetVariant; | ||
| use crate::ParquetVariantArrayExt; | ||
|
|
||
| /// Arrow canonical extension name for Parquet Variant storage. | ||
| pub const PARQUET_VARIANT_ARROW_EXTENSION_NAME: &str = "arrow.parquet.variant"; | ||
|
|
||
| static ARROW_PARQUET_VARIANT: CachedId = CachedId::new(PARQUET_VARIANT_ARROW_EXTENSION_NAME); | ||
|
|
||
| impl ArrowExportVTable for ParquetVariant { | ||
| fn arrow_ext_id(&self) -> Id { | ||
| *ARROW_PARQUET_VARIANT | ||
| } | ||
|
|
||
| fn vortex_id(&self) -> Id { | ||
| ParquetVariant.id() | ||
| } | ||
|
|
||
| fn to_arrow_field( | ||
| &self, | ||
| _name: &str, | ||
| _dtype: &DType, | ||
| _session: &ArrowSession, | ||
| ) -> VortexResult<Option<Field>> { | ||
| Ok(None) | ||
| } | ||
|
|
||
| fn execute_arrow( | ||
| &self, | ||
| array: ArrayRef, | ||
| target: &Field, | ||
| ctx: &mut ExecutionCtx, | ||
| ) -> VortexResult<ArrowExport> { | ||
| if target | ||
| .metadata() | ||
| .get(EXTENSION_TYPE_NAME_KEY) | ||
| .map(String::as_str) | ||
| != Some(PARQUET_VARIANT_ARROW_EXTENSION_NAME) | ||
| || !array.dtype().is_variant() | ||
| { | ||
| return Ok(ArrowExport::Unsupported(array)); | ||
| } | ||
|
|
||
| let executed = array.execute_until::<ParquetVariant>(ctx)?; | ||
| let parquet_array = executed | ||
| .as_opt::<ParquetVariant>() | ||
| .ok_or_else(|| vortex_err!("cannot export Variant without ParquetVariant storage"))?; | ||
| let arrow_variant = parquet_array.to_arrow(ctx)?; | ||
| Ok(ArrowExport::Exported(Arc::new(arrow_variant.into_inner()))) | ||
| } | ||
| } | ||
|
|
||
| impl ArrowImportVTable for ParquetVariant { | ||
| fn arrow_ext_id(&self) -> Id { | ||
| *ARROW_PARQUET_VARIANT | ||
| } | ||
|
|
||
| fn from_arrow_field(&self, field: &Field) -> VortexResult<Option<DType>> { | ||
| if field | ||
| .metadata() | ||
| .get(EXTENSION_TYPE_NAME_KEY) | ||
| .map(String::as_str) | ||
| != Some(PARQUET_VARIANT_ARROW_EXTENSION_NAME) | ||
| { | ||
| return Ok(None); | ||
| } | ||
|
|
||
| Ok(Some(DType::Variant(field.is_nullable().into()))) | ||
| } | ||
|
|
||
| fn from_arrow_array( | ||
| &self, | ||
| array: ArrowArrayRef, | ||
| field: &Field, | ||
| dtype: &DType, | ||
| ) -> VortexResult<ArrowImport> { | ||
| if !matches!(dtype, DType::Variant(_)) | ||
| || field | ||
| .metadata() | ||
| .get(EXTENSION_TYPE_NAME_KEY) | ||
| .map(String::as_str) | ||
| != Some(PARQUET_VARIANT_ARROW_EXTENSION_NAME) | ||
| || !matches!(array.data_type(), DataType::Struct(_)) | ||
| { | ||
| return Ok(ArrowImport::Unsupported(array)); | ||
| } | ||
|
|
||
| let arrow_variant = ArrowVariantArray::try_new(array.as_struct())?; | ||
| let imported = if dtype.is_nullable() { | ||
| ParquetVariant::from_arrow_variant_nullable(&arrow_variant)? | ||
| } else { | ||
| ParquetVariant::from_arrow_variant(&arrow_variant)? | ||
| }; | ||
| Ok(ArrowImport::Imported(imported.into_array())) | ||
| } | ||
| } | ||
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.