Overview
Write data to PostgreSQL databases with automatic table creation and upsert support.Configuration
Parameters
Must be
postgresThe transform or source to read data from
PostgreSQL schema name (e.g.,
public, analytics)Table name to write to. Will be created automatically if it doesn’t exist.
Name of the secret containing the PostgreSQL connection string
Optional. Column to use for upserts. If specified, existing rows will be
updated instead of inserted.
Secret Format
The secret should contain a PostgreSQL connection string:Features
- Auto Table Creation: Tables are created automatically based on your data schema
- Upsert Support: Use
primary_keyto update existing rows - Type Handling: Automatic type conversion from Arrow to PostgreSQL types
- Large Numbers: U256/I256 types are stored as
NUMERIC(78,0)