External OpenSearch
For systems with high load or when running Axon Ivy in a cluster, you may need to run an external OpenSearch instance. To do so, download and install OpenSearch according to the docs of OpenSearch.
We only support one version of OpenSearch which is defined in system requirements.
To integrate the Axon Ivy Engine with an external OpenSearch instance you need configure the ivy.yaml.
1# External Search Engine Server
2# [engineDir]/configuration/ivy.yaml
3SearchEngine:
4 ExternalServer:
5 # URL to the external opensearch server
6 Url: "http://my-opensearch-server"
7
8 # Name and Password if search server is protected
9 #UserName: "admin"
10 #Password: "1234"