Expand description
§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. Append-mode writes can opt into the
COPY … FROM STDIN bulk-load fast-path via write_method: copy
(typically 5–10× faster than multi-row INSERT — issue #308).
Re-exports§
pub use config::PostgresColumnMapping;pub use config::PostgresSinkConfig;pub use config::PostgresWriteMethod;pub use sink::PostgresSink;
Modules§
Enums§
- Faucet
Error - All possible errors returned by faucet-stream.
Traits§
- Sink
- A sink writes records to an external system.