parent
216c814a7f
commit
1652767ec8
|
@ -68,6 +68,10 @@ added[1.0.0.RC1]
|
||||||
cluster update settings API. This setting has been deprecated in
|
cluster update settings API. This setting has been deprecated in
|
||||||
favour for `cluster.routing.allocation.enable`.
|
favour for `cluster.routing.allocation.enable`.
|
||||||
|
|
||||||
|
`cluster.routing.allocation.same_shard.host`::
|
||||||
|
Prevents that multiple instances of the same shard are allocated
|
||||||
|
on a single host. Defaults to `false`. This setting only applies
|
||||||
|
if multiple nodes are started on the same machine.
|
||||||
|
|
||||||
`indices.recovery.concurrent_streams`::
|
`indices.recovery.concurrent_streams`::
|
||||||
The number of streams to open (on a *node* level) to recover a
|
The number of streams to open (on a *node* level) to recover a
|
||||||
|
|
|
@ -27,10 +27,10 @@ import org.elasticsearch.common.inject.Inject;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An allocation decider that prevents the more than prevents multiple instances
|
* An allocation decider that prevents multiple instances of the same shard to be
|
||||||
* of the same shard to be allocated on a single <tt>host</tt>. The cluster setting can
|
* allocated on a single <tt>host</tt>. The cluster setting can be modified in
|
||||||
* be modified in real-time by updating the {@value #SAME_HOST_SETTING} value of
|
* real-time by updating the {@value #SAME_HOST_SETTING} value of cluster setting
|
||||||
* cluster setting API. The default is <code>false</code>.
|
* API. The default is <code>false</code>.
|
||||||
* <p>
|
* <p>
|
||||||
* Note: this setting only applies if multiple nodes are started on the same
|
* Note: this setting only applies if multiple nodes are started on the same
|
||||||
* <tt>host</tt>. Multiple allocations of the same shard on the same <tt>node</tt> are
|
* <tt>host</tt>. Multiple allocations of the same shard on the same <tt>node</tt> are
|
||||||
|
|
Loading…
Reference in New Issue