Generic Postgres source setup guide
If you use one of the supported providers (in the sidebar), please refer to the specific guide for that provider.
ClickPipes supports Postgres version 12 and later.
Enable logical replication
-
To enable replication on your Postgres instance, we need to make sure that the following settings are set:
To check the same, you can run the following SQL command:
The output should be
logical. If not, run: -
Additionally, the following settings are recommended to be set on the Postgres instance:
To check the same, you can run the following SQL commands:
If the values do not match the recommended values, you can run the following SQL commands to set them:
-
If you have made any changes to the configuration as mentioned above, you NEED to RESTART the Postgres instance for the changes to take effect.
Creating a user with permissions and publication
Connect to your Postgres instance as an admin user and execute the following commands:
-
Create a dedicated user for ClickPipes:
-
Grant the dedicated user permissions on the schema(s) you want to replicate.
The example above shows permissions for the
publicschema. Repeat the sequence of commands for each schema you want to replicate using ClickPipes. -
Grant the dedicated user permissions to manage replication:
-
Create a publication with the tables you want to replicate. We strongly recommend only including the tables you need in the publication to avoid performance overhead.
NoteAny table included in the publication must either have a primary key defined or have its replica identity configured to
FULL. See the Postgres FAQs for guidance on scoping.-
To create a publication for specific tables:
-
To create a publication for all tables in a specific schema:
The
clickpipespublication will contain the set of change events generated from the specified tables, and will later be used to ingest the replication stream. -
Enabling connections in pg_hba.conf to the ClickPipes User
If you are self serving, you need to allow connections to the ClickPipes user from the ClickPipes IP addresses by following the below steps. If you are using a managed service, you can do the same by following the provider's documentation.
-
Make necessary changes to the
pg_hba.conffile to allow connections to the ClickPipes user from the ClickPipes IP addresses. An example entry in thepg_hba.conffile would look like: -
Reload the PostgreSQL instance for the changes to take effect:
Increase max_slot_wal_keep_size
This is a recommended configuration change to ensure that large transactions/commits do not cause the replication slot to be dropped.
You can increase the max_slot_wal_keep_size parameter for your PostgreSQL instance to a higher value (at least 100GB or 102400) by updating the postgresql.conf file.
You can reload the Postgres instance for the changes to take effect:
For better recommendation of this value you can contact the ClickPipes team.
What's next?
You can now create your ClickPipe and start ingesting data from your Postgres instance into ClickHouse Cloud. Make sure to note down the connection details you used while setting up your Postgres instance as you will need them during the ClickPipe creation process.