副本
编辑副本
编辑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
定义)轮询完成情况。