I want to insert more than 500,000 points to influxdb by using curl util. so i want to set "batch size" for better performance in curl but i can't find any option about batch size.
I have already read influxdb standartd manaul section "Write Syntex" - "Write a Batch of Points with curl"
i think points.txt file's line counts in curl -X POST 'http://localhost:8086/write' --data-urlencode 'db=mydb&rp=myrp&u=root&p=root' --data-binary @points.txt is batch size but i'm not sure.
so i tried to separate insert_file to 5000 lines file and insert each file to influxdb but i don't find influxdb efficient.
could anyone tell me truth ?