Skip to main content

faucet_sink_postgres/
lib.rs

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