description |
---|
Step-by-step guide to set up PostgreSQL as a destination in RudderStack |
PostgreSQL is an enterprise-grade, open source database management system. It supports both SQL and JSON for relational and non-relational queries respectively. Many companies in the market use PostgreSQL as their low-cost data warehousing solution in order to deliver efficient analytics and user insights. A myriad of other analytical tools in the market also integrate seamlessly with PostgreSQL. In fact, Amazon Redshift's design is inspired from PostgreSQL.
RudderStack allows you to configure PostgreSQL as a destination to which you can dump your event data seamlessly.
{% hint style="info" %} Please check our Warehouse Schemas guide to know how events are mapped to the tables in PostgreSQL. {% endhint %}
{% hint style="success" %} Find the open-source transformer code for this destination in our GitHub repo. {% endhint %}
After setting up your PostgreSQL database, create a user. You should also assign privileges to the created user in order to create schemas and temporary tables on the specified database.
Below are the SQL queries that let you create a user, and grant the above-mentioned privileges to that created user:
CREATE USER <user name> WITH PASSWORD '<enter password here>';
-- grants the above created user to create new schemas and temporary tables on the specified database.
GRANT CREATE, TEMPORARY ON DATABASE <enter database name here> TO <user name>;
{% hint style="warning" %}
If you don't grant the CREATE, TEMPORARY
privileges the events don't get exported to PostgreSQL.
{% endhint %}
You will need to whitelist the RudderStack IPs to enable network access to it.
{% hint style="info" %}
The IPs to be whitelisted are : 3.216.35.97
, 34.198.90.241
, 54.147.40.62
, 23.20.96.9
, and 18.214.35.254
.
{% endhint %}
In order to enable dumping data to PostgreSQL, you will first need to add it as a destination to the source from which you are sending the event data. Once the destination is enabled, events from RudderStack will automatically start to flow to PostgreSQL.
To configure PostgreSQL as a destination, please follow these steps:
- Choose a source to which you would like to add PostgreSQL as a destination. You can also simply create a destination and connect it to a source later.
{% hint style="info" %} Please follow our Adding a Source and Destination guide to know how to add a source in RudderStack. {% endhint %}
- After choosing a source, select PostgreSQL from the list of destinations.
- Give your destination a name and then click on Next. You should then see the following screen:
- Add the required credentials in the Connection Settings as mentioned below:
- Host - The host name of your PostgreSQL service.
- Database - The database name in your PostgreSQL instance where the data gets loaded.
- User - The username which has the required read/write access to the above database.
- Password - The password for the above user.
- SSL Mode - SSL modes for connecting to your PostgreSQL instance.
- Bucket Provider - Intermediate storage for storing staging files. Currently we support S3, MinIO, Google Cloud Storage, and Azure Blob Storage.
I am using Rudderstack to mirror my source tables to PostgreSQL. I have all of the data in the S3 staging folders. But RudderStack doesn't create the corresponding PostgreSQL tables when I press on 'sync'. What do I do?
- Firstly, check the status of the sync in the RudderStack dashboard.
- Make sure you have set up the required user permissions ****for PostgreSQL.
- Check if the database is accessible by whitelisting all the RudderStack IPs listed here.
- Ensure that all the security group policies for S3 are set as specified here.
There are some limitations when it comes to using reserved words in a schema, table, or column names. If such words are used as event names, traits or properties, they will be prefixed with a _
when RudderStack creates tables or columns for them in your schema.
Also, it is important to note that integers are not allowed at the start of the schema or table name. Hence, RudderStack prefixes such schema, column or table names with a _
.
For instance, '25dollarpurchase'
will be changed by RudderStack to '_25dollarpurchase
'.
RudderStack converts the event keys into lower case before exporting the data into PostgreSQL, so that it does not create two tables if the event name has two different cases.
If you come across any issues while configuring PostgreSQL with RudderStack, please feel free to contact us or start a conversation on our Slack channel. We will be happy to help you.