12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- [[modules-gateway]]
- === Local gateway settings
- The local gateway stores the cluster state and shard data across full
- cluster restarts.
- The following _static_ settings, which must be set on every master node,
- control how long a freshly elected master should wait before it tries to
- recover the cluster state and the cluster's data.
- NOTE: These settings only take effect on a full cluster restart.
- `gateway.expected_nodes`::
- (<<static-cluster-setting,Static>>)
- deprecated:[7.7.0, This setting will be removed in 8.0. Use `gateway.expected_data_nodes` instead.]
- Number of data or master nodes expected in the cluster.
- Recovery of local shards begins when the expected number of
- nodes join the cluster. Defaults to `0`.
- `gateway.expected_master_nodes`::
- (<<static-cluster-setting,Static>>)
- deprecated:[7.7.0, This setting will be removed in 8.0. Use `gateway.expected_data_nodes` instead.]
- Number of master nodes expected in the cluster.
- Recovery of local shards begins when the expected number of
- master nodes join the cluster. Defaults to `0`.
- `gateway.expected_data_nodes`::
- (<<static-cluster-setting,Static>>)
- Number of data nodes expected in the cluster.
- Recovery of local shards begins when the expected number of
- data nodes join the cluster. Defaults to `0`.
- `gateway.recover_after_time`::
- (<<static-cluster-setting,Static>>)
- If the expected number of nodes is not achieved, the recovery process waits
- for the configured amount of time before trying to recover.
- Defaults to `5m` if one of the `expected_nodes` settings is configured.
- +
- Once the `recover_after_time` duration has timed out, recovery will start
- as long as the following conditions are met:
- `gateway.recover_after_nodes`::
- (<<static-cluster-setting,Static>>)
- deprecated:[7.7.0, This setting will be removed in 8.0. Use `gateway.recover_after_data_nodes` instead.]
- Recover as long as this many data or master nodes have joined the cluster.
- `gateway.recover_after_master_nodes`::
- (<<static-cluster-setting,Static>>)
- deprecated:[7.7.0, This setting will be removed in 8.0. Use `gateway.recover_after_data_nodes` instead.]
- Recover as long as this many master nodes have joined the cluster.
- `gateway.recover_after_data_nodes`::
- (<<static-cluster-setting,Static>>)
- Recover as long as this many data nodes have joined the cluster.
- [[dangling-indices]]
- ==== Dangling indices
- When a node joins the cluster, if it finds any shards stored in its local
- data directory that do not already exist in the cluster, it will consider
- those shards to belong to a "dangling" index. You can list, import or
- delete dangling indices using the <<dangling-indices-api,Dangling indices
- API>>.
- NOTE: The API cannot offer any guarantees as to whether the imported data
- truly represents the latest state of the data when the index was still part
- of the cluster.
|