|
|
|
|
|
by tempay
340 days ago
|
|
I've had success with a boring event loop which looks at the state of the system and does all the background work. It's simple to implement and much easier to manage failing tasks that need manual intervention to stop failing. It also makes it easy to implement batching of work as you always know everything that needs to be done in each loop. I also have multiple celery applications, but I wouldn't recommend it for smaller or simplier apps. |
|
Can you explain what you mean?