exception when running Camel test

2022-07-01 Thread Ghita Cornel
Hi all I have this project GitHub - ghitacornel/testApacheCamel  | | | | | | | | | | | GitHub - ghitacornel/testApacheCamel Contribute to ghitacornel/testApacheCamel development by creating an account on GitHub. | | | for test purpose. While trying to test some examples with la

Re: exception when running Camel test

2022-07-01 Thread Claus Ibsen
Hi The src/test/resources/camel or src/main/resources/camel is a reserved folder where Camel will by default load routes from various source files such as yaml, xml, or whatever. So do not use that for test data. Or turn this off in camel, see the camel. spring boot page for the options https://c

Re: Memory problem with Camel split

2022-07-01 Thread ski n
Hi Florian, Did you also set a specific Strategy for the cache of the streaming: https://camel.apache.org/manual/stream-caching.html There you can set the threshold so that the stream is spooled to a disk instead of kept in memory. Raymond On Fri, Jul 1, 2022 at 3:49 PM EIBL Florian (ICS46

Re: Memory problem with Camel split

2022-07-01 Thread Michael Rambichler
Hi all, I have filed a critical JIRA Bug Ticket: https://issues.apache.org/jira/browse/CAMEL-18255 The case can easily be reproduced and risks a lot of our splitting routes. Best Michael Am Fr., 1. Juli 2022 um 16:06 Uhr schrieb ski n : > Hi Florian, > > Did you also set a specific Strategy fo

handling exceptions in from of a jms component

2022-07-01 Thread z8...@yahoo.com.ar.INVALID
Hi, Is there any way to handle exceptions when they happen in the from side of a jms endpoint? For example:   How should I handle a Connection problem when I'm consuming from an mq? I tried sorrounding from with doTry/doCatch, using and , but couldn't make it work. Thanks in advanced.