Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenchan/embulk-output-amazon_cloudsearch
embulk output plugin for Amazon CloudSearch
https://github.com/kenchan/embulk-output-amazon_cloudsearch
Last synced: about 1 month ago
JSON representation
embulk output plugin for Amazon CloudSearch
- Host: GitHub
- URL: https://github.com/kenchan/embulk-output-amazon_cloudsearch
- Owner: kenchan
- License: mit
- Created: 2019-05-09T11:29:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-28T12:00:56.000Z (almost 4 years ago)
- Last Synced: 2024-12-01T06:54:37.450Z (about 1 month ago)
- Language: Ruby
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Amazon Cloudsearch output plugin for Embulk
Embulk output plugin to insert data into Amazon CloudSearch
## Overview
* **Plugin type**: output
* **Load all or nothing**: no
* **Resume supported**: no
* **Cleanup supported**: no## Configuration
- **endpoint**: Amazon CloudSearch Document Endpoint URL (string, required)
- **id_column**: document id column (string, required)
- **upload_columns**: index columns (string, required)
- **batch_size**: number of records in one bulk request (int, default: 1000)
- **stub_response**: CloudSearch API Client stubbing (boolean, default: `false`)## Example
```yaml
out:
type: amazon_cloudsearch
endpoint: https://cloudsearch.example.com/endpoint
id_column: id
upload_columns:
- title
- timestamp
```## Build
```
$ rake
```