Skip to content

Siddhi Store Elasticsearch 3.2.0 Release

Compare
Choose a tag to compare
@mohanvive mohanvive released this 05 Dec 16:12
· 21 commits to master since this 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