0

I am looking for a solution to use maprstream with spring integration. I could able to create the stream and topic and also could able to consume/publish messages using stream:topic combination. Used the Kafka client by referring the link:

But struggling to consume/publish message using Spring integration and couldn't see any sample programs explaining the same. Can someone please help me on this?

kattoor
  • 195
  • 14

1 Answers1

1

spring-integration-kafka 2.0 (via spring-kafka 1.0) uses the 0.9 Kafka API.

See the compatibility matrix at the bottom of the project page.

It's not been tested with MapR.

Gary Russell
  • 166,535
  • 14
  • 146
  • 179
  • 1
    In addition you should be sure that you really exclude `kafka-clients` dependency and include exactly that for the `0.9.0.0-mapr-1602` version. – Artem Bilan Aug 30 '17 at 02:14
  • Thanks Gary and Artem. The below versions worked for me. spring-integration-kafka.version => 2.0.0 , spring-kafka.version => 1.0.0 – kattoor Aug 30 '17 at 09:13