Re: Camel components overview

2021-06-16 Thread Andrea Cosentino
Hello. 1) The 3.0.x or 3.9.x versions doesn't have space in the documentation because they were development versions through the LTS, so what you see listed there are: - the last development version release - The 3.7.x LTS documentation - The 3.4.x LTS documentation - The 2.x old documentation

Camel components overview

2021-06-16 Thread ski n
Hi all, Currently, there is a component overview for the latest version and LTS versions. For example: https://camel.apache.org/components/latest/ https://camel.apache.org/components/3.10.x/ https://camel.apache.org/components/3.7.x/ https://camel.apache.org/components/3.4.x/ https://camel.apache

Two Apache Conferences with Camel content

2021-06-16 Thread Zoran Regvart
Hi Cameleers, This year we have two conferences with Camel topics. Both are free to attend and online. Checkout the schedule linked from the blog post: https://camel.apache.org/blog/2021/06/ApacheCon-2021/ And register to attend! See you there :) zoran -- Zoran Regvart

Re: Camel K groovy json

2021-06-16 Thread Nicola Ferraro
Hi, can you provide the versions of the operators that you used in the two instances? It seems you're using a different set of libraries. Nicola On Wed, Jun 16, 2021 at 4:50 PM Dennis Wiesemann wrote: > Hello, > I want to use a groovy script for a small Mapping I'm starting this as > follows: >

Camel K groovy json

2021-06-16 Thread Dennis Wiesemann
Hello, I want to use a groovy script for a small Mapping I'm starting this as follows: new JsonSlurper().parseText(request.body) On our AWS Kubernetes Cluster the mapping worked without any problems. Later I deployed the same route on our GCP and I got following error message: org.apache.camel.

RE: [EXTERNAL] Re: overwrite component option via application.properties camel spring boot

2021-06-16 Thread Gv, Shivakumar
Thanks Claus!! -Original Message- From: Claus Ibsen Sent: Wednesday, June 16, 2021 5:32 PM To: users@camel.apache.org Subject: [EXTERNAL] Re: overwrite component option via application.properties camel spring boot *EXTERNAL SENDER* Hi You can set an ENV or JVM system property that Ca

Re: overwrite component option via application.properties camel spring boot

2021-06-16 Thread Claus Ibsen
Hi You can set an ENV or JVM system property that Camel will use as override instead of values in application.properties. BTW if you use from("kafka:topic? heartbeatIntervalMs=3000") Then its a hardcoded value and it cannot be overridden, either you use property placeholders {{xxx}} and put the

overwrite component option via application.properties camel spring boot

2021-06-16 Thread Gv, Shivakumar
Hi Team, Is it possible to update any particular component option using camel springboot component property after creating springboot jar. Eg: In code, java DS I have from("kafka:topic? heartbeatIntervalMs=3000") once the springboot jar is created . can I update/overwrite heartbeatInterva