External Elasticsearch

For systems with high load or when running Axon Ivy in a cluster, you may need to run an external Elasticsearch instance. To do so, download and install Elasticsearch according to the docs of Elasticsearch.

We only support one version of Elasticsearch which is defined in system requirements.

To integrate the Axon Ivy Engine with an external Elasticsearch instance you need configure the ivy.yaml.

 1# External Elasticsearch Server
 2# [engineDir]/configuration/ivy.yaml 
 3Elasticsearch:
 4  ExternalServer:
 5    # URL to the external elasticsearch server
 6    Url: "http://my-elasticsearch-server"
 7
 8    # Name and Password if Elasticsearch server is protected
 9    #UserName: "admin"    
10    #Password: "1234"