副本
编辑副本编辑
action: replicas description: >- Set the number of replicas per shard for selected indices to 'count' options: count: ... filters: - filtertype: ...
空值和注释行将导致选择默认值(如果有)。如果设置了某个设置,但未被给定操作使用,则会忽略该设置。
此操作会将每个分片的副本数设置为 count 的值。
您可以选择将 wait_for_completion
设置为 True
,让 Curator 等待复制操作完成再继续。
action: replicas description: >- Set the number of replicas per shard for selected indices to 'count' options: count: ... wait_for_completion: True max_wait: 600 wait_interval: 10 filters: - filtertype: ...
此配置将最多等待 600 秒,直到所有索引副本完成,然后放弃。 max_wait
值为 -1
将无限期等待。Curator 将以 10
秒的间隔轮询完成情况,如 wait_interval
所定义。