Spile sits between your agents and data, shielding prod data from leaks, edits, and runaway queries.
Spin up a throw-away branch and query any moment in history—no risk to prod.
Queries execute in a lightweight DuckDB container—zero extra load on your warehouse.
Route prod queries through manual or auto-approval before they ever touch data.
import snowflake.connector
conn = snowflake.connector.connect(
account='xy12345.us-east-1',
user='username',
password='password',
host='localhostcomputing.com', # [✓] Use local compute
warehouse='COMPUTE_WH',
database='DEMO_DB'
)
cursor = conn.cursor()
cursor.execute("SELECT * FROM users")DuckDB runs the query locally