如何从django前端安排任务?

时间:2017-06-09 10:33:07

标签: python django cron celery

我正在使用Django编写灌溉系统,我使用Celery来处理异步任务。

在我的应用程序中,用户选择他想要激活灌溉的日期和时间,这将存储在数据库中,他可以随时更新它们。

我知道我可以安排这样的任务,但我想更新时间。

from celery.task.schedules import crontab
from celery.decorators import periodic_task

@periodic_task(run_every=crontab(hour=7, minute=30, day_of_week="mon"))
def every_monday_morning():
    print("This runs every Monday morning at 7:30a.m.")

另一种方法是使用python-crontab

1 个答案:

答案 0 :(得分:1)

通过让运行时表列出我想要运行的内容以及何时可以从Django中选择来做类似的事情。

然后安排定期任务本身每30秒运行一次,并检查此表中请求的任何内容是否准备好执行并调用其中一个工作人员。

编辑:按照格雷厄姆的要求举例

Django中设置节拍的设置:

CELERY_BEAT_SCHEDULE = {
    'Runtime': {
    'task': 'Runtime',
    'schedule': timedelta(seconds=15),
    },
}

调用Django中定义的模型的任务(例如,在此例中为irrigation_requests),用户将通过前端更新:

def Runtime():
    #get all from model in state requested
    irrigation_job=Irrigation_Requests.objects.filter(Status__in=['Requested'])

    # Process each requested if flag to do just one thing then you could just test irrigation_job exists      
    for job in irrigation_job:
        ....
        print ("This runs every when requested and depending on job parameters stored in your model can have further scope")

    #update requested this could be done in loop above
    irrigation_job.update(Status='Processed')