Re: First time patch submitter advice

2020-06-14 Thread Gwen Shapira
Hi, 1. Unfortunately, you need to get a committer to approve running the tests. I just gave the green-light on your PR. 2. You can hope that committers will see your PR, but sometimes things get lost. If you know someone who is familiar with that area of the code, it is a good idea to ping them.

KAFKA-8362: Partition snapshot still exist in cleaner-offset-checkpoint after the intra-disk move

2020-06-14 Thread Ming Liu
Hi Kafka, In Kafka 2.5, it seems KAFKA-8362 still exists. The problem is for compacted topic, after the disk re-assignment, both disk cleaner-offset-checkpoint will contain that partition snapshot. The previous disk cleaner-offset-checkpoint contains the stale one and should be deleted

[jira] [Created] (KAFKA-10159) MirrorSourceConnector don`t work on connect-distributed.sh

2020-06-14 Thread cosmozhu (Jira)
cosmozhu created KAFKA-10159: Summary: MirrorSourceConnector don`t work on connect-distributed.sh Key: KAFKA-10159 URL: https://issues.apache.org/jira/browse/KAFKA-10159 Project: Kafka Issue

First time patch submitter advice

2020-06-14 Thread Michael Carter
Hi all, I’ve submitted a patch for the first time(https://github.com/apache/kafka/pull/8844 ), and I have a couple of questions that I’m hoping someone can help me answer. I’m a little unclear what happens after that patch has been submitted. The

Re: Broker side round robin on topic partitions when receiving messages

2020-06-14 Thread M. Manna
Vinicius, If you have an idea of what you want , and how it is going to improve current Kafka offering perhaps you could submit a KiP ? The guidelines are provided on Apache Kafka Wiki (Confluence). Thanks, On Sun, 14 Jun 2020 at 22:26, Vinicius Scheidegger < vinicius.scheideg...@gmail.com>

Re: Kafka - replicas do not heal themselves by default

2020-06-14 Thread Israel Ekpo
It is always good to have context. It would be helpful to state the edition of the book, version of Kafka, deployment architecture and other environment details What edition of the book are you referring to? What version of Kafka is used in the book. How the producers and consumers are

Re: Broker side round robin on topic partitions when receiving messages

2020-06-14 Thread Vinicius Scheidegger
Hi Collin, Thanks for the reply. Actually the RoundRobinPartitioner won't do an equal distribution when working with multiple producers. One producer does not know the others. If you consider that producers are randomly producing messages, in the worst case scenario all producers can be synced

Kafka - replicas do not heal themselves by default

2020-06-14 Thread Nag Y
I am going through the kafka in action and come across this following phrase *One of the things to note with Kafka is that replicas do not heal themselves by default. If you lose a broker on which one of your copies of a partition existed, Kafka does not currently create a new copy. I mention

Kafka - how to know whether it is broker property or topic property or producer property

2020-06-14 Thread Nag Y
I am going through the documentation and often times, it is either not clear or need to look at in multiple pleaces to see to which a prticular property belongs and is it a specific property to an entity etc .. To give an example, consider *"min.insync.replicas"* - This is just for an example.