Google BigQuery

Luden supports BigQueryarrow-up-right as a destination. For more information about BigQuery see docsarrow-up-right. BigQuery destination can work in stream and batch modes. In stream mode Luden uses BigQuery Streaming APIarrow-up-right. In batch mode Luden writes incoming events in formatted file on the Google Cloud Storage and creates a loading jobarrow-up-right to store data from GCP files into BigQuery.

Configuration

BigQuery destination config consists of the following schema:

destinations:
  my_bigquery:
    type: bigquery
    google:
      gcs_bucket: google_cloud_storage_bucket
      bq_project: big_query_project
      bq_dataset: big_query_dataset
      key_file: path_to_bqkey.json # or json string of key e.g. "{"service_account":...}"

Last updated