Chalk home page
Docs
API
CLI
  1. Integrations
  2. BigQuery

Chalk has an integration with BigQuery that makes it easy to read queries and tables into your feature store.

Authorization

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.

Usage

Chalk’s BigQuery integration can be used as a SQL source.

bq = BigQuerySource()

@online
def fn(...) -> ...:
    return bq.query(...).first()