elastic-tools
CLI Utilities to export/import JSON from elasticsearch
Usage
Exporting data to json
elastic-export --host 127.0.0.1:9200 --index MyIndex --out ./data.json
The _id of the document from elastic's index will be part of the body of the exported document:
For example, this document from elastic:
will be exported to JSON like this:
Importing data from json array
elastic-import --host 127.0.0.1:9200 --index MyIndex --data ./data.json