embulk-output-bigquery
Embulk output plugin to load/insert data into Google BigQuery using direct insert
Overview
load data into Google BigQuery as batch jobs for big amount of data https://developers.google.com/bigquery/loading-data-into-bigquery
- Plugin type: output
- Resume supported: no
- Cleanup supported: no
- Dynamic table creating: yes
NOT IMPLEMENTED
- insert data over streaming inserts
- for continuous real-time insertions
- Please use other product, like fluent-plugin-bigquery
- https://developers.google.com/bigquery/streaming-data-into-bigquery#usecases
Current version of this plugin supports Google API with Service Account Authentication, but does not support OAuth flow for installed applications.
Configuration
Original options
| name | type | required? | default | description |
|---|---|---|---|---|
| auth_method | string | optional | "private_key" | private_key or compute_engine |
| service_account_email | string | required when auth_method is private_key | Your Google service account email | |
| p12_keyfile_path | string | required when auth_method is private_key | Fullpath of private key in P12(PKCS12) format | |
| sequence_format | string | optional | %03d.%02d | |
| file_ext | string | optional | e.g. ".csv.gz" ".json.gz" | |
| project | string | required | project_id | |
| dataset | string | required | dataset | |
| table | string | required | table name | |
| auto_create_table | boolean | optional | 0 | See below |
| schema_path | string | optional | /path/to/schema.json | |
| prevent_duplicate_insert | boolean | optional | 0 | See below |
| delete_from_local_when_job_end | boolean | optional | 0 | If set to true, delete local file when job is end |
| job_status_max_polling_time | int | optional | 3600 sec | Max job status polling time |
| job_status_max_polling_time | int | optional | 10 sec | Job status polling interval |
| is_skip_job_result_check | boolean | optional | 0 | |
| application_name | string | optional | "Embulk BigQuery plugin" | Anything you like |
Same options of bq command-line tools or BigQuery job's propery
Following options are same as bq command-line tools or BigQuery job's property.
| name | type | required? | default | description |
|---|---|---|---|---|
| source_format | string | required | "CSV" | File type (NEWLINE_DELIMITED_JSON or CSV) |
| max_bad_records | int | optional | 0 | |
| field_delimiter | string | optional | "," | |
| encoding | string | optional | "UTF-8" | UTF-8 or ISO-8859-1 |
| ignore_unknown_values | boolean | optional | 0 | |
| allow_quoted_newlines | boolean | optional | 0 | Set true, if data contains newline characters. It may cause slow procsssing |
Example
out:
type: bigquery
auth_method: private_key # default
service_account_email: ABCXYZ123ABCXYZ123.gserviceaccount.com
p12_keyfile_path: /path/to/p12_keyfile.p12
path_prefix: /path/to/output
file_ext: csv.gz
source_format: CSV
project: your-project-000
dataset: your_dataset_name
table: your_table_name
formatter:
type: csv
header_line: false
encoders:
- {type: gzip}
Authentication
There are two methods supported to fetch access token for the service account.
- Public-Private key pair
- Predefined access token (Compute Engine only)
The examples above use the first one. You first need to create a service account (client ID), download its private key and deploy the key with embulk.
On the other hand, you don't need to explicitly create a service account for embulk when you run embulk in Google Compute Engine. In this second authentication method, you need to add the API scope "https://www.googleapis.com/auth/bigquery" to the scope list of your Compute Engine instance, then you can configure embulk like this.
out:
type: bigquery
auth_method: compute_engine
Table id formatting
table and option accept Time#strftime
format to construct table ids.
Table ids are formatted at runtime
using the local time of the embulk server.
For example, with the configuration below,
data is inserted into tables table_2015_04, table_2015_05 and so on.
out:
type: bigquery
table: table_%Y_%m
Dynamic table creating
When auto_create_table is set to true, try to create the table using BigQuery API.
If table already exists, insert into it.
To describe the schema of the target table, please write schema path.
out:
type: bigquery
auto_create_table: true
table: table_%Y_%m
schema_path: /path/to/schema.json
Data Consistency
When prevent_duplicate_insert is set to true, embulk-output-bigquery generate job ID from md5 hash of file and other options to prevent duplicate data insertion.
job ID = md5(md5(file) + dataset + table + schema + source_format + file_delimiter + max_bad_records + encoding + ignore_unknown_values)
job ID must be unique(including failures). So same data can't insert with same settings.
In other words, you can retry as many times as you like, in case something bad error(like network error) happens before job insertion.
out:
type: bigquery
prevent_duplicate_insert: true
Build
$ ./gradlew gem