在 aws opensearch 中重建索引时获取无效主机

问题描述 投票:0回答:1

我有两个 Elastic search v 7.7 域,托管在同一个 VPC 下。我正在尝试按照 aws doc reindex 中提到的步骤在两个域之间重新索引数据。但是低于错误


  "error" : {
    "root_cause" : [
      {
        "type" : "illegal_argument_exception",
        "reason" : "Invalid remote host:[.......]"
      }
    ],
    "type" : "illegal_argument_exception",
    "reason" : "Invalid remote host:[.....]"
  },
  "status" : 400
}

我在 KIBANA 上执行的请求

POST _reindex?pretty=true
{
   "source":{
      "remote":{
         "host":"https://endpoint:443",
          "socket_timeout": "60m"
      },
      "index":"uiauto-2018071611"
   },
   "dest":{
      "index":"uiauto-2018071611"
   }
}
amazon-web-services elasticsearch aws-elasticsearch
1个回答
-1
投票

我今天遇到了同样的问题。

© www.soinside.com 2019 - 2024. All rights reserved.