-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaks in streaming mode #30
Comments
Actually, looking at the code, it seems that streaming mode is not going to work since it calls the functions in app.js for every chunk and those functions output a complete array. |
I am also experiencing this issue. @pradeep-mishra please remove support for streaming data since it's clear that this is not supported at this time. |
bumped into this as well with not so big csv files ... (8914 lines / 760K) - think I solved it by piping through the following
|
When used in streaming mode with a reasonable size file, it seems to choke at regular points - I'm guessing its at chunk boundaries. Each time it stops part way through a record and inserts a closing and opening bracket
][
and then continues from the next record.The csv file I'm using has about 5000 lines and the breaks occur at roughly every 560 lines.
Line lengths are variable but less than 150 characters.
There are 12 columns in the data.
The text was updated successfully, but these errors were encountered: