A Streaming Example
Learn more about streaming with a simple example.
We'll cover the following...
In this lesson, we will look at an example of how we could use Kafka with a simple consumer and producer. We will also demonstrate how we can process streaming input with Kafka. For this purpose, we will use two Python scripts, one to feed Kafka, producer.py
and one to consume from it, consumer.py
.
As we explained before, Kafka supports many connection ...