Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sonots/embulk-filter-java_pass
embulk filter plugin written in java to just pass records (for benchmark)
https://github.com/sonots/embulk-filter-java_pass
Last synced: about 2 months ago
JSON representation
embulk filter plugin written in java to just pass records (for benchmark)
- Host: GitHub
- URL: https://github.com/sonots/embulk-filter-java_pass
- Owner: sonots
- License: mit
- Created: 2015-06-22T15:16:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-15T07:41:24.000Z (over 9 years ago)
- Last Synced: 2024-10-13T08:08:51.848Z (3 months ago)
- Language: Java
- Homepage:
- Size: 223 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Java Pass filter plugin for Embulk
```
$ embulk gem install embulk-input-random
$ embulk run random.yml
``````
$ ./gradlew gem
$ embulk run -I lib example.yml
2015-06-23 11:24:15.729 +0900: Embulk v0.6.12
2015-06-23 11:24:18.674 +0900 [INFO] (transaction): Listing local files at directory '.' filtering filename by prefix 'sample.000.00'
2015-06-23 11:24:18.688 +0900 [INFO] (transaction): Loading files [sample.000.00.csv]
2015-06-23 11:24:18.828 +0900 [INFO] (transaction): {done: 0 / 1, running: 0}
2015-06-23 11:24:18.910 +0900 [WARN] (task-0000): Skipped line 2 (java.lang.NumberFormatException: For input string: "id"): id,name,score
2015-06-23 11:24:19.583 +0900 [INFO] (transaction): {done: 1 / 1, running: 0}
2015-06-23 11:24:19.612 +0900 [INFO] (main): Committed.
2015-06-23 11:24:19.612 +0900 [INFO] (main): Next config diff: {"in":{"last_path":"sample.000.00.csv"},"out":{}}
``````
Committed - Loading file = 0.924 sec
```Compare with Ruby version: https://github.com/sonots/embulk-filter-ruby-pass