remote_url_prefix编辑

此选项仅在执行远程重新索引操作时由 重新索引操作 使用。

这应该是一个单一值或留空。

actions:
  1:
    description: "Reindex index1 into index2"
    action: reindex
    options:
      wait_interval: 9
      max_wait: -1
      remote_url_prefix: my_prefix
      request_body:
        source:
          remote:
            host: https://otherhost:9200
          index: index1
        dest:
          index: index2
    filters:
    - filtertype: none

在某些情况下,您可能需要通过某种代理连接到远程 Elasticsearch 集群。API URI 项之前可能存在 URL 前缀,例如 http://example.com/elasticsearch/ 而不是 https://127.0.0.1:9200。在这种情况下,将 remote_url_prefix 设置为适当的值,在本例中为 elasticsearch

默认值为一个空字符串。