Default es_heap_size

This commit is contained in:
Dale McDiarmid 2017-01-13 12:26:53 +00:00
parent 661ec80447
commit 349fd36f15

View file

@ -18,9 +18,17 @@
# Xms represents the initial size of total heap space # Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space # Xmx represents the maximum size of total heap space
{% if es_heap_size is defined %}
-Xms{{ es_heap_size }} -Xms{{ es_heap_size }}
{% else %}
-Xms2g
{% endif %}
{% if es_heap_size is defined %}
-Xmx{{ es_heap_size }} -Xmx{{ es_heap_size }}
{% else %}
-Xms2g
{% endif %}
################################################################ ################################################################
## Expert settings ## Expert settings