Last active
August 29, 2015 14:18
-
-
Save shun0102/de44bf83c00d748576d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
embulk guess guess.yml -g jsonl -o guess_output.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in: | |
type: file | |
path_prefix: ./test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in: | |
type: file | |
path_prefix: ./test | |
parser: | |
charset: UTF-8 | |
newline: CRLF | |
type: jsonl | |
delimiter: ',' | |
quote: '' | |
escape: '' | |
skip_header_lines: 0 | |
columns: | |
- {name: c0, type: string} | |
- {name: c1, type: string} | |
schema: | |
- {name: name, type: string} | |
- {name: age, type: long} | |
exec: {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "name" : "apple", "age" : 10 } | |
{ "name" : "banana", "age" : 16 } | |
{ "name" : "orange", "age" : 17 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment