"Get Data - Reverse ETL" node

By means of the Get Data - Reverse ETL node, you can pull data from Snowflake to Synerise in any form.

This node lets you extract, transform, and load data from your Snowflake database (using either your Snowflake login and password or by generating a public key and adding it to Snowflake authentication settings). You can easily test this connection and get a preview of the retrieved data through an SQL query, with a preview limit set to 10 records.

You can download the previewed data in JSON or CSV format, which can serve as a data sample for creating data transformation rules. These rules can be applied within a workflow to modify the data imported from Snowflake, ensuring it meets Synerise’s requirements. Thus, you gain flexibility in customizing the data format while importing from Snowflake.

In the SQL query, you can use Jinjava inserts, except the ones that access the properties of the profile that is the context of the automation ({% customer <attribute> %} and {{ customer.<attribute> }}).

The integration also lets you retrieve incremental data, eliminating the need to pull all the data each time. This way, you can import only the data that has been added since the last import. This is possible through the Jinjava tag: {{lastRunDate}}

Prerequisites


  • If you use a firewall or an allowlist, make sure to allow the IP addresses listed below:
    Click here to expand IPs for Azure

    • 52.146.154.208/29 (whole range in use: 52.146.154.208 - 52.146.154.215)
    • 20.67.16.0/28 (whole range in use: 20.67.16.0 - 20.67.16.15)

    Click here to expand IPs for Google Cloud Platform (GEB)

    • 35.205.120.121
    • 35.233.100.131
    • 34.77.196.142
    • 34.140.213.162
    • 104.155.38.106
    • 34.79.223.232
    • 34.77.87.13
    • 34.78.208.88

  • You must have an account in Snowflake created.

Best practices

  • Create a new database user.
    You should have a database user with the minimum required permissions specifically for Synerise import/synchronization operations. This user only requires read permissions with access limited to the tables you want to synchronize from.
  • Avoid using your main database for this purpose.
    It’s better to create a separate database that is read-only and set up replication. This helps reducing the workload on your main database and minimizes the risk of data loss.
  • Synchronize only the data that you’ll use in Synerise.
    This improves performance and reduces the chance of exposing sensitive information. Select only the columns that are important to you and use the {{lastRunDate}} Jinjava tag to limit synchronization to data that has changed since the last synchronization.
  • Set a reasonable synchronization size of data and interval to avoid overwhelming your database.
    Monitor the initial synchronizations to make sure they don’t affect the security and performance of your system. You can send maximum 20,000,000 rows per journey and the data will be processed 1,000,000 per 2 minutes
  • Keep in mind regional data regulations.
    If your database is in the US, but your Synerise workspace is based in Europe, you need to comply with GDPR and other data regulations. Before connecting your database to Synerise, ensure you are following the rules for your region.

Node configuration


  1. Go to Automation > Workflows > Create new.
  2. Start the workflow with a trigger node that doesn’t contain a customer’s context (for example, Scheduled Run).
  3. On the trigger node, click THEN.
  4. From the dropdown list, click Snowflake> Get Data - Reverse ETL.
  5. To allow the data exchange, establish a connection between Synerise and Snowflake, click Select connection.
  6. From the dropdown list, select the connection.

Create a connection

If you haven’t established any connection yet or you want to create another, establish a connection between Synerise and Snowflake that facilitates the exchange of data.

  1. Select one of the following connection methods:
    • Login and Password - This method lets you connect with Snowflake by using your Snowflake login and password.
    • Public key - This method lets you connect with Snowflake by generating a public key and adding it to your Snowflake authorization configuration.
  2. To read further instructions, select the tab with the connection method you selected in the previous step.
    1. In the Connection name field, enter the name of the connection.
      It’s used to find the connection on the list.
    2. In the Snowflake username field, enter a login to your Snowflake account.
    3. In the Snowflake password field, enter the password to your Snowflake account.
    4. In the Snowflake host field, enter the Snowflake connection URL.
      You can find more information about connection URL in the Snowflake documentation.
    5. Confirm the settings by clicking Apply.

Define the integration settings

