Trying to set chunkSize to 50Kb but no matter what I set it seems to read round 65Kb chunk.
Have tried all the 3 settings individually, but do not have any effect on chunk size (number of lines read from csv on each chunk call back remains the same)
options.chunkSize = 40000
Papa.RemoteChunkSize = 40000;
Papa.LocalChunkSize = 40000;
Even after setting options.chunkSize = null, Papa parses in multiple chunks
Please help ...