Skip to main content

Google BigQuery - Upload File to Table from Shipyard

Overview​

Upload one or more CSV files to any table in BigQuery. The match type selected greatly affects how this Blueprint works. With the file data, you can:

  • Append Data - Add the contents of your file to the end of the table.
  • Overwrite Data - Write over the entire contents of table with the contents of your file.

Schema​

Column names are inferred from the header row of your CSV file. If the table already exists, the header values are matched to the table column names. The header names must match the existing column names in your table, otherwise the Vessel will error. The preferred method of providing a schema is an array of JSON, see this example from BigQuery's documentation:

[
{
"name": string,
"type": string,
"mode": string,
"fields": [
{
object (TableFieldSchema)
}
],
"description": string,
"policyTags": {
"names": [
string
]
},
"maxLength": string,
"precision": string,
"scale": string,
"collation": string,
"defaultValueExpression": string,
"roundingMode": string
},
{
"name": string,
"type": string,
...
}
]

For legacy purposes, this blueprint also supports specificying a schema as an array of arrays like so: [['Column1', 'String'], ['Column2', 'Int64']]

Data Loading​

The data is copied from the provided file to the target endpoint in BigQuery. For larger datasets, we recommend running a batch loading process.

In all instances, if the table name does not already exist, a new table will be created with datatypes inferred from the CSV contents or specified through the Schema input.

Note: This Vessel cannot be used to upload a local file from your computer.

Recommended Setup:

  1. A Vessel built with this Blueprint should typically run after a Vessel that either downloads a file to Shipyard or generates a file with code.

Variables​

NameReferenceTypeRequiredDefaultOptionsDescription
Dataset NameBIGQUERY_DATASET_NAMEAlphanumericβœ…--Name of the dataset where the BigQuery table lives.
Table NameBIGQUERY_TABLE_NAMEAlphanumericβœ…--Name of the BigQuery table to upload the dataset to.
Shipyard File Name Match TypeBIGQUERY_SOURCE_FILE_NAME_MATCH_TYPESelectβœ…exact_matchExact Match: exact_match

Regex Match: regex_match

Determines if the text in "Local File Name" will look for one file with exact match, or multiple files using regex.
Shipyard File NameBIGQUERY_SOURCE_FILE_NAMEAlphanumericβœ…--Name of the target CSV file on Shipyard. Can be regex if "Match Type" is set accordingly.
Shipyard Folder NameBIGQUERY_SOURCE_FOLDER_NAMEAlphanumericβž–--Name of the local folder on Shipyard to upload the target file from. If left blank, will look in the home directory.
Upload MethodBIGQUERY_UPLOAD_TYPESelectβœ…appendAppend Data: append

Overwrite Data: overwrite

Determines how the data in your file(s) will be added to the table.
Service AccountGOOGLE_APPLICATION_CREDENTIALSPasswordβœ…--JSON from a Google Cloud Service account key.
SchemaBIGQUERY_SCHEMAAlphanumericβž–--Schema for the uploaded dataset, formatted as JSON or a double-nested list. If left blank, it will be auto-detected.
Header Rows to SkipBIGQUERY_SKIP_HEADER_ROWSIntegerβž–0-Number of header rows to skip when inserting data. Only required if provided custom schema.
Quoted NewlineBIGQUERY_QUOTED_NEWLINEBooleanβœ…FALSE-Allow quoted data containing newline characters

YAML​

Below is the YAML template for this Blueprint and can be used in the Fleet YAML Editor.

source:
blueprint: Google BigQuery - Upload File to Table from Shipyard
inputs:
BIGQUERY_DATASET_NAME: null ## REQUIRED
BIGQUERY_TABLE_NAME: null ## REQUIRED
BIGQUERY_SOURCE_FILE_NAME_MATCH_TYPE: exact_match ## REQUIRED
BIGQUERY_SOURCE_FILE_NAME: null ## REQUIRED
BIGQUERY_SOURCE_FOLDER_NAME: null
BIGQUERY_UPLOAD_TYPE: append ## REQUIRED
GOOGLE_APPLICATION_CREDENTIALS: null ## REQUIRED
BIGQUERY_SCHEMA: null
BIGQUERY_SKIP_HEADER_ROWS: 0
BIGQUERY_QUOTED_NEWLINE: 'false'
type: BLUEPRINT
guardrails:
retry_count: 1
retry_wait: 0h0m0s
runtime_cutoff: 1h0m0s
exclude_exit_code_ranges:
- '101'
- '102'
- '103'
- '104'
- '105'
- '106'
- '200'
- '203'
- '204'
- '205'
- '206'
- '207'
- '208'
- '209'