A city event bus keeps ordered records in distributed logs that apps publish to and subscribe from by topic. Which technology pattern matches that design?
Select an answer to reveal the explanation.
Short Explanation
Kafka-style buses are like a city-wide flight recorder: messages land in a durable, distributed log by topic. Lots of systems can publish or subscribe without tying themselves in knots.
Full Explanation
Apache Kafka organizes data as append-only, distributed logs partitioned by topic. Producers publish and consumers subscribe, supporting scalable municipal event buses. Recognizing Kafka as a distributed pub/sub log is core BDPC ingestion awareness.