Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 849 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 849 Bytes

CSV to StdOut

Load data from a CSV file in a GZIP file and output it to stdout.

example-01-00.png

Generate the complete configuration

embulk guess seed.yml -o config.yml

Run embulk with new configurtation file

embulk run config.yml

Just by changing the path_prefix in seed.yml to './data/sample_' from './data/compressed_' we can see the change in the configuration file generated. A decoder of type gzip is removed from the configuration by finding out that the file is of type CSV.

When CSV file is detected:
example-01-01.png

When GZip file is detected:
example-01-02.png