I want to optimize my kafka producer (working in python using the confluent-kafka
library). I have a topic for which acknowledgment of the leader receiving a message is not important. Therefore, I've set the acks to 0.
I'm wondering something about the above though: Does this really mean that no acknowledgment
is sent at all? Thus I do not need to poll()
after producing? Or would I risk a filling up an internal Queue if I don't poll after producing?
Thanks in advance!