mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-24 23:27:25 -04:00
Moves [thread pools content][0] from [Modules][1] to [Configuring Elasticsearch][2]. Supporting changes: * Changes page title to "Thread pools" * Increments several headings * Removes several unneeded `[float]` attributes * Updates the anchors of several headings Relates to #53307 [0]: https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-threadpool.html [1]: https://www.elastic.co/guide/en/elasticsearch/reference/master/modules.html [2]: https://www.elastic.co/guide/en/elasticsearch/reference/master/settings.html Co-authored-by: debadair <debadair@elastic.co> Co-authored-by: debadair <debadair@elastic.co>
55 lines
1.4 KiB
Text
55 lines
1.4 KiB
Text
[[modules]]
|
|
= Modules
|
|
|
|
[partintro]
|
|
--
|
|
This section contains modules responsible for various aspects of the functionality in Elasticsearch. Each module has settings which may be:
|
|
|
|
_static_::
|
|
|
|
These settings must be set at the node level, either in the
|
|
`elasticsearch.yml` file, or as an environment variable or on the command line
|
|
when starting a node. They must be set on every relevant node in the cluster.
|
|
|
|
_dynamic_::
|
|
|
|
These settings can be dynamically updated on a live cluster with the
|
|
<<cluster-update-settings,cluster-update-settings>> API.
|
|
|
|
The modules in this section are:
|
|
|
|
<<modules-discovery,Discovery and cluster formation>>::
|
|
|
|
How nodes discover each other, elect a master and form a cluster.
|
|
|
|
<<modules-cluster,Shard allocation and cluster-level routing>>::
|
|
|
|
Settings to control where, when, and how shards are allocated to nodes.
|
|
|
|
<<modules-gateway,Gateway>>::
|
|
|
|
How many nodes need to join the cluster before recovery can start.
|
|
|
|
<<modules-http,HTTP>>::
|
|
|
|
Settings to control the HTTP REST interface.
|
|
|
|
<<modules-indices,Indices>>::
|
|
|
|
Global index-related settings.
|
|
|
|
<<modules-node,Node client>>::
|
|
|
|
A Java node client joins the cluster, but doesn't hold data or act as a master node.
|
|
--
|
|
|
|
|
|
include::modules/discovery.asciidoc[]
|
|
|
|
include::modules/cluster.asciidoc[]
|
|
|
|
include::modules/gateway.asciidoc[]
|
|
|
|
include::modules/http.asciidoc[]
|
|
|
|
include::modules/node.asciidoc[]
|