Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.13 KB

File metadata and controls

42 lines (31 loc) · 1.13 KB

Exercise 10: Piping one topic into another

In this ice breaker exercise we just read from an input topic and write from an ouput topic.

Before Starting

bin/kafka-topics --bootstrap-server localhost:9092 --create --topic input 

bin/kafka-topics --bootstrap-server localhost:9092 --create --topic output
bin/kafka-console-producer --broker-list localhost:9092 \
                                --property parse.key=true \
                                --property key.separator=, \
                                --topic input
                                

Writing 1,A 2,B 3,C

bin/kafka-console-consumer --bootstrap-server localhost:9092 \
    --from-beginning --property print.key=true \
    --topic output
                                

Remember that Kafka Streaming uses an underlying dataflow API? The following figure shows how the topology looks like

topology

Topologies:
   Sub-topology: 0
    Source: KSTREAM-SOURCE-0000000000 (topics: [input])
      --> KSTREAM-SINK-0000000001
    Sink: KSTREAM-SINK-0000000001 (topic: output)
      <-- KSTREAM-SOURCE-0000000000