Search index: Configuring Elasticsearch
Elasticsearch is supported from version 6.x using the elasticSearch connector.
Embedded Elasticsearch
Linkurious Enterprise ships with an embedded Elasticsearch server (version 7.10.2).
ATTENTION: The internal Elasticsearch is not intended to be used for graph databases > 50,000,000 nodes. Though indexation and search performance are ultimately dependent on hardware limitations, it has been configured to prevent horizontal scaling and so is not an efficient choice for large DBs. It is meant instead as a quick indexation strategy for POCs or small deployments.
To use the Linkurious Enterprise embedded Elasticsearch instance, set the following index configurations keys:
vendormust beelasticSearchhostmust be"127.0.0.1"portmust be9201
Example configuration:
"dataSources": "graph": "vendor": "neo4j" "url": "http://127.0.0.1:7474" "index": "vendor": "elasticSearch" "host": "127.0.0.1" "port": 9201 Configuring Elasticsearch
Search connector elasticSearch supports the following options:
host(required): Elasticsearch server hostport(required): Elasticsearch server port (standard is9200)https:trueto connect to Elasticsearch via HTTPSuser: Elasticsearch username (if you are using X-Pack Security, a.k.a ElasticShield)password: Elasticsearch passwordforceReindex:trueto re-index the data-source each time Linkurious Enterprise startsskipEdgeIndexation:trueto skip edges indexation (edges won't be searchable)analyzer(default:"standard"): The custom analyzer aimed at analyzing a specific language text. (see available language analysers)
Example configuration:
"dataSources": "graph": "vendor": "neo4j" "url": "http://127.0.0.1:7474" "index": "vendor": "elasticSearch" "host": "192.168.1.122" "port": 9200 "skipEdgeIndexation": true Enabling search on numerical and date properties
Please check here how to configure search on numerical and date properties.