I've been trying to insert a jsonl file into elastic search using:
curl -H 'Content-Type: application/x-ndjson' -XPOST 'localhost:9200/ri/RiAll/_bulk?pretty' --data-binary @riall.jsonl
The command doesn't throw an error but nothing gets imported. This is the response:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 602M 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
A smaller file size works but I'm sure elasticsearch can take a 600mb file, I know lucene can. Do I need to configure the heap or something like that?