https://github.com/smdmts/embulk-filter-json_key_joiner
https://github.com/smdmts/embulk-filter-json_key_joiner
embulk embulk-filter-plugin
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/smdmts/embulk-filter-json_key_joiner
- Owner: smdmts
- License: mit
- Created: 2017-08-31T02:37:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-31T10:12:50.000Z (almost 9 years ago)
- Last Synced: 2025-12-01T06:02:42.708Z (7 months ago)
- Topics: embulk, embulk-filter-plugin
- Language: Scala
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Json Key Joiner filter plugin for Embulk
Join to json default key-value to defined JSON Type column.
* **Plugin type**: filter
## Configuration
- **key_value**: joining key value (hash Map[String,String], required)
- **json_column_name**: processing json column (string, required)
## Example
```yaml
filters:
- type: json_key_joiner
json_column_name: record # JSON Type Column
key_value:
append_key: append_value
```
- before json
```
{ "key1":"value1" }
```
- after json
```
{ "key1":"value1" , "append_key":"append_value" }
```
## Build
```
$ ./gradlew gem
```