Quick Start Guide

This page will help you quickly get started with Coalesce, connecting your database and setting up a staging node with a simple data transformation. Optionally, we will also walk you through the creation of Dimension and Fact tables.

🚧

Before You Start

  • If you haven't yet signed up for a Coalesce account, you can do so here.
  • Make sure you're using Google's Chrome browser, as other browsers are not officially supported.
  • Have your Snowflake login information handy. Don’t have a Snowflake account yet or not ready to connect your company’s Snowflake to Coalesce? Sign up for a free trial here and use Snowflake’s provided sample data.

Video Overview

The following video provides a brief overview of (most of) what this guide will be covering.

Interface

When you first sign in on a new account, you'll be presented with the Projects Dashboard, where a default Project and Development Workspace will be already created. Feel free to disregard the warning about Version Control, as this guide will not be using that feature. Click the Launch button to open the workspace to continue.

Projects Dashboard

Projects Dashboard

Now that you're inside your Workspace, you'll be presented with the Build interface. This is where you'll spend most of your time creating nodes, building a graph with them, and transforming your data. In Coalesce, each Node is a logical unit of work that represents a table, a view, or multiple Snowflake objects. The other interface is the Deploy interface, which will be used to push your pipeline to other environments (QA, Production, etc.), including your graph and other metadata.

📘

The Problem Scanner

Note that on a brand new account, the Problem Scanner will show a few action items. You can disregard those as most will be resolved by the end of this guide.

The Problem Scanner

The Problem Scanner

Setup

Connect to Snowflake

  1. Click on Build Settings, which is represented by a cogwheel icon toward the bottom left
Location of Build Settings

Location of Build Settings

  1. Go to Development Workspaces and edit your current Workspace by clicking the pencil icon to the right of it.

  2. Obtain your Snowflake URL, which you can find in the lower left of Snowflake's UI upon login -

  1. From the Edit Workspace screen → SettingsAccount → Add your Snowflake URL
Add SF URL

The Edit Workspace Screen

  1. From the Edit Workspace screen → User Credentials and fill out the form with your Snowflake login
  2. Click Test Connection to ensure your credentials work as expected
  3. Click Save

You've now connected Coalesce to your Snowflake instance!

Configure Storage Locations & Workspace

A storage location is a logical name you provide to represent a database and schema (in Snowflake) and you will need them to make use of the Workspace you configured earlier. Depending on when you signed up for Coalesce, your account may have one or two Storage Locations already created. One will be mapped to the Snowflake Sample Data (SRC or SAMPLE) and the other will be where we write new tables (WORK or TARGET). If your workspace already has 2 storage locations, you can skip to Step 3 below.

  1. Go to Build SettingsStorage Locations and click on New Storage Location to create a new location - TARGET or WORK.
  2. Make sure to set TARGET/WORK as the default Storage Location.
  3. Edit your WorkspaceStorage Mappings
  4. From here enter the actual databases and schemas that will correspond to each Storage Location. For this guide we will be using Snowflake's sample schema TPCH_SF1 as our data source. Feel free to use any schema you'd like as the target for the transformed data.
Example Configuration of Storage Mappings

Example Configuration of Storage Mappings

Build an Example Transformation Pipeline

Add Graph Sources

Now it's time to add Sources to the graph. The graph node view is where you'll configure Nodes that will transform your data. Below is an example of a graph with several nodes -

Example Graph

Example Graph

To add Source Nodes take the following steps:

  1. Expand Nodes from the Left Sidebar (if not already open)
Nodes on Left Sidebar

Nodes on Left Sidebar

  1. Click on the + sign → Add Sources
Adding Sources

Adding Sources

  1. Choose your source tables on the left and click Add Sources on the bottom right to add the sources to your pipeline
Adding Sources to Pipeline

Adding Sources to Pipeline

  1. You'll now see your graph populated with some Source Nodes
Graph Populated with 8 Source Nodes

Graph Populated with 8 Source Nodes

Make a Stage Node to Transform Your Data

