Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sakama/embulk-input-soracom_harvest
Embulk plugin that loads records from SORACOM Harvest.
https://github.com/sakama/embulk-input-soracom_harvest
embulk embulk-input-plugin embulk-plugin soracom-harvest
Last synced: 26 days ago
JSON representation
Embulk plugin that loads records from SORACOM Harvest.
- Host: GitHub
- URL: https://github.com/sakama/embulk-input-soracom_harvest
- Owner: sakama
- License: mit
- Created: 2016-12-08T08:34:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-22T15:04:29.000Z (almost 8 years ago)
- Last Synced: 2024-04-26T18:06:31.731Z (7 months ago)
- Topics: embulk, embulk-input-plugin, embulk-plugin, soracom-harvest
- Language: Ruby
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SORACOM Harvest input plugin for Embulk
[SORACOM Harvest](https://soracom.jp/services/harvest/) is the data store service to store the data collected from IoT devices.
This plugin allows you to load data from SORACOM Harvest and load into other data store and RDBMS with other [Embulk plugins](http://www.embulk.org/plugins/).## Overview
* **Plugin type**: input
* **Resume supported**: yes
* **Cleanup supported**: yes
* **Guess supported**: yes## Configuration
- **auth_key_id**: AUTH_KEY that you can get at SORACOM user console (string, required)
- **auth_key**: AUTH_KEY_ID that you can get at SORACOM user console (string, required)
- **target**: 'harvest' or 'sims'(string, default: 'harvest')
- **filter**: filter to when get SIMs(string, default: `null`)
- **tag_value_match_mode**: Tag search mode `exact` or `prefix` (string, optional, default: `exact`)
- **start_datetime**: get data time is after this value (works only when target is 'harvest')
- **end_datetime**: get data time is after this value (works only when target is 'harvest')
- **retry_limit**: Try to retry this times (integer, default: 5)
- **retry_initial_wait_sec**: Wait seconds for exponential backoff initial value (integer, default: 2)
- **endpoint**: endpoint url of SORACOM API server. e.g. "https://api.soracom.io/v1" (string, default: `null`)## Example
```yaml
in:
type: soracom_harvest
auth_key_id: keyId-ABCDEFGHIJKLMNOPQRSTUVWXYZ
auth_key: secret-abcdefghijklmnopqrstuvwxyz
tartet: harvest
filter: status: active|ready
start_datetime: '2016-11-13 06:13:12.034 +0000'
end_datetime: '2016-12-21 09:00:14.042 +0000'
```# Usage
1. Please configure minimum seed config.
2. Run `embulk guess /path/to/seed.yml -o /path/to/config.yml`.
* If you don't have registered SIMs, guess doesn't work.
* If you don't have records at Harvest, guess doesn't work.
3. Run `embulk preview /path/to/config.yml`
4. Run `embulk run /path/to/config.yml`### filter
You can filter SIMs when get data by filter option.
This plugin doesn't support multiple filter condition like 'AND' or 'OR'.
#### IMSI
```yaml
filter: imsi: 440123456789012
```#### MSISDN
```yaml
filter: msisdn: 811234567890
```#### Status
```yaml
filter: status: active
``````yaml
filter: status: active|ready
```status value can be taken (active, inactive, ready, instock, shipped, suspended, terminated).
Also accepts multiple vaules separated with `|`
#### Speed class
```yaml
filter: speed_class: s1.minimum
``````yaml
filter: speed_class: s1.minimum|s1.slow
```#### Tag
```yaml
filter: tag_name: tag_value
tag_value_match_mode: exact # or 'prefix'
```You can set `tag_value_match_mode`. This option can be taken (exact, prefix).
### FAQ
* Q1. I stores data at SORACOM Harvest with **JSON** format and want to expand its columns.
* A. Please use [embulk-filter_expand_json](https://github.com/civitaspo/embulk-filter-expand_json)
* Q2. I want to filter by value with more complex conditions like SQL.
* A. Please use [embulk-filter-row](https://github.com/sonots/embulk-filter-row)
* Q3. Want to drop column.
* A. Please use [embulk-filter-column](https://github.com/sonots/embulk-filter-column)
* Q4. Want to add time column like current time.
* A. Please use [embulk-filter-add_time](https://github.com/treasure-data/embulk-filter-add_time)
## Build
```
$ rake
```## Development
```
$ git clone [email protected]:sakama/embulk-input-soracom_harvest.git
$ cd embulk-input-soracom_harvest
$ embulk bundle install --path vendor/bundle
$ embulk run -I ./lib /path/to/config.yml
```