Complete the code to specify the source Kafka cluster for replication.
replication.source.cluster = "[1]"
The source cluster is the Kafka cluster where data originates. Here, it is named "source-cluster".
Complete the code to specify the destination Kafka cluster for replication.
replication.destination.cluster = "[1]"
The destination cluster is where the data is replicated to. It is named "destination-cluster" here.
Fix the error in the replication topic configuration to enable replication.
replication.topic = "[1]"
The replication topic must be correctly named to match the source topic being replicated. "replicated-topic" is the correct name here.
Fill both blanks to configure the replication factor and the number of partitions for the replicated topic.
replication.topic.config = {"replication.factor": [1], "partitions": [2]The replication factor is set to 3 to ensure fault tolerance, and the number of partitions is set to 10 for parallelism.
Fill all three blanks to complete the replication configuration with topic name, replication factor, and partitions.
replication.config = {"topic": "[1]", "replication.factor": [2], "partitions": [3]The topic to replicate is "replicated-topic" with a replication factor of 3 and 10 partitions for performance and reliability.