Skip to content

PostgreSQL

Execute parameterised statements against PostgreSQL databases.

Database Enterprise edition json

output:
postgres:
connection:
url:
url: ""
JSON
{
"output": {
"postgres": {
"connection": {
"url": {
"url": ""
}
}
}
}
}

A ✓ marks a field that accepts a context variable such as {{ VARIABLE }}.

Connection
Field Type Required Description
connection Connection Connection details for the target database.
Allowed values: url, parts
Processing
Field Type Required Description
batch Batch Logical batching hints shared with other outputs.
Reliability
Field Type Required Description
retry Retry Retry policy for failed executions.
Result
Field Type Required Description
result-field field (string) Event field updated with statement scalar results.
Examples: data_field
affected-rows-field field (string) Event field populated with affected row counts.
Examples: data_field
Statement
Field Type Required Description
statement multiline-text (string) Inline SQL statement executed when statement-file is not provided.
statement-file path (string) Path to a SQL file executed when statement is not provided.
Examples: /path/to/file, c:\users\joe\data\file.txt
parameters Parameters[] Bindings that map event fields into parameter placeholders.
Transaction
Field Type Required Description
transaction Transaction Optional transaction scope applied per execution.
Option Name Type Description
url Url object
parts Parts object
Field Type Required Description
url url (string) Database connection URL (sqlx/ODBC compatible).
Examples: https://example.com/path
max-connections number (integer) Maximum size of the async connection pool.
Examples: 42, 1.2e-10
min-connections number (integer) Minimum number of connections retained in the pool.
Examples: 42, 1.2e-10
connect-timeout string Optional connection timeout (humantime duration string).
idle-timeout string Optional idle timeout (humantime duration string).
schema string Optional schema override applied after connect.
options string[] Statements executed after connect (e.g. SET search_path TO …).
disable-tls-verification boolean (bool) Skip TLS verification (development only).
Default: false
Field Type Required Description
max-connections number (integer) Maximum size of the async connection pool.
Examples: 42, 1.2e-10
min-connections number (integer) Minimum number of connections retained in the pool.
Examples: 42, 1.2e-10
connect-timeout string Optional connection timeout (humantime duration string).
idle-timeout string Optional idle timeout (humantime duration string).
schema string Optional schema override applied after connect.
options string[] Statements executed after connect (e.g. SET search_path TO …).
disable-tls-verification boolean (bool) Skip TLS verification (development only).
Default: false
host string Hostname or IP address of the database server.
port number (integer) Optional TCP port (defaults to the backend default).
Examples: 42, 1.2e-10
database string Optional database name (mapped to the URL path segment).
username string Optional username (mapped to the URL userinfo).
password string Optional password (mapped to the URL userinfo).
parameters map (string) Additional query parameters appended to the generated URL.
Field Type Required Description
fixed-size number (integer) maximum number of events in an output batch.
Examples: 42, 1.2e-10
max-bytes number (integer) Close the batch before adding an event that would make the serialized request payload exceed this many bytes.
Examples: 42, 1.2e-10
mode Mode If ‘document’ send on end of document generated by input. If ‘fixed’, use fixed_size.
Allowed values: fixed, document
timeout time-interval (string) interval after which the batch is sent, to keep throughput going (default 100ms).
Default: 100ms
Examples: 500ms, 2h
header multiline-text (string) put a header line before the batch.
footer multiline-text (string) put a header line after the last line of the batch.
use-document-marker boolean (bool) Enrich the job metadata with a document marker (for document handling in batch mode).
Default: false
wrap-as-json boolean (bool) Format the output batch as a JSON array.
Default: false
Field Type Required Description
strategy Strategy Backoff strategy to use (default exponential).
Allowed values: exponential, linear, fixed
base string Base delay before retrying (e.g. “200ms”).
max string Maximum delay between retries.
jitter boolean (bool) Whether to add jitter to retry delays.
Default: false
Field Type Required Description
max-attempts number (integer) Maximum attempts before giving up.
Examples: 42, 1.2e-10
forever boolean (bool) Retry indefinitely until cancelled.
Default: false
backoff Backoff Backoff strategy configuration.
Field Type Required Description
name string
field string
default multiline-text (string)
Field Type Required Description
mode Mode Allowed values: none, per-event, per-batch, document
isolation-level string
access-mode string
deferrable boolean (bool)
Parameter Value
name value

Value format: templated-text.

Value Aliases Name Description
fixed fixed
document document
Value Aliases Name Description
exponential exponential
linear linear
fixed fixed
Value Aliases Name Description
none none
per-event per-event
per-batch per-batch
document document