Run SQL queries locally on Snowflake Iceberg tables and Polaris catalog using DuckDB, with 10x more efficient compute.
UniverSQL is a Snowflake proxy that allows you to run SQL queries locally on Snowflake Iceberg tables and Polaris catalog, using DuckDB. You can join Snowflake data with your local datasets, without any need for a running warehouse. UniverSQL relies on Snowflake for access control and data catalog so it's complementary to your Snowflake workloads.
python3 -m pip install universql
Using virtual environments (recommended):
# Create a new virtual environment
python -m venv universql-env
# Activate the environment
source universql-env/bin/activate # Mac and Linux
universql-env\Scripts\activate # Windows
# Start UniverSQL
universql snowflake --account lt51601.europe-west2.gcp
Pull and run the Docker image (recommended for running in background):
docker run -p 8084:8084 -v ~/.universql:/root/.universql buremba/universql snowflake --account lt51601.europe-west2.gcp
UniverSQL is designed to be a complementary tool that helps you utilize local hardware when using Snowflake, especially for small datasets:
Operation | Behavior |
---|---|
SELECT | Executed locally using DuckDB |
CREATE ICEBERG TABLE | AS SELECT executed in DuckDB; metadata synced to both catalogs |
INSERT , MERGE , DELETE | DuckDB for temp/Iceberg tables, Snowflake for others |
CREATE TABLE | Handled natively by Snowflake |
CREATE TEMP TABLE | Fully managed by DuckDB |
COPY INTO | DuckDB for temp/Iceberg tables, Snowflake for others |
SHOW | Executed by Snowflake (metadata queries, no compute cost) |