Introduction
You can export your data from Statsig to your Data Warehouse with a Data Connection. This lets you send exposures and events directly to your warehouse for further analysis. We currently support connections to the following providers:- Snowflake
- Redshift
- S3
- BigQuery
- Databricks
How to Begin
- Go to Statsig Console
- Navigate to the Help and Tools Section on the side navigation bar
- Go to “Exports List”


Table Schema
Statsig will allow you to export both Exposures and Events to your warehouse. During the set up process, we will prompt you to set up a table with the following schema:Exposures
| Field name | Type | Mode |
|---|---|---|
| company_id | STRING | NULLABLE |
| unit_id | STRING | NULLABLE |
| unit_type | STRING | NULLABLE |
| exposure_type | STRING | NULLABLE |
| name | STRING | NULLABLE |
| rule | STRING | NULLABLE |
| experiment_group | STRING | NULLABLE |
| first_exposure_utc | TIMESTAMP | NULLABLE |
| first_exposure_pst_date | DATE | NULLABLE |
| as_of_pst_date | DATE | NULLABLE |
| percent | FLOAT | NULLABLE |
| rollout | INTEGER | NULLABLE |
| user_dimensions | STRING | NULLABLE |
| inserted_at | TIMESTAMP | NULLABLE |
| rule_name | STRING | NULLABLE |
| group_id | STRING | NULLABLE |
| non_analytics | BOOLEAN | NULLABLE |
Events
| Field name | Type | Mode |
|---|---|---|
| user_id | STRING | NULLABLE |
| stable_id | STRING | NULLABLE |
| custom_ids | STRING | NULLABLE |
| timestamp | TIMESTAMP | NULLABLE |
| event_name | STRING | NULLABLE |
| event_value | STRING | NULLABLE |
| user_object | STRING | NULLABLE |
| statsig_metadata | STRING | NULLABLE |
| company_metadata | STRING | NULLABLE |