Spring for Apache Kafka 1.1 GA and Spring Integration Kafka 2.1 GA are Available
I am pleased to announce that the Spring for Apache Kafka 1.1.0.RELEASE is now available in the spring release repo and Maven Central.
Due to some community requirements, we decided to bypass the Release Candidate (RC) phase and released General Availability (GA) immediately.
There are not many changes since the previous Milestone 2, but here is a summary of all Spring Kafka 1.1 changes:
-
Apache Kafka
0.10
upgrade; -
The batch of messages support via
BatchMessageListener
as well as via@KafkaListener
annotation configuration; -
The
null payload
concept support viaKafkaNull
placeholder object; -
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;
-
Allow setting the initial offset to be relative to the current offset;
-
The
…KafkaTemplate
now provides access to themetrics
andpartitionsFor
methods on theProducer
.