Docs: Changing ES_MAX_MEM default from '1gb' to '1g'

If you set ES_HEAP_SIZE to '1gb' as suggested, Java will yield an "Invalid initial heap size".

Closes #6824
This commit is contained in:
Justin Honold 2014-07-10 16:34:35 -05:00 committed by Clinton Gormley
parent 50634e6a3d
commit 593fffc7a1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ The `ES_HEAP_SIZE` environment variable allows to set the heap memory
that will be allocated to elasticsearch java process. It will allocate
the same value to both min and max values, though those can be set
explicitly (not recommended) by setting `ES_MIN_MEM` (defaults to
`256m`), and `ES_MAX_MEM` (defaults to `1gb`).
`256m`), and `ES_MAX_MEM` (defaults to `1g`).
It is recommended to set the min and max memory to the same value, and
enable <<setup-configuration-memory,`mlockall`>>.