Merge branch 'master' into enhancement/remove_node_client_setting
This commit is contained in:
commit
19eeb68bc4
|
@ -66,6 +66,7 @@ public class UpdateMappingIntegrationIT extends ESIntegTestCase {
|
||||||
settingsBuilder()
|
settingsBuilder()
|
||||||
.put("index.number_of_shards", 1)
|
.put("index.number_of_shards", 1)
|
||||||
.put("index.number_of_replicas", 0)
|
.put("index.number_of_replicas", 0)
|
||||||
|
.put(MapperService.INDEX_MAPPING_TOTAL_FIELDS_LIMIT_SETTING.getKey(), Long.MAX_VALUE)
|
||||||
).execute().actionGet();
|
).execute().actionGet();
|
||||||
client().admin().cluster().prepareHealth().setWaitForEvents(Priority.LANGUID).setWaitForGreenStatus().execute().actionGet();
|
client().admin().cluster().prepareHealth().setWaitForEvents(Priority.LANGUID).setWaitForGreenStatus().execute().actionGet();
|
||||||
|
|
||||||
|
|
|
@ -219,8 +219,8 @@ name of the setting must be prefixed with `es.`.
|
||||||
|
|
||||||
==== Discovery Settings
|
==== Discovery Settings
|
||||||
|
|
||||||
The `discovery.zen.minimum_master_node` must bet set for nodes that are bound
|
The `discovery.zen.minimum_master_node` must bet set for nodes that have
|
||||||
to a non-loopback network interface. We see those nodes as in "production" mode and
|
`network.host`, `network.bind_host`, `network.publish_host`,
|
||||||
thus require the setting.
|
`transport.host`, `transport.bind_host`, or `transport.publish_host`
|
||||||
|
configuration options set. We see those nodes as in "production" mode
|
||||||
|
and thus require the setting.
|
||||||
|
|
Loading…
Reference in New Issue