Browse Source

Typo correction heap_size.asciidoc (#17745)

* Typo correction Xms Xmx

Typo correction on "-Xms4000mb -Xmx4000mb"

* Change mb to m for Xms/Xmx
bloublou 9 years ago
parent
commit
83944c5628
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/setup/sysconfig/heap_size.asciidoc

+ 1 - 1
docs/reference/setup/sysconfig/heap_size.asciidoc

@@ -61,7 +61,7 @@ in the jvm.options file and setting these values via `ES_JAVA_OPTS`:
 [source,sh]
 ------------------
 ES_JAVA_OPTS="-Xms2g -Xmx2g" ./bin/elasticsearch <1>
-ES_JAVA_OPTS="-Xmx4000mb -Xmx4000mb" ./bin/elasticsearch <2>
+ES_JAVA_OPTS="-Xms4000m -Xmx4000m" ./bin/elasticsearch <2>
 ------------------
 <1> Set the minimum and maximum heap size to 2 GB.
 <2> Set the minimum and maximum heap size to 4000 MB.