[ANNOUNCEMENT] Apache Camel Quarkus 1.0.0-M7 Released

2020-04-29 Thread Andrea Cosentino
The Camel community announces the immediate availability of Camel-Quarkus 1.0.0-M7 The artifacts are published and ready for you to download either from the Apache mirrors or from the Github repository. For more details you can have a look at the github repository [1] Many thanks to all who mad

Re: netty-http @Produce / ProducerTemplate

2020-04-29 Thread Claus Ibsen
Hi Ah okay, can you create a JIRA ticket so we wont forget. On Wed, Apr 29, 2020 at 5:53 PM iandi2011-onl...@yahoo.com.INVALID wrote: > > Hello, > > > according to > https://camel.apache.org/components/latest/netty-http-component.html this > should work : netty-http:http://0.0.0.0:8080[?opti

Re: Camel Jdbc // Error while connecting to HIVE

2020-04-29 Thread Claus Ibsen
Hi Try set resetAutoCommit=false On Wed, Apr 29, 2020 at 5:05 PM Reji Mathews wrote: > > Hello community > > I am using camel jdbc component to query some data from HIVE database. When I > trigger a query, it throws me off with following stack trace. Has any > attempted connecting to HIVE data

netty-http @Produce / ProducerTemplate

2020-04-29 Thread iandi2011-onl...@yahoo.com.INVALID
Hello,   according to https://camel.apache.org/components/latest/netty-http-component.html  this should work : netty-http:http://0.0.0.0:8080[?options]   In my camel 3.2 spring-boot test environment I try this :            org.apache.camel.springboot        camel-netty-http-starter       @Pr

Camel Jdbc // Error while connecting to HIVE

2020-04-29 Thread Reji Mathews
Hello community I am using camel jdbc component to query some data from HIVE database. When I trigger a query, it throws me off with following stack trace. Has any attempted connecting to HIVE database using camel jdbc component? Or, is there a better component to achieve the task. PS: I have

Re: Camel Mongo findById // empty results

2020-04-29 Thread Claus Ibsen
Hi Nice one Pasquale. I wonder if the docs are highlighting this? Maybe we can add this as an example. PR is welcome, we love contributions. You can do this in the adoc file in src/main/docs of the component. You can find that on github On Wed, Apr 29, 2020 at 9:35 AM Pasquale Congiusti wrote:

Re: Sqs2EndpointBuilder is not respecting delay - polling continuously

2020-04-29 Thread Claus Ibsen
codedPath=, > headers=[amz-sdk-invocation-id, Content-Length, Content-Type, > User-Agent], queryParameters=[]) > 2020-04-28 23:39:18.733 DEBUG 22578 --- [e-worker-encode] > s.amazon.awssdk.auth.signer.Aws4Signer : AWS4 String to sign: > AWS4-HMAC-SHA256 > 20200429T033918Z >

Re: Camel Mongo findById // empty results

2020-04-29 Thread Pasquale Congiusti
Hi Reji, actually you're providing a String type to your body, and Mongo does not treat the "_id" field as a String but as an ObjectId type. Please, change your setBody method to: .setBody(constant(new ObjectId("5ea1c4ae0911be2db0008909"))) and everything should work as expected. Cheers, Pasqua