node.asciidoc 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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. Every cluster requires the following node roles:
  34. * `master`
  35. * {blank}
  36. +
  37. --
  38. `data_content` and `data_hot` +
  39. OR +
  40. `data`
  41. --
  42. Some {stack} features also require specific node roles:
  43. - {ccs-cap} and {ccr} require the `remote_cluster_client` role.
  44. - {stack-monitor-app} and ingest pipelines require the `ingest` role.
  45. - {fleet}, the {security-app}, and {transforms} require the `transform` role.
  46. The `remote_cluster_client` role is also required to use {ccs} with these
  47. features.
  48. - {ml-cap} features, such as {anomaly-detect}, require the `ml` role.
  49. ====
  50. As the cluster grows and in particular if you have large {ml} jobs or
  51. {ctransforms}, consider separating dedicated master-eligible nodes from
  52. dedicated data nodes, {ml} nodes, and {transform} nodes.
  53. <<master-node,Master-eligible node>>::
  54. A node that has the `master` role, which makes it eligible to be
  55. <<modules-discovery,elected as the _master_ node>>, which controls the cluster.
  56. <<data-node,Data node>>::
  57. A node that has the `data` role. Data nodes hold data and perform data
  58. related operations such as CRUD, search, and aggregations. A node with the `data` role can fill any of the specialised data node roles.
  59. <<node-ingest-node,Ingest node>>::
  60. A node that has the `ingest` role. Ingest nodes are able to apply an
  61. <<ingest,ingest pipeline>> to a document in order to transform and enrich the
  62. document before indexing. With a heavy ingest load, it makes sense to use
  63. dedicated ingest nodes and to not include the `ingest` role from nodes that have
  64. the `master` or `data` roles.
  65. <<remote-node,Remote-eligible node>>::
  66. A node that has the `remote_cluster_client` role, which makes it eligible to act
  67. as a remote client.
  68. <<ml-node,Machine learning node>>::
  69. A node that has the `ml` role. If you want to use {ml-features}, there must be
  70. at least one {ml} node in your cluster. For more information, see
  71. <<ml-settings>> and {ml-docs}/index.html[Machine learning in the {stack}].
  72. <<transform-node,{transform-cap} node>>::
  73. A node that has the `transform` role. If you want to use {transforms}, there
  74. must be at least one {transform} node in your cluster. For more information, see
  75. <<transform-settings>> and <<transforms>>.
  76. [NOTE]
  77. [[coordinating-node]]
  78. .Coordinating node
  79. ===============================================
  80. Requests like search requests or bulk-indexing requests may involve data held
  81. on different data nodes. A search request, for example, is executed in two
  82. phases which are coordinated by the node which receives the client request --
  83. the _coordinating node_.
  84. In the _scatter_ phase, the coordinating node forwards the request to the data
  85. nodes which hold the data. Each data node executes the request locally and
  86. returns its results to the coordinating node. In the _gather_ phase, the
  87. coordinating node reduces each data node's results into a single global
  88. result set.
  89. Every node is implicitly a coordinating node. This means that a node that has
  90. an explicit empty list of roles via `node.roles` will only act as a coordinating
  91. node, which cannot be disabled. As a result, such a node needs to have enough
  92. memory and CPU in order to deal with the gather phase.
  93. ===============================================
  94. [[master-node]]
  95. ==== Master-eligible node
  96. The master node is responsible for lightweight cluster-wide actions such as
  97. creating or deleting an index, tracking which nodes are part of the cluster,
  98. and deciding which shards to allocate to which nodes. It is important for
  99. cluster health to have a stable master node.
  100. Any master-eligible node that is not a <<voting-only-node,voting-only node>> may
  101. be elected to become the master node by the <<modules-discovery,master election
  102. process>>.
  103. IMPORTANT: Master nodes must have a `path.data` directory whose contents
  104. persist across restarts, just like data nodes, because this is where the
  105. cluster metadata is stored. The cluster metadata describes how to read the data
  106. stored on the data nodes, so if it is lost then the data stored on the data
  107. nodes cannot be read.
  108. [[dedicated-master-node]]
  109. ===== Dedicated master-eligible node
  110. It is important for the health of the cluster that the elected master node has
  111. the resources it needs to fulfill its responsibilities. If the elected master
  112. node is overloaded with other tasks then the cluster will not operate well. The
  113. most reliable way to avoid overloading the master with other tasks is to
  114. configure all the master-eligible nodes to be _dedicated master-eligible nodes_
  115. which only have the `master` role, allowing them to focus on managing the
  116. cluster. Master-eligible nodes will still also behave as
  117. <<coordinating-node,coordinating nodes>> that route requests from clients to
  118. the other nodes in the cluster, but you should _not_ use dedicated master nodes
  119. for this purpose.
  120. A small or lightly-loaded cluster may operate well if its master-eligible nodes
  121. have other roles and responsibilities, but once your cluster comprises more
  122. than a handful of nodes it usually makes sense to use dedicated master-eligible
  123. nodes.
  124. To create a dedicated master-eligible node, set:
  125. [source,yaml]
  126. -------------------
  127. node.roles: [ master ]
  128. -------------------
  129. [[voting-only-node]]
  130. ===== Voting-only master-eligible node
  131. A voting-only master-eligible node is a node that participates in
  132. <<modules-discovery,master elections>> but which will not act as the cluster's
  133. elected master node. In particular, a voting-only node can serve as a tiebreaker
  134. in elections.
  135. It may seem confusing to use the term "master-eligible" to describe a
  136. voting-only node since such a node is not actually eligible to become the master
  137. at all. This terminology is an unfortunate consequence of history:
  138. master-eligible nodes are those nodes that participate in elections and perform
  139. certain tasks during cluster state publications, and voting-only nodes have the
  140. same responsibilities even if they can never become the elected master.
  141. To configure a master-eligible node as a voting-only node, include `master` and
  142. `voting_only` in the list of roles. For example to create a voting-only data
  143. node:
  144. [source,yaml]
  145. -------------------
  146. node.roles: [ data, master, voting_only ]
  147. -------------------
  148. IMPORTANT: Only nodes with the `master` role can be marked as having the
  149. `voting_only` role.
  150. High availability (HA) clusters require at least three master-eligible nodes, at
  151. least two of which are not voting-only nodes. Such a cluster will be able to
  152. elect a master node even if one of the nodes fails.
  153. Voting-only master-eligible nodes may also fill other roles in your cluster.
  154. For instance, a node may be both a data node and a voting-only master-eligible
  155. node. A _dedicated_ voting-only master-eligible nodes is a voting-only
  156. master-eligible node that fills no other roles in the cluster. To create a
  157. dedicated voting-only master-eligible node, set:
  158. [source,yaml]
  159. -------------------
  160. node.roles: [ master, voting_only ]
  161. -------------------
  162. Since dedicated voting-only nodes never act as the cluster's elected master,
  163. they may require less heap and a less powerful CPU than the true master nodes.
  164. However all master-eligible nodes, including voting-only nodes, are on the
  165. critical path for <<cluster-state-publishing,publishing cluster state
  166. updates>>. Cluster state updates are usually independent of
  167. performance-critical workloads such as indexing or searches, but they are
  168. involved in management activities such as index creation and rollover, mapping
  169. updates, and recovery after a failure. The performance characteristics of these
  170. activities are a function of the speed of the storage on each master-eligible
  171. node, as well as the reliability and latency of the network interconnections
  172. between the elected master node and the other nodes in the cluster. You must
  173. therefore ensure that the storage and networking available to the nodes in your
  174. cluster are good enough to meet your performance goals.
  175. [[data-node]]
  176. ==== Data node
  177. Data nodes hold the shards that contain the documents you have indexed. Data
  178. nodes handle data related operations like CRUD, search, and aggregations.
  179. These operations are I/O-, memory-, and CPU-intensive. It is important to
  180. monitor these resources and to add more data nodes if they are overloaded.
  181. The main benefit of having dedicated data nodes is the separation of the master
  182. and data roles.
  183. To create a dedicated data node, set:
  184. [source,yaml]
  185. ----
  186. node.roles: [ data ]
  187. ----
  188. In a multi-tier deployment architecture, you use specialized data roles to
  189. assign data nodes to specific tiers: `data_content`,`data_hot`, `data_warm`,
  190. `data_cold`, or `data_frozen`. A node can belong to multiple tiers, but a node
  191. that has one of the specialized data roles cannot have the generic `data` role.
  192. [role="xpack"]
  193. [[data-content-node]]
  194. ==== Content data node
  195. Content data nodes are part of the content tier.
  196. include::{es-repo-dir}/datatiers.asciidoc[tag=content-tier]
  197. To create a dedicated content node, set:
  198. [source,yaml]
  199. ----
  200. node.roles: [ data_content ]
  201. ----
  202. [role="xpack"]
  203. [[data-hot-node]]
  204. ==== Hot data node
  205. Hot data nodes are part of the hot tier.
  206. include::{es-repo-dir}/datatiers.asciidoc[tag=hot-tier]
  207. To create a dedicated hot node, set:
  208. [source,yaml]
  209. ----
  210. node.roles: [ data_hot ]
  211. ----
  212. [role="xpack"]
  213. [[data-warm-node]]
  214. ==== Warm data node
  215. Warm data nodes are part of the warm tier.
  216. include::{es-repo-dir}/datatiers.asciidoc[tag=warm-tier]
  217. To create a dedicated warm node, set:
  218. [source,yaml]
  219. ----
  220. node.roles: [ data_warm ]
  221. ----
  222. [role="xpack"]
  223. [[data-cold-node]]
  224. ==== Cold data node
  225. Cold data nodes are part of the cold tier.
  226. include::{es-repo-dir}/datatiers.asciidoc[tag=cold-tier]
  227. To create a dedicated cold node, set:
  228. [source,yaml]
  229. ----
  230. node.roles: [ data_cold ]
  231. ----
  232. [role="xpack"]
  233. [[data-frozen-node]]
  234. ==== Frozen data node
  235. Frozen data nodes are part of the frozen tier.
  236. include::{es-repo-dir}/datatiers.asciidoc[tag=frozen-tier]
  237. To create a dedicated frozen node, set:
  238. [source,yaml]
  239. ----
  240. node.roles: [ data_frozen ]
  241. ----
  242. [[node-ingest-node]]
  243. ==== Ingest node
  244. Ingest nodes can execute pre-processing pipelines, composed of one or more
  245. ingest processors. Depending on the type of operations performed by the ingest
  246. processors and the required resources, it may make sense to have dedicated
  247. ingest nodes, that will only perform this specific task.
  248. To create a dedicated ingest node, set:
  249. [source,yaml]
  250. ----
  251. node.roles: [ ingest ]
  252. ----
  253. [[coordinating-only-node]]
  254. ==== Coordinating only node
  255. If you take away the ability to be able to handle master duties, to hold data,
  256. and pre-process documents, then you are left with a _coordinating_ node that
  257. can only route requests, handle the search reduce phase, and distribute bulk
  258. indexing. Essentially, coordinating only nodes behave as smart load balancers.
  259. Coordinating only nodes can benefit large clusters by offloading the
  260. coordinating node role from data and master-eligible nodes. They join the
  261. cluster and receive the full <<cluster-state,cluster state>>, like every other
  262. node, and they use the cluster state to route requests directly to the
  263. appropriate place(s).
  264. WARNING: Adding too many coordinating only nodes to a cluster can increase the
  265. burden on the entire cluster because the elected master node must await
  266. acknowledgement of cluster state updates from every node! The benefit of
  267. coordinating only nodes should not be overstated -- data nodes can happily
  268. serve the same purpose.
  269. To create a dedicated coordinating node, set:
  270. [source,yaml]
  271. ----
  272. node.roles: [ ]
  273. ----
  274. [[remote-node]]
  275. ==== Remote-eligible node
  276. A remote-eligible node acts as a cross-cluster client and connects to
  277. <<remote-clusters,remote clusters>>. Once connected, you can search
  278. remote clusters using <<modules-cross-cluster-search,{ccs}>>. You can also sync
  279. data between clusters using <<xpack-ccr,{ccr}>>.
  280. [source,yaml]
  281. ----
  282. node.roles: [ remote_cluster_client ]
  283. ----
  284. [[ml-node]]
  285. ==== [xpack]#Machine learning node#
  286. {ml-cap} nodes run jobs and handle {ml} API requests. For more information, see
  287. <<ml-settings>>.
  288. To create a dedicated {ml} node, set:
  289. [source,yaml]
  290. ----
  291. node.roles: [ ml, remote_cluster_client]
  292. ----
  293. The `remote_cluster_client` role is optional but strongly recommended.
  294. Otherwise, {ccs} fails when used in {ml} jobs or {dfeeds}. If you use {ccs} in
  295. your {anomaly-jobs}, the `remote_cluster_client` role is also required on all
  296. master-eligible nodes. Otherwise, the {dfeed} cannot start. See <<remote-node>>.
  297. [[transform-node]]
  298. ==== [xpack]#{transform-cap} node#
  299. {transform-cap} nodes run {transforms} and handle {transform} API requests. For
  300. more information, see <<transform-settings>>.
  301. To create a dedicated {transform} node, set:
  302. [source,yaml]
  303. ----
  304. node.roles: [ transform, remote_cluster_client ]
  305. ----
  306. The `remote_cluster_client` role is optional but strongly recommended.
  307. Otherwise, {ccs} fails when used in {transforms}. See <<remote-node>>.
  308. [[change-node-role]]
  309. ==== Changing the role of a node
  310. Each data node maintains the following data on disk:
  311. * the shard data for every shard allocated to that node,
  312. * the index metadata corresponding with every shard allocated to that node, and
  313. * the cluster-wide metadata, such as settings and index templates.
  314. Similarly, each master-eligible node maintains the following data on disk:
  315. * the index metadata for every index in the cluster, and
  316. * the cluster-wide metadata, such as settings and index templates.
  317. Each node checks the contents of its data path at startup. If it discovers
  318. unexpected data then it will refuse to start. This is to avoid importing
  319. unwanted <<modules-gateway-dangling-indices,dangling indices>> which can lead
  320. to a red cluster health. To be more precise, nodes without the `data` role will
  321. refuse to start if they find any shard data on disk at startup, and nodes
  322. without both the `master` and `data` roles will refuse to start if they have any
  323. index metadata on disk at startup.
  324. It is possible to change the roles of a node by adjusting its
  325. `elasticsearch.yml` file and restarting it. This is known as _repurposing_ a
  326. node. In order to satisfy the checks for unexpected data described above, you
  327. must perform some extra steps to prepare a node for repurposing when starting
  328. the node without the `data` or `master` roles.
  329. * If you want to repurpose a data node by removing the `data` role then you
  330. should first use an <<allocation-filtering,allocation filter>> to safely
  331. migrate all the shard data onto other nodes in the cluster.
  332. * If you want to repurpose a node to have neither the `data` nor `master` roles
  333. then it is simplest to start a brand-new node with an empty data path and the
  334. desired roles. You may find it safest to use an
  335. <<allocation-filtering,allocation filter>> to migrate the shard data elsewhere
  336. in the cluster first.
  337. If it is not possible to follow these extra steps then you may be able to use
  338. the <<node-tool-repurpose,`elasticsearch-node repurpose`>> tool to delete any
  339. excess data that prevents a node from starting.
  340. [discrete]
  341. === Node data path settings
  342. [[data-path]]
  343. ==== `path.data`
  344. Every data and master-eligible node requires access to a data directory where
  345. shards and index and cluster metadata will be stored. The `path.data` defaults
  346. to `$ES_HOME/data` but can be configured in the `elasticsearch.yml` config
  347. file an absolute path or a path relative to `$ES_HOME` as follows:
  348. [source,yaml]
  349. ----
  350. path.data: /var/elasticsearch/data
  351. ----
  352. Like all node settings, it can also be specified on the command line as:
  353. [source,sh]
  354. ----
  355. ./bin/elasticsearch -Epath.data=/var/elasticsearch/data
  356. ----
  357. The contents of the `path.data` directory must persist across restarts, because
  358. this is where your data is stored. {es} requires the filesystem to act as if it
  359. were backed by a local disk, but this means that it will work correctly on
  360. properly-configured remote block devices (e.g. a SAN) and remote filesystems
  361. (e.g. NFS) as long as the remote storage behaves no differently from local
  362. storage. You can run multiple {es} nodes on the same filesystem, but each {es}
  363. node must have its own data path.
  364. The performance of an {es} cluster is often limited by the performance of the
  365. underlying storage, so you must ensure that your storage supports acceptable
  366. performance. Some remote storage performs very poorly, especially under the
  367. kind of load that {es} imposes, so make sure to benchmark your system carefully
  368. before committing to a particular storage architecture.
  369. TIP: When using the `.zip` or `.tar.gz` distributions, the `path.data` setting
  370. should be configured to locate the data directory outside the {es} home
  371. directory, so that the home directory can be deleted without deleting your data!
  372. The RPM and Debian distributions do this for you already.
  373. // tag::modules-node-data-path-warning-tag[]
  374. WARNING: Don't modify anything within the data directory or run processes that
  375. might interfere with its contents. If something other than {es} modifies the
  376. contents of the data directory, then {es} may fail, reporting corruption or
  377. other data inconsistencies, or may appear to work correctly having silently
  378. lost some of your data. Don't attempt to take filesystem backups of the data
  379. directory; there is no supported way to restore such a backup. Instead, use
  380. <<snapshot-restore>> to take backups safely. Don't run virus scanners on the
  381. data directory. A virus scanner can prevent {es} from working correctly and may
  382. modify the contents of the data directory. The data directory contains no
  383. executables so a virus scan will only find false positives.
  384. // end::modules-node-data-path-warning-tag[]
  385. [discrete]
  386. [[other-node-settings]]
  387. === Other node settings
  388. More node settings can be found in <<settings>> and <<important-settings>>,
  389. including:
  390. * <<cluster-name,`cluster.name`>>
  391. * <<node-name,`node.name`>>
  392. * <<modules-network,network settings>>