Before installing a BigQuery integration
You will need access to a Google Cloud Platform (GCP) project that contains the BigQuery dataset you want to connect. You must have sufficient permissions to create service accounts and manage IAM roles (typically Owner or Editor access).1. Enable the required APIs
- Go to the Google Cloud Console.
- Select your project from the project picker at the top of the page.
- Navigate to APIs & Services > Enabled APIs & Services.
- Search for BigQuery API and verify it is enabled. If not, click Enable.
- Also search for and enable the BigQuery Storage API, as this is required for high-performance data reads.
2. Create a service account
A service account is a special-purpose GCP account used by applications to access resources.- In the Google Cloud Console, navigate to IAM & Admin > Service Accounts.
- Click Create Service Account.
- Enter a name (e.g., “Integration Service Account”) and an optional description.
- Click Create and Continue.
- Grant the following roles:
- BigQuery Data Viewer — allows reading table data and metadata.
- BigQuery Job User — allows running queries in the project.
- Click Done.
If you only want to grant access to a specific dataset rather than the entire project, you can assign the BigQuery Data Viewer role at the dataset level instead. Navigate to the dataset in the BigQuery console, click Sharing > Permissions, and add the service account there.
3. Create and download a key
- From the Service Accounts page, click on the service account you just created.
- Go to the Keys tab.
- Click Add Key > Create new key.
- Select JSON as the key type and click Create.
- A JSON file will be downloaded. Store it securely. This file contains credentials that grant access to your BigQuery data.
4. Gather your connection details
You will need the following information when installing the integration:| Input | Where to find it |
|---|---|
| Service Account Key | The base64-encoded contents of the JSON key file from step 3. |
| GCP Project ID | Your project’s ID (not the project number). Find it at the top of the Google Cloud Console or under IAM & Admin > Settings. It looks like my-project-id, not a number. |
| Dataset Name | The name of the BigQuery dataset you want to connect. Find it in the BigQuery console under your project in the left sidebar. |
| Timestamp Column | The name of a TIMESTAMP or DATETIME column in your tables that tracks when rows were last modified (e.g., updated_at, modified_date). This is used for incremental syncing. |
Installing the integration
When you are installing the integration, you will be prompted for the inputs listed above. After providing them, the integration will begin syncing data from your BigQuery dataset.Troubleshooting
Access blocked despite valid credentials
If your GCP project is protected by VPC Service Controls, all external API requests are denied by default, including the BigQuery Storage Read API used by this integration. Ask your GCP administrator to create an ingress rule that allows the service account to accessbigquery.googleapis.com from outside the perimeter.
Missing or filtered data
If columns in your tables use column-level security (Data Catalog policy tags), the service account also needs theFine-Grained Reader role on those policy tags. If your tables use row-level security, rows may be silently filtered. Please ensure the service account is included in the relevant row access policies.
