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.10upgrade; -
The batch of messages support via
BatchMessageListeneras well as via@KafkaListenerannotation configuration; -
The
null payloadconcept support viaKafkaNullplaceholder 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
…KafkaTemplatenow provides access to themetricsandpartitionsFormethods on theProducer.