Skip to main content

BigQuery

Overview

The BigQuery source supports both Full Refresh and Incremental syncs. You can choose if this connector will copy only the new or updated data, or all rows in the tables and columns you set up for replication, every time a sync is running.

Resulting schema

The BigQuery source does not alter the schema present in your database. Depending on the destination connected to this source, however, the schema may be altered. See the destination's documentation for more details.

Data type mapping

The BigQuery data types mapping:

BigQuery TypeResulting TypeNotes
BOOLBoolean
INT64Number
FLOAT64Number
NUMERICNumber
BIGNUMERICNumber
STRINGString
BYTESString
DATEStringIn ISO8601 format
DATETIMEStringIn ISO8601 format
TIMESTAMPStringIn ISO8601 format
TIMEString
ARRAYArray
STRUCTObject
GEOGRAPHYString

Features

FeatureSupportedNotes
Full Refresh SyncYes
Incremental SyncYes
Change Data CaptureNo
SSL SupportYes

Getting started

Requirements

To use the BigQuery source, you'll need:

  • A Google Cloud Project with BigQuery enabled
  • A Google Cloud Service Account with the "BigQuery User" and "BigQuery Data Editor" roles in your GCP project
  • A Service Account Key to authenticate into your Service Account

See the setup guide for more information about how to create the required resources.

Service account

In order for Airbyte to sync data from BigQuery, it needs credentials for a Service Account with the "BigQuery User" and "BigQuery Data Editor" roles, which grants permissions to run BigQuery jobs, write to BigQuery Datasets, and read table metadata. We highly recommend that this Service Account is exclusive to Airbyte for ease of permissioning and auditing. However, you can use a pre-existing Service Account if you already have one with the correct permissions.

The easiest way to create a Service Account is to follow GCP's guide for Creating a Service Account. Once you've created the Service Account, make sure to keep its ID handy as you will need to reference it when granting roles. Service Account IDs typically take the form <account-name>@<project-name>.iam.gserviceaccount.com

Then, add the service account as a Member in your Google Cloud Project with the "BigQuery User" role. To do this, follow the instructions for Granting Access in the Google documentation. The email address of the member you are adding is the same as the Service Account ID you just created.

At this point you should have a service account with the "BigQuery User" project-level permission.

Service account key

Service Account Keys are used to authenticate as Google Service Accounts. For Airbyte to leverage the permissions you granted to the Service Account in the previous step, you'll need to provide its Service Account Keys. See the Google documentation for more information about Keys.

Follow the Creating and Managing Service Account Keys guide to create a key. Airbyte currently supports JSON Keys only, so make sure you create your key in that format. As soon as you created the key, make sure to download it, as that is the only time Google will allow you to see its contents. Once you've successfully configured BigQuery as a source in Airbyte, delete this key from your computer.

Setup the BigQuery source in Airbyte

You should now have all the requirements needed to configure BigQuery as a source in the UI. You'll need the following information to configure the BigQuery source:

  • Project ID
  • Default Dataset ID [Optional]: the schema name if only one schema is interested. Dramatically boost source discover operation.
  • Credentials JSON: the contents of your Service Account Key JSON file

Once you've configured BigQuery as a source, delete the Service Account Key from your computer.

CHANGELOG

source-bigquery

VersionDatePull RequestSubject
0.4.22024-02-2235503Source BigQuery: replicating RECORD REPEATED fields
0.4.12024-01-2434453bump CDK version
0.4.02023-12-1833484Remove LEGACY state
0.3.02023-06-2627737License Update: Elv2
0.2.32022-10-1315535Update incremental query to avoid data missing when new data is inserted at the same time as a sync starts under non-CDC incremental mode
0.2.22022-09-2216902Source BigQuery: added user agent header
0.2.12022-09-1415668Wrap logs in AirbyteLogMessage
0.2.02022-07-2614362Integral columns are now discovered as int64 fields.
0.1.92022-07-1414574Removed additionalProperties:false from JDBC source connectors
0.1.82022-06-1713864Updated stacktrace format for any trace message errors
0.1.72022-04-1111484BigQuery connector escape column names
0.1.62022-02-1410256Add -XX:+ExitOnOutOfMemoryError JVM option
0.1.52021-12-238434Update fields in source-connectors specifications
0.1.42021-09-30#6524Allow dataset_id null in spec
0.1.32021-09-16#6051Handle NPE dataset_id is not provided
0.1.22021-09-16#6135🐛 BigQuery source: Fix nested structs
0.1.12021-07-28#4981🐛 BigQuery source: Fix nested arrays
0.1.02021-07-22#4457🎉 New Source: Big Query.