I have a .json file and I want to load into elastic search for filtering.
1 Answer
A simple way to get started is to use curl. If you have a JSON file with a single document, you could index it like this:
$ curl -XPOST "http://localhost:9200/example/default" [email protected]
example is the index name and default the doc type.
For more information, take a look at the docs: