CONNECTOR · POSTGRES
Postgres — Logical replication CDC into the warehouse. The most common source we run.
CONNECTOR · POSTGRES
Postgres
Logical replication CDC into the warehouse. The most common source we run.
- categorySource · OLTP
- freshness targetp95 < 5 min via WAL CDC
- auth modelReplication role + SSL + IP allow-list
- sync modeStreaming CDC (logical decoding) + nightly snapshot
TABLES SYNCED
Full schema replication. Watermarks per table. SCD-type-2 supported on dimension tables.
SCHEMA · SAMPLE
schema.sqlSQL
CREATE TABLE stg_orders (
order_id TEXT NOT NULL,
customer_id TEXT NOT NULL,
order_ts TIMESTAMP NOT NULL,
amount_cents BIGINT NOT NULL,
CONSTRAINT pk_orders PRIMARY KEY (order_id)
);QUERY · SAMPLE
query.sqlSQL