Re: HTTP handlers with Camel Undertow endpoint

2023-02-24 Thread Arnaud Level
Hi Claus, sorry I forgot to mention it: 3.18.0 On Fri, Feb 24, 2023 at 1:31 PM Claus Ibsen wrote: > What Camel version do you use > > On Fri, Feb 24, 2023 at 12:04 PM Arnaud Level > wrote: > > > Hi, > > > > We are trying to configure a HTTP handler on our Un

HTTP handlers with Camel Undertow endpoint

2023-02-24 Thread Arnaud Level
Hi, We are trying to configure a HTTP handler on our Undertow endpoint: rest("/items/{itemId}/colors?handlers=authorizationHandler") .get("/").to("direct:xxx"); The AuthorizationHandler class implements org.apache.camel.component.undertow.CamelUndertowHttpHandler Camel throws the

Re: Camel AWS SQS and concurrentConsumers

2022-02-03 Thread Arnaud Level
t and was not > aware of the bug till you reported. > > Can you open up a jira for the same? > > On Thu, 3 Feb, 2022, 01:00 Arnaud Level, wrote: > > > Hi again Narsi, > > > > I read more about the *delay* component and you are right! Using it with > a >

Re: Camel AWS SQS and concurrentConsumers

2022-02-02 Thread Arnaud Level
taken into account. I still think we should open an issue as this behavior is supposed to be supported by the concurrentConsumer URI parameter of the SQS component. What do you think? Thanks for your help again! Arnaud On Wed, Feb 2, 2022 at 6:42 PM Arnaud Level wrote: > Hi Narsi, > >

Re: Camel AWS SQS and concurrentConsumers

2022-02-02 Thread Arnaud Level
}) > .process(exchange -> { > try { > Thread.sleep(5000); > } catch (InterruptedException e) { > e.printStackTrace(); > }}); > > try it and let me know. > > On Mon, Ja

Re: Camel AWS SQS and concurrentConsumers

2022-01-31 Thread Arnaud Level
t; poll to the SQS Queue. So if there are less than 10 messages on your > queue, the other consumers aren't going to really get an messages. > > On Mon, Jan 31, 2022 at 7:15 AM Arnaud Level wrote: > > > Hi Narsi, > > It's a fifo but I actually tried the simple code I've posted o

Re: Camel AWS SQS and concurrentConsumers

2022-01-31 Thread Arnaud Level
; > On Mon, 31 Jan, 2022, 17:31 Arnaud Level, wrote: > > > Hi, > > > > (Camel version: camel-aws2-sqs-starter: 3.12.0) > > > > I am trying to use and understand concurentConsumers with a SQS queue: > > > > > from("aw

Camel AWS SQS and concurrentConsumers

2022-01-31 Thread Arnaud Level
Hi, (Camel version: camel-aws2-sqs-starter: 3.12.0) I am trying to use and understand concurentConsumers with a SQS queue: from("aws2-sqs://queuexxx?concurrentConsumers=5=#sqsClient& waitTimeSeconds=20") .process(exchange -> { System.out.println("Message