Re: [VOTE] 3.3.1 RC0

2022-09-29 Thread José Armando García Sancio
On Thu, Sep 29, 2022 at 2:39 PM José Armando García Sancio wrote: > Please download, test and vote by Tuesday, October 4, 9am PT. The vote will be open for 72 hours. Please vote by Sunday, October 2nd, 3 PM PT. Thanks! -- -José

Re: I would like to contribute

2022-09-29 Thread Guozhang Wang
Done. Cheers! You can follow the KIP guidance https://cwiki.apache.org/confluence/display/KAFKA/Kafka+Improvement+Proposals for any changes that involve Public interfaces. Just a side note, in general the community would be more interested to see its usage when accepting new utils / toolings etc

[GitHub] [kafka-site] jsancio merged pull request #451: MINOR; Update documentation for 3.3.1

2022-09-29 Thread GitBox
jsancio merged PR #451: URL: https://github.com/apache/kafka-site/pull/451 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

Jenkins build is still unstable: Kafka » Kafka Branch Builder » trunk #1264

2022-09-29 Thread Apache Jenkins Server
See

[VOTE] 3.3.1 RC0

2022-09-29 Thread José Armando García Sancio
Hello Kafka users, developers and client-developers, This is the first candidate for release of Apache Kafka 3.3.1. This release fixes two issues with the 3.3.0 release. * [KAFKA-14259] - BrokerRegistration#toString throws an exception, terminating metadata replay * [KAFKA-14265] - Prefix ACLs

[GitHub] [kafka-site] junrao merged pull request #453: fixing apache.org link

2022-09-29 Thread GitBox
junrao merged PR #453: URL: https://github.com/apache/kafka-site/pull/453 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

[GitHub] [kafka-site] junrao merged pull request #452: Add required nav items

2022-09-29 Thread GitBox
junrao merged PR #452: URL: https://github.com/apache/kafka-site/pull/452 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

[GitHub] [kafka-site] scott-confluent opened a new pull request, #452: Add required nav items

2022-09-29 Thread GitBox
scott-confluent opened a new pull request, #452: URL: https://github.com/apache/kafka-site/pull/452 Adding some nav items per a request. See https://www.apache.org/foundation/marks/pmcs#navigation for more information. -- This is an automated message from the Apache Git Service. To

Re: I would like to contribute

2022-09-29 Thread Collins, Alex
Awesome. Yes. alex_collins From: Guozhang Wang Sent: Thursday, September 29, 2022 12:55:27 PM To: dev@kafka.apache.org Subject: Re: I would like to contribute This email is from an external sender. Hello Alex, Thank you for your interests!Do you already have

Jenkins build is still unstable: Kafka » Kafka Branch Builder » 3.3 #92

2022-09-29 Thread Apache Jenkins Server
See

Re: I would like to contribute

2022-09-29 Thread Guozhang Wang
Hello Alex, Thank you for your interests!Do you already have an apache id? If yes I can help letting you be able to create corresponding wiki pages. On Thu, Sep 29, 2022 at 11:56 AM Collins, Alex wrote: > I have three things to contribute: > > > * Bug fix for console producer/consumers.

Jenkins build is unstable: Kafka » Kafka Branch Builder » trunk #1263

2022-09-29 Thread Apache Jenkins Server
See

I would like to contribute

2022-09-29 Thread Collins, Alex
I have three things to contribute: * Bug fix for console producer/consumers. I’ve created a PR. * Two new serdes which can be understood from the PRs: * https://github.com/apache/kafka/pull/12698 * https://github.com/apache/kafka/pull/12699 The serdes change

[jira] [Created] (KAFKA-14268) When aggregating on a KGroupedStream allow an InitializerWithKey

2022-09-29 Thread Christopher Meier (Jira)
Christopher Meier created KAFKA-14268: - Summary: When aggregating on a KGroupedStream allow an InitializerWithKey Key: KAFKA-14268 URL: https://issues.apache.org/jira/browse/KAFKA-14268 Project:

[jira] [Resolved] (KAFKA-14265) Prefix ACLs may shadow other prefix ACLs

2022-09-29 Thread Jose Armando Garcia Sancio (Jira)
[ https://issues.apache.org/jira/browse/KAFKA-14265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jose Armando Garcia Sancio resolved KAFKA-14265. Resolution: Fixed > Prefix ACLs may shadow other prefix ACLs >

[jira] [Created] (KAFKA-14267) CVE-2022-36944 - Scala deserialization bug

2022-09-29 Thread Zach Fry (Jira)
Zach Fry created KAFKA-14267: Summary: CVE-2022-36944 - Scala deserialization bug Key: KAFKA-14267 URL: https://issues.apache.org/jira/browse/KAFKA-14267 Project: Kafka Issue Type: Bug

[jira] [Created] (KAFKA-14266) MirrorSourceTask will stop mirroring when get the corrupt record

2022-09-29 Thread Yu Wang (Jira)
Yu Wang created KAFKA-14266: --- Summary: MirrorSourceTask will stop mirroring when get the corrupt record Key: KAFKA-14266 URL: https://issues.apache.org/jira/browse/KAFKA-14266 Project: Kafka

Re: [DISCUSS] KIP-872: Add Serializer#serializeToByteBuffer() to reduce memory copying

2022-09-29 Thread Divij Vaidya
1. You are right. We append the message to the `DefaultRecord` and append is a copy operation. Hence, the ByteBuffer would be released at the end of the KafkaProducer#doSend() method. This comment is resolved. 2. I don't foresee any compatibility issues since #1 is not a problem anymore. This