[DOCS] Adds machine learning node type and filters (#49121)

This commit is contained in:
Lisa Cawley 2019-11-15 11:27:36 -05:00 committed by lcawl
parent 680436dd0d
commit eca93fcc5f
2 changed files with 10 additions and 8 deletions

View File

@ -42,10 +42,12 @@ Valid columns are:
(Default) Used file descriptors percentage, such as `1`. (Default) Used file descriptors percentage, such as `1`.
`node.role`, `r`, `role`, `nodeRole`:: `node.role`, `r`, `role`, `nodeRole`::
(Default) Roles of the node. Returned values include `m` (master-eligible node), (Default) Roles of the node. Returned values include `d` (data node), `i`
`d` (data node), `i` (ingest node), `v` (voting-only node), and `-` (coordinating node only). (ingest node), `m` (master-eligible node), `l` (machine learning node), `v`
(voting-only node), and `-` (coordinating node only).
+ +
For example, `mdi` indicates a master-eligible data and ingest node. For example, `dim` indicates a master-eligible data and ingest node. See
<<modules-node>>.
`master`, `m`:: `master`, `m`::
(Default) Indicates whether the node is the elected master node. Returned values (Default) Indicates whether the node is the elected master node. Returned values

View File

@ -20,14 +20,14 @@ one of the following:
* an IP address or hostname, to add all matching nodes to the subset. * an IP address or hostname, to add all matching nodes to the subset.
* a pattern, using `*` wildcards, which adds all nodes to the subset * a pattern, using `*` wildcards, which adds all nodes to the subset
whose name, address or hostname matches the pattern. whose name, address or hostname matches the pattern.
* `master:true`, `data:true`, `ingest:true`, `voting_only:true` or * `master:true`, `data:true`, `ingest:true`, `voting_only:true`, `ml:true`, or
`coordinating_only:true`, which respectively add to the subset all `coordinating_only:true`, which respectively add to the subset all
master-eligible nodes, all data nodes, all ingest nodes, all voting-only master-eligible nodes, all data nodes, all ingest nodes, all voting-only
nodes, and all coordinating-only nodes. nodes, all machine learning nodes, and all coordinating-only nodes.
* `master:false`, `data:false`, `ingest:false`, `voting_only:true`, or * `master:false`, `data:false`, `ingest:false`, `voting_only:true`, `ml:false`,
`coordinating_only:false`, which respectively remove from the subset all or `coordinating_only:false`, which respectively remove from the subset all
master-eligible nodes, all data nodes, all ingest nodes, all voting-only master-eligible nodes, all data nodes, all ingest nodes, all voting-only
nodes and all coordinating-only nodes. nodes, all machine learning nodes, and all coordinating-only nodes.
* a pair of patterns, using `*` wildcards, of the form `attrname:attrvalue`, * a pair of patterns, using `*` wildcards, of the form `attrname:attrvalue`,
which adds to the subset all nodes with a custom node attribute whose name which adds to the subset all nodes with a custom node attribute whose name
and value match the respective patterns. Custom node attributes are and value match the respective patterns. Custom node attributes are