【发布时间】:2021-11-30 18:40:15
【问题描述】:
我正在尝试使用远程重新索引 api 将一个索引从具有 ES 5.3 的旧集群移动到不同的集群 ES 7.10,两者都在同一个 VPC 中
curl -X POST \https://target.com/_reindex \
-H 'content-type: application/json' \
-d '{
"source": {
"remote": {
"host": "https://source.com:443"
},
"index": "ind1"
},
"dest": {
"index": "ind1"
}
}'
我收到了这个错误
{"error":{"root_cause":[{"type":"null_pointer_exception","reason":null}],"type":"null_pointer_exception","reason":null},"status":500}
我不能只拍摄快照并迁移,因为 7.10 不支持 5.3 索引
【问题讨论】:
标签: elasticsearch elasticsearch-5 reindex amazon-elasticsearch