2016-04-03 16:09:24 +02:00
|
|
|
[[max-number-of-threads]]
|
|
|
|
=== Number of threads
|
|
|
|
|
|
|
|
Elasticsearch uses a number of thread pools for different types of operations.
|
2016-12-07 18:51:16 +05:30
|
|
|
It is important that it is able to create new threads whenever needed. Make
|
2016-04-03 16:09:24 +02:00
|
|
|
sure that the number of threads that the Elasticsearch user can create is at
|
2017-11-29 12:17:22 +09:00
|
|
|
least 4096.
|
2016-04-03 16:09:24 +02:00
|
|
|
|
2017-11-29 12:17:22 +09:00
|
|
|
This can be done by setting <<ulimit,`ulimit -u 4096`>> as root before
|
|
|
|
starting Elasticsearch, or by setting `nproc` to `4096` in
|
2016-04-03 16:09:24 +02:00
|
|
|
<<limits.conf,`/etc/security/limits.conf`>>.
|
|
|
|
|