A newer version is available. For the latest information, see the
current release documentation.
ElasticsearchNodeType
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
ElasticsearchNodeType
editControls the combinations of Elasticsearch node types. TIP: By default, the Elasticsearch node is master eligible, can hold data, and run ingest pipelines. WARNING: Do not set for tiebreaker topologies.
Properties
edit-
data(boolean) - Defines whether this node can hold data (default: false)
-
ingest(boolean) - Defines whether this node can run an ingest pipeline (default: false)
-
master(boolean) - Defines whether this node can be elected master (default: false)
-
ml(boolean) - Defines whether this node can run ml jobs, valid only for versions 5.4.0 or greater (default: false)
Example
edit{
"data" : true,
"ingest" : true,
"master" : true,
"ml" : true
}