A Kafka Cluster is multiple brokers (servers) working together. Instead of one server doing everything, data is spread and copied across multiple brokers. If one broker dies, others already have the data and keep running without any interruption.
Replication means copying each partition across multiple brokers so if one broker goes down, no data is lost and the system keeps running.
Replication Factor = how many total copies of each partition exist across the cluster.
Broker 1
├── P0 (Leader)
├── P1 (Leader)
└── P2 (Leader)
Only one copy of each partition. Broker goes down means everything is gone. Never use in production.

