is there any way to import a json file(contains 100 documents) in elasticsearch server.?

前端 未结 9 1736
孤街浪徒
孤街浪徒 2020-12-04 10:39

Is there any way to import a JSON file (contains 100 documents) in elasticsearch server? I want to import a big json file into es-server..

9条回答
  •  星月不相逢
    2020-12-04 10:50

    One way is to create a bash script that does a bulk insert:

    curl -XPOST http://127.0.0.1:9200/myindexname/type/_bulk?pretty=true --data-binary @myjsonfile.json
    

    After you run the insert, run this command to get the count:

    curl http://127.0.0.1:9200/myindexname/type/_count
    

提交回复
热议问题