Can celery celerybeat dynamically add/remove tasks in runtime?
问题 I have a project that does not include Django, so i can't use djcelery. But i found the modification of django-celery DatabaseSchedule that using sqlalchemy. It works fine as like djceley's DatabaseScheule did. But the only problem is that it doesn't seem to send tasks that were added in runtime, then i restart the celery-beat, the tasks that were added before will be sent successfully. So, is it possible to dynamically add/remove tasks without restarting celery-beat? Thanks for any advice.