【Elasticsearch7.11】reindex问题

avatar
作者
筋斗云
阅读量:2

参考博文链接
问题:reindex 时出现如下问题
在这里插入图片描述
原因:数据量大,kibana的问题
解决方法:
将DSL命令转化成CURL命令在服务上执行
在这里插入图片描述
CURL命令
自动转化

curl  -XPOST "http://IP:PORT/_reindex" -H 'Content-Type: application/json' -d'{  "conflicts": "proceed",  "source": {    "index": "fans_account_information"  },  "dest": {    "index": "fans_account_information-000001"  }}' 

带身份认证

curl -u USERNAME:PASSWORD -XPOST "http://IP:PORT/_reindex" -H 'Content-Type: application/json' -d'{  "conflicts": "proceed",  "source": {    "index": "fans_account_information"  },  "dest": {    "index": "fans_account_information-000001"  }}' 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!