Re: DSL to processors code

2023-07-28 Thread Alex O'Ree
Thanks ill dig into it On Fri, Jul 28, 2023, 10:54 AM Claus Ibsen wrote: > I dont have time to write a long response, but a hint is > > model -> reifier -> processor > > On Fri, Jul 28, 2023 at 4:48 PM Alex O'Ree wrote: > > > Can someone point me to the code that apache camel uses to

Re: Camel Kafka Consumer Node -1 disconnected error

2023-07-28 Thread Claus Ibsen
Hi You can also look at how some of the kamelts for kafka (for different kind of security SSL, Scram, ...) https://github.com/apache/camel-kamelets/tree/main/kamelets And take a read at their security docs https://kafka.apache.org/documentation/#security On Fri, Jul 28, 2023 at 5:55 PM Mark

Re: Camel Kafka Consumer Node -1 disconnected error

2023-07-28 Thread Mark Nuttall
Yeah, typically most camel config is in properties. It looks like all the config is on the URI and i dont see any security settings. It is very highly likely what Claus said. Or, your service does not have the correct access. I have used Kafka with AWS MSK and Confluent and have seen this error

Re: DSL to processors code

2023-07-28 Thread Claus Ibsen
I dont have time to write a long response, but a hint is model -> reifier -> processor On Fri, Jul 28, 2023 at 4:48 PM Alex O'Ree wrote: > Can someone point me to the code that apache camel uses to instantiate and > configure camel processors? I'm trying to learn how connectors and >

DSL to processors code

2023-07-28 Thread Alex O'Ree
Can someone point me to the code that apache camel uses to instantiate and configure camel processors? I'm trying to learn how connectors and processors get configured from the DSL and the magic behind this. I suspect it's related to the configurator classes but i'm not entirely sure. Thanks!

Re: Camel Kafka Consumer Node -1 disconnected error

2023-07-28 Thread Claus Ibsen
Hi There is no so much error details. Kafka is complex messaging system. And specially product systems are setup to be secured out of the box, and then you likely need to configure Camel Kafka for secured connection. Also try to google that error message bits you have and see what you can find on

Camel Kafka Consumer Node -1 disconnected error

2023-07-28 Thread Aditya Kavathekar
Hi everyone I am trying to consume from a kafka topic and simply print the body in logs. the code works when I try to connect to a local kafka topic on localhost but I get error when I try to connect to dev1 kafka topic. In the logs I see after my code subscribes to the topic then I get these