Last updated:|... min read
Field | Description | Example Value | Data Type |
---|---|---|---|
host | The hostname or IP address of the database server. | localhost | String |
port | The port number through which the database server is accessible. | 5431 | Integer |
database | The name of the target database to connect to. | main | String |
username | The username used for authenticating with the database. | main | String |
password | The password corresponding to the provided username for authentication. | password | String |
jdbc_url_params | A collection of additional JDBC URL parameters to fine-tune the connection. | {} | Object |
ssl | SSL configuration for the database connection. Contains details such as the SSL mode. | {"mode": "disable"} {"mode": "allow"} | Object |
update_method | Specifies the mechanism for updating data. Includes properties for a replication slot and an initial wait time. | {"replication_slot": "postgres_slot", "intial_wait_time": 10} | Object |
reader_batch_size | The maximum number of records processed per batch during reading operations. | 100000 | Integer |
max_threads | The maximum number of threads allocated for parallel processing tasks. | 5 | Integer |