2017-02-07 7 views
0

私はKafkaを初めて使用しており、ストリーミング対応(0.10.1.1)の最新バージョンを使用したいと考えています。私はSpring Kafkaも使いたいです。Spring Kafka 1.1.3-SNAPSHOTとKafka 0.10.1.1との互換性

私はカフカはそのマニュアルで述べているバージョンの互換性春理解していない:

このリンクは言うApacheのカフカ0.10.xxクライアントを

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

このリンクは言う:0.9.0.1 Apacheのカフカ最高のバージョンをサポートすることを意味し

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

答えて

0

確かに0.10.x.xの最新のものです。

しかし、それでもApache Kafka 0.9.0.1と互換性があります。

あなたが持つことができるもののベストは春カフカからの推移依存関係です:

ところで
<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> 

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

関連する問題