Docker container that runs Kafka's MirrorMaker.
Kafka Version: 0.8.2.1
The MirrorMaker documentation says:
Setting up a mirror is easy - simply start up the mirror-maker processes after bringing up the target cluster. At minimum, the mirror maker takes one or more consumer configurations, a producer configuration and either a whitelist or a blacklist. You need to point the consumer to the source cluster's ZooKeeper, and the producer to the mirror cluster's ZooKeeper (or use the broker.list parameter).
The container expects the following environment variables to be passed in:
CONSUMER_ZK_CONNECT
- Zookeeper connection string for source, including port and chroot.DOWNSTREAM_BROKERS
- Brokers to receive mirrored messagesWHITE_LIST
- (optional) White list of topics, if used, do not use black listBLACK_LIST
- (optional) Black list of topics, if used, do not use white listCONSUMER_GROUP_ID
- (optional) Defaults to 1PRODUCER_COUNT
- (optional) Defaults to 1STREAM_COUNT
- (optional) Defaults to 1
docker run -e WHITE_LIST="topic" -e CONSUMER_ZK_CONNECT=localhost:2181/chroot -e DOWNSTREAM_BROKERS=127.0.0.1:9092 sheeley/docker-kafka-mirrormaker
docker build -t sheeley/docker-kafka-mirrormaker .
- Currently only supports a single consumer
- Does not support message handlers
- Does not support rebalancers
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27846330