Skip to content

Commit f16110d

Browse files
authored
[DOCS] Revert changes for ES_JAVA_OPTS (#89931)
ES_JAVA_OPTS is still the correct way to pass options to the Elasticsearch process, CLI_JAVA_OPTS affects only the command line tool. CLI_JAVA_OPTS is the correct way to pass options for plugin installation or other tools.
1 parent 36ed4a5 commit f16110d

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

docs/reference/index-modules.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ specific index module:
3939
`index.number_of_shards`::
4040
The number of primary shards that an index should have. Defaults to `1`. This setting can only be set at index creation time. It cannot be changed on a closed index.
4141
+
42-
NOTE: The number of shards are limited to `1024` per index. This limitation is a safety limit to prevent accidental creation of indices that can destabilize a cluster due to resource allocation. The limit can be modified by specifying `export CLI_JAVA_OPTS="-Des.index.max_number_of_shards=128"` system property on every node that is part of the cluster.
42+
NOTE: The number of shards are limited to `1024` per index. This limitation is a safety limit to prevent accidental creation of indices that can destabilize a cluster due to resource allocation. The limit can be modified by specifying `export ES_JAVA_OPTS="-Des.index.max_number_of_shards=128"` system property on every node that is part of the cluster.
4343

4444
// end::index-number-of-shards-tag[]
4545

docs/reference/setup/advanced-configuration.asciidoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ is recommended in most circumstances.
99
==== Set JVM options
1010

1111
If needed, you can override the default JVM options by adding custom options
12-
files (preferred) or setting the `CLI_JAVA_OPTS` environment variable.
12+
files (preferred) or setting the `ES_JAVA_OPTS` environment variable.
1313

1414
JVM options files must have the suffix '.options' and contain a line-delimited
1515
list of JVM arguments. JVM processes options files in lexicographic order.
@@ -70,16 +70,16 @@ as valid JVM arguments are rejected and {es} will fail to start.
7070

7171
In production, use JVM options files to override the
7272
default settings. In testing and development environments,
73-
you can also set JVM options through the `CLI_JAVA_OPTS` environment variable.
73+
you can also set JVM options through the `ES_JAVA_OPTS` environment variable.
7474

7575
[source,sh]
7676
---------------------------------
77-
export CLI_JAVA_OPTS="$CLI_JAVA_OPTS -Djava.io.tmpdir=/path/to/temp/dir"
77+
export ES_JAVA_OPTS="$ES_JAVA_OPTS -Djava.io.tmpdir=/path/to/temp/dir"
7878
./bin/elasticsearch
7979
---------------------------------
8080

8181
If you're using the RPM or Debian packages, you can specify
82-
`CLI_JAVA_OPTS` in the <<sysconfig,system configuration file>>.
82+
`ES_JAVA_OPTS` in the <<sysconfig,system configuration file>>.
8383

8484
NOTE: {es} ignores the `JAVA_TOOL_OPTIONS` and `JAVA_OPTS` environment variables.
8585

@@ -141,16 +141,16 @@ For example, to set the maximum heap size to 2GB, set both `Xms` and `Xmx` to `2
141141
-Xmx2g
142142
------------------
143143

144-
For testing, you can also set the heap sizes using the `CLI_JAVA_OPTS`
144+
For testing, you can also set the heap sizes using the `ES_JAVA_OPTS`
145145
environment variable:
146146

147147
[source,sh]
148148
------------------
149-
CLI_JAVA_OPTS="-Xms2g -Xmx2g" ./bin/elasticsearch
149+
ES_JAVA_OPTS="-Xms2g -Xmx2g" ./bin/elasticsearch
150150
------------------
151151

152-
The `CLI_JAVA_OPTS` variable overrides all other JVM
153-
options. We do not recommend using `CLI_JAVA_OPTS` in production.
152+
The `ES_JAVA_OPTS` variable overrides all other JVM
153+
options. We do not recommend using `ES_JAVA_OPTS` in production.
154154

155155
NOTE: If you are running {es} as a Windows service, you can change the heap size
156156
using the service manager. See <<windows-service>>.

docs/reference/setup/important-settings/gc-logging.asciidoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ Change the default GC log output location to `/opt/my-app/gc.log` by
4242

4343
Configure an {es} <<docker,Docker container>> to send GC debug logs to
4444
standard error (`stderr`). This lets the container orchestrator
45-
handle the output. If using the `CLI_JAVA_OPTS` environment variable,
45+
handle the output. If using the `ES_JAVA_OPTS` environment variable,
4646
specify:
4747

4848
[source,sh]
4949
----
5050
MY_OPTS="-Xlog:disable -Xlog:all=warning:stderr:utctime,level,tags -Xlog:gc=debug:stderr:utctime"
51-
docker run -e CLI_JAVA_OPTS="$MY_OPTS" # etc
51+
docker run -e ES_JAVA_OPTS="$MY_OPTS" # etc
5252
----

docs/reference/setup/install/docker.asciidoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ endif::[]
192192
If you experience issues where the container where your first node is running
193193
exits when your second node starts, explicitly set values for the JVM heap size.
194194
To <<set-jvm-heap-size,manually configure the heap size>>, include the
195-
`CLI_JAVA_OPTS` variable and set values for `-Xms` and `-Xmx` when starting each
195+
`ES_JAVA_OPTS` variable and set values for `-Xms` and `-Xmx` when starting each
196196
node. For example, the following command starts node `es02` and sets the
197197
minimum and maximum JVM heap size to 1 GB:
198198

199199
[source,sh,subs="attributes"]
200200
----
201-
docker run -e CLI_JAVA_OPTS="-Xms1g -Xmx1g" -e ENROLLMENT_TOKEN="<token>" --name es02 -p 9201:9200 --net elastic -it docker.elastic.co/elasticsearch/elasticsearch:{docker-image}
201+
docker run -e ES_JAVA_OPTS="-Xms1g -Xmx1g" -e ENROLLMENT_TOKEN="<token>" --name es02 -p 9201:9200 --net elastic -it docker.elastic.co/elasticsearch/elasticsearch:{docker-image}
202202
----
203203

204204
===== Next steps
@@ -264,7 +264,7 @@ password for the `elastic` and `kibana_system` users with the
264264
referenced by the `docker-compose.yml` file.
265265

266266
IMPORTANT: Your passwords must be alphanumeric, and cannot contain special
267-
characters such as `!` or `@`. The `bash` script included in the
267+
characters such as `!` or `@`. The `bash` script included in the
268268
`docker-compose.yml` file only operates on alphanumeric characters.
269269

270270
["source","txt",subs="attributes"]
@@ -504,10 +504,10 @@ To manually set the heap size in production, bind mount a <<set-jvm-options,JVM
504504
options>> file under `/usr/share/elasticsearch/config/jvm.options.d` that
505505
includes your desired <<set-jvm-heap-size,heap size>> settings.
506506

507-
For testing, you can also manually set the heap size using the `CLI_JAVA_OPTS`
507+
For testing, you can also manually set the heap size using the `ES_JAVA_OPTS`
508508
environment variable. For example, to use 16GB, specify `-e
509-
CLI_JAVA_OPTS="-Xms16g -Xmx16g"` with `docker run`. The `CLI_JAVA_OPTS` variable
510-
overrides all other JVM options. We do not recommend using `CLI_JAVA_OPTS` in
509+
ES_JAVA_OPTS="-Xms16g -Xmx16g"` with `docker run`. The `ES_JAVA_OPTS` variable
510+
overrides all other JVM options. We do not recommend using `ES_JAVA_OPTS` in
511511
production. The `docker-compose.yml` file above sets the heap size to 512MB.
512512

513513

docs/reference/setup/install/sysconfig-file.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
`jvm.options`, and `log4j2.properties` files); defaults to
1010
`/etc/elasticsearch`.
1111

