Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kakoni/embulk-input-pipe
https://github.com/kakoni/embulk-input-pipe
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kakoni/embulk-input-pipe
- Owner: kakoni
- Created: 2022-03-02T12:45:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-02T13:48:15.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T14:41:39.895Z (about 2 months ago)
- Language: Java
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Piped input plugin for Embulk
This plugin reads from standard input.
## Overview
* **Plugin type**: file input
* **Resume supported**: yes (no parallelism)## Example
```yaml
in:
type: pipe
parser:
type: csv
columns:
- {name: a, type: string}
- {name: b, type: string}
``````bash
echo "1,2" | embulk run example.yml
```## Build
```
$ ./gradlew gem
```