Snowflake Table
1. Overview
Snowflake is a fully managed SaaS that provides a single platform for data warehousing, data lakes, data engineering, data science, data application development, and secure sharing and consumption of real-time/shared data.
Cinchy introduced Snowflake as a source and target Connector in v5.2 of the platform.
How Connections Loads Data into Snowflake
For batch syncs of 10 records or less, single Insert/Update/Delete statements are executed to perform operations against the target Snowflake table.
For batch syncs exceeding 10 records, the operations are performed in bulk.
The bulk operation process consists of:
Generating a CSV containing a batch of records
Creating a temporary table in Snowflake
Copying the generated CSV into the temp table
If needed, performing Insert operations against the target Snowflake table using the temp table
If needed, performing Update operations against the target Snowflake table using the temp table
If needed, performing Delete operations against the target Snowflake table using the temp table
Dropping the temporary table
Real time sync volume size is based on a dynamic batch size up to configurable threshold.
2. Considerations
The temporary table generated in the bulk flow process for high volume scenarios transforms all columns of data type Number to be of type NUMBER(38, 18). This may cause precision loss if the number scale in the target table is higher
3. Load Metadata
In the Load Metadata pop-up (Image 1), enter the following information and click Load:
4. Basic Parameters
Add in information about your ID Column if applicable (Image 2).
Note that if you want to use "Delete" action in your sync behaviour configuration then you must input a value for your ID Column and ID Column Data Type.
5. Column Mappings
Add in your applicable column(s) (Image 3). See the documentation here for further details on each column type.
When specifying the Target Column in the Column Mappings section, all names are case-sensitive.
6. Filters
You may choose to use CQL to create a filter (Image 4). Review the documentation here for more on filters.
Last updated