Add indices.breaker.fielddata.limit to config

The indices.breaker.fielddata.limit config option specifies how much of
the heap can be used before breaking out and failing to prevent OOMing.
By default this is set to 60% of heap which may be too conservative if
you have larger datasets.

Change-Id: I46c0cb5157aae40a0029ff1b425ecc663d171768
This commit is contained in:
Clark Boylan 2015-11-13 12:06:43 -08:00
parent bbd742c992
commit f6a724c575
1 changed files with 3 additions and 0 deletions

View File

@ -162,6 +162,9 @@ index.store.compress.tv: <%= @es_template_config['index.store.compress.tv'] %>
<% if @es_template_config.has_key?('indices.memory.index_buffer_size') then -%>
indices.memory.index_buffer_size: "<%= @es_template_config['indices.memory.index_buffer_size'] %>"
<% end -%>
<% if @es_template_config.has_key?('indices.breaker.fielddata.limit') then -%>
indices.breaker.fielddata.limit: "<%= @es_template_config['indices.breaker.fielddata.limit'] %>"
<% end -%>
#################################### Paths ####################################