Kafka replicates each partition of a topic up-to specified replication factor.
As far as I know, all write and read requests are routed to the leader of the partition. Is there any way to consume from the followers not from the leader?
Is the replication in Kafka only for fail-over?