This version is still in development and is not considered stable yet. For the latest stable version, please use Spring for Apache Kafka 3.3.8! |
Kafka Queues (Share Consumer)
Starting with version 4.0, Spring for Apache Kafka provides support for Kafka Queues through share consumers, which are part of Apache Kafka 4.0.0 and implement KIP-932 (Queues for Kafka). This feature is currently in early access.
Kafka Queues enable a different consumption model compared to traditional consumer groups. Instead of the partition-based assignment model where each partition is exclusively assigned to one consumer, share consumers can cooperatively consume from the same partitions, with records being distributed among the consumers in the share group.
Share Consumer Factory
The ShareConsumerFactory
is responsible for creating share consumer instances.
Spring Kafka provides the DefaultShareConsumerFactory
implementation.
Configuration
You can configure a DefaultShareConsumerFactory
similar to how you configure a regular ConsumerFactory
:
@Bean
public ShareConsumerFactory<String, String> shareConsumerFactory() {
Map<String, Object> props = new HashMap<>();
props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092");
props.put(ConsumerConfig.GROUP_ID_CONFIG, "my-share-group");
props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
return new DefaultShareConsumerFactory<>(props);
}
Constructor Options
The DefaultShareConsumerFactory
provides several constructor options:
// Basic configuration
new DefaultShareConsumerFactory<>(configs);
// With deserializer suppliers
new DefaultShareConsumerFactory<>(configs, keyDeserializerSupplier, valueDeserializerSupplier);
// With deserializer instances
new DefaultShareConsumerFactory<>(configs, keyDeserializer, valueDeserializer, configureDeserializers);
Deserializer Configuration
You can configure deserializers in several ways:
-
Via Configuration Properties (recommended for simple cases):
props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class); props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
-
Via Setters:
factory.setKeyDeserializer(new StringDeserializer()); factory.setValueDeserializer(new StringDeserializer());
-
Via Suppliers (for cases where deserializers need to be created per consumer):
factory.setKeyDeserializerSupplier(() -> new StringDeserializer()); factory.setValueDeserializerSupplier(() -> new StringDeserializer());
Set configureDeserializers
to false
if your deserializers are already fully configured and should not be reconfigured by the factory.
Lifecycle Listeners
You can add listeners to monitor the lifecycle of share consumers:
factory.addListener(new ShareConsumerFactory.Listener<String, String>() {
@Override
public void consumerAdded(String id, ShareConsumer<String, String> consumer) {
// Called when a new consumer is created
System.out.println("Consumer added: " + id);
}
@Override
public void consumerRemoved(String id, ShareConsumer<String, String> consumer) {
// Called when a consumer is closed
System.out.println("Consumer removed: " + id);
}
});
Share Message Listener Containers
ShareKafkaMessageListenerContainer
The ShareKafkaMessageListenerContainer
provides a simple, single-threaded container for share consumers:
@Bean
public ShareKafkaMessageListenerContainer<String, String> container(
ShareConsumerFactory<String, String> shareConsumerFactory) {
ContainerProperties containerProps = new ContainerProperties("my-topic");
containerProps.setGroupId("my-share-group");
ShareKafkaMessageListenerContainer<String, String> container =
new ShareKafkaMessageListenerContainer<>(shareConsumerFactory, containerProps);
container.setupMessageListener(new MessageListener<String, String>() {
@Override
public void onMessage(ConsumerRecord<String, String> record) {
System.out.println("Received: " + record.value());
}
});
return container;
}
Container Properties
Share containers support a subset of the container properties available for regular consumers:
-
topics
: Array of topic names to subscribe to -
groupId
: The share group ID -
clientId
: The client ID for the consumer -
kafkaConsumerProperties
: Additional consumer properties
Share consumers do not support:
|
Annotation-Driven Listeners
@KafkaListener with Share Consumers
You can use @KafkaListener
with share consumers by configuring a ShareKafkaListenerContainerFactory
:
@Configuration
@EnableKafka
public class ShareConsumerConfig {
@Bean
public ShareConsumerFactory<String, String> shareConsumerFactory() {
Map<String, Object> props = new HashMap<>();
props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092");
props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
return new DefaultShareConsumerFactory<>(props);
}
@Bean
public ShareKafkaListenerContainerFactory<String, String> shareKafkaListenerContainerFactory(
ShareConsumerFactory<String, String> shareConsumerFactory) {
return new ShareKafkaListenerContainerFactory<>(shareConsumerFactory);
}
}
Then use it in your listener:
@Component
public class ShareMessageListener {
@KafkaListener(
topics = "my-queue-topic",
containerFactory = "shareKafkaListenerContainerFactory",
groupId = "my-share-group"
)
public void listen(ConsumerRecord<String, String> record) {
System.out.println("Received from queue: " + record.value());
// Record is automatically acknowledged with ACCEPT
}
}
Share Group Configuration
Share groups require specific broker configuration to function properly. For testing with embedded Kafka, use:
@EmbeddedKafka(
topics = {"my-queue-topic"},
brokerProperties = {
"unstable.api.versions.enable=true",
"group.coordinator.rebalance.protocols=classic,share",
"share.coordinator.state.topic.replication.factor=1",
"share.coordinator.state.topic.min.isr=1"
}
)
Share Group Offset Reset
Unlike regular consumer groups, share groups use a different configuration for offset reset behavior. You can configure this programmatically:
private void configureShareGroup(String bootstrapServers, String groupId) throws Exception {
Map<String, Object> adminProps = new HashMap<>();
adminProps.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers);
try (Admin admin = Admin.create(adminProps)) {
ConfigResource configResource = new ConfigResource(ConfigResource.Type.GROUP, groupId);
ConfigEntry configEntry = new ConfigEntry("share.auto.offset.reset", "earliest");
Map<ConfigResource, Collection<AlterConfigOp>> configs = Map.of(
configResource, List.of(new AlterConfigOp(configEntry, AlterConfigOp.OpType.SET))
);
admin.incrementalAlterConfigs(configs).all().get();
}
}
Record Acknowledgment
Currently, share consumers automatically acknowledge records with AcknowledgeType.ACCEPT
after successful processing.
More sophisticated acknowledgment patterns will be added in future versions.
Differences from Regular Consumers
Share consumers differ from regular consumers in several key ways:
-
No Partition Assignment: Share consumers cannot be assigned specific partitions
-
No Topic Patterns: Share consumers do not support subscribing to topic patterns
-
Cooperative Consumption: Multiple consumers in the same share group can consume from the same partitions simultaneously
-
Automatic Acknowledgment: Records are automatically acknowledged after processing
-
Different Group Management: Share groups use different coordinator protocols
Limitations and Considerations
Current Limitations
-
Early Access: This feature is in early access and may change in future versions
-
Limited Acknowledgment Options: Only automatic
ACCEPT
acknowledgment is currently supported -
No Message Converters: Message converters are not yet supported for share consumers
-
Single-Threaded: Share consumer containers currently run in single-threaded mode