Hi! I'm playing with kafka using the following setup: 3 zk nodes ensemble 2 brokers: * num_partitions:3 * topic.partition.count.map=test-topic:5
My producer connects to brokers using zk.connect. When the producer sends messages to the "test-topic" topic, the partitions are created on both brokers and messages are distributed across all broker-partition available, however, when producer sends messages to another topic (not configured in topic.partition.count.map) only are created in one server (and all newly created topics are on the same server) The main question is, is there any way to distribute messages across all servers using default partitioner and zk configuration? Thanks for your help! :) -- Regards, Samuel García.