Sha256: ca86fb2b831cb94f50c4a56dc3d747bfa66e0c7473961d8b772223f7760cac7f
Contents?: true
Size: 988 Bytes
Versions: 3
Compression:
Stored size: 988 Bytes
Contents
# Elasticsearch output plugin for Embulk ## Overview * **Plugin type**: output * **Rollback supported**: no * **Resume supported**: no * **Cleanup supported**: no ## Configuration - **nodes**: list of nodes. nodes are pairs of host and port (list, required) - **cluster_name**: name of the cluster (string, default is "elasticsearch") - **index**: index name (string, required) - **index_type**: index type (string, required) - **id**: document id column (string, default is null) - **bulk_actions**: Sets when to flush a new bulk request based on the number of actions currently added. (int, default is 1000) - **bulk_size**: Sets when to flush a new bulk request based on the size of actions currently added. (long, default is 5242880) - **concurrent_requests**: concurrent_requests (int, default is 5) ## Example ```yaml out: type: elasticsearch nodes: - {host: localhost, port: 9300} index: <index name> index_type: <index type> ``` ## Build ``` $ ./gradlew gem ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
embulk-output-elasticsearch-0.1.8 | README.md |
embulk-output-elasticsearch-0.1.7 | README.md |
embulk-output-elasticsearch-0.1.6 | README.md |