This is a Jitsu.Classic documentation. For the lastest version, please visit docs.jitsu.com. Read about differences here.

šŸ“œ Configuration

Configuration UI

šŸ‘©ā€šŸ”¬ Extending Jitsu

Overview
Destination Extensions
Source Extensions
API Specs

Jitsu Internals

Jitsu Server

Postgres

Jitsu supports Postgres as a destination. For more information about Postgres see docs.

Configuration

Postgres destination config consists of the following schema:

destinations:
  my_postgres:
    type: postgres
    datasource:
      host: my_postgres_host
      db: my-db
      schema: myschema
      port: 5432
      username: user
      password: pass
      parameters:
        sslmode: disable
        connect_timeout: 300

datasource

Field (*required)TypeDescriptionDefault value
host*stringHost of destination.-
portintPort of destination.5432
db*stringDatabase of destination.-
schemastringSchema of destination.public
username*stringUsername for authorization in a destination.-
passwordstringPassword for authorization in a destination.-
parametersobjectConnection parameters. see Postgres documents pageconnect_timeout=600