I have a use case where messages from an input_topic gets consumed and sent to a list of topics. I'm using producers[i].send_async(msg, callback=callback)
where callback = lambda res, msg: consumer.acknowledge(msg)
. In this case, consumer is subscribed to the input_topic
. I checked the backlog of input_topic
and it has not decreased at all. Would appreciate if you could point out how to deal with this? What would be the best alternative?
Thanks in advance!