Google Cloud SQL Postgres source setup guide
If you use one of the supported providers (in the sidebar), please refer to the specific guide for that provider.
Supported Postgres versions
Anything on or after Postgres 12
Enable logical replication
You don't need to follow the below steps if the settings cloudsql. logical_decoding is on and wal_sender_timeout is 0. These settings should mostly be pre-configured if you are migrating from another data replication tool.
- Click on Edit button on the Overview page.
- Go to Flags and change
cloudsql.logical_decodingto on andwal_sender_timeoutto 0. These changes will need restarting your Postgres server.
Creating ClickPipes user and granting permissions
Connect to your Cloud SQL Postgres through the admin user and run the below commands:
-
Create a dedicated user for ClickPipes:
-
Grant schema-level, read-only access to the user you created in the previous step. The following example shows permissions for the
publicschema. Repeat these commands for each schema containing tables you want to replicate: -
Grant replication privileges to the user:
-
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. -
Add ClickPipes IPs to Firewall
Please follow the below steps to add ClickPipes IPs to your network.
If your are using SSH Tunneling, then you need to add the ClickPipes IPs to the firewall rules of the Jump Server/Bastion.
- Go to Connections section
- Go to the Networking subsection
- Add the public IPs of ClickPipes
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.