Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following demo uses the sample configurations provided for the Kafka quick-start, and the following configuration files:
mirror-server.properties, mirror-consumer.properties, mirror-producer.properties, mirror-zookeeper.properties.

  • Start the primary cluster:
    bin/zookeeper-server-start.sh config/zookeeper.properties
    bin/kafka-server-start.sh config/server.properties
  • Start the mirror cluster:
    bin/zookeeper-server-start.sh config/mirror-zookeeper.properties
    JMX_PORT=8888 bin/kafka-server-start.sh config/mirror-server.properties config/mirror-consumer.properties config/mirror-producer.properties
  • If you now send messages to topics on the source cluster, the mirror cluster will eventually mirror those topics.

...