Delta Detection of Source Data for Snowflake
The detection of changes (often referred to as "delta detection") is essential for effectively managing updates in Snowflake. This method involves using Amazon S3 or Google Cloud Storage as an interim staging area, where CSV files are updated by the source system. These CSV files serve as the foundation for delta detection and for making subsequent updates in Snowflake tables
Â
Â
Â
Implementation Steps
Step 1: EazyDI Pipeline Configuration
Source Connector:
Choose a source connector and configure the Connection Object
Â
Â
S3 Connector as Target:
Define an S3 connector as the target in your pipeline.
Specify the Connection object (CSV File) where we will store the data from the source
Â
Continue with the field mapping and save the pipeline
Â
Â
Step 2: Staging for Delta Detection in Snowflake
CSV Files in S3:
CSV files updated by the source systems are deposited into the designated S3 bucket and folder.
These files serve as the staging area for delta detection.
Â
Step 3: Snowflake Staging Table (Optional)
If required, you can load data from the S3 staging area into Snowflake tables first for staging using Snowflake's COPY INTO
command. This step is optional and can be skipped if you prefer to directly integrate and process data from external stages in Snowflake.
Create Snowflake Tables:
Define Snowflake tables that mirror the structure of the CSV files stored in S3.
Ensure that primary keys or unique identifiers are established to facilitate delta detection.
Load Data from S3 to Snowflake
Use Snowflake's
COPY INTO
command to load data from the S3 staging area into Snowflake tables.Specify the S3 path and file format (e.g., CSV) in the command.
COPY INTO snowflake_table
FROM 's3://your-bucket/path/'
FILE_FORMAT = (TYPE = 'CSV');
Â
Step 4: Delta Detection and Updates
SQL for Delta Detection:
Implement SQL scripts in Snowflake to detect and apply deltas:
Adjust the SQL script based on your table structure and primary key columns.
Merging using a snowflake staging table
MERGE INTO target_table AS t
USING (
SELECT * FROM snowflake_staging_table
) AS s
ON t.primary_key = s.primary_key
WHEN MATCHED THEN
UPDATE SET t.column1 = s.column1, t.column2 = s.column2
WHEN NOT MATCHED THEN
INSERT (primary_key, column1, column2)
VALUES (s.primary_key, s.column1, s.column2);
If you want to directly access the S3 files from Snowflake external stage, follow these steps:
-- Step 1: Define an external stage pointing to S3
CREATE OR REPLACE STAGE s3_stage
URL = 's3://your-bucket/path/'
CREDENTIALS = (
AWS_KEY_ID = 'your_access_key_id',
AWS_SECRET_KEY = 'your_secret_access_key'
);
-- Step 2: Perform MERGE operation using the external stage
MERGE INTO target_table AS t
USING (
SELECT * FROM @s3_stage/csv_file
) AS s
ON t.primary_key = s.primary_key
WHEN MATCHED THEN
UPDATE SET t.column1 = s.column1, t.column2 = s.column2
WHEN NOT MATCHED THEN
INSERT (primary_key, column1, column2)
VALUES (s.primary_key, s.column1, s.column2);
Considerations
Automation: Set up automated scheduled pipelines in EazyDI and Snowflake workflows to regularly execute the pipeline and delta detection process..
Â
Â
Implementing delta detection using S3 as a Snowflake stage and merging statements in Snowflake provides an efficient method for managing data updates. This approach ensures data integrity and accuracy while leveraging Snowflake's capabilities for handling large datasets.
Â
By using EazyDI to extract data from source systems and storing updated CSV files in an S3 staging area, coupled with implementing delta detection in Snowflake, you can effectively handle data updates and maintain precision in your analytical workflows. This method offers a scalable and reliable solution for integrating diverse data sources into Snowflake, facilitating enhanced analysis and reporting capabilities.