Snowflake
Load event data into Snowflake tables for cloud data warehousing, analytics, and data sharing.
⚠️
This integration is currently in beta. Configuration and behaviour may change.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
account_identifier | string | Yes | Your Snowflake account identifier, including the region suffix (e.g., xy12345.us-east-1). |
warehouse | string | Yes | The Snowflake virtual warehouse to use for loading data. |
database | string | Yes | The Snowflake database containing the target table. |
schema | string | Yes | The Snowflake schema containing the target table. |
username | string | Yes | The Snowflake username for authentication. |
password | secret | Yes | The password for the Snowflake user account. |
role | string | No | Optional Snowflake role to assume when connecting. Defaults to the user’s default role. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Snowflake or filter by Cloud Storage.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/snowflake/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Snowflake",
"variant": "default",
"config": {
"account_identifier": "xy12345.us-east-1",
"warehouse": "DATAFLY_WH",
"database": "ANALYTICS"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Snowflake. No client-side scripts are loaded for this integration.
Visit Snowflake documentation for full API documentation and credential setup instructions.