forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add composed extension codec example (apache#11095)
* Add composed extension codec example * asf header * Update datafusion-examples/README.md Co-authored-by: Andrew Lamb <[email protected]> * Update datafusion-examples/examples/composed_extension_codec.rs Co-authored-by: Andrew Lamb <[email protected]> * Update datafusion-examples/examples/composed_extension_codec.rs Co-authored-by: Andrew Lamb <[email protected]> * Update datafusion-examples/examples/composed_extension_codec.rs Co-authored-by: Andrew Lamb <[email protected]> * Move main on the top --------- Co-authored-by: Andrew Lamb <[email protected]>
- Loading branch information
Showing
3 changed files
with
293 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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
291 changes: 291 additions & 0 deletions
291
datafusion-examples/examples/composed_extension_codec.rs
This file contains 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,291 @@ | ||
// 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. | ||
|
||
//! This example demonstrates how to compose multiple PhysicalExtensionCodecs | ||
//! | ||
//! This can be helpful when an Execution plan tree has different nodes from different crates | ||
//! that need to be serialized. | ||
//! | ||
//! For example if your plan has `ShuffleWriterExec` from `datafusion-ballista` and `DeltaScan` from `deltalake` | ||
//! both crates both provide PhysicalExtensionCodec and this example shows how to combine them together | ||
//! | ||
//! ```text | ||
//! ShuffleWriterExec | ||
//! ProjectionExec | ||
//! ... | ||
//! DeltaScan | ||
//! ``` | ||
use datafusion::common::Result; | ||
use datafusion::physical_plan::{DisplayAs, ExecutionPlan}; | ||
use datafusion::prelude::SessionContext; | ||
use datafusion_common::internal_err; | ||
use datafusion_expr::registry::FunctionRegistry; | ||
use datafusion_expr::ScalarUDF; | ||
use datafusion_proto::physical_plan::{AsExecutionPlan, PhysicalExtensionCodec}; | ||
use datafusion_proto::protobuf; | ||
use std::any::Any; | ||
use std::fmt::Debug; | ||
use std::ops::Deref; | ||
use std::sync::Arc; | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
// build execution plan that has both types of nodes | ||
// | ||
// Note each node requires a different `PhysicalExtensionCodec` to decode | ||
let exec_plan = Arc::new(ParentExec { | ||
input: Arc::new(ChildExec {}), | ||
}); | ||
let ctx = SessionContext::new(); | ||
|
||
let composed_codec = ComposedPhysicalExtensionCodec { | ||
codecs: vec![ | ||
Arc::new(ParentPhysicalExtensionCodec {}), | ||
Arc::new(ChildPhysicalExtensionCodec {}), | ||
], | ||
}; | ||
|
||
// serialize execution plan to proto | ||
let proto: protobuf::PhysicalPlanNode = | ||
protobuf::PhysicalPlanNode::try_from_physical_plan( | ||
exec_plan.clone(), | ||
&composed_codec, | ||
) | ||
.expect("to proto"); | ||
|
||
// deserialize proto back to execution plan | ||
let runtime = ctx.runtime_env(); | ||
let result_exec_plan: Arc<dyn ExecutionPlan> = proto | ||
.try_into_physical_plan(&ctx, runtime.deref(), &composed_codec) | ||
.expect("from proto"); | ||
|
||
// assert that the original and deserialized execution plans are equal | ||
assert_eq!(format!("{exec_plan:?}"), format!("{result_exec_plan:?}")); | ||
} | ||
|
||
/// This example has two types of nodes: `ParentExec` and `ChildExec` which can only | ||
/// be serialized with different `PhysicalExtensionCodec`s | ||
#[derive(Debug)] | ||
struct ParentExec { | ||
input: Arc<dyn ExecutionPlan>, | ||
} | ||
|
||
impl DisplayAs for ParentExec { | ||
fn fmt_as( | ||
&self, | ||
_t: datafusion::physical_plan::DisplayFormatType, | ||
f: &mut std::fmt::Formatter, | ||
) -> std::fmt::Result { | ||
write!(f, "ParentExec") | ||
} | ||
} | ||
|
||
impl ExecutionPlan for ParentExec { | ||
fn name(&self) -> &str { | ||
"ParentExec" | ||
} | ||
|
||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn properties(&self) -> &datafusion::physical_plan::PlanProperties { | ||
unreachable!() | ||
} | ||
|
||
fn children(&self) -> Vec<&Arc<dyn ExecutionPlan>> { | ||
vec![&self.input] | ||
} | ||
|
||
fn with_new_children( | ||
self: Arc<Self>, | ||
_children: Vec<Arc<dyn ExecutionPlan>>, | ||
) -> Result<Arc<dyn ExecutionPlan>> { | ||
unreachable!() | ||
} | ||
|
||
fn execute( | ||
&self, | ||
_partition: usize, | ||
_context: Arc<datafusion::execution::TaskContext>, | ||
) -> Result<datafusion::physical_plan::SendableRecordBatchStream> { | ||
unreachable!() | ||
} | ||
} | ||
|
||
/// A PhysicalExtensionCodec that can serialize and deserialize ParentExec | ||
#[derive(Debug)] | ||
struct ParentPhysicalExtensionCodec; | ||
|
||
impl PhysicalExtensionCodec for ParentPhysicalExtensionCodec { | ||
fn try_decode( | ||
&self, | ||
buf: &[u8], | ||
inputs: &[Arc<dyn ExecutionPlan>], | ||
_registry: &dyn FunctionRegistry, | ||
) -> Result<Arc<dyn ExecutionPlan>> { | ||
if buf == "ParentExec".as_bytes() { | ||
Ok(Arc::new(ParentExec { | ||
input: inputs[0].clone(), | ||
})) | ||
} else { | ||
internal_err!("Not supported") | ||
} | ||
} | ||
|
||
fn try_encode(&self, node: Arc<dyn ExecutionPlan>, buf: &mut Vec<u8>) -> Result<()> { | ||
if node.as_any().downcast_ref::<ParentExec>().is_some() { | ||
buf.extend_from_slice("ParentExec".as_bytes()); | ||
Ok(()) | ||
} else { | ||
internal_err!("Not supported") | ||
} | ||
} | ||
} | ||
|
||
#[derive(Debug)] | ||
struct ChildExec {} | ||
|
||
impl DisplayAs for ChildExec { | ||
fn fmt_as( | ||
&self, | ||
_t: datafusion::physical_plan::DisplayFormatType, | ||
f: &mut std::fmt::Formatter, | ||
) -> std::fmt::Result { | ||
write!(f, "ChildExec") | ||
} | ||
} | ||
|
||
impl ExecutionPlan for ChildExec { | ||
fn name(&self) -> &str { | ||
"ChildExec" | ||
} | ||
|
||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn properties(&self) -> &datafusion::physical_plan::PlanProperties { | ||
unreachable!() | ||
} | ||
|
||
fn children(&self) -> Vec<&Arc<dyn ExecutionPlan>> { | ||
vec![] | ||
} | ||
|
||
fn with_new_children( | ||
self: Arc<Self>, | ||
_children: Vec<Arc<dyn ExecutionPlan>>, | ||
) -> Result<Arc<dyn ExecutionPlan>> { | ||
unreachable!() | ||
} | ||
|
||
fn execute( | ||
&self, | ||
_partition: usize, | ||
_context: Arc<datafusion::execution::TaskContext>, | ||
) -> Result<datafusion::physical_plan::SendableRecordBatchStream> { | ||
unreachable!() | ||
} | ||
} | ||
|
||
/// A PhysicalExtensionCodec that can serialize and deserialize ChildExec | ||
#[derive(Debug)] | ||
struct ChildPhysicalExtensionCodec; | ||
|
||
impl PhysicalExtensionCodec for ChildPhysicalExtensionCodec { | ||
fn try_decode( | ||
&self, | ||
buf: &[u8], | ||
_inputs: &[Arc<dyn ExecutionPlan>], | ||
_registry: &dyn FunctionRegistry, | ||
) -> Result<Arc<dyn ExecutionPlan>> { | ||
if buf == "ChildExec".as_bytes() { | ||
Ok(Arc::new(ChildExec {})) | ||
} else { | ||
internal_err!("Not supported") | ||
} | ||
} | ||
|
||
fn try_encode(&self, node: Arc<dyn ExecutionPlan>, buf: &mut Vec<u8>) -> Result<()> { | ||
if node.as_any().downcast_ref::<ChildExec>().is_some() { | ||
buf.extend_from_slice("ChildExec".as_bytes()); | ||
Ok(()) | ||
} else { | ||
internal_err!("Not supported") | ||
} | ||
} | ||
} | ||
|
||
/// A PhysicalExtensionCodec that tries one of multiple inner codecs | ||
/// until one works | ||
#[derive(Debug)] | ||
struct ComposedPhysicalExtensionCodec { | ||
codecs: Vec<Arc<dyn PhysicalExtensionCodec>>, | ||
} | ||
|
||
impl PhysicalExtensionCodec for ComposedPhysicalExtensionCodec { | ||
fn try_decode( | ||
&self, | ||
buf: &[u8], | ||
inputs: &[Arc<dyn ExecutionPlan>], | ||
registry: &dyn FunctionRegistry, | ||
) -> Result<Arc<dyn ExecutionPlan>> { | ||
let mut last_err = None; | ||
for codec in &self.codecs { | ||
match codec.try_decode(buf, inputs, registry) { | ||
Ok(plan) => return Ok(plan), | ||
Err(e) => last_err = Some(e), | ||
} | ||
} | ||
Err(last_err.unwrap()) | ||
} | ||
|
||
fn try_encode(&self, node: Arc<dyn ExecutionPlan>, buf: &mut Vec<u8>) -> Result<()> { | ||
let mut last_err = None; | ||
for codec in &self.codecs { | ||
match codec.try_encode(node.clone(), buf) { | ||
Ok(_) => return Ok(()), | ||
Err(e) => last_err = Some(e), | ||
} | ||
} | ||
Err(last_err.unwrap()) | ||
} | ||
|
||
fn try_decode_udf(&self, name: &str, _buf: &[u8]) -> Result<Arc<ScalarUDF>> { | ||
let mut last_err = None; | ||
for codec in &self.codecs { | ||
match codec.try_decode_udf(name, _buf) { | ||
Ok(plan) => return Ok(plan), | ||
Err(e) => last_err = Some(e), | ||
} | ||
} | ||
Err(last_err.unwrap()) | ||
} | ||
|
||
fn try_encode_udf(&self, _node: &ScalarUDF, _buf: &mut Vec<u8>) -> Result<()> { | ||
let mut last_err = None; | ||
for codec in &self.codecs { | ||
match codec.try_encode_udf(_node, _buf) { | ||
Ok(_) => return Ok(()), | ||
Err(e) => last_err = Some(e), | ||
} | ||
} | ||
Err(last_err.unwrap()) | ||
} | ||
} |