Kafka - Producers
Consider this code snippet for sending messages without keys:
for i in range(4):
producer.send("topic", value=f"msg{i}")What is the likely issue if all messages end up in the same partition?
Consider this code snippet for sending messages without keys:
for i in range(4):
producer.send("topic", value=f"msg{i}")What is the likely issue if all messages end up in the same partition?
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions