Skip to main content

faucet_sink_postgres/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-sink-postgres
4//!
5//! PostgreSQL sink connector for the faucet-stream ecosystem.
6//!
7//! Writes `serde_json::Value` records to a PostgreSQL table using `jsonb`
8//! columns or dynamic column mapping.
9
10pub mod config;
11pub mod sink;
12
13pub use faucet_core::{FaucetError, Sink};
14
15pub use config::{PostgresColumnMapping, PostgresSinkConfig};
16pub use sink::PostgresSink;