-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Merge sort Logical plan (#4768)
* feat(WIP): MergeSort * wip * feat: MergeSort LogicalPlan * update sqlness result * Apply suggestions from code review Co-authored-by: Lei, HUANG <[email protected]> * refactor: per review advice * refactor: more per review * chore: per review --------- Co-authored-by: Ruihang Xia <[email protected]> Co-authored-by: Lei, HUANG <[email protected]>
- Loading branch information
1 parent
0dd11f5
commit a8ed3db
Showing
9 changed files
with
207 additions
and
10 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
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
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,124 @@ | ||
// Copyright 2023 Greptime Team | ||
// | ||
// Licensed 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. | ||
|
||
//! Merge sort logical plan for distributed query execution, roughly corresponding to the | ||
//! `SortPreservingMergeExec` operator in datafusion | ||
//! | ||
|
||
use std::fmt; | ||
use std::sync::Arc; | ||
|
||
use datafusion_common::{DataFusionError, Result}; | ||
use datafusion_expr::{Expr, Extension, LogicalPlan, UserDefinedLogicalNodeCore}; | ||
|
||
/// MergeSort Logical Plan, have same field as `Sort`, but indicate it is a merge sort, | ||
/// which assume each input partition is a sorted stream, and will use `SortPreserveingMergeExec` | ||
/// to merge them into a single sorted stream. | ||
#[derive(Hash, PartialEq, Eq, Clone)] | ||
pub struct MergeSortLogicalPlan { | ||
pub expr: Vec<Expr>, | ||
pub input: Arc<LogicalPlan>, | ||
pub fetch: Option<usize>, | ||
} | ||
|
||
impl fmt::Debug for MergeSortLogicalPlan { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
UserDefinedLogicalNodeCore::fmt_for_explain(self, f) | ||
} | ||
} | ||
|
||
impl MergeSortLogicalPlan { | ||
pub fn new(input: Arc<LogicalPlan>, expr: Vec<Expr>, fetch: Option<usize>) -> Self { | ||
Self { input, expr, fetch } | ||
} | ||
|
||
pub fn name() -> &'static str { | ||
"MergeSort" | ||
} | ||
|
||
/// Create a [`LogicalPlan::Extension`] node from this merge sort plan | ||
pub fn into_logical_plan(self) -> LogicalPlan { | ||
LogicalPlan::Extension(Extension { | ||
node: Arc::new(self), | ||
}) | ||
} | ||
|
||
/// Convert self to a [`Sort`] logical plan with same input and expressions | ||
pub fn into_sort(self) -> LogicalPlan { | ||
LogicalPlan::Sort(datafusion::logical_expr::Sort { | ||
input: self.input.clone(), | ||
expr: self.expr, | ||
fetch: self.fetch, | ||
}) | ||
} | ||
} | ||
|
||
impl UserDefinedLogicalNodeCore for MergeSortLogicalPlan { | ||
fn name(&self) -> &str { | ||
Self::name() | ||
} | ||
|
||
// Allow optimization here | ||
fn inputs(&self) -> Vec<&LogicalPlan> { | ||
vec![self.input.as_ref()] | ||
} | ||
|
||
fn schema(&self) -> &datafusion_common::DFSchemaRef { | ||
self.input.schema() | ||
} | ||
|
||
// Allow further optimization | ||
fn expressions(&self) -> Vec<datafusion_expr::Expr> { | ||
self.expr.clone() | ||
} | ||
|
||
fn fmt_for_explain(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
write!(f, "MergeSort: ")?; | ||
for (i, expr_item) in self.expr.iter().enumerate() { | ||
if i > 0 { | ||
write!(f, ", ")?; | ||
} | ||
write!(f, "{expr_item}")?; | ||
} | ||
if let Some(a) = self.fetch { | ||
write!(f, ", fetch={a}")?; | ||
} | ||
Ok(()) | ||
} | ||
|
||
fn with_exprs_and_inputs( | ||
&self, | ||
exprs: Vec<datafusion::prelude::Expr>, | ||
mut inputs: Vec<LogicalPlan>, | ||
) -> Result<Self> { | ||
let mut zelf = self.clone(); | ||
zelf.expr = exprs; | ||
zelf.input = Arc::new(inputs.pop().ok_or_else(|| { | ||
DataFusionError::Internal("Expected exactly one input with MergeSort".to_string()) | ||
})?); | ||
Ok(zelf) | ||
} | ||
} | ||
|
||
/// Turn `Sort` into `MergeSort` if possible | ||
pub fn merge_sort_transformer(plan: &LogicalPlan) -> Option<LogicalPlan> { | ||
if let LogicalPlan::Sort(sort) = plan { | ||
Some( | ||
MergeSortLogicalPlan::new(sort.input.clone(), sort.expr.clone(), sort.fetch) | ||
.into_logical_plan(), | ||
) | ||
} else { | ||
None | ||
} | ||
} |
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
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