es 数据导出

方案1:
https://github.com/taskrabbit/elasticsearch-dump
方案2:
https://github.com/medcl/elasticsearch-migration

这里使用方案1(方案2报错没时间研究了)

安装 elasticdump

npm install elasticdump -g

导出:

elasticdump --input=http://192.168.1.100:9200/test --output=./my_index.json --type=data

导入:

elasticdump --input=./my_index.json --output=http://192.168.1.100:9200/test --type=data