PostgreSQL
Step-by-step guide to ingest your data from PostgreSQL into RudderStack.
PostgreSQL is an enterprise-grade, open source database management system. Many companies use PostgreSQL as a low-cost data warehousing solution to deliver efficient analytics and user insights.
RudderStack supports PostgreSQL as a source from which you can ingest data and route it to your desired downstream destinations.
Granting permissions
RudderStack requires you to grant certain user permissions on your PostgreSQL warehouse to successfully access data from it.
Run the SQL queries listed in the following sections in the exact order to grant these permissions:
Step 1: Creating the user
Create a new user
RUDDER
with a password<strong_unique_password>
in PostgreSQL, as shown:
Step 2: Creating the RudderStack schema and granting permissions
Create a dedicated schema
_rudderstack
.
The _rudderstack
schema is used by RudderStack for storing the state of each data sync. This name should not be changed.
Grant full access to the schema
_rudderstack
for the userRUDDER
.
Grant full access to all the objects in the schema
_rudderstack
for the userRUDDER
.
Step 3: Granting permissions on your schema and table
To let the user
RUDDER
look up objects within the schema<YOUR_SCHEMA>
, run the command below.
Grant access to the user
RUDDER
to read data from the table<YOUR_TABLE>
.
Replace <YOUR_SCHEMA>
and <YOUR_TABLE>
with the exact names of your PostgreSQL schema and table, respectively.
Optional commands
Run the following commands only if you're okay with RudderStack being able to access the data in all the current or future tables residing within your specified schema.
To allow the user
RUDDER
read the data from all the tables in the schema<YOUR_SCHEMA>
:
To allow the user
RUDDER
to read data from all the future tables in the schema<YOUR_SCHEMA>
:
Replace <YOUR_SCHEMA>
with the exact name of your PostgreSQL schema.
Setting up the PostgreSQL source in RudderStack
To set up PostgreSQL as a source in RudderStack, follow these steps:
Naming the source
From the left navigation bar, go to Source > New Source > Reverse ETL. Then, select PostgreSQL, as shown:
Assign a name to your source.
Configuring the connection credentials
Choose the relevant option from Table or Model to use the source to sync data from either a warehouse table or a model.
Enter the relevant connection details in the Connection Credentials, as shown:
Host: Enter the host name of your PostgreSQL service.
Database: Enter the database name in your PostgreSQL instance where the data is loaded.
User: Specify the username which has the required read/write access to the above database.
Password: Enter the password for the above user.
Port: Enter the port number of your PostgreSQL service.
If you've configured a PostgreSQL source before, you can select the existing credentials under the Use existing credentials option.
Click on Continue. RudderStack will then verify and validate your credentials.
Once verified, click on Continue to proceed.
Schedule settings
Specify the Schedule Settings to schedule the data syncs from your PostgreSQL instance.
After specifying the schedule type and run settings, click on Continue to finish the setup.
PostgreSQL is now successfully configured as a source in your RudderStack dashboard. You can further connect this source to your preferred destination by clicking on Add Destination button, as shown:
If you have already configured a destination in RudderStack, choose the Use Existing Destinations option which will take you to the Schema tab in the source settings. To add a new destination from scratch, select the Create New Destination option which will take you to the destination configuration page.
Specifying the data to import
Based on the option(Table/Model) you chose while setting up the Reverse ETL source, follow the relevant guide for detailed steps:
FAQ
What are the SSL mode options when setting up the PostgreSQL source in RudderStack?
When setting up a PostgreSQL source, RudderStack provides the following two SSL options:
disable: SSL mode is disabled when you select this option. Use it in cases where security is not an issue and you don't want any encryption overhead.
require: When you select this option, your data is encrypted and sent to RudderStack. Use it in cases where security is important and you can deal with the resulting encryption overhead.
What do the three validations under Verifying Credentials imply?
When setting up a Reverse ETL source, once you proceed after entering the connection credentials, you will see the following three validations under the Verifying Credentials option:
These options are explained below:
Verifying Connection: This option indicates that RudderStack is trying to connect to the warehouse with the information specified in the connection credentials.
If this option gives an error, it means that one or more fields specified in the connection credentials are incorrect. Verify your credentials in this case.
Able to List Schema: This option checks if RudderStack is able to fetch all the schema details using the provided credentials.
Contact us
Last updated
Was this helpful?