我在烧瓶应用程序中通过sqlalchemy将apscheduler与持久性作业存储一起使用。正在使用flask-sqlalchemy模块。
没有触发器的作业和持久的作业存储正在执行。但是,对于cron作业,“ next_run_time”始终会更新,但作业不会执行。万一失火,我希望作业只运行一次。
## relevant global config variables for flask app
SCHEDULER_EXECUTORS = {
'default': {'type': 'threadpool', 'max_workers': 20}
}
SCHEDULER_JOB_DEFAULTS = {
'coalesce': True,
'max_instances': 1
}
## add scheduled job
app.config['JOBS'].append({
'id': '{job_id}',
'replace_existing' : True,
'func': '{module_to_kickoff}:{function}',
'jobstore': 'default',
'trigger': 'cron',
#'misfire_grace_time': 79200, # 22 hours
'day': '*', 'hour': 1, 'minute': 0
})