File descriptors limit doesn't apply to Windows

On Windows the JDK uses `CreateFileW` which has a stupidly high
limit for the number of `Handle`s it can make - `16 * 1024 * 1024`.
So this isn't really a problem on Windows at all.

Closes #20732
This commit is contained in:
Nik Everett 2016-10-04 10:43:03 -04:00
parent 059052899f
commit 2b3760f78b
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
[[file-descriptors]] [[file-descriptors]]
=== File Descriptors === File Descriptors
[NOTE]
This is only a problem for Linux and macOS and can be safely ignored if running
Elasticsearch on Windows.
Elasticsearch uses a lot of file descriptors or file handles. Running out of Elasticsearch uses a lot of file descriptors or file handles. Running out of
file descriptors can be disastrous and will most probably lead to data loss. file descriptors can be disastrous and will most probably lead to data loss.
Make sure to increase the limit on the number of open files descriptors for Make sure to increase the limit on the number of open files descriptors for