Search index: Elasticsearch
Elasticsearch is supported from version 7.x using the elasticSearch
connector.
Embedded Elasticsearch
Linkurious Enterprise ships with an embedded Elasticsearch server (version 7.16.3).
ATTENTION: The internal Elasticsearch is not intended to be used for graph databases > 50,000,000 nodes. Though indexing 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 indexing strategy for POCs or small deployments.
To use the Linkurious Enterprise embedded Elasticsearch instance, set the following index
configurations keys:
vendor
must beelasticSearch
host
must be"127.0.0.1"
port
must 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
:true
to connect to Elasticsearch via HTTPSuser
: Elasticsearch username (if you are using X-Pack Security, a.k.a ElasticShield)password
: Elasticsearch passwordforceReindex
:true
to re-index the data-source each time Linkurious Enterprise startsskipEdgeIndexing
:true
to skip edges indexing (edges won't be searchable)analyzer
(default:"standard"
): The custom analyzer aimed at analyzing a specific language text. (see available language analysers)numberOfShards
(default:1
): The number of shards each index has. This parameter must be set before the graph database is indexed for the first time.numberOfReplicas
(default:1
): The number of replica each shard has. This parameter must be set before the graph database is indexed for the first time.
Example configuration:
{
"dataSources": [
{
"graph": {
"vendor": "neo4j",
"url": "http://127.0.0.1:7474"
},
"index": {
"vendor": "elasticSearch",
"host": "192.168.1.122",
"port": 9200,
"skipEdgeIndexing": true
}
}
]
}
Enabling search on numerical and date properties
Please check here how to configure search on numerical and date properties.