Kafka - Broker (Kafka Server)

Kafka Commit Log Messaging Process

Kafka - Broker (Kafka Server)

Function

  • Manages list of partition
  • Acks the message (Producer doesn't need to resend the data}
  • Commits the message (Consumer can now read it)
  • Replicate data
  • Durability Guarantees (min.insync.replicas & request.required.acks). Set min.insync.replicas = 2, request.required.acks = -1 for replicating to two replicas before a write.

Management

Start

kafka-server-start.sh ~/kafka/config/server.properties





Discover More
Kafka Commit Log Messaging Process
Kafka - Producer (Write / Input)

A Kafka producer is an object that consists of: a pool of buffer space that holds records that haven't...



Share this page:
Follow us:
Task Runner