Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
OK, I open a quick fix on https://github.com/apache/camel/pull/15380 On Fri, Aug 30, 2024 at 8:26 PM Claus Ibsen wrote: > On Fri, Aug 30, 2024 at 2:09 PM Zheng Feng wrote: > > > In this case, should we update the doc to add camel-quarkus-rest in the > > Quarkus section. > > > > By the way, I tr

Re: Configuring Replicator to handle failover scenarios in camel

2024-08-30 Thread Andrea Cosentino
There is an interceptorClasses parameter in the Camel Kafka configuration. https://camel.apache.org/components/4.4.x/kafka-component.html#_component_option_interceptorClasses Il giorno ven 30 ago 2024 alle ore 15:07 Pagano, Marco ha scritto: > In order to configure an additional interceptor for

Configuring Replicator to handle failover scenarios in camel

2024-08-30 Thread Pagano, Marco
In order to configure an additional interceptor for consumers from initial deployment in the source cluster an interceptor must be configured to allow consumers to resume when reading topics that are replicated to the secondary cluster. Confluent support (we use Confluent provider for Kafka) su

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Claus Ibsen
On Fri, Aug 30, 2024 at 2:09 PM Zheng Feng wrote: > In this case, should we update the doc to add camel-quarkus-rest in the > Quarkus section. > > By the way, I tried to use > "jbang -Dcamel.jbang.version=4.8.0-SNAPSHOT camel@apache/camel export > foo.java --runtime=quarkus --dir=quarkus --gav=or

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
In this case, should we update the doc to add camel-quarkus-rest in the Quarkus section. By the way, I tried to use "jbang -Dcamel.jbang.version=4.8.0-SNAPSHOT camel@apache/camel export foo.java --runtime=quarkus --dir=quarkus --gav=org.acme:test:1.0 --dep=camel-cli-connector,camel-rest" but the

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Claus Ibsen
Hi There is no CEQ releases with Camel 4.8.0 so something they get out of sync a bit. And rest is now only exported if it's really in use. On Fri, Aug 30, 2024 at 12:46 PM Zheng Feng wrote: > Thanks Claus - I should have read the doc more carefully! > > Hmm, it works perfectly in the camel jban

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
Thanks Claus - I should have read the doc more carefully! Hmm, it works perfectly in the camel jbang 4.7.0 but not work for 4.8.0-SNAPSHOT, because "camel export --with-runtime=quarkus", the pom.xml in exported project is missing org.apache.camel.quarkus camel-quar

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Claus Ibsen
Hi See this doc https://camel.apache.org/manual/camel-jbang.html#_controlling_spring_boot_and_quarkus_integrations On Fri, Aug 30, 2024 at 11:55 AM Zheng Feng wrote: > Hi, > > When I run a camel application outside of camel jbang and the `camel ps` > command does not find it. I think it is expe

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Federico Mariani
Hello, Do you have camel management in your pom.xml? https://quarkus.io/extensions/org.apache.camel.quarkus/camel-quarkus-management/ Il giorno ven 30 ago 2024 alle ore 11:55 Zheng Feng ha scritto: > Hi, > > When I run a camel application outside of camel jbang and the `camel ps` > command does

Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
Hi, When I run a camel application outside of camel jbang and the `camel ps` command does not find it. I think it is expected since camel jbang can only manage the process which is spawned by `camel run` command? is it right? I tried to run a camel quarkus app in a native mode by itself because `