ElasticsearchNodeTypeedit

Controls 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.

Propertiesedit

data (boolean)
Defines whether this node can hold data (default: true)
ingest (boolean)
Defines whether this node can run an ingest pipeline (default: true)
master (boolean)
Defines whether this node can be elected master (default: true)
ml (boolean)
Defines whether this node can run ml jobs, valid only for versions 5.4.0 or greater (default: false)

Exampleedit

{
   "data" : true,
   "ingest" : true,
   "master" : true,
   "ml" : true
}