Create a connection to load data from Google BigQuery tables and views.
Property | Required | Description |
---|---|---|
sql.bigquery.projectId | Yes | The GCP project ID. Find your project ID in the Google Cloud console. |
sql.bigquery.jsonKey | Yes | The string-encoded Google service account key. Ensure the correct JSON key format. See Google’s documentation for creating a service account key. |
Property | Required | Description |
---|---|---|
sql.queryTemplate | Yes | The SQL query template for fetching data from BigQuery. |
sql.timeColumnName | Yes | The time column used for filtering data while ingesting. |
sql.timeColumnFormat | Yes | The datetime format of the time column used for filtering. |
sql.startTime | Yes | The start time for data extraction. This value is dynamically used in the $START placeholder of sql.queryTemplate . It should match the specified time column format. |
sql.endTime | Yes | The end time for data extraction. This value is dynamically used in the $END placeholder of sql.queryTemplate . It should match the specified time column format. |