Hi Kafka Gurus :) I am facing issues with KafkaMirror, I am using Kafka 0.10.1.1 and trying to use mirroring to create backup of kafka logs or perhaps this might be a great idea to do it, please let me know if its not.
my consumer.properties: bootstrap.servers=localhost:9092 group.id=mirror producer.properties: bootstrap.servers=localhost:19092 compression.type=lz4 Using below command: ./kafka-mirror-maker.sh --new.consumer --consumer.config ../config/consumer.properties --producer.config ../config/producer.properties --whitelist 'test-topic' --abort.on.send.failure true If i use consumer-groups on the source kafka which is consumer kafka-consumer-groups.sh --new-consumer --describe --group mirror --bootstrap-server localhost:9092 Output is: GROUP TOPIC PARTITION CURRENT-OFFSET LOG-END-OFFSET LAG OWNER mirror test-topic 0 unknown 2756 unknown mirror-0_/192.168.191.4 I don't see it on my producer neither the topics folder in kafka.data.dir Can you please help me point out what i am doing wrong here? Thanks! Lee