Name | Type | Description |
---|---|---|
Host | String | The hostname of the database. |
Port | Integer | The port of the database. |
Database | String | The name of the database. |
Schemas | Array | The list of schemas to sync from. Defaults to user. Case sensitive. |
Username | String | The username which is used to access the database. |
Password | String | The password associated with the username. |
JDBC URL Params | String | Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3). |
SSL Method | Object | The encryption method which is used when communicating with the database. |
Replication Method | Object | The replication method used for extracting data from the database. STANDARD replication requires no setup on the DB side but will not be able to represent deletions incrementally. CDC uses {TBC} to detect inserts, updates, and deletes. This needs to be configured on the source database itself. |