Spring Kafka 1.1.3-SNAPSHOT与Kafka 0.10.1.1的兼容性

时间:2017-02-07 00:48:11

标签: apache-kafka spring-kafka

我是Kafka的新手,我想使用支持流媒体支持的最新版本(0.10.1.1)。我也想使用Spring Kafka。

我不了解Spring Kafka在其文档中所说的版本兼容性:

这个链接说Apache Kafka 0.10.x.x客户端

http://docs.spring.io/spring-kafka/docs/1.1.3.BUILD-SNAPSHOT/reference/html/whats-new-part.html

此链接说:Apache Kafka 0.9.0.1

http://docs.spring.io/spring-kafka/docs/1.1.3.BUILD-SNAPSHOT/reference/html/_introduction.html

1 个答案:

答案 0 :(得分:0)

这意味着支持的最高版本确实是0.10.x.x的最新版本。

但它仍与Apache Kafka 0.9.0.1兼容。

你可以拥有的最好的是来自Spring Kafka的传递依赖:

<dependency>
  <groupId>org.apache.kafka</groupId>
  <artifactId>kafka-clients</artifactId>
  <version>0.10.1.1</version>
  <scope>compile</scope>
  <exclusions>
    <exclusion>
      <artifactId>slf4j-api</artifactId>
      <groupId>org.slf4j</groupId>
    </exclusion>
  </exclusions>
</dependency>

BTW:https://spring.io/blog/2017/02/06/spring-for-apache-kafka-1-1-3-available-now