Set up Snowflake pipeline
Prepare your Snowflake environment so Reltio can stream data directly to your internal stage using the modern pipeline architecture.
- A Snowflake account with administrative privileges
- Permission to create Snowflake users, roles, and grant schema-level access
- Reltio Data Pipeline for Snowflake add-on enabled in your tenant
After setup is complete, Reltio streams event data to your Snowflake internal stage, where Snowflake streams and tasks load the data into the configured landing tables and views every ten minutes to optimize performance and cost.
CREATE OR REPLACE TASK <database>.<schema>.REFRESH_INTERNAL_STAGE_TASK
WAREHOUSE = <warehouse>
SCHEDULE = '<new_time_interval>'
COMMENT = 'Refresh stage metadata to keep stream current'
AS
ALTER STAGE <database>.<schema>.<stageName> REFRESH;