Re: Large CSV files with headers

2018-04-17 Thread Frizz
> The tokenize language has a skipFirst you can use to skip the header line OK. But it would be nice if I could make use of the header line (and not just throw it away). > There are a number of different CSV data formats / components you can > use, if the is not good enough for you. Which one

Re: Large CSV files with headers

2018-04-17 Thread Claus Ibsen
Hi The tokenize language has a skipFirst you can use to skip the header line https://github.com/apache/camel/blob/master/camel-core/src/main/docs/tokenize-language.adoc There are a number of different CSV data formats / components you can use, if the is not good enough for you. On Tue, Apr 17,

Large CSV files with headers

2018-04-17 Thread Frizz
I have some CSV files with a header line, so setting useMaps="true" would be the natural thing to do. Works great. My CSV files are very big, so using streaming/parallelProcessing would be the natural thing to do. Also works great. Unfortunately using useMaps="true" AND streaming/parallelProcessi