In this step, define the dataset and scope of data to be fetched to Synerise.

  1. In the Database name field, enter the name of your database.
    You can check the Snowflake documentation on how to retrieve a database name.
  2. In the Schema name field, enter the name of schema in the database.
    You can check the Snowflake documentation on how to retrieve a schema name.
  3. In the Warehouse name field, enter the name of the warehouse within the schema.
    You can check the Snowflake documentation on how to retrieve a warehouse name.
  4. In the Query field, enter the SQL formula that retrieves specific data from the database in Snowflake.
    You can optimize your query in the following way:
    • Find out whether you are charged for query or data amount pulled within a query.
    • Querying large data sets may result in timeouts.
    • Retrieve up to 20,000,000 rows in one request.
    • Limit requests to 1 request per hour.
    • Retrieve incremental data using the {{ lastRunDate }} tag:
      • Your resource in Snowflake must contain a column with the date of the latest update (recommended time format: ISO-8601)

      • Add the {{ lastRunDate }} tag to your query, for example:

        SELECT * FROM myTableName WHERE columnWithModificationDate > {{lastRunDate}}
            

      • The value of the {{ lastRunDate }} is saved by Synerise with each successful data pull from Snowflake within a specific workflow

  5. To test the connection and preview data that will be retrieved, click Preview data.
    The preview includes up to 10 records.
    1. To download a file with preview data, click Download Sample Data.
    2. Select the format file:
      • .json file (recommended)
      • .csv file
    3. If you want to use this sample to configure Data Transformation to modify the data according to Synerise requirements, click Open Data Transformation.
      This feature lets you create data transformation rules according to which the data will be modified, for example, you can make operations on the column names (to comply with the Synerise import requirements), on the values inside the columns, and so on. Later on, you can add the Data Transformation node to the workflow, after the Get Data - Reverse ETL node, and in the configuration of the node select the data transformation rule to modify the incoming data.
  6. Confirm by clicking Apply.
    We recommend monitoring the workflows that use the Get Data - Reverse ETL node. You can do it by:

Example of use


This example shows how to send your customers’ opinions about your company stored in Snowflake by means of a periodic import.

An example of the data used in the example:

description rate email
This product is life-changing. Finally, I have comfortable shoes. 5 john.doe@example.com
I’m satisfied with my purchase. 5 joan.smith@example.com

These opinions will be imported to Synerise as a custom opinion.import event and will be available on the profiles of customers. This event will contain the following information:

  • the descriptive part of the opinion, contained in the description parameter.
  • the rating, which will take values from 1 to 5 (1 being the lowest), contained in the rate parameter.

Additionally, this example contains a process of creating a transformation rule based on the preview data received from the Get Data - Retrieve ETL node. This way, we will prepare the incoming data to comply with the Synerise requirements to be imported as events.

Workflow configuration
Workflow configuration
  1. Start your workflow with the Scheduled Run node. In the configuration of the node:
    1. Change the Run trigger option to all time. Define the frequency of triggering this node (for example, once a day).
    2. Confirm by clicking Apply.
  2. As the next node, select Snowlake > Get Data - Retrieve ETL.
    1. Configure the node as described in the Node configuration section.

    2. In the Query field, enter a query that retrieves email, opinion, and rating. The snippets below contain queries that:

      • create a table
      • retrieve all data from the table (which is treated as the first import; then the import date is rendered to 1970-01-01T00:00)
      • retrieve the incremental data since the date of the latest import.
      Note: These example queries serve as demonstrations, and their specific structure may vary depending on the data structure in your database.
      CREATE TABLE events (
        event_id STRING,
        email STRING,
        opinion STRING,
        rate TINYINT,
        updated_at TIMESTAMP
      );
    3. Preview the data and download it as a JSON file.

    4. Click Open Data Transformation.

    5. Transform the file as follows:

      • Add the following columns and values:

        Column name Column value
        action opinion.import
        label Import of opinions from Snowflake
        type custom
      • Rename the column name with the customer email to: client.email

      • Optionally, you can change the names of columns which contain the descriptive opinion and rating.

    6. Save the transformation rule.

  3. Add the Data Transformation node. In the configuration of the node, select the transformation rule you created in the previous step.
  4. Add the Import events node. This node doesn’t require configuration.
  5. Add the End node.
  6. Click Save & Run.
    Result: When the workflow is launched, the opinion.import event will be generated on the activity list of the customers who left an opinion on your company. You can later prepare analyses based on this event and its parameters and implement marketing strategy towards these customers.
😕

We are sorry to hear that

Thank you for helping improve out documentation. If you need help or have any questions, please consider contacting support.

😉

Awesome!

Thank you for helping improve out documentation. If you need help or have any questions, please consider contacting support.

Close modal icon Placeholder alt for modal to satisfy link checker