Reflect cross-cluster search in "dedicated" terminology (#23771)

* Reflects cross-cluster search in dedicated node settings

* Fix space issue
This commit is contained in:
Shane Connelly 2017-03-27 23:14:34 -04:00 committed by GitHub
parent 4f2dfb6819
commit 16a8d5245f
1 changed files with 5 additions and 1 deletions

View File

@ -209,10 +209,12 @@ To create a dedicated ingest node, set:
node.master: false <1> node.master: false <1>
node.data: false <2> node.data: false <2>
node.ingest: true <3> node.ingest: true <3>
search.remote.connect: false <4>
------------------- -------------------
<1> Disable the `node.master` role (enabled by default). <1> Disable the `node.master` role (enabled by default).
<2> Disable the `node.data` role (enabled by default). <2> Disable the `node.data` role (enabled by default).
<3> The `node.ingest` role is enabled by default. <3> The `node.ingest` role is enabled by default.
<4> Disable cross-cluster search (enabled by default).
[float] [float]
[[coordinating-only-node]] [[coordinating-only-node]]
@ -235,17 +237,19 @@ acknowledgement of cluster state updates from every node! The benefit of
coordinating only nodes should not be overstated -- data nodes can happily coordinating only nodes should not be overstated -- data nodes can happily
serve the same purpose. serve the same purpose.
To create a coordinating only node, set: To create a dedicated coordinating node, set:
[source,yaml] [source,yaml]
------------------- -------------------
node.master: false <1> node.master: false <1>
node.data: false <2> node.data: false <2>
node.ingest: false <3> node.ingest: false <3>
search.remote.connect: false <4>
------------------- -------------------
<1> Disable the `node.master` role (enabled by default). <1> Disable the `node.master` role (enabled by default).
<2> Disable the `node.data` role (enabled by default). <2> Disable the `node.data` role (enabled by default).
<3> Disable the `node.ingest` role (enabled by default). <3> Disable the `node.ingest` role (enabled by default).
<4> Disable cross-cluster search (enabled by default).
[float] [float]
== Node data path settings == Node data path settings