Re: Persistent MQTT Client Message Lost

2019-08-08 Thread Willem Jiang
I just checked the code of camel-mqtt code, and find a line[1] which could let to the issue that you face. If the endpoint is start and consumer is not start yet, the consumers could be empty, camel cannot send the exchange to right consumer to use. Maybe you can set a break or add some log to veri

How to hande exceptions raised in "interceptSendToEndpoint"

2019-08-08 Thread chege
Hi, I have a parent route builder that defines an interceptor and excpetion handler as follows. onException(Exception.class) .process(new Processor() { @Override public void process(Exchange exchange) throws Exception { System.out.printl

WildFly-Camel 10.2.0 released

2019-08-08 Thread Thomas Diesler
WildFly-Camel 10.2.0 provides Camel-2.24.1 integration with WildFly-16.0.0 This is a minor update release that comes with a new compatibility contract for WildFly. Component upgrades include Camel-2.24.1 Hawtio-2.7.0 In addition to t

Re: distributing files among clusters

2019-08-08 Thread Farkas Lajos
If you use queues, messages will be distributed among the listeners on the queue, it is the way the messaging queue works. All you have to make sure is that the processing processes are listening on the same queue. We use this to distribute easily load between multiple processing nodes. LAji On