faucet-sink-postgres 1.0.0

PostgreSQL sink connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-sink-postgres
//!
//! PostgreSQL sink connector for the faucet-stream ecosystem.
//!
//! Writes `serde_json::Value` records to a PostgreSQL table using `jsonb`
//! columns or dynamic column mapping.

pub mod config;
pub mod sink;

pub use faucet_core::{FaucetError, Sink};

pub use config::{PostgresColumnMapping, PostgresSinkConfig};
pub use sink::PostgresSink;