0

我有一个有两个tasks.py文件的项目。结构看起来像这样

root/
    webproject
        __init__.py
        models.py
         views.pu
        celerytasks/
            __init__.py
            celeryconfig.py
            tasks.py
    scheduledJobs/
        celeryconfig.py
        tasks.py

celerytasks 是由网站添加的webrequests并且scheduledJobs是很好的预定作业(删除旧文件等)。

我现在必须从命令行运行 celery 两次。Out 代码尚未生产,所以我使用 nohup 来执行此操作。我的问题是我可以以某种方式使用相同的命令运行两者。

我刚开始用芹菜。

4

1 回答 1

1

我使用下一个参数:worker -B,但更好地查看文档:http ://docs.celeryproject.org/en/latest/userguide/periodic-tasks.html#starting-the-scheduler 。

于 2013-06-12T14:27:11.377 回答