Siddhi Store Elasticsearch 3.2.0 Release
This Release is compatible with Siddhi 5.x.x
Overview
Siddhi Store Elasticsearch 3.2.0 release introduces support to add custom JSON documents into elasticsearch indexes
Highlights
- Support to add custom JSON documents into elasticsearch indexes. Implemented a sink for Elasticsearch to support this (#41)
@sink(type = 'elasticsearch', host = '172.17.0.2', port = '9200',
index.name = 'stock_index',
@map(type = 'json',
@payload(""" {
"StockData":{
"Symbol":"{{symbol}}",
"Price":{{price}},
"Volume":{{volume}}
}
} """)))
define stream stock_stream(symbol string, price float, volume long);
Complete Changes
Please find the complete changes here
Download
Download the release from here