Now that you have a few Source Nodes on your graph, it's time to add a Stage Node. Stage Nodes are intermediate nodes in the graph where you prepare the data by applying business logic.

  1. Add one or more Stage Nodes by right clicking your Nation Source NodeAdd NodeStage Node. Note that you can select multiple Source Nodes by Shift+clicking them and then add multiple Stage Nodes simultaneously.
  2. Double click on the Stage Node or right-click → Edit to open up the Node Editor
  3. Open Node Properties on the right and ensure the Location is set to the TARGET you configured earlier
Node Properties

Node Properties

  1. Click Create to create a table in Snowflake
  2. Click Run to populate the table. Note that you haven't transformed the data yet!
  3. Edit the Transform field in the Mapping grid by double clicking in the transform field of the N_NAME column. Try a simple transform like LOWER() and the name of your column, or you can use the syntax LOWER({{SRC}})
  4. Click Run again to transform the data

📘

On Transforms

Any Snowflake SQL transform can be used to transform your data.

Example of Transformed Data.  The entries in N_NAME are now lowercase.

Example of Transformed Data. The entries in N_NAME are now lowercase.

  1. You'll see a preview of your transformed data in the lower half of the screen, but feel free to take a peek in your Snowflake database to confirm.

Congratulations! You've connected your database and applied a basic transformation to your data. Feel free to continue experimenting with some of the other node types below.

Create a Dimension Table

Now let's create a simple slowly changing dimension (Type 2) — an industry standard for tracking historical data by creating multiple records for a given natural key.

  1. Create a new Stage Node from the CUSTOMER Source Node
  2. Go into this new node to Create and Run
  3. Return to the main graph and create a Dimension node from the STG_CUSTOMER node. By default, Coalesce creates a Type 1 Dimension. In this guide we will be making a Type 2 Dimension to track historical data of a column.
679

Your graph should look something like this now

  1. Go into the new DIM_CUSTOMER node
  2. Open up Options on the right side
  3. Choose C_CUSTKEY as a business key by selecting it and clicking the arrow to move it to the right
1437

Choosing C_CUSTKEY as the Business Key

  1. Scroll down the options pane to Change Tracking and select columns C_ADDRESS and C_PHONE, clicking the arrow to move them to the right
  2. Now Create and Run the DIM_CUSTOMER node

📘

Type 1 vs Type 2

In the Dimension Node, if no Change Tracking columns are selected, the node will act as a Type 1 Dimension. If Change Tracking columns are selected, it will act as a Type 2.

You have now finished creating a Type 2 Dimension table. Next we will make a Fact Table.

Create a Fact Table

Now let's create a fact table.

  1. Create a new Stage Node from the ORDERS Source Node
  2. Open the new STG_ORDERS node and delete all the columns except for O_ORDERKEY, O_CUSTKEY, and O_TOTALPRICE
  3. Select the DIM_CUSTOMER node on the left side, then select DIM_CUSTOMER_KEY and drag it into your STG_ORDERS mapping grid
Adding Customer Key

DIM_CUSTOMER_KEY added to the mapping grid

  1. Go to Join in STG_ORDERS
  2. Delete the existing text
  3. Click Generate Join and then Copy to Editor
  4. Replace the /_COLUMN_/ text with O_CUSTKEY
  5. Create and Run the STG_ORDERS node
  6. Create a Fact Node from STG_ORDERS
  7. Open the new FCT_ORDERS node
  8. Open Options → Business Key → add O_ORDERKEY
  9. Create and Run the FCT_ORDERS node

You have now made a fact table! You can run this query in Snowflake (adjusting your schema and databases from MY_DB and MY_SCHEMA to the ones in your environment) to confirm.

select DIM.C_NAME CUSTOMER_NAME,
sum(FCT.O_TOTALPRICE) TOTAL_PRICE
from "MY_DB"."MY_SCHEMA"."FCT_ORDERS" FCT
inner join "MY_DB"."MY_SCHEMA"."DIM_CUSTOMER" DIM
on FCT.DIM_CUSTOMER_KEY = DIM.DIM_CUSTOMER_KEY
group by DIM.C_NAME;

What’s Next

Now that you've finished the Quick Start Guide, you can try using other node types, backup your work using our git integration, or try deploying your pipeline to an environment.