Shows how to disable CCS from dedicated master/data (#26860)

This is really just the last bit of the OSS component of https://github.com/elastic/elasticsearch/issues/25210
This commit is contained in:
Shane Connelly 2017-10-03 06:15:30 -07:00 committed by GitHub
parent a292740b9e
commit b33c444db5

View File

@ -104,10 +104,12 @@ To create a dedicated master-eligible node, set:
node.master: true <1>
node.data: false <2>
node.ingest: false <3>
search.remote.connect: false <4>
-------------------
<1> The `node.master` role is enabled by default.
<2> Disable the `node.data` role (enabled by default).
<3> Disable the `node.ingest` role (enabled by default).
<4> Disable cross-cluster search (enabled by default).
ifdef::include-xpack[]
NOTE: These settings apply only when {xpack} is not installed. To create a
@ -194,10 +196,12 @@ To create a dedicated data node, set:
node.master: false <1>
node.data: true <2>
node.ingest: false <3>
search.remote.connect: false <4>
-------------------
<1> Disable the `node.master` role (enabled by default).
<2> The `node.data` role is enabled by default.
<3> Disable the `node.ingest` role (enabled by default).
<4> Disable cross-cluster search (enabled by default).
ifdef::include-xpack[]
NOTE: These settings apply only when {xpack} is not installed. To create a