Feed Snowflake, BigQuery, Redshift, Databricks, or ClickHouse from your production database continuously, so the numbers an analyst reads are minutes old rather than a day old.
The batch rereads the same block every night. The stream reads it once and then reads only what changed.
None of these 5 connectors ship today. Track dates on the roadmap.
name: orders
connectors:
- name: orders-db
type: source/postgres
host: "${POSTGRES_HOST}"
port: "${POSTGRES_PORT}"
database: "${POSTGRES_DATABASE}"
user: "${POSTGRES_USER}"
publication: "${POSTGRES_PUBLICATION}"
slot_name: "${POSTGRES_SLOT_NAME}"
secret_refs:
- { field: password, ref: postgres-password }
- name: snowflake-out
type: sink/snowflake
# required config: /connectors/snowflake
routes:
- from: orders-db
to: [snowflake-out]
Not every connector in this pair ships yet. The spec is what it will be · check the roadmap for dates.