No commit activity in last 3 years
No release in over 3 years
Embulk Fileter Plugin Convert
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.8
 Project Readme

Embulk filter plugin for data convert

data convert

no filter:

id,account,time,comment
1,32864,2015-01-27 19:23:49.000000 +0000,embulk
2,14824,2015-01-27 19:01:23.000000 +0000,embulk jruby
3,27559,2015-01-28 02:20:02.000000 +0000,embulk core
4,11270,2015-01-29 11:54:36.000000 +0000,Embulk "csv" parser plugin

filter convert: comment,id,time

comment,id,time,
embulk,32864,2015-01-27 19:23:49.000000 +0000
embulk jruby,14824,2015-01-27 19:01:23.000000 +0000
embulk core,27559,2015-01-28 02:20:02.000000 +0000

Configuration

  • columns need column name and type (array)

Example

filters:
  - type: convert
    columns:
    - {name: comment, type: string}
    - {name: account, type: long}
    - {name: time, type: timestamp}