You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The input File consists of one very long line/row in the form of abc1, abc2, abc3, ..., abc10000000. The file size is about 200 mb.
Here is the parsing code:
The result is that beforeFirstChunk is executed as intended, but chunk callback just returns no data for each iteration and then returns the whole line in the last iteration, that defies the purpose of chunking/streaming. For multi-line/multi-row files everything is working as intended.
Could someone, please, explain the behaviour: is this format not supported or is there a bug in the library?
The text was updated successfully, but these errors were encountered:
The input File consists of one very long line/row in the form of
abc1, abc2, abc3, ..., abc10000000
. The file size is about 200 mb.Here is the parsing code:
The result is that
beforeFirstChunk
is executed as intended, butchunk
callback just returns no data for each iteration and then returns the whole line in the last iteration, that defies the purpose of chunking/streaming. For multi-line/multi-row files everything is working as intended.Could someone, please, explain the behaviour: is this format not supported or is there a bug in the library?
The text was updated successfully, but these errors were encountered: