Skip to main content

Hi Community,

Is it possible to read a csv file as a _list already from CSV Reader or is there another list (element) reader that can be used?

 

Reason is that i have a very large CSV file containing 24 million rows, and i'm generating a list after it's been read in through the CSV reader.

 

Would be great if it were possible to read a txt/csv file as a list from start to avoid the additional time spent on generating the list.

 

Cheers

andre

Hi @andre​ ,

 

you are basically requesting to anticipate the list construction, but I think this only shifts the workload and does not solve the performance problem.


Hi @andre​ ,

 

you are basically requesting to anticipate the list construction, but I think this only shifts the workload and does not solve the performance problem.

yeah, i get what you referring to.. it only took 58 minutes to process so not too bad considering the performance


Reply