risingwave_meta/stream/sink.rs
1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use anyhow::Context;
16use risingwave_connector::dispatch_sink;
17use risingwave_connector::sink::catalog::SinkCatalog;
18use risingwave_connector::sink::{Sink, SinkParam, build_sink};
19use risingwave_pb::catalog::PbSink;
20
21use crate::MetaResult;
22
23pub async fn validate_sink(prost_sink_catalog: &PbSink) -> MetaResult<()> {
24 let sink_catalog = SinkCatalog::from(prost_sink_catalog);
25 let param = SinkParam::try_from_sink_catalog(sink_catalog)?;
26
27 let sink = build_sink(param)?;
28
29 dispatch_sink!(
30 sink,
31 sink,
32 Ok(sink.validate().await.context("failed to validate sink")?)
33 )
34}