Re: Liveness probe or reconnect to Kafka when using of camel-kafka

2021-11-19 Thread Otavio Rodolfo Piske
+1 for the version information ... especially since we had some refactoring on the consumer end for 3.12. I tried to reproduce the problem w/ 3.12 but in my case it reconnected as expected. On Thu, Nov 18, 2021 at 12:10 PM Andrea Cosentino wrote: > For work around, I meant to say work in the are

Aggregator issue

2021-11-19 Thread Laurent Lamouline
Hello, I'm currently facing an issue when using the Aggregator component in a processing flow. The processing flow is as follows : |---| | Main route entry point | |

Re: Aggregator issue

2021-11-19 Thread Jeremy Ross
Your diagram came across jumbled, so hard for me to read it. But your AggregationStrategy is responsible for handling and/or propagating exceptions. If it swallows an exception, and doesn't pass it on via the "newExchange", it won't be available to the route's error handler. On Fri, Nov 19, 2021 a

sftp deleting file from localworkDirectory - How do I make it stop

2021-11-19 Thread Wilken Marci J
How do I get camel-sftp to stop deleting the file from my local work directory after is done downloading. I just want it to download the file and not do anything to it. When it done all I want to do is pass the name of the file to another route that does the processing. But I see this in the

Re: sftp deleting file from localworkDirectory - How do I make it stop

2021-11-19 Thread ski n
On a quick scan, you could probably change this: + "&delete=false" + "&noop=true" On a more general note it would be good to start with fewer options. Then add options according to the component documentation: https:

Re: sftp deleting file from localworkDirectory - How do I make it stop

2021-11-19 Thread Claus Ibsen
Hi Then do a route that is from ftp to file And then it will move the file from the local work directory to the final file destination On Fri, Nov 19, 2021 at 10:33 PM Wilken Marci J wrote: > > How do I get camel-sftp to stop deleting the file from my local work > directory after is done d