Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreI am pleased to announce that the second milestone for Spring for Apache Kafka version 1.1.0.M2 is now available in the spring milestone repo.
This includes some bug fixes and the following new features:
The ability to process a batch of messages (introduced in the last milestone) is now available when using the @KafkaListener
annotation, for example…
@KafkaListener(id = "list", topics = "myTopic",
containerFactory = "batchFactory")
public void listen(List
You can now perform seek operations from the listener - this allows setting an initial offset when partitions are assigned by Kafka when using group management. You can also perform arbitrary seek operations after initialization.
The KafkaTemplate
now provides access to the metrics
and partitionsFor
methods on the Producer
.
In addition, the first milestone of spring-integration-kafka
version 2.1 is now available, utilizing the spring-kafka
1.1.0.M2 version. It also supports batch payloads.
See the project page for links to documentation and more information.