Complete the code to specify the source cluster in MirrorMaker 2 configuration.
source.bootstrap.servers=[1]The source.bootstrap.servers property must point to the source Kafka cluster's address, such as "source.kafka:9092".
Complete the code to specify the target cluster in MirrorMaker 2 configuration.
target.bootstrap.servers=[1]The target.bootstrap.servers property must point to the target Kafka cluster's address, such as "target.kafka:9092".
Fix the error in the MirrorMaker 2 configuration property to enable topic replication.
replication.policy.class=[1]
The correct class for replication policy in MirrorMaker 2 is org.apache.kafka.connect.mirror.DefaultReplicationPolicy.
Fill both blanks to configure MirrorMaker 2 to replicate topics with a specific prefix and exclude internal topics.
topics=[1] topics.exclude=[2]
Use "prefix-.*" to include topics starting with 'prefix-' and exclude internal topics like "__consumer_offsets".
Fill all three blanks to configure MirrorMaker 2 with source, target, and replication policy settings.
clusters=[1] source.bootstrap.servers=[2] replication.policy.class=[3]
Set clusters to "source,target", source bootstrap servers to "source.kafka:9092", and replication policy class to org.apache.kafka.connect.mirror.DefaultReplicationPolicy.