I am using celery and rabbitmq to do a chain that looks something like this:
fetch -> parse -> write pages
The write pages part issues it's own set of asynchronous tasks to write each individual page in parallel (as described in this other question of mine: In Celery Task Queue, is running tasks in a group any different than multiple asyncs in a loop?)
When I run this for a long time, I have observed that it will eventually just stop. It will again if I restart celery, but only after executing another 60 or so tasks and then it stops again.
I have noticed that this happens when the queue size gets up to a little over 400k:
fast@build1 ~/dev/content-admin $ sudo rabbitmqctl list_queues
Listing queues ...
build1.prod2.ec2.cmg.net.celery.pidbox 0
celery 433410
...done.
I think that what is happening is that the queue is filling with these "write pages" tasks which wil add more items to the queue and then once it's "full", it never gets a chance to execute those newly added tasks.
I have experimented by temporarily modifying the "write pages" task to instantly return (do nothing) and that appears to have cleared the congestion and enabled the output of all ~400,000 pages. However, I am not 100% why that even worked.
Is there an upper limit that is imposed by RabbitMQ or by Celery? And is it based on available memory? Or is it configurable? And finally: How can I manage the tasks better so that this doesn't happen?
Is redis more suited for what I'm doing?
I think if there were more "write page" workers that would help, but I also want to somehow force that the "write page" tasks take precedence.
I would appreciate any help with this. Thank you!