ChoETL icon indicating copy to clipboard operation
ChoETL copied to clipboard

How to handle large files

Open mihaimyh opened this issue 3 years ago • 2 comments

I have a request to process large csv files (>10GB size), what is the suggested way to handle this situation without running out for memory?

I was reading https://www.codeproject.com/Articles/1145337/Cinchoo-ETL-CSV-Reader but there is nothing mentioned about this scenario.

mihaimyh avatar Nov 25 '20 22:11 mihaimyh

Well, the readers are stream/forward only based. Well enough to handle large files. It is up to you on how to read and process the data.

If you can provide specific, I can provide direction. Thanks.

Cinchoo avatar Nov 26 '20 00:11 Cinchoo

What is the best way to process a 100GB+ csv file and transfer it to sql server for example. I know I can use bulk insert but in this case it is not memory/process/resource efficient.

desmati avatar Nov 10 '23 12:11 desmati