node.asciidoc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. [[modules-node]]
  2. === Node
  3. Any time that you start an instance of {es}, you are starting a _node_. A
  4. collection of connected nodes is called a <<modules-cluster,cluster>>. If you
  5. are running a single node of {es}, then you have a cluster of one node.
  6. Every node in the cluster can handle <<modules-network,HTTP and transport>>
  7. traffic by default. The transport layer is used exclusively for communication
  8. between nodes; the HTTP layer is used by REST clients.
  9. [[modules-node-description]]
  10. // tag::modules-node-description-tag[]
  11. All nodes know about all the other nodes in the cluster and can forward client
  12. requests to the appropriate node.
  13. // end::modules-node-description-tag[]
  14. [[node-roles]]
  15. ==== Node roles
  16. You define a node's roles by setting `node.roles` in `elasticsearch.yml`. If you
  17. set `node.roles`, the node is only assigned the roles you specify. If you don't
  18. set `node.roles`, the node is assigned the following roles:
  19. * `master`
  20. * `data`
  21. * `data_content`
  22. * `data_hot`
  23. * `data_warm`
  24. * `data_cold`
  25. * `data_frozen`
  26. * `ingest`
  27. * `ml`
  28. * `remote_cluster_client`
  29. * `transform`
  30. [IMPORTANT]
  31. ====
  32. If you set `node.roles`, ensure you specify every node role your cluster needs.
  33. Some {stack} features require specific node roles:
  34. - {ccs-cap} and {ccr} require the `remote_cluster_client` role.
  35. - {stack-monitor-app} and ingest pipelines require the `ingest` role.
  36. - {fleet}, the {security-app}, and {transforms} require the `transform` role.
  37. The `remote_cluster_client` role is also required to use {ccs} with these
  38. features.
  39. - {ml-cap} features, such as {anomaly-detect}, require the `ml` role.
  40. ====
  41. As the cluster grows and in particular if you have large {ml} jobs or
  42. {ctransforms}, consider separating dedicated master-eligible nodes from
  43. dedicated data nodes, {ml} nodes, and {transform} nodes.
  44. <<master-node,Master-eligible node>>::
  45. A node that has the `master` role, which makes it eligible to be
  46. <<modules-discovery,elected as the _master_ node>>, which controls the cluster.
  47. <<data-node,Data node>>::
  48. A node that has the `data` role. Data nodes hold data and perform data
  49. related operations such as CRUD, search, and aggregations. A node with the `data` role can fill any of the specialised data node roles.
  50. <<node-ingest-node,Ingest node>>::
  51. A node that has the `ingest` role. Ingest nodes are able to apply an
  52. <<ingest,ingest pipeline>> to a document in order to transform and enrich the
  53. document before indexing. With a heavy ingest load, it makes sense to use
  54. dedicated ingest nodes and to not include the `ingest` role from nodes that have
  55. the `master` or `data` roles.
  56. <<remote-node,Remote-eligible node>>::
  57. A node that has the `remote_cluster_client` role, which makes it eligible to act
  58. as a remote client.
  59. <<ml-node,Machine learning node>>::
  60. A node that has `xpack.ml.enabled` and the `ml` role. If you want to use
  61. {ml-features}, there must be at least one {ml} node in your cluster. For more
  62. information about {ml-features}, see {ml-docs}/index.html[Machine learning in
  63. the {stack}].
  64. <<transform-node,{transform-cap} node>>::
  65. A node that has the `transform` role. If you want to use {transforms}, there
  66. must be at least one {transform} node in your cluster. For more information, see
  67. <<transform-settings>> and <<transforms>>.
  68. [NOTE]
  69. [[coordinating-node]]
  70. .Coordinating node
  71. ===============================================
  72. Requests like search requests or bulk-indexing requests may involve data held
  73. on different data nodes. A search request, for example, is executed in two
  74. phases which are coordinated by the node which receives the client request --
  75. the _coordinating node_.
  76. In the _scatter_ phase, the coordinating node forwards the request to the data
  77. nodes which hold the data. Each data node executes the request locally and
  78. returns its results to the coordinating node. In the _gather_ phase, the
  79. coordinating node reduces each data node's results into a single global
  80. result set.
  81. Every node is implicitly a coordinating node. This means that a node that has
  82. an explicit empty list of roles via `node.roles` will only act as a coordinating
  83. node, which cannot be disabled. As a result, such a node needs to have enough
  84. memory and CPU in order to deal with the gather phase.
  85. ===============================================
  86. [[master-node]]
  87. ==== Master-eligible node
  88. The master node is responsible for lightweight cluster-wide actions such as
  89. creating or deleting an index, tracking which nodes are part of the cluster,
  90. and deciding which shards to allocate to which nodes. It is important for
  91. cluster health to have a stable master node.
  92. Any master-eligible node that is not a <<voting-only-node,voting-only node>> may
  93. be elected to become the master node by the <<modules-discovery,master election
  94. process>>.
  95. IMPORTANT: Master nodes must have a `path.data` directory whose contents
  96. persist across restarts, just like data nodes, because this is where the
  97. cluster metadata is stored. The cluster metadata describes how to read the data
  98. stored on the data nodes, so if it is lost then the data stored on the data
  99. nodes cannot be read.
  100. [[dedicated-master-node]]
  101. ===== Dedicated master-eligible node
  102. It is important for the health of the cluster that the elected master node has
  103. the resources it needs to fulfill its responsibilities. If the elected master
  104. node is overloaded with other tasks then the cluster will not operate well. The
  105. most reliable way to avoid overloading the master with other tasks is to
  106. configure all the master-eligible nodes to be _dedicated master-eligible nodes_
  107. which only have the `master` role, allowing them to focus on managing the
  108. cluster. Master-eligible nodes will still also behave as
  109. <<coordinating-node,coordinating nodes>> that route requests from clients to
  110. the other nodes in the cluster, but you should _not_ use dedicated master nodes
  111. for this purpose.
  112. A small or lightly-loaded cluster may operate well if its master-eligible nodes
  113. have other roles and responsibilities, but once your cluster comprises more
  114. than a handful of nodes it usually makes sense to use dedicated master-eligible
  115. nodes.
  116. To create a dedicated master-eligible node, set:
  117. [source,yaml]
  118. -------------------
  119. node.roles: [ master ]
  120. -------------------
  121. [[voting-only-node]]
  122. ===== Voting-only master-eligible node
  123. A voting-only master-eligible node is a node that participates in
  124. <<modules-discovery,master elections>> but which will not act as the cluster's
  125. elected master node. In particular, a voting-only node can serve as a tiebreaker
  126. in elections.
  127. It may seem confusing to use the term "master-eligible" to describe a
  128. voting-only node since such a node is not actually eligible to become the master
  129. at all. This terminology is an unfortunate consequence of history:
  130. master-eligible nodes are those nodes that participate in elections and perform
  131. certain tasks during cluster state publications, and voting-only nodes have the
  132. same responsibilities even if they can never become the elected master.
  133. To configure a master-eligible node as a voting-only node, include `master` and
  134. `voting_only` in the list of roles. For example to create a voting-only data
  135. node:
  136. [source,yaml]
  137. -------------------
  138. node.roles: [ data, master, voting_only ]
  139. -------------------
  140. IMPORTANT: Only nodes with the `master` role can be marked as having the
  141. `voting_only` role.
  142. High availability (HA) clusters require at least three master-eligible nodes, at
  143. least two of which are not voting-only nodes. Such a cluster will be able to
  144. elect a master node even if one of the nodes fails.
  145. Since voting-only nodes never act as the cluster's elected master, they may
  146. require less heap and a less powerful CPU than the true master nodes.
  147. However all master-eligible nodes, including voting-only nodes, require
  148. reasonably fast persistent storage and a reliable and low-latency network
  149. connection to the rest of the cluster, since they are on the critical path for
  150. <<cluster-state-publishing,publishing cluster state updates>>.
  151. Voting-only master-eligible nodes may also fill other roles in your cluster.
  152. For instance, a node may be both a data node and a voting-only master-eligible
  153. node. A _dedicated_ voting-only master-eligible nodes is a voting-only
  154. master-eligible node that fills no other roles in the cluster. To create a
  155. dedicated voting-only master-eligible node, set:
  156. [source,yaml]
  157. -------------------
  158. node.roles: [ master, voting_only ]
  159. -------------------
  160. [[data-node]]
  161. ==== Data node
  162. Data nodes hold the shards that contain the documents you have indexed. Data
  163. nodes handle data related operations like CRUD, search, and aggregations.
  164. These operations are I/O-, memory-, and CPU-intensive. It is important to
  165. monitor these resources and to add more data nodes if they are overloaded.
  166. The main benefit of having dedicated data nodes is the separation of the master
  167. and data roles.
  168. To create a dedicated data node, set:
  169. [source,yaml]
  170. ----
  171. node.roles: [ data ]
  172. ----
  173. In a multi-tier deployment architecture, you use specialized data roles to
  174. assign data nodes to specific tiers: `data_content`,`data_hot`, `data_warm`,
  175. `data_cold`, or `data_frozen`. A node can belong to multiple tiers, but a node
  176. that has one of the specialized data roles cannot have the generic `data` role.
  177. [[data-content-node]]
  178. ==== [x-pack]#Content data node#
  179. Content data nodes accommodate user-created content. They enable operations like CRUD,
  180. search and aggregations.
  181. To create a dedicated content node, set:
  182. [source,yaml]
  183. ----
  184. node.roles: [ data_content ]
  185. ----
  186. [[data-hot-node]]
  187. ==== [x-pack]#Hot data node#
  188. Hot data nodes store time series data as it enters {es}. The hot tier must be fast for
  189. both reads and writes, and requires more hardware resources (such as SSD drives).
  190. To create a dedicated hot node, set:
  191. [source,yaml]
  192. ----
  193. node.roles: [ data_hot ]
  194. ----
  195. [[data-warm-node]]
  196. ==== [x-pack]#Warm data node#
  197. Warm data nodes store indices that are no longer being regularly updated, but are still being
  198. queried. Query volume is usually at a lower frequency than it was while the index was in the hot tier.
  199. Less performant hardware can usually be used for nodes in this tier.
  200. To create a dedicated warm node, set:
  201. [source,yaml]
  202. ----
  203. node.roles: [ data_warm ]
  204. ----
  205. [[data-cold-node]]
  206. ==== [x-pack]#Cold data node#
  207. Cold data nodes store read-only indices that are accessed less frequently. This tier uses less performant hardware and may leverage searchable snapshot indices to minimize the resources required.
  208. To create a dedicated cold node, set:
  209. [source,yaml]
  210. ----
  211. node.roles: [ data_cold ]
  212. ----
  213. [[data-frozen-node]]
  214. ==== [x-pack]#Frozen data node#
  215. Frozen data nodes store read-only indices that are accessed rarely. Nodes in the
  216. frozen tier use less performant hardware than the cold tier. To minimize
  217. resources, indices in the frozen tier may rely on searchable snapshots for
  218. resiliency.
  219. To create a dedicated frozen node, set:
  220. [source,yaml]
  221. ----
  222. node.roles: [ data_frozen ]
  223. ----
  224. [[node-ingest-node]]
  225. ==== Ingest node
  226. Ingest nodes can execute pre-processing pipelines, composed of one or more
  227. ingest processors. Depending on the type of operations performed by the ingest
  228. processors and the required resources, it may make sense to have dedicated
  229. ingest nodes, that will only perform this specific task.
  230. To create a dedicated ingest node, set:
  231. [source,yaml]
  232. ----
  233. node.roles: [ ingest ]
  234. ----
  235. [[coordinating-only-node]]
  236. ==== Coordinating only node
  237. If you take away the ability to be able to handle master duties, to hold data,
  238. and pre-process documents, then you are left with a _coordinating_ node that
  239. can only route requests, handle the search reduce phase, and distribute bulk
  240. indexing. Essentially, coordinating only nodes behave as smart load balancers.
  241. Coordinating only nodes can benefit large clusters by offloading the
  242. coordinating node role from data and master-eligible nodes. They join the
  243. cluster and receive the full <<cluster-state,cluster state>>, like every other
  244. node, and they use the cluster state to route requests directly to the
  245. appropriate place(s).
  246. WARNING: Adding too many coordinating only nodes to a cluster can increase the
  247. burden on the entire cluster because the elected master node must await
  248. acknowledgement of cluster state updates from every node! The benefit of
  249. coordinating only nodes should not be overstated -- data nodes can happily
  250. serve the same purpose.
  251. To create a dedicated coordinating node, set:
  252. [source,yaml]
  253. ----
  254. node.roles: [ ]
  255. ----
  256. [[remote-node]]
  257. ==== Remote-eligible node
  258. A remote-eligible node acts as a cross-cluster client and connects to
  259. <<modules-remote-clusters,remote clusters>>. Once connected, you can search
  260. remote clusters using <<modules-cross-cluster-search,{ccs}>>. You can also sync
  261. data between clusters using <<xpack-ccr,{ccr}>>.
  262. [source,yaml]
  263. ----
  264. node.roles: [ remote_cluster_client ]
  265. ----
  266. [[ml-node]]
  267. ==== [xpack]#Machine learning node#
  268. The {ml-features} provide {ml} nodes, which run jobs and handle {ml} API
  269. requests. If `xpack.ml.enabled` is set to `true` and the node does not have the
  270. `ml` role, the node can service API requests but it cannot run jobs.
  271. If you want to use {ml-features} in your cluster, you must enable {ml}
  272. (set `xpack.ml.enabled` to `true`) on all master-eligible nodes. If you want to
  273. use {ml-features} in clients (including {kib}), it must also be enabled on all
  274. coordinating nodes.
  275. For more information about these settings, see <<ml-settings>>.
  276. To create a dedicated {ml} node, set:
  277. [source,yaml]
  278. ----
  279. node.roles: [ ml, remote_cluster_client] <1>
  280. xpack.ml.enabled: true <2>
  281. ----
  282. <1> The `remote_cluster_client` role is optional but strongly recommended.
  283. Otherwise, {ccs} fails when used in {ml} jobs or {dfeeds}. See <<remote-node>>.
  284. <2> The `xpack.ml.enabled` setting is enabled by default.
  285. [[transform-node]]
  286. ==== [xpack]#{transform-cap} node#
  287. {transform-cap} nodes run {transforms} and handle {transform} API requests. For
  288. more information, see <<transform-settings>>.
  289. To create a dedicated {transform} node, set:
  290. [source,yaml]
  291. ----
  292. node.roles: [ transform, remote_cluster_client ] <1>
  293. ----
  294. <1> The `remote_cluster_client` role is optional but strongly recommended.
  295. Otherwise, {ccs} fails when used in {transforms}. See <<remote-node>>.
  296. [[change-node-role]]
  297. ==== Changing the role of a node
  298. Each data node maintains the following data on disk:
  299. * the shard data for every shard allocated to that node,
  300. * the index metadata corresponding with every shard allocated to that node, and
  301. * the cluster-wide metadata, such as settings and index templates.
  302. Similarly, each master-eligible node maintains the following data on disk:
  303. * the index metadata for every index in the cluster, and
  304. * the cluster-wide metadata, such as settings and index templates.
  305. Each node checks the contents of its data path at startup. If it discovers
  306. unexpected data then it will refuse to start. This is to avoid importing
  307. unwanted <<modules-gateway-dangling-indices,dangling indices>> which can lead
  308. to a red cluster health. To be more precise, nodes without the `data` role will
  309. refuse to start if they find any shard data on disk at startup, and nodes
  310. without both the `master` and `data` roles will refuse to start if they have any
  311. index metadata on disk at startup.
  312. It is possible to change the roles of a node by adjusting its
  313. `elasticsearch.yml` file and restarting it. This is known as _repurposing_ a
  314. node. In order to satisfy the checks for unexpected data described above, you
  315. must perform some extra steps to prepare a node for repurposing when starting
  316. the node without the `data` or `master` roles.
  317. * If you want to repurpose a data node by removing the `data` role then you
  318. should first use an <<allocation-filtering,allocation filter>> to safely
  319. migrate all the shard data onto other nodes in the cluster.
  320. * If you want to repurpose a node to have neither the `data` nor `master` roles
  321. then it is simplest to start a brand-new node with an empty data path and the
  322. desired roles. You may find it safest to use an
  323. <<allocation-filtering,allocation filter>> to migrate the shard data elsewhere
  324. in the cluster first.
  325. If it is not possible to follow these extra steps then you may be able to use
  326. the <<node-tool-repurpose,`elasticsearch-node repurpose`>> tool to delete any
  327. excess data that prevents a node from starting.
  328. [discrete]
  329. === Node data path settings
  330. [[data-path]]
  331. ==== `path.data`
  332. Every data and master-eligible node requires access to a data directory where
  333. shards and index and cluster metadata will be stored. The `path.data` defaults
  334. to `$ES_HOME/data` but can be configured in the `elasticsearch.yml` config
  335. file an absolute path or a path relative to `$ES_HOME` as follows:
  336. [source,yaml]
  337. ----
  338. path.data: /var/elasticsearch/data
  339. ----
  340. Like all node settings, it can also be specified on the command line as:
  341. [source,sh]
  342. ----
  343. ./bin/elasticsearch -Epath.data=/var/elasticsearch/data
  344. ----
  345. TIP: When using the `.zip` or `.tar.gz` distributions, the `path.data` setting
  346. should be configured to locate the data directory outside the {es} home
  347. directory, so that the home directory can be deleted without deleting your data!
  348. The RPM and Debian distributions do this for you already.
  349. [discrete]
  350. [[other-node-settings]]
  351. === Other node settings
  352. More node settings can be found in <<settings>> and <<important-settings>>,
  353. including:
  354. * <<cluster-name,`cluster.name`>>
  355. * <<node-name,`node.name`>>
  356. * <<modules-network,network settings>>