I have big 10+GB files which I need to load and process line by line. I’m trying to use CSV package, but appears this package preload entire file.
Can anyone help or point to example of code which works with big files?
I have big 10+GB files which I need to load and process line by line. I’m trying to use CSV package, but appears this package preload entire file.
Can anyone help or point to example of code which works with big files?
This might help:
Reading-Chunks
If you want to process data row by row, then maybe Rows can be useful? Home · CSV.jl
Have a look at JuliaDB too.