Skip to content

JamesTryand/elasticsearch-river-eventstore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Eventstore River Plugin for ElasticSearch

The Eventstore River plugin allows index events from eventstore into elasticsearch.

In order to install the plugin, simply run: bin/plugin -install elasticsearch/elasticsearch-river-eventstore/0.1.0.

To set up Eventstore River plugin, run

curl -XPUT 'localhost:9200/_river/eventstore/_meta' -d '
{
    "type": "eventstore",
    "eventstore": {
        "host": "172.21.200.240",
        "port": 1113,
        "username": "admin",
        "password": "changeit",
        "stream": "EventCapture"
    },
    "index": {
        "bulk_size_bytes": 10485760,
        "bulk_timeout": "10ms"
    }
}'

The river will listen to the stream defined in the configuration and automatically index the event into elasticsearch.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages