Documentation Index
Fetch the complete documentation index at: https://runway-5055a12e-permissions-v2-docs.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Supported data warehouses
We strongly support the following providers:- Snowflake → Setup guide
- Google BigQuery → Setup guide
- Amazon Redshift → Setup guide
How Runway connects to your data warehouse
Runway has an in-app SQL editor that allows us to query your data warehouse directly. To set up the connection:- Create a user for Runway in your data warehouse.
- Add our provider’s IP addresses to your allowlist (found here).
Runway leverages the US data center.
Data warehouses FAQs
How do I write SQL in Runway?
How do I write SQL in Runway?
See our help doc.
What other databases can Runway pull from?
What other databases can Runway pull from?
We also support SQL databases (via Fivetran) for:
- PostgreSQL
- MySQL
- SQL Server (including Azure, Google, and AWS-hosted instances)
Is there a row limit on data queries?
Is there a row limit on data queries?
Yes, each query must return fewer than 50,000 rows.
How can I work around the row limit?
How can I work around the row limit?
If your dataset exceeds 50,000 rows, consider the following solutions:
- Aggregate data in SQL → Use
SUM,GROUP BY, or similar functions to reduce the row count. - Limit the data scope → Restrict queries by time range or other relevant filters.
- Split large datasets → Break data into multiple queries or databases (e.g., by product line or geography).