Hi, I have a camel route where I am dealing with huge CSV files which comes in gzip format. The route looks as follows:
from(inputLocation) .unmarshal().gzip() .unmarshal().csv() .process(someProcessor) .to(outputLocation) This route works fine with small files but when I use huge files, it throws heap space exception. Can you please tell me a way to avoid this? I cannot chunk my file before unmarshalling as it will affect my processing in the processor. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Unmarshal-throwing-heap-space-exception-tp5736621.html Sent from the Camel - Users mailing list archive at Nabble.com.