12-
`CLI_JAVA_OPTS`::
12+
`ES_JAVA_OPTS`::
1313

1414
Any additional JVM system properties you may want to apply.
1515

docs/reference/setup/install/zip-windows.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ The {es} service can be configured prior to installation by setting the followin
210210
`jvm.options`, and `log4j2.properties` files), defaults to
211211
`%ES_HOME%\config`.
212212

213-
`CLI_JAVA_OPTS`::
213+
`ES_JAVA_OPTS`::
214214

215215
Any additional JVM system properties you may want to apply.
216216

docs/reference/setup/sysconfig/swap.asciidoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ RPM and Debian::
104104
Another possible reason why `mlockall` can fail is that
105105
<<executable-jna-tmpdir,the JNA temporary directory (usually a sub-directory of
106106
`/tmp`) is mounted with the `noexec` option>>. This can be solved by specifying
107-
a new temporary directory for JNA using the `CLI_JAVA_OPTS` environment variable:
107+
a new temporary directory for JNA using the `ES_JAVA_OPTS` environment variable:
108108

109109
[source,sh]
110110
--------------
111-
export CLI_JAVA_OPTS="$CLI_JAVA_OPTS -Djna.tmpdir=<path>"
111+
export ES_JAVA_OPTS="$ES_JAVA_OPTS -Djna.tmpdir=<path>"
112112
./bin/elasticsearch
113113
--------------
114114

0 commit comments

Comments
 (0)