APC scheduler that launches our scheduled jobs in job_scheduler.py constantly misses the 'server-stats' job, I've tried to remedy this with some global job settings:
self.scheduler = BackgroundScheduler({
'job_defaults': {
'misfire_grace_time': None, # Set default misfire grace period for all jobs
'coalesce': True, # Combine missed runs
'max_instances': 3 # Max instances of the same job running at the same time
}
})
The above doesn't seem to fully remedy the situation. Need to research the APC scheduler library and attempt to find the cause/solution.
APC scheduler that launches our scheduled jobs in job_scheduler.py constantly misses the 'server-stats' job, I've tried to remedy this with some global job settings:
The above doesn't seem to fully remedy the situation. Need to research the APC scheduler library and attempt to find the cause/solution.