Google Cloud StorageWrite

Google Cloud StorageWrite

Certified

Stream a file to BigQuery via Storage Write API

Reads a file from Kestra internal storage and writes rows with the BigQuery Storage Write API. Supports DEFAULT, COMMITTED, or PENDING streams (commit required for PENDING). Requires the destination table to exist.

yaml
type: io.kestra.plugin.gcp.bigquery.StorageWrite
yaml
id: gcp_bq_storage_write
namespace: company.team

tasks:
  - id: read_data
    type: io.kestra.plugin.core.http.Download
    uri: https://dummyjson.com/products/1

  - id: storage_write
    type: io.kestra.plugin.gcp.bigquery.StorageWrite
    from: "{{ outputs.read_data.uri }}"
    destinationTable: "my-project.my_dataset.my_table"
    writeStreamType: DEFAULT
Properties

The table where to load data

The table must be created before.

Default1000

The number of records to send on each query

The fully-qualified URIs that point to source data

The GCP service account to impersonate

The geographic location where the dataset should reside

This property is experimental and might be subject to change or removed.

See Dataset Location

Reference (ref) of the pluginDefaults to apply to this task.

The GCP project ID

SubTypestring
Default["https://www.googleapis.com/auth/cloud-platform"]

The GCP scopes to be used

The GCP service account

DefaultDEFAULT
Possible Values
DEFAULTCOMMITTEDPENDING

The type of write stream to use

Formatdate-time

Commit time reported by BigQuery, only on PENDING writeStreamType

Rows count

Rows count reported by BigQuery, only on PENDING writeStreamType

Rows count.

Rows count reported by BigQuery, only on PENDING writeStreamType.