-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Proto: add DataSink serialization hook #23752
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
Phoenix500526
wants to merge
4
commits into
apache:main
Choose a base branch
from
Phoenix500526:issue/23498
base: main
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
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
7f41edb
feat(proto): add DataSink serialization hook
Phoenix500526 c74e81b
refactor(proto): move FileSinkConfig serde
Phoenix500526 0cabe88
fix(proto): validate file sink config decoding
Phoenix500526 99a7f62
refactor(proto): refine data sink serde hooks
Phoenix500526 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,239 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| //! Protobuf conversion for the format-independent [`FileSinkConfig`]. | ||
|
|
||
| use std::sync::Arc; | ||
|
|
||
| use datafusion_common::{DataFusionError, Result, internal_datafusion_err}; | ||
| use datafusion_execution::object_store::ObjectStoreUrl; | ||
| use datafusion_expr::dml::InsertOp; | ||
| use datafusion_proto_models::protobuf; | ||
|
|
||
| use crate::ListingTableUrl; | ||
| use crate::file_groups::FileGroup; | ||
| use crate::file_sink_config::{FileOutputMode, FileSinkConfig}; | ||
|
|
||
| impl TryFrom<&FileSinkConfig> for protobuf::FileSinkConfig { | ||
| type Error = DataFusionError; | ||
|
|
||
| /// Serialize this shared file-sink configuration without format-specific | ||
| /// writer options. | ||
| fn try_from(config: &FileSinkConfig) -> Result<Self> { | ||
| let file_groups = config | ||
| .file_group | ||
| .iter() | ||
| .map(TryInto::try_into) | ||
| .collect::<Result<Vec<_>>>()?; | ||
| let table_paths = config | ||
| .table_paths | ||
| .iter() | ||
| .map(ToString::to_string) | ||
| .collect::<Vec<_>>(); | ||
| let table_partition_cols = config | ||
| .table_partition_cols | ||
| .iter() | ||
| .map(|(name, data_type)| { | ||
| Ok(protobuf::PartitionColumn { | ||
| name: name.to_owned(), | ||
| arrow_type: Some(data_type.try_into()?), | ||
| }) | ||
| }) | ||
| .collect::<Result<Vec<_>>>()?; | ||
| let insert_op = match config.insert_op { | ||
| InsertOp::Append => protobuf::InsertOp::Append, | ||
| InsertOp::Overwrite => protobuf::InsertOp::Overwrite, | ||
| InsertOp::Replace => protobuf::InsertOp::Replace, | ||
| }; | ||
| let file_output_mode = match config.file_output_mode { | ||
| FileOutputMode::Automatic => protobuf::FileOutputMode::Automatic, | ||
| FileOutputMode::SingleFile => protobuf::FileOutputMode::SingleFile, | ||
| FileOutputMode::Directory => protobuf::FileOutputMode::Directory, | ||
| }; | ||
|
|
||
| Ok(protobuf::FileSinkConfig { | ||
| object_store_url: config.object_store_url.to_string(), | ||
| file_groups, | ||
| table_paths, | ||
| output_schema: Some(config.output_schema.as_ref().try_into()?), | ||
| table_partition_cols, | ||
| keep_partition_by_columns: config.keep_partition_by_columns, | ||
| insert_op: insert_op.into(), | ||
| file_extension: config.file_extension.clone(), | ||
| file_output_mode: file_output_mode.into(), | ||
| }) | ||
| } | ||
| } | ||
|
|
||
| impl TryFrom<&protobuf::FileSinkConfig> for FileSinkConfig { | ||
| type Error = DataFusionError; | ||
|
|
||
| /// Reconstruct a shared file-sink configuration from protobuf. | ||
| fn try_from(conf: &protobuf::FileSinkConfig) -> Result<Self> { | ||
| let file_group = FileGroup::new( | ||
| conf.file_groups | ||
| .iter() | ||
| .map(TryInto::try_into) | ||
| .collect::<Result<Vec<_>>>()?, | ||
| ); | ||
| let table_paths = conf | ||
| .table_paths | ||
| .iter() | ||
| .map(ListingTableUrl::parse) | ||
| .collect::<Result<Vec<_>>>()?; | ||
| let table_partition_cols = conf | ||
| .table_partition_cols | ||
| .iter() | ||
| .map(|protobuf::PartitionColumn { name, arrow_type }| { | ||
| let data_type = arrow_type | ||
| .as_ref() | ||
| .ok_or_else(|| { | ||
| internal_datafusion_err!( | ||
| "PartitionColumn is missing required field 'arrow_type'" | ||
| ) | ||
| })? | ||
| .try_into()?; | ||
| Ok((name.clone(), data_type)) | ||
| }) | ||
| .collect::<Result<Vec<_>>>()?; | ||
| let insert_op = protobuf::InsertOp::try_from(conf.insert_op).map_err(|_| { | ||
| internal_datafusion_err!( | ||
| "Received a FileSinkConfig message with unknown InsertOp {}", | ||
| conf.insert_op | ||
| ) | ||
| })?; | ||
| let insert_op = match insert_op { | ||
| protobuf::InsertOp::Append => InsertOp::Append, | ||
| protobuf::InsertOp::Overwrite => InsertOp::Overwrite, | ||
| protobuf::InsertOp::Replace => InsertOp::Replace, | ||
| }; | ||
| let file_output_mode = protobuf::FileOutputMode::try_from(conf.file_output_mode) | ||
| .map_err(|_| { | ||
| internal_datafusion_err!( | ||
| "Received a FileSinkConfig message with unknown FileOutputMode {}", | ||
| conf.file_output_mode | ||
| ) | ||
| })?; | ||
| let file_output_mode = match file_output_mode { | ||
| protobuf::FileOutputMode::Automatic => FileOutputMode::Automatic, | ||
| protobuf::FileOutputMode::SingleFile => FileOutputMode::SingleFile, | ||
| protobuf::FileOutputMode::Directory => FileOutputMode::Directory, | ||
| }; | ||
| let output_schema = conf.output_schema.as_ref().ok_or_else(|| { | ||
| internal_datafusion_err!( | ||
| "FileSinkConfig is missing required field 'output_schema'" | ||
| ) | ||
| })?; | ||
|
|
||
| Ok(Self { | ||
| original_url: String::default(), | ||
| object_store_url: ObjectStoreUrl::parse(&conf.object_store_url)?, | ||
| file_group, | ||
| table_paths, | ||
| output_schema: Arc::new(output_schema.try_into()?), | ||
| table_partition_cols, | ||
| insert_op, | ||
| keep_partition_by_columns: conf.keep_partition_by_columns, | ||
| file_extension: conf.file_extension.clone(), | ||
| file_output_mode, | ||
| }) | ||
| } | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use arrow::datatypes::Schema; | ||
|
|
||
| use super::*; | ||
|
|
||
| fn valid_file_sink_config() -> protobuf::FileSinkConfig { | ||
| protobuf::FileSinkConfig { | ||
| object_store_url: ObjectStoreUrl::local_filesystem().to_string(), | ||
| output_schema: Some( | ||
| (&Schema::empty()) | ||
| .try_into() | ||
| .expect("empty schema should serialize"), | ||
| ), | ||
| insert_op: protobuf::InsertOp::Append.into(), | ||
| file_output_mode: protobuf::FileOutputMode::Automatic.into(), | ||
| ..Default::default() | ||
| } | ||
| } | ||
|
|
||
| fn assert_decode_error( | ||
| mutate: impl FnOnce(&mut protobuf::FileSinkConfig), | ||
| expected: impl AsRef<str>, | ||
| ) { | ||
| let mut conf = valid_file_sink_config(); | ||
| mutate(&mut conf); | ||
|
|
||
| let error = | ||
| FileSinkConfig::try_from(&conf).expect_err("invalid config should fail"); | ||
| match error { | ||
| DataFusionError::Internal(message) => { | ||
| let message = message | ||
| .split_once(DataFusionError::BACK_TRACE_SEP) | ||
| .map_or(message.as_str(), |(message, _)| message); | ||
| assert_eq!(message, expected.as_ref()); | ||
| } | ||
| error => panic!("expected internal error, got {error}"), | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| fn rejects_unknown_insert_op() { | ||
| assert_decode_error( | ||
| |conf| conf.insert_op = i32::MAX, | ||
| format!( | ||
| "Received a FileSinkConfig message with unknown InsertOp {}", | ||
| i32::MAX | ||
| ), | ||
| ); | ||
| } | ||
|
|
||
| #[test] | ||
| fn rejects_unknown_file_output_mode() { | ||
| assert_decode_error( | ||
| |conf| conf.file_output_mode = i32::MAX, | ||
| format!( | ||
| "Received a FileSinkConfig message with unknown FileOutputMode {}", | ||
| i32::MAX | ||
| ), | ||
| ); | ||
| } | ||
|
|
||
| #[test] | ||
| fn rejects_missing_output_schema() { | ||
| assert_decode_error( | ||
| |conf| conf.output_schema = None, | ||
| "FileSinkConfig is missing required field 'output_schema'", | ||
| ); | ||
| } | ||
|
|
||
| #[test] | ||
| fn rejects_partition_column_without_arrow_type() { | ||
| assert_decode_error( | ||
| |conf| { | ||
| conf.table_partition_cols.push(protobuf::PartitionColumn { | ||
| name: "partition".to_string(), | ||
| arrow_type: None, | ||
| }); | ||
| }, | ||
| "PartitionColumn is missing required field 'arrow_type'", | ||
| ); | ||
| } | ||
| } |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This duplicates the logic in
datafusion/datafusion/proto/src/physical_plan/mod.rs
Lines 2586 to 2608 in 3e3a92d
Can we replace the version in
datafusion/proto/src/physical_plan/mod.rswithexec.encode_sort_order(&ExecutionPlanEncodeCtx::new(&encoder))?(i.e. delegate to this new impl)?