diyoda_
diyoda_

Reputation: 5420

Spring Integration Kafka vs Spring Kafka

We are trying to implement a message channel between a worker spring application and a consumer spring application (there will be replicas of the same consumer on multiple JVMs)

With the Java Config there is limited documentation for the spring integration and I was able to find a documentation for the spring Kafka.I am not exactly sure how the dependency is working,

  1. Is spring Kafka integration is based on Spring Kafka. Please give an idea on this?
  2. Where can I find proper documentation for the new Release of Spring Integration Kafka?

Upvotes: 4

Views: 4323

Answers (1)

Gary Russell
Gary Russell

Reputation: 174494

Spring Integration Kafka 2.0 is built on top of Spring Kafka (Spring Integration Kafka 1.x used the 0.8.x.x scala client directly).

The documentation for Spring Integration Kafka is in Chapter 6 of the Spring Kafka Reference Manual.

At some point, it is likely that spring-integration-kafka will be pulled into the main spring integration project/documentation.

Upvotes: 4

Related Questions