Google BigQuery
In order to connect Google BigQuery to Cube, you need to provide service account credentials. Cube requires the service account to have BigQuery Data Viewer and BigQuery Job User roles enabled. You can learn more about acquiring Google BigQuery credentials here.
- The Google Cloud Project ID for the BigQuery project
- A set of Google Cloud service credentialswhich allow access to the BigQuery project
- The Google Cloud region for the BigQuery project
Add the following to a .env
file in your Cube project:
CUBEJS_DB_TYPE=bigquery
CUBEJS_DB_BQ_PROJECT_ID=my-bigquery-project-12345
CUBEJS_DB_BQ_KEY_FILE=/path/to/my/keyfile.json
You could also encode the key file using Base64 and set the result to
CUBEJS_DB_BQ_CREDENTIALS
:
CUBEJS_DB_BQ_CREDENTIALS=$(cat /path/to/my/keyfile.json | base64)
Environment Variable | Description | Possible Values | Required | Supports multiple data sources? |
---|---|---|---|---|
CUBEJS_DB_BQ_PROJECT_ID | The Google BigQuery project ID to connect to | A valid Google BigQuery Project ID | ✅ | ✅ |
CUBEJS_DB_BQ_KEY_FILE | The path to a JSON key file for connecting to Google BigQuery | A valid Google BigQuery JSON key file | ✅ | ✅ |
CUBEJS_DB_BQ_CREDENTIALS | A Base64 encoded JSON key file for connecting to Google BigQuery | A valid Google BigQuery JSON key file encoded as a Base64 string | ❌ | ✅ |
CUBEJS_DB_BQ_LOCATION | The Google BigQuery dataset location to connect to. Required if used with pre-aggregations outside of US. If not set then BQ driver will fail with Dataset was not found in location US error | A valid Google BigQuery regional location | ⚠️ | ✅ |
CUBEJS_DB_EXPORT_BUCKET | The name of a bucket in cloud storage | A valid bucket name from cloud storage | ❌ | ✅ |
CUBEJS_DB_EXPORT_BUCKET_TYPE | The cloud provider where the bucket is hosted | gcp | ❌ | ✅ |
CUBEJS_CONCURRENCY | The number of concurrent connections each queue has to the database. Default is 10 | A valid number | ❌ | ❌ |
CUBEJS_DB_MAX_POOL | The maximum number of concurrent database connections to pool. Default is 40 | A valid number | ❌ | ✅ |
countDistinctApprox
Measures of type
countDistinctApprox
can be
used in pre-aggregations when using Google BigQuery as a source database. To
learn more about Google BigQuery's support for approximate aggregate functions,
click here.
To learn more about pre-aggregation build strategies, head here.
Feature | Works with read-only mode? | Is default? |
---|---|---|
Batching | ❌ | ✅ |
Export Bucket | ❌ | ❌ |
By default, Google BigQuery uses batching to build pre-aggregations.
Batching
No extra configuration is required to configure batching for Google BigQuery.
Export bucket
BigQuery only supports using Google Cloud Storage for export buckets.
Google Cloud Storage
For improved pre-aggregation performance with large datasets, enable export bucket functionality by configuring Cube with the following environment variables:
When using an export bucket, remember to assign the BigQuery Data Editor and Storage Object Admin role to your BigQuery service account.
CUBEJS_DB_EXPORT_BUCKET=export_data_58148478376
CUBEJS_DB_EXPORT_BUCKET_TYPE=gcp
Cube does not require any additional configuration to enable SSL as Google BigQuery connections are made over HTTPS.
Did you find this page useful?