Kafka Produce Config could not replicate distributed messages
yichulau opened this issue · 3 comments
yichulau commented
Hi is there a configuration that allows to configure such that the messages are send in distributed manner? Because when i did a load test, the messages will only send to one partition.
For example, i had a topic called 'test-topic' and 3 partition, when i run the jmeter, it will randomly choose one partition, and send all the message to the partition, instead of evenly distributed.
Illustration:
Topic: test-topic
Amount of message to send: 5 message
Current scenario:
partition-0: 5
partition-1: 0
partition-2 : 0
Desired output (more distributed):
partition-0:1
partition-1:2
partition-3: 2