Sha256: 14e92c6dc8f0480b45e36effe58d525d348aa95e075e1c4156b97ec17320f6e6
Contents?: true
Size: 815 Bytes
Versions: 1
Compression:
Stored size: 815 Bytes
Contents
# Jsonl parser plugin for Embulk TODO: Write short description here and embulk-parser-jsonl.gemspec file. ## Overview * **Plugin type**: parser * **Guess supported**: yes ## Configuration - **type**: specify this parser as jsonl - **schema**: specify column name and type (array, required) ## Example ```yaml in: type: any file input plugin type parser: type: jsonl schema: - {name: first_name, type: string} - {name: last_name, type: string} - {name: age, type: long} ``` (If guess supported) you don't have to write `parser:` section in the configuration file. After writing `in:` section, you can let embulk guess `parser:` section using this command: ``` $ embulk install embulk-parser-jsonl $ embulk guess -g jsonl config.yml -o guessed.yml ``` ## Build ``` $ rake ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
embulk-parser-jsonl-0.0.1 | README.md |