Hi @nkeilbart, sorry to hear that you have this problem.
There are two things you can try.
- Calculations get stuck in "created" state this seems like that there are too workchains/calcjobs in workers, usually increase the worker number or
verdi config set daemon.worker_process_slots 800
to increase the worker’s slots from default 200 to 800. - Since you also mentioned this problem appears after the rabbitmq is updated, maybe there are tasks in the queue that not able to be consumed. I’d suggest to clean the queue. First you can list the queues by
rabbitmqadmin list queues name
and then tryrabbitmqadmin purge queue name=<queue_name>
. This can work only if you have admin permission to rabbitmq.
Let me know if you have further questions.