标签:场景 图片 exec mic ace run mamicode 结合 exe
在Django中使用apscheduler django_apscheduler 实现定时任务, 来完成数据拉取. 一段时间后发现数据量对不上,遂查日志
发现报错如下:
Run time of job …… next run at: ……)” was missed by
google 到的是github上的一个issue:https://github.com/agronholm/apscheduler/issues/146
里面说到了一个参数:misfire_grace_time,但是这个参数到底是干嘛用的,在其他地方找到了解释,其中涉及到几个其他参数,但是结合自己的理解综合总结一下
示例:
15分钟一次的的任务,misfire_grace_time 设置100秒,在0:06分的时候提示:
Run time of job "9392_index (trigger: interval[0:15:00], next run at: 2018-10-27 00:15:00 CST)" was missed by 0:06:03.931026
本来应该在0:00执行的任务,某种原因没有被调度,提示下次运行(0:15)与当前差了6分钟(阈值100秒),所以0:15的时候将不会运行
所以这个参数可以通俗的理解为任务的超时容错配置,给executor 一个超时时间,这个时间范围内要是该跑的还没跑完,就别再跑了。
解决:
@register_job(scheduler, ‘cron‘, day_of_week=‘mon-fri‘, hour=‘18‘, minute=‘24‘, second=‘0‘, id=‘task_time‘,misfire_grace_time=3600)
增加了一行
misfire_grace_time=3600
解决apscheduler报错:Run time of job …… next run at: ……)” was missed by
标签:场景 图片 exec mic ace run mamicode 结合 exe
原文地址:https://www.cnblogs.com/ryan255/p/11429807.html