Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am new to Elasticsearch, I would like to know whether we can transfer data in to Elasticsearch using JSON file.

Please help me with the process if its there, I tried doing like below:

curl -XGET "http://localhost:9200/_bulk --databinary @shakespeare.json"

But I am getting an error "could not connect to host".

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
153 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try below curl command.

curl -s -XPOST "http://localhost:9200/<indexName>/<indexType>/_bulk?pretty" --data-binary "@shakespeare.json"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...