Re: Camel 4 migration blog post - Feedback welcome

2023-10-07 Thread Claus Ibsen
Hi Raymon Yes these are good observations about "why upgrade to v4 and what benefits do I get". Maybe we can write a blog post about this, and you are surely welcome to help with this. A blog post is just to do a PR for camel-website (you can copy an existing blog post). And then send as draft PR

Re: Camel 4 migration blog post - Feedback welcome

2023-10-07 Thread Claus Ibsen
On Fri, Oct 6, 2023 at 4:08 PM Mark Nuttall wrote: > one thing that got us was, since we were using kafka with security but not > using Kafka idempotency, we had to add the following flag. As usual, kafka > messages were not helpful. > > camel.component.kafka.enable-idempotence=false > > Oh is th

Re: How to properly remove a routeConfiguration

2023-10-07 Thread Claus Ibsen
Hi You are using Camel 3 but there is API on Camel 4 (maybe also in 3 but I dont bother to check). Where you can remove via the model (def class). So you need to remove that way. On Tue, Oct 3, 2023 at 9:34 PM ski n wrote: > I have a route and a routeConfiguration. I want to remove both from

Re: How to properly remove a routeConfiguration

2023-10-07 Thread ski n
Yes, I think it's also present in Camel 3: https://www.javadoc.io/static/org.apache.camel/camel-core-model/3.20.7/org/apache/camel/model/Model.html There you have: removeRouteConfiguration Didn't found as the removeRoute is on the CamelContext, but removeConfiguration only on the CamelModelCont