Re: Facing issue while producing

2024-09-11 Thread Vikram Singh
Hello Akash, I am getting below error logs sometimes when a kafka producer is going to produce some messages to the topic. *Logs:-* org.apache.kafka.common.errors.NotLeaderOrFollowerException: For requests intended only for the leader, this error indicates that the broker is not the current leade

Re: SmallRye bootstrap.servers value no longer accepted in kafka-clients v3.8.0

2024-09-11 Thread James Olsen
Looking at org.apache.kafka.clients.ClientUtils.parseAndValidateAddresses(List, ClientDnsLookup) shows that error message is referring to a singular url from the list. So the issue is earlier in the chain - the list is not being decoded from the CSV. > On 12 Sep 2024, at 03:03, Josep Prat wr

Re: [ANNOUNCE] New committer: Jeff Kim

2024-09-11 Thread Philip Nee
congrats! On Tue, Sep 10, 2024 at 5:02 PM Kirk True wrote: > Congratulations Jeff! > > > On Sep 9, 2024, at 6:25 PM, Matthias J. Sax wrote: > > > > Congrats! > > > > On 9/9/24 12:34 PM, José Armando García Sancio wrote: > >> Congratulations Jeff! > >> On Mon, Sep 9, 2024 at 11:45 AM Justine Ols

Re: SmallRye bootstrap.servers value no longer accepted in kafka-clients v3.8.0

2024-09-11 Thread Josep Prat
Hi Bart, I'm not an expert in this area, but looking at the change [1] in question and the usage of this regex, I'd say it was never the intention to accept comma separated hosts with ports (and optional protocol). The only 2 usages of HOST_PORT_PATTERN can be found in lines 538 [2] and 548 [3] in

SmallRye bootstrap.servers value no longer accepted in kafka-clients v3.8.0

2024-09-11 Thread Hamer, Bart
Hi, One of our Quarkus applications connects to Kafka topics using the kafka-clients library. Quarkus provides support for Apache Kafka through the SmallRye Reactive Messaging framework. According to the SmallRye documentation the bootstrap.serv