一切来源于官网
http://kafka.apache.org/documentation/
2.3 Streams API
2.3 Streams API
在0.10.0增加了一个新的客户端库,Kafka Stream,Kafka Stream具有Alpha的优点,你可以使用maven引入到你的项目:
The Streams API allows transforming streams of data from input topics to output topics.
Examples showing how to use this library are given in the javadocs
Additional documentation on using the Streams API is available here.
To use Kafka Streams you can use the following maven dependency:
对于使用kafka流,你可以使用以下的maven依赖
<dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-streams</artifactId> <version>0.10.2.0</version> </dependency>
如何使用,请见如下。
KafkaStreams客户端(0.10.0.0 API)
http://orchome.com/305
(注意,
@InterfaceStability.Unstable注解的类,是公共API,在未来可能改变,不保证向后兼容)
使用Kafka Stream处理数据
http://orchome.com/300
本文转自大数据躺过的坑博客园博客,原文链接:http://www.cnblogs.com/zlslch/p/6768427.html,如需转载请自行联系原作者