Re: Using reactive datasource in Camel Quarkus?

2023-03-17 Thread Mikael Andersson Wigander
Well it seems impossible to have both JDBC and Reactive datasources in Quarkus simultaneously when using Camel, when both sources connect to the same database. Even with different DS in the properties file declared it will not work. /M --- Original Message --- On Thursday, March 16th,

Re: Using reactive datasource in Camel Quarkus?

2023-03-17 Thread James Netherton
Is this what you are trying to achieve? https://github.com/jamesnetherton/sql-reactive-imperitive On Fri, 17 Mar 2023 at 09:50, Mikael Andersson Wigander wrote: > Well it seems impossible to have both JDBC and Reactive datasources in > Quarkus simultaneously when using Camel, when both sources

Svar: Re: Using reactive datasource in Camel Quarkus?

2023-03-17 Thread Mikael Andersson Wigander
Hi Almost. I’m trying to use either sql or jdbc component I think that’s where I fail. /M Den 17 mars 2023 kl 14:10, James Netherton skrev: > Is this what you are trying to achieve? > > https://github.com/jamesnetherton/sql-reactive-imperitive > > On Fri, 17 Mar 2023 at 09:50, Mikael Anderss

Re: Using specificAvroReader with Camel JBang and kafka

2023-03-17 Thread Claus Ibsen
Hi Yeah that is a good question. Dont have super much time to help / investigate this. Would you create a ticket to add an example at https://github.com/apache/camel-kamelets-examples We should surely make this easier with both camel-kafka component, and especially with the kafka based kamelets.

Re: Using specificAvroReader with Camel JBang and kafka

2023-03-17 Thread Ramesh Venkitaswaran
Sure. Where would I make this ticket at? Is there a JIRA board link that I can get? -- Ramesh On Fri, Mar 17, 2023 at 11:02 AM Claus Ibsen wrote: > > Hi > > Yeah that is a good question. Dont have super much time to help / > investigate this. > > Would you create a ticket to add an example at > h

Svar: Re: Using reactive datasource in Camel Quarkus?

2023-03-17 Thread Mikael Andersson Wigander
I took another look and it seems you made it working. Thank you. I’ll compare it to mine and see what is wrong in my code. /M Den 17 mars 2023 kl 15:35, Mikael Andersson Wigander skrev: > Hi > > Almost. > > I’m trying to use either sql or jdbc component > > I think that’s where I fail. > > /

Re: Using reactive datasource in Camel Quarkus?

2023-03-17 Thread Mikael Andersson Wigander
OK, I have tested this out both in my app and in a clone of yours and we have a different approach. I'm using a Hibernate with Panache for my reactive datasource but Camel uses JDBC. According to my findings they cannot coexist, one of them has to go. I reckon I have to ditch the Camel stuff s