Events with Kafka

In this lesson, we'll discuss events with Kafka.

Introduction #

Systems that communicate via Kafka can easily exchange events (see also Events).

  • Records can be saved permanently, and a consumer can read out the history and rebuild its state. The consumer does not have to store the data locally but can rely on Kafka.
  • However, this means that all relevant information must be stored in the record. Events
...