How to bulk insert 600MB large json file to elasticsearch?

Have a look at these recent threads:

If the file consists of multiple documents, break it up into smaller chunks. If it is a single document, rethink how you are going to index and search it.

Hi @Christian_Dahlqvist,

Thanks for your reply.

In the geoJson file, under features array, I have objects that contains geometry and properties and geometry object stores the coordinates.

Currently I am mapping each {geometry & properties} as one document.

Any idea how to index this properly or chunk out to smaller potions?