Snowflake
This pages describes how to integrate Tableflow with Snowflake so that you can query Iceberg tables created by WarpStream in Snowflake.
WarpStream Iceberg Catalog
1. Prepare the Base URL and Authentication
2. Create Catalog Integration
CREATE OR REPLACE CATALOG INTEGRATION warpstream_catalog
CATALOG_SOURCE = ICEBERG_REST
TABLE_FORMAT = ICEBERG
CATALOG_NAMESPACE = 'default'
REFRESH_INTERVAL_SECONDS = 60
REST_CONFIG = (
CATALOG_URI = '$BASE_URL'
)
REST_AUTHENTICATION = (
TYPE = BEARER
BEARER_TOKEN = '$AGENT_KEY'
)
ENABLED = TRUE;
3. Create External Volume

4. Create Iceberg Table

5. Query the Table

Last updated
Was this helpful?