risingwave_connector/sink/file_sink/
gcs.rsuse std::collections::{BTreeMap, HashMap};
use anyhow::anyhow;
use opendal::layers::{LoggingLayer, RetryLayer};
use opendal::services::Gcs;
use opendal::Operator;
use serde::Deserialize;
use serde_with::serde_as;
use with_options::WithOptions;
use super::opendal_sink::{BatchingStrategy, FileSink};
use crate::sink::file_sink::opendal_sink::OpendalSinkBackend;
use crate::sink::{Result, SinkError, SINK_TYPE_APPEND_ONLY, SINK_TYPE_OPTION, SINK_TYPE_UPSERT};
use crate::source::UnknownFields;
#[derive(Deserialize, Debug, Clone, WithOptions)]
pub struct GcsCommon {
#[serde(rename = "gcs.bucket_name")]
pub bucket_name: String,
#[serde(rename = "gcs.credential")]
pub credential: String,
#[serde(rename = "gcs.service_account", default)]
pub service_account: String,
#[serde(rename = "gcs.path")]
pub path: String,
}
#[serde_as]
#[derive(Clone, Debug, Deserialize, WithOptions)]
pub struct GcsConfig {
#[serde(flatten)]
pub common: GcsCommon,
#[serde(flatten)]
pub batching_strategy: BatchingStrategy,
pub r#type: String, #[serde(flatten)]
pub unknown_fields: HashMap<String, String>,
}
impl UnknownFields for GcsConfig {
fn unknown_fields(&self) -> HashMap<String, String> {
self.unknown_fields.clone()
}
}
pub const GCS_SINK: &str = "gcs";
impl<S: OpendalSinkBackend> FileSink<S> {
pub fn new_gcs_sink(config: GcsConfig) -> Result<Operator> {
let builder = Gcs::default()
.bucket(&config.common.bucket_name)
.credential(&config.common.credential)
.service_account(&config.common.service_account);
let operator: Operator = Operator::new(builder)?
.layer(LoggingLayer::default())
.layer(RetryLayer::default())
.finish();
Ok(operator)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct GcsSink;
impl OpendalSinkBackend for GcsSink {
type Properties = GcsConfig;
const SINK_NAME: &'static str = GCS_SINK;
fn from_btreemap(btree_map: BTreeMap<String, String>) -> Result<Self::Properties> {
let config = serde_json::from_value::<GcsConfig>(serde_json::to_value(btree_map).unwrap())
.map_err(|e| SinkError::Config(anyhow!(e)))?;
if config.r#type != SINK_TYPE_APPEND_ONLY && config.r#type != SINK_TYPE_UPSERT {
return Err(SinkError::Config(anyhow!(
"`{}` must be {}, or {}",
SINK_TYPE_OPTION,
SINK_TYPE_APPEND_ONLY,
SINK_TYPE_UPSERT
)));
}
Ok(config)
}
fn new_operator(properties: GcsConfig) -> Result<Operator> {
FileSink::<GcsSink>::new_gcs_sink(properties)
}
fn get_path(properties: Self::Properties) -> String {
properties.common.path
}
fn get_engine_type() -> super::opendal_sink::EngineType {
super::opendal_sink::EngineType::Gcs
}
fn get_batching_strategy(properties: Self::Properties) -> BatchingStrategy {
BatchingStrategy {
max_row_count: properties.batching_strategy.max_row_count,
rollover_seconds: properties.batching_strategy.rollover_seconds,
path_partition_prefix: properties.batching_strategy.path_partition_prefix,
}
}
}