kafka
kafka copied to clipboard
Mirror of Apache Kafka
Current comment on that class: A concurrent event accumulator which group events per key and ensure that only one event with a given key **can't** be processed concurrently. To my...
This PR do following: 1. rewrite `consumerBounceTest` to java 2. Move test to clients-intergration-test
Fixes https://issues.apache.org/jira/browse/KAFKA-19279
* be specific that --command-config for add-controller needs to point to the to-be-added controller's config * be specific that `controller.quorum.bootstrap.servers` in the to-be-added controllers config needs to contain a controller...
We introduced new coordinator record for async kafka consumer like ConsumerGroupMetadataKey, ConsumerGroupPartitionMetadataKey, etc. The GroupMetadataMessageFormatter didn't support these message type. We should add another test case for consumer group protocol....
Added and extensible ConfigKey Builder class.
In Kafka Streams, configuration classes typically follow a fluent API pattern to ensure a consistent and intuitive developer experience. However, the current implementation of `org.apache.kafka.streams.KafkaStreams$CloseOptions` deviates from this convention by...
This patch resolves the following issues in MetadataCache#toCluster: - Avoids duplicate Node entries when a broker has multiple endpoints. - Fixes a bug where fenced brokers result in NPE. -...
This PR addresses an issue with the evictWhile method where a ConcurrentModificationException was being thrown due to modifications made to sortedMap during iteration. The following changes have been made: -...
*Fix building 'Response.errorMessage' with 'RaftUtil #addVoterResponse' and' RaftUtil#removeVoterResponse' for 'Errors.NONE' is not 'null' but 'NONE' because When 'errorMessage' is passed in as 'null', 'Errors#message' is used to generate a default...