• 1.3 Quick Start中 Step 8: Use Kafka Streams to process data官网剖析(博主推荐)


    不多说,直接上干货!

      一切来源于官网

    http://kafka.apache.org/documentation/

    Step 8: Use Kafka Streams to process data

    Step 8: 使用Kafka Stream来处理数据

      Kafka Streams is a client library of Kafka for real-time stream processing and analyzing data stored in Kafka brokers. This quickstart example will demonstrate how to run a streaming application coded in this library. Here is the gist of the WordCountDemo example code (converted to use Java 8 lambda expressions for easy reading).

    Kafka Stream是kafka的客户端库,用于实时流处理和分析存储在kafka broker的数据,
    这个快速入门示例将演示如何运行一个流应用程序。
    一个WordCountDemo的例子(为了方便阅读,使用的是java8 lambda表达式)
    // Serializers/deserializers (serde) for String and Long types
    final Serde<String> stringSerde = Serdes.String();
    final Serde<Long> longSerde = Serdes.Long();
    
    // Construct a `KStream` from the input topic ""streams-file-input", where message values
    // represent lines of text (for the sake of this example, we ignore whatever may be stored
    // in the message keys).
    KStream<String, String> textLines = builder.stream(stringSerde, stringSerde, "streams-file-input");
    
    KTable<String, Long> wordCounts = textLines
        // Split each text line, by whitespace, into words.
        .flatMapValues(value -> Arrays.asList(value.toLowerCase().split("\W+")))
    
        // Group the text words as message keys
        .groupBy((key, value) -> value)
    
        // Count the occurrences of each word (message key).
        .count("Counts")
    
    // Store the running counts as a changelog stream to the output topic.
    wordCounts.to(stringSerde, longSerde, "streams-wordcount-output");
    
    

      It implements the WordCount algorithm, which computes a word occurrence histogram from the input text. However, unlike other WordCount examples you might have seen before that operate on bounded data, the WordCount demo application behaves slightly differently because it is designed to operate on an infinite, unbounded stream of data. Similar to the bounded variant, it is a stateful algorithm that tracks and updates the counts of words. However, since it must assume potentially unbounded input data, it will periodically output its current state and results while continuing to process more data because it cannot know when it has processed "all" the input data.

    它实现了wordcount算法,从输入的文本计算出一个词出现的次数。
    然而,不像其他的WordCount的例子,你可能会看到,在有限的数据之前,执行的演示应用程序的行为略有不同,
    因为它的目的是在一个无限的操作,数据流。
    类似的有界变量,它是一种动态算法,跟踪和更新的单词计数。
    然而,由于它必须假设潜在的无界输入数据,它会定期输出其当前状态和结果,同时继续处理更多的数据,
    因为它不知道什么时候它处理过的“所有”的输入数据。

      As the first step, we will prepare input data to a Kafka topic, which will subsequently be processed by a Kafka Streams application.

    现在准备输入数据到kafka的topic中,随后kafka Stream应用处理这个topic的数据。
    > echo -e "all streams lead to kafka
    hello kafka streams
    join kafka summit" > file-input.txt


    Or on Windows:(不推荐)

    > echo all streams lead to kafka> file-input.txt
    > echo hello kafka streams>> file-input.txt
    > echo|set /p=join kafka summit>> file-input.txt


      Next, we send this input data to the input topic named streams-file-input using the console producer, which reads the data from STDIN line-by-line, and publishes each line as a separate Kafka message with null key and value encoded a string to the topic (in practice, stream data will likely be flowing continuously into Kafka where the application will be up and running):

    接下来,使用控制台的producer 将输入的数据发送到指定的topic(streams-file-input)中,(在实践中,stream数据可能会持续流入,其中kafka的应用将启动并运行)
    > bin/kafka-topics.sh --create 
                --zookeeper localhost:2181 
                --replication-factor 1 
                --partitions 1 
                --topic streams-file-input
    
    > bin/kafka-console-producer.sh --broker-list localhost:9092 --topic streams-file-input < file-input.txt



      We can now run the WordCount demo application to process the input data:

    现在,我们运行 WordCount 处理输入的数据:
    > bin/kafka-run-class.sh org.apache.kafka.streams.examples.wordcount.WordCountDemo



      The demo application will read from the input topic streams-file-input, perform the computations of the WordCount algorithm on each of the read messages, and continuously write its current results to the output topic streams-wordcount-output. Hence there won't be any STDOUT output except log entries as the results are written back into in Kafka. The demo will run for a few seconds and then, unlike typical stream processing applications, terminate automatically.

    不会有任何的STDOUT输出,除了日志,结果不断地写回另一个topic(streams-wordcount-output),demo运行几秒,然后,不像典型的流处理应用程序,自动终止。

      We can now inspect the output of the WordCount demo application by reading from its output topic:

    现在我们检查WordCountDemo应用,从输出的topic读取。
    > bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 
                --topic streams-wordcount-output 
                --from-beginning 
                --formatter kafka.tools.DefaultMessageFormatter 
                --property print.key=true 
                --property print.value=true 
                --property key.deserializer=org.apache.kafka.common.serialization.StringDeserializer 
                --property value.deserializer=org.apache.kafka.common.serialization.LongDeserializer


      with the following output data being printed to the console:

    输出数据打印到控台(你可以使用Ctrl-C停止):
    all     1
    lead    1
    to      1
    hello   1
    streams 2
    join    1
    kafka   3
    summit  1
    ^C


      Here, the first column is the Kafka message key in java.lang.String format, and the second column is the message value in java.lang.Long format. Note that the output is actually a continuous stream of updates, where each data record (i.e. each line in the original output above) is an updated count of a single word, aka record key such as "kafka". For multiple records with the same key, each later record is an update of the previous one.

    第一列是message的key,
    第二列是message的value,
    要注意,输出的实际是一个连续的更新流,其中每条数据(即:原始输出的每行)是一个单词的最新的count,又叫记录键“kafka”。
    对于同一个key有多个记录,每个记录之后是前一个的更新。

      The two diagrams below illustrate what is essentially happening behind the scenes. The first column shows the evolution of the current state of the KTable<String, Long>that is counting word occurrences for count. The second column shows the change records that result from state updates to the KTable and that are being sent to the output Kafka topic streams-wordcount-output.

                                          

      First the text line “all streams lead to kafka” is being processed. The KTable is being built up as each new word results in a new table entry (highlighted with a green background), and a corresponding change record is sent to the downstream KStream.

      When the second text line “hello kafka streams” is processed, we observe, for the first time, that existing entries in the KTable are being updated (here: for the words “kafka” and for “streams”). And again, change records are being sent to the output topic.

      And so on (we skip the illustration of how the third line is being processed). This explains why the output topic has the contents we showed above, because it contains the full record of changes.

      Looking beyond the scope of this concrete example, what Kafka Streams is doing here is to leverage the duality between a table and a changelog stream (here: table = the KTable, changelog stream = the downstream KStream): you can publish every change of the table to a stream, and if you consume the entire changelog stream from beginning to end, you can reconstruct the contents of the table.

      Now you can write more input messages to the streams-file-input topic and observe additional messages added to streams-wordcount-output topic, reflecting updated word counts (e.g., using the console producer and the console consumer, as described above).

      You can stop the console consumer via Ctrl-C.

  • 相关阅读:
    第一冲刺阶段——站立会议第六天4月23日
    第一冲刺阶段——站立会议第五天4月22日
    第一冲刺阶段——站立会议第四天4月21日
    第一冲刺阶段——站立会议第三天4月20日
    第一冲刺阶段——站立会议第二天4月19日
    第一冲刺阶段——站立会议第一天4月18日
    WBS
    团队项目计划
    团队项目——班级派发布视频
    团队简介
  • 原文地址:https://www.cnblogs.com/zlslch/p/6767426.html
Copyright © 2020-2023  润新知