-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): support logstore plan node (#20376)
- Loading branch information
Showing
11 changed files
with
225 additions
and
2 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
85 changes: 85 additions & 0 deletions
85
src/frontend/src/optimizer/plan_node/stream_sync_log_store.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,85 @@ | ||
// Copyright 2025 RisingWave Labs | ||
// | ||
// 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. | ||
|
||
use pretty_xmlish::XmlNode; | ||
use risingwave_pb::stream_plan::stream_node::NodeBody; | ||
use risingwave_pb::stream_plan::SyncLogStoreNode; | ||
|
||
use crate::optimizer::plan_node::expr_visitable::ExprVisitable; | ||
use crate::optimizer::plan_node::generic::PhysicalPlanRef; | ||
use crate::optimizer::plan_node::stream::StreamPlanRef; | ||
use crate::optimizer::plan_node::utils::{ | ||
childless_record, infer_synced_kv_log_store_table_catalog_inner, Distill, | ||
}; | ||
use crate::optimizer::plan_node::{ | ||
ExprRewritable, PlanBase, PlanTreeNodeUnary, Stream, StreamNode, | ||
}; | ||
use crate::stream_fragmenter::BuildFragmentGraphState; | ||
use crate::PlanRef; | ||
|
||
#[derive(Debug, Clone, PartialEq, Eq, Hash)] | ||
pub struct StreamSyncLogStore { | ||
pub base: PlanBase<Stream>, | ||
pub input: PlanRef, | ||
} | ||
|
||
impl StreamSyncLogStore { | ||
pub fn new(input: PlanRef) -> Self { | ||
let base = PlanBase::new_stream( | ||
input.ctx().clone(), | ||
input.schema().clone(), | ||
input.stream_key().map(|keys| keys.to_vec()), | ||
input.functional_dependency().clone(), | ||
input.distribution().clone(), | ||
input.append_only(), | ||
input.emit_on_window_close(), | ||
input.watermark_columns().clone(), | ||
input.columns_monotonicity().clone(), | ||
); | ||
Self { base, input } | ||
} | ||
} | ||
|
||
impl Distill for StreamSyncLogStore { | ||
fn distill<'a>(&self) -> XmlNode<'a> { | ||
childless_record("StreamSyncLogStore", vec![]) | ||
} | ||
} | ||
|
||
impl PlanTreeNodeUnary for StreamSyncLogStore { | ||
fn input(&self) -> PlanRef { | ||
self.input.clone() | ||
} | ||
|
||
fn clone_with_input(&self, input: PlanRef) -> Self { | ||
Self::new(input) | ||
} | ||
} | ||
|
||
impl_plan_tree_node_for_unary! { StreamSyncLogStore } | ||
|
||
impl StreamNode for StreamSyncLogStore { | ||
fn to_stream_prost_body(&self, state: &mut BuildFragmentGraphState) -> NodeBody { | ||
let columns = self.input.schema().fields(); | ||
let log_store_table = infer_synced_kv_log_store_table_catalog_inner(&self.input, columns) | ||
.with_id(state.gen_table_id_wrapped()) | ||
.to_internal_table_prost() | ||
.into(); | ||
NodeBody::SyncLogStore(Box::new(SyncLogStoreNode { log_store_table })) | ||
} | ||
} | ||
|
||
impl ExprRewritable for StreamSyncLogStore {} | ||
|
||
impl ExprVisitable for StreamSyncLogStore {} |
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
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,74 @@ | ||
// Copyright 2025 RisingWave Labs | ||
// | ||
// 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. | ||
|
||
use risingwave_pb::stream_plan::SyncLogStoreNode; | ||
use risingwave_storage::StateStore; | ||
|
||
use crate::common::log_store_impl::kv_log_store::serde::LogStoreRowSerde; | ||
use crate::common::log_store_impl::kv_log_store::{KvLogStoreMetrics, KV_LOG_STORE_V2_INFO}; | ||
use crate::error::StreamResult; | ||
use crate::executor::{Executor, SyncedKvLogStoreExecutor}; | ||
use crate::from_proto::ExecutorBuilder; | ||
use crate::task::ExecutorParams; | ||
|
||
pub struct SyncLogStoreExecutorBuilder; | ||
|
||
impl ExecutorBuilder for SyncLogStoreExecutorBuilder { | ||
type Node = SyncLogStoreNode; | ||
|
||
async fn new_boxed_executor( | ||
params: ExecutorParams, | ||
node: &Self::Node, | ||
store: impl StateStore, | ||
) -> StreamResult<Executor> { | ||
let actor_context = params.actor_context.clone(); | ||
let table = node.log_store_table.as_ref().unwrap().clone(); | ||
let table_id = table.id; | ||
|
||
let metrics = { | ||
let streaming_metrics = actor_context.streaming_metrics.as_ref(); | ||
let actor_id = actor_context.id; | ||
let join_fragment_id = 0; | ||
let name = "sync_log_store"; | ||
let target = "unaligned_hash_join"; | ||
KvLogStoreMetrics::new_inner( | ||
streaming_metrics, | ||
actor_id, | ||
join_fragment_id, | ||
name, | ||
target, | ||
) | ||
}; | ||
|
||
let serde = LogStoreRowSerde::new( | ||
&table, | ||
params.vnode_bitmap.map(|b| b.into()), | ||
&KV_LOG_STORE_V2_INFO, | ||
); | ||
// FIXME(kwannoel): Make configurable | ||
let buffer_max_size = 1000; | ||
let [upstream] = params.input.try_into().unwrap(); | ||
|
||
let executor = SyncedKvLogStoreExecutor::new( | ||
actor_context, | ||
table_id, | ||
metrics, | ||
serde, | ||
store, | ||
buffer_max_size, | ||
upstream, | ||
); | ||
Ok((params.info, executor).into()) | ||
} | ||
} |