spring-kafka icon indicating copy to clipboard operation
spring-kafka copied to clipboard

Provides Familiar Spring Abstractions for Apache Kafka

Results 66 spring-kafka issues
Sort by recently updated
recently updated
newest added

**Expected Behavior** The Spring KafkaAdmin class has a package-private method "createAdmin" that returns the `org.apache.kafka.clients.admin.AdminClient` type: ```java AdminClient createAdmin() { return AdminClient.create(this.getAdminConfig()); } ``` It'd be great if this method...

type: enhancement
status: waiting-for-triage

**In what version(s) of Spring for Apache Kafka are you seeing this issue?** For example: At least between 2.8.x and current **Describe the bug** `CommonErrorHandler.isAckAfterHandle()` misleads developers in case of...

status: waiting for reporter

Fixes #3483 Changes the KafkaAdmin#createAdmin() method to be protected, returning the Admin interface instead of the AdminClient class. This change allows user of spring-kafka to supply their own Admin interface...

**Expected Behavior** Provide a tondem RecordFilterStrategy with MessageConverter. **Current Behavior** MessageConverter invokes after RecordFilterStrategy logic. **Context** If we configure MessageConverter (Json for example) -> then we expect to filter the...

type: enhancement
status: waiting-for-triage

**In what version(s) of Spring for Apache Kafka are you seeing this issue?** 3.3 **Describe the bug** If a ConcurrentContainer is stopped, then the child container should not be allowed...

type: bug
status: waiting for reporter

Version 3.3.2 When using blocking retries for a batch listener, the attempt number is not coming in DELIVERY_ATTEMPT header even if setting `setDeliveryAttemptHeader(true)` The method `KafkaMessageListenerContainer.ListenerConsumer.internalHeaders` is called only in...

status: waiting for reporter