Skip to main content

types

ElasticsearchConfig7

Elasticsearch 7.x supported configuration options are listed here.

Detailed description for each set of options is available in Elasticsearch documentation.

Any options that are not listed here are not supported.

maxClauseCount : google.protobuf.Int64Value

The maximum number of clauses a boolean query can contain.

The limit is in place to prevent searches from becoming too large and taking up too much CPU and memory. It affects not only Elasticsearch's bool query, but many other queries that are implicitly converted to bool query by Elastcsearch.

Default value: 1024.

See in-depth description in Elasticsearch documentation.

fielddataCacheSize : string

The maximum percentage or absolute value (10%, 512mb) of heap space that is allocated to field data cache.

All the field values that are placed in this cache, get loaded to memory in order to provide fast document based access to those values. Building the field data cache for a field can be an expensive operations, so its recommended to have enough memory for this cache, and to keep it loaded.

Default value: unbounded.

See in-depth description in Elasticsearch documentation.

reindexRemoteWhitelist : string

Remote hosts for reindex have to be explicitly allowed in elasticsearch.yml using the reindex.remote.whitelist property. It can be set to a comma delimited list of allowed remote host and port combinations. Scheme is ignored, only the host and port are used.

reindexSslCaPath : string

List of paths to PEM encoded certificate files that should be trusted.

See in-depth description in Elasticsearch documentation

ElasticsearchConfigSet7

Elasticsearch 7.x data node configuration.

effectiveConfig : ElasticsearchConfig7

Effective settings for an Elasticsearch cluster (a combination of settings defined in user_config and default_config).

userConfig : ElasticsearchConfig7

User-defined settings for an Elasticsearch cluster.

defaultConfig : ElasticsearchConfig7

Default settings for an Elasticsearch cluster.