Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Satish Duggana
Thanks Greg for verifying the release including the earlier blocker(KAFKA-15473) verification. ~Satish. On Wed, 20 Sept 2023 at 22:30, Greg Harris wrote: > Hi all, > > I verified the functionality of KIP-898 and the recent fix for > KAFKA-15473 with the following steps: > > 1. I started a 3.5.1

Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Satish Duggana
Hi Divij, Thanks for calling out documentation issues. Some of them are being addressed in the existing documentation PRs. We will keep addressing the remaining documentation issues by making respective changes in kafka-site repo for 3.6.0 release. I think documentation is important but I do not c

Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Gary Russell
My apologies; both classes are in the server-common...-test jar. Both issues can be closed. From: Gary Russell Sent: Wednesday, September 20, 2023 3:56 PM To: users@kafka.apache.org ; dev Subject: Re: [kafka-clients] [VOTE] 3.6.0 RC1 I have lowered the priority

Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Gary Russell
I have lowered the priority because I found a work around, but it's still bad practice for a public class to depend on a class that is not published anywhere. This is similar to [2], which has been open for months. [1]: https://issues.apache.org/jira/browse/KAFKA-15482 [2]: https://issues.apache

Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Gary Russell
This is a blocker for me [1]. https://issues.apache.org/jira/browse/KAFKA-15482 From: Greg Harris Sent: Wednesday, September 20, 2023 12:45 PM To: users@kafka.apache.org Cc: dev ; kafka-clie...@googlegroups.com Subject: Re: [kafka-clients] [VOTE] 3.6.0 RC1 !!

Re: adding enum value in kafka streams

2023-09-20 Thread M M
Hey Bruno, Thanks for your response. Below you can find more details about serialization. private SpecificAvroSerde fooKeySerde; ... @PostConstruct void postConstruct() { this.fooKeySerde = configureSerde(true); } private SpecificAvroSerde configureSerde(boolean isSerdeForRecordKeys) {

Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Greg Harris
Hi all, I verified the functionality of KIP-898 and the recent fix for KAFKA-15473 with the following steps: 1. I started a 3.5.1 broker, and a 3.5.1 worker with most (>400) publicly available plugins installed 2. I captured the output of /connector-plugins 3. I upgraded the worker to 3.6.0-rc1 4

Re: [kafka-clients] [VOTE] 3.6.0 RC1

2023-09-20 Thread Divij Vaidya
Hey Satish My comments about documentation misses from RC0 vote thread [1] are still not addressed (such as missing metric documentation, formatting problems etc). Could you please mention why we shouldn't consider them as blockers to make RC1 as the final release? [1] https://lists.apache.org/th

[VOTE] 3.6.0 RC1

2023-09-20 Thread Satish Duggana
Hello Kafka users, developers and client-developers, This is the second candidate for the release of Apache Kafka 3.6.0. Some of the major features include: * KIP-405 : Kafka Tiered Storage * KIP-868 : KRaft Metadata Transactions * KIP-875: First-class offsets support in Kafka Connect * KIP-898:

Re: adding enum value in kafka streams

2023-09-20 Thread Bruno Cadonna
Hi Mariusz, How is fooKey de-/serialized? I ask that because maybe the serializer for fooKey cannot handle the extended enum. Best, Bruno On 9/20/23 12:22 AM, M M wrote: Hello, This is my first time asking a question on a mailing list, so please forgive me any inaccuracies. I am having a