How to prevent a task from requeuing into celery when worker is lost while executing the task and store it in a variable
We need a solution in which we can prevent the tasks that was getting executed by the celery worker from automatically requeuing into to celery after being rejected due to worker lost. We also need to save the tasks (unacknowledged tasks) to be stored in a variable so that we can execute it later.
Celery doesn’t process my tasks but it doesn’t throw any errors either
I am trying to create a queue system for an llm helper I am developing for a job. I settled for redis and celery since I have no prior experience with any queue system and it seemed simple enough.