Re: Kafka in python

2019-07-12 Thread Devin Kramer
If your consumer is always starting with the same consumer group ID it should pick up where it left off. This also assumes your consumer is correctly sending its offsets to the __consumer_offsets topic and that the time between it starting and stopping is not so long that whatever retention you h

Kafka in python

2019-07-12 Thread Moustafa Mohamed Sadik
Hello, I am using kafka by python packages. Is it possible for server to retain messages when no consumer is available? I want to start producer and send message to the server (this part is ok). After that (when the sending to server is finished), I want to start a consumer and get the message