Integrations
Integrate with your BigQuery data warehouse.
Chalk has an integration with BigQuery that makes it easy to read queries and tables into your feature store.
To use BigQuery in your resolvers, you first need to add the Chalk GCP integration to the environments where you would like to use BigQuery.
Chalk’s BigQuery integration can be used as a SQL source.
from chalk.sql import BigQuerySource
bq = BigQuerySource()
@online
def fn(...) -> ...:
return bq.query(...).first()