Google News
logo
Kafka - Interview Questions
What is Kafka Mirror Maker?
Kafka supports data replication within the cluster to ensure high availability. But enterprises often need data availability guarantees to span the entire cluster and even withstand site failures.
 
The solution to this is Mirror Maker – a utility that helps replicate data between two Kafka clusters within the same or different data centers.
 
MirrorMaker is essentially a Kafka consumer and producer hooked together. The origin and destination clusters are completely different entities and can have a different number of partitions and offsets, however, the topic names should be the same between source and a destination cluster. The MirrorMaker process also retains and uses the partition key so that ordering is maintained within the partition.
Advertisement