ES导入导出索引
在Elasticsearch中,你可以使用elasticsearch-dump
工具来导入和导出索引。这个工具可以通过命令行使用,它支持导出为JSON Lines格式(每个文档一行),或直接导出为Elasticsearch的压缩格式。
安装elasticsearch-dump
:
npm install -g elasticdump
导出索引:
elasticdump --input=http://localhost:9200/my_index --output=/path/to/output/my_index.json
导入索引:
elasticdump --input=/path/to/output/my_index.json --output=http://localhost:9200/my_index --type=data
请确保你有足够的权限来访问Elasticsearch实例,并且在导入导出时指定正确的输入输出路径和索引名称。
评论已关闭