0
0

More than 3 years have passed since last update.

12rep - EmbulkでファイルをGCSへアップロード

Posted at

GCSへファイルをアップロード

使うEmbulkプラグイン

  • URL:embulk-parser-none
  • 何も parse せず、payload カラム(デフォルト)として保存するだけの便利プラグイン

ローカルファイルからGCSサンプル

in:
  type: file
  path_prefix: ./{ファイル名}.tar.gz
  parser:
    type: none
    column_name: payload
out:
  type: gcs
  bucket: {GCSバケット名}
  path_prefix: ./{ファイル名}.tar.gzip
  file_ext: .gzip
  sequence_format: ""
  auth_method: json_key
  json_keyfile: {サービスアカウントで発行したJson Key}.json
  formatter:
    type: csv
    delimiter: 0
    quote_policy: NONE
    header_line: false
  encoders:
    - {type: gzip}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0