I have a single queue marked both as a
I have a single queue marked both as a producer and a consumer queue, attached to the same worker. The worker takes input from the queue and produces output to the same queue until the task is done. What I observe is, the task runs for couple of iterations and stops running.
3 Replies
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
You would probably get better results with a cron job every 1 minute. I heard there is a limit of 100 retries after which the message is permanently deleted from the queue. Do you maybe fall into this case?
I am calling an API that does a token-based pagination, the queue stores the next token and the worker calls the API + Stores data to DB until all the data is retrieved
that's what the worker does