[ANNOUNCEMENT] Apache Camel K 1.10.4 released

2023-01-31 Thread Andrea Cosentino
The Camel community announces the immediate availability of Apache Camel K 1.10.4. You can find more information in the release notes[1]. The artifacts are published and ready for you to download either from the Apache mirrors or from the Github repository [1]. Many thanks to all who made this

[ANNOUNCEMENT] Apache Camel K 1.11.1 released

2023-01-31 Thread Andrea Cosentino
The Camel community announces the immediate availability of Apache Camel K 1.11.1. You can find more information in the release notes[1]. The artifacts are published and ready for you to download either from the Apache mirrors or from the Github repository [1]. Many thanks to all who made this

[ANNOUNCE] Apache Camel Kamelets 3.20.1.1 released

2023-01-31 Thread Andrea Cosentino
The Camel PMC is pleased to announce the release of Apache Camel Kamelets 3.20.1.1 Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release contains a new set of kamelets and bug fixes. The re

Re: Camel 3.20.1 // Events ExchangeCreated and ExchangeCompleted seem to be repeated

2023-01-31 Thread ski n
Maybe it's a good aidea to add a graph/explanation about the Exchange lifecycle to: https://camel.apache.org/manual/lifecycle.html and/or https://camel.apache.org/manual/exchange.html On Mon, Jan 30, 2023 at 3:56 PM Claus Ibsen wrote: > It has always been like that, when an exchange is create

How to trigger Messages at specific times

2023-01-31 Thread Yash Ganthe
Hi, We have a DB table where every row has a text message and a timestamp. E.g. Mesg1 09:00 Mesg2 09:01 Mesg3 09:15 Mesg4 09:20 The timings are not at a fixed interval. It is uneven. We would like to read the table as a Source and send the Messages to a Target at the configured timestamps. Compon

Re: EventNotifier filters

2023-01-31 Thread Claus Ibsen
Yes the exchange has fromRouteId and other information you can use in your filter. There is also an isEnabled method you can implement for the filtering. On Tue, Jan 31, 2023 at 8:54 AM ski n wrote: > I have a question about event notifiers. > > Currently, I collect events using EventNotifierSup

Re: How to trigger Messages at specific times

2023-01-31 Thread Mark Nuttall
Use quartz outside of camel and let camel do the rest. This is what we are doing in a current product and I've done this before in the past. On Tue, Jan 31, 2023, 3:58 AM Yash Ganthe wrote: > Hi, > > We have a DB table where every row has a text message and a timestamp. E.g. > Mesg1 09:00 > Mesg

Re: How to trigger Messages at specific times

2023-01-31 Thread Yash Ganthe
>From Quartz that is set up outside of Camel, what do we need to do to trigger Camel? On Tue, 31 Jan 2023 at 21:51, Mark Nuttall wrote: > Use quartz outside of camel and let camel do the rest. This is what we are > doing in a current product and I've done this before in the past. > > On Tue, Jan

ProducerTemplate (or something similar) support in Camel JBang?

2023-01-31 Thread Mikael Koskinen
Hi, I've been wondering if it would be possible or a good idea to add something like the ProducerTemplate to Camel JBang? I mean the ability to send messages to running integrations using the CLI. Use case for me would be a scenario where I could start direct endpoints when our application starts

Re: ProducerTemplate (or something similar) support in Camel JBang?

2023-01-31 Thread Claus Ibsen
Hi On Wed, Feb 1, 2023 at 5:40 AM Mikael Koskinen wrote: > Hi, > > I've been wondering if it would be possible or a good idea to add > something like the ProducerTemplate to Camel JBang? I mean the ability > to send messages to running integrations using the CLI. > > Use case for me would be a