刷新

编辑

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

actions:
  1:
    description: "Reindex index1 into index2"
    action: reindex
    options:
      wait_interval: 9
      max_wait: -1
      refresh: True
      request_body:
        source:
          index: index1
        dest:
          index: index2
    filters:
    - filtertype: none

refresh设置为True将导致所有重新索引的索引被刷新。这与Index API的refresh参数不同,后者只刷新接收新数据的_分片_。

有关此设置的更多信息,请阅读 https://elastic.ac.cn/guide/en/elasticsearch/reference/8.15/docs-reindex.html

默认值为True