No commit activity in last 3 years
No release in over 3 years
Dumps records to Bigobject.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.10.6
>= 0.8.9
>= 10.5.0

Runtime

>= 1.8.0
 Project Readme

Bigobject output plugin for Embulk

BigObject output plugins for Embulk loads records to BigObject.

Overview

  • Plugin type: output
  • Load all or nothing: no
  • Resume supported: no
  • Cleanup supported: yes

Installation

embulk gem install embulk-output-bigobject

Configuration

  • host: database host name (string, default: localhost)
  • restport: database port number (integer, default: 9090)
  • ncport: database port number (integer, default: 9091)
  • table: database table name (string, required)

Example

out:
  type: bigobject
  host: localhost
  table: mytest
  column_options:
    - {name: "col1", type: 'INT64', is_key: true}
    - {name: "col2", type: 'BYTE', is_key: true}
    - {name: "col3", type: 'DATE32'}
    - {name: "col4", type: 'STRING(16)'}

Build

$ rake