wait_for_active_shards
此设置决定了在客户端返回之前,必须有多少分片副本处于活跃状态。默认值为 1,这意味着只需要主分片。
设置为 all
表示所有分片副本,否则设置为小于或等于分片总副本数(副本数 + 1)的任何非负值
请阅读 Elasticsearch 文档以获取更多信息。
actions:
1:
description: "Reindex index1,index2,index3 into new_index"
action: reindex
options:
wait_interval: 9
max_wait: -1
wait_for_active_shards: 2
request_body:
source:
index: ['index1', 'index2', 'index3']
dest:
index: new_index
filters:
- filtertype: none
action: rollover
description: >-
Rollover the index associated with alias 'name', which should be in the
form of prefix-000001 (or similar), or prefix-yyyy.MM.DD-1.
options:
name: aliasname
conditions:
max_age: 1d
max_docs: 1000000
wait_for_active_shards: 1
extra_settings:
index.number_of_shards: 3
index.number_of_replicas: 1
timeout_override:
continue_if_exception: False
disable_action: False
action: shrink
description: >-
Shrink selected indices on the node with the most available space.
Prepend target index names with 'foo-' and append a suffix of '-shrink'
options:
shrink_node: DETERMINISTIC
wait_for_active_shards: all
filters:
- filtertype: ...