Broker
A Kafka process that stores a subset of the cluster's partitions and serves reads/writes for them.
A broker is a running instance of the Kafka server. It physically stores the data for one or more partitions and responds to requests from producers (writes) and consumers (reads) for those partitions. A Kafka cluster is made up of multiple brokers, each responsible for a subset of the partitions across all topics — and, for each partition, one broker acts as leader while the rest (if there are replicas) act as followers.
Related terms
Related chapters