migration_suffix编辑

此设置由 重新索引 操作使用。

如果目标索引设置为 MIGRATION,Curator 将逐个重新索引所有选定的索引,直到所有索引都重新索引完毕。通过配置 migration_suffix,可以将一个值追加到每个索引名称。例如,如果我要重新索引 index1index2index3,并且 migration_suffix 设置为 -new,那么重新索引后的索引将分别命名为 index1-newindex2-newindex3-new

actions:
  1:
    description: >-
      Reindex index1, index2, and index3 with a suffix of -new, resulting in
      indices named index1-new, index2-new, and index3-new
    action: reindex
    options:
      wait_interval: 9
      max_wait: -1
      migration_suffix: -new
      request_body:
        source:
          index: ["index1", "index2", "index3"]
        dest:
          index: MIGRATION
    filters:
    - filtertype: none

migration_suffix 可以与 migration_prefix 结合使用。