Which of the following is the correct syntax to start Kafka MirrorMaker with a consumer config file named consumer.properties?
Abin/kafka-mirror-maker.sh --consumer-config consumer.properties --producer-config producer.properties --whitelist 'topic1,topic2'
Bbin/kafka-mirror-maker.sh --consumer consumer.properties --producer producer.properties --topics 'topic1,topic2'
Cbin/kafka-mirror-maker.sh --config consumer.properties --config producer.properties --topics 'topic1,topic2'
Dbin/kafka-mirror-maker.sh --consumer.config consumer.properties --producer.config producer.properties --whitelist 'topic1,topic2'