当前位置:网站首页>How does apscheduler set tasks not to be concurrent (that is, execute the next task after the first one)?
How does apscheduler set tasks not to be concurrent (that is, execute the next task after the first one)?
2022-07-04 05:54:00 【Jayce~】
APScheduler How to set tasks not to be concurrent ( That is, execute the next task after the first task )?
1. Software environment
Windows10 Education 64 position
Python 3.6.3
APScheduler 3.6.3
2. Problem description
Python
A solution to timed tasks in , Generally speaking, there are four kinds of , Namely :crontab
、 scheduler
、 Celery
、APScheduler
, among :
crontab
yesLinux
A timed task management tool for , stayWindows
There are substitutes on itpycron
, butWindows
UnlikeLinux
There are many powerful command programs ,pycron
Usefullimitations
,Customization
Not good. ;Scheduler
Too simple 、 A more complex scheduled task is too difficult , Especially withmonth
Scheduled tasks in the above time units ;Celery
There are more dependent software , Comparative resource consumption ;APScheduler(Advanced Python Scheduler)
be based onQuartz
, It can be cross platform and easy to configure , Providesdate
、interval
、cron
3 Different triggers , AndLinux
Upper nativecrontab
Format compatible , You can set any highly complex scheduled task , Flexible to death .
I will not introduce APScheduler
The basic characteristics of , If you need it, you can see it directly APScheduler Official documents , Let's go straight to the subject :
APScheduler How to set tasks not to be concurrent ( That is, execute the next task after the first task )?
APScheduler
When multiple tasks are triggered at the same time , Multiple tasks will be executed simultaneously , For example, use the sample code below :
''' =========================================== @author: jayce @file: apscheduler Set tasks not to be concurrent .py @time: 2022/7/1/001 19:38 =========================================== '''
from apscheduler.schedulers.blocking import BlockingScheduler
import time
def job_printer(text):
''' Dead cycle , Used to simulate long-time tasks :param text: :return: '''
while True:
time.sleep(2)
print("job text:{}".format(text))
if __name__ == '__main__':
schedule = BlockingScheduler()
schedule.add_job(job_printer, "cron", second='*/10', args=[' Every time 10 Once per second !'])
schedule.add_job(job_printer, "cron", second='*/20', args=[' Every time 20 Once per second !'])
schedule.print_jobs()
schedule.start()
You can see , function job_printer
It's a dead cycle , Used to simulate long-time tasks , We use add_job
towards APScheduler
Add 2 individual job_printer
, The difference is that 2 The time interval between tasks is : Every time 10 Once per second
and Every time 20 Once per second
.
because job_printer
It's a dead cycle , amount to job_printer
Has not been implemented , But in fact APScheduler
When the task is not completed , Execute multiple different job_printer
:
job text: Every time 10 Once per second !
job text: Every time 20 Once per second !
job text: Every time 10 Once per second !
job text: Every time 20 Once per second !
job text: Every time 10 Once per second !
job text: Every time 20 Once per second !
job text: Every time 10 Once per second !
job text: Every time 20 Once per second !
job text: Every time 10 Once per second !
Execution of job "job_printer (trigger: cron[second='*/10'], next run at: 2022-07-01 20:47:50 CST)" skipped: maximum number of running instances reached (1)
namely :
You can see 10 Of a second job_printer
and 20 Of a second job_printer
Alternately executed , And in fact 10 Of a second job_printer
In fact, it has not been implemented at all . This is in CPU
perhaps GPU
When the hardware equipment can bear the load , Of course it's a good thing , But if your hardware is not enough , happen OOM Such as insufficient resources , The program was interrupted , Cause your model training or business logic to fail ! Concrete
:
I use APScheduler
and Tensorflow
Learning online (online learning
) when , Different retraining methods will be used for the model at different time nodes , if there be 2 Scheduled tasks (A
: Every time 10
Once per second ,B
: Every time 20
Once per second ) and 2 A heavy training method (X
and Y
), When your video memory has the following conditions :
Video memory is rarely enough to train a program , You cannot run multiple programs at the same time , Otherwise
OOM
;
Then you can only guide the program to execute in turn , Instead of executing concurrently , At the same time X
and Y
When triggered simultaneously , Only execute 1 individual , in addition 1 One does not execute .
What should we do at this time ?
3. resolvent
By consulting official documents , It is found that the number of threads that can execute tasks can be set , To control only 1 An actuator performs the task , So as to complete the task X
Then carry out the task Y
, As follows :
''' =========================================== @author: jayce @file: apscheduler Set tasks not to be concurrent .py @time: 2022/7/1/001 19:38 =========================================== '''
from apscheduler.executors.pool import ThreadPoolExecutor
if __name__ == '__main__':
# To prevent video memory overflow caused by full and incremental concurrency , And then the training failed , Set that only one task can run at a time
schedule = BlockingScheduler(executors={
'default': ThreadPoolExecutor(1)})
Through to the BlockingScheduler
Set the maximum ThreadPoolExecutor=1
, That's what we want !
4. Results Preview
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
Execution of job "job_printer (trigger: cron[second='*/10'], next run at: 2022-07-01 21:17:50 CST)" skipped: maximum number of running instances reached (1)
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
Execution of job "job_printer (trigger: cron[second='*/10'], next run at: 2022-07-01 21:18:00 CST)" skipped: maximum number of running instances reached (1)
Execution of job "job_printer (trigger: cron[second='*/20'], next run at: 2022-07-01 21:18:00 CST)" skipped: maximum number of running instances reached (1)
namely :
You can see , I've been implementing section 1 A triggered task , Tasks triggered at the same time are skipped
了 ~~
Of course , If you want the 1 When a task is completed , Perform the skipped task , It can be done by add_job
Set in misfire_grace_time
Realization !
FAQ
1.APScheduler
If a task fails , Will the whole scheduled task program be interrupted ? Or do you want to continue the task next time ?
The answer is : The program will not break , It's time for the next task , And re execute .
Concrete , Use the following test code :
''' =========================================== @author: jayce @file: apscheduler Set tasks not to be concurrent .py @time: 2022/7/1/001 19:38 =========================================== '''
from apscheduler.schedulers.blocking import BlockingScheduler
from apscheduler.executors.pool import ThreadPoolExecutor
import time
def exception_maker():
''' Exception maker , Used to simulate that task execution is interrupted :return: '''
return 1 / 0
def job_printer(text):
''' Dead cycle , Used to simulate long-time tasks :param text: :return: '''
while True:
time.sleep(2)
print("job text:{}".format(text))
if __name__ == '__main__':
schedule = BlockingScheduler()
schedule.add_job(job_printer, "cron", second='*/10', args=[' Every time 10 Once per second !'])
schedule.add_job(exception_maker, "cron", second='*/5')
schedule.print_jobs()
schedule.start()
You can see exception_maker
Has failed many times , But it does not affect the next execution of other tasks and itself :
Job "exception_maker (trigger: cron[second='*/5'], next run at: 2022-07-01 19:53:30 CST)" raised an exception
Traceback (most recent call last):
File "C:\Users\Jayce\Anaconda3\envs\tf2.3\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job
retval = job.func(*job.args, **job.kwargs)
File "E:/Code/Python/demo Code /apscheduler Set tasks not to be concurrent .py", line 14, in exception_maker
return 1 / 0
ZeroDivisionError: division by zero
Job "exception_maker (trigger: cron[second='*/5'], next run at: 2022-07-01 19:53:35 CST)" raised an exception
Traceback (most recent call last):
File "C:\Users\Jayce\Anaconda3\envs\tf2.3\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job
retval = job.func(*job.args, **job.kwargs)
File "E:/Code/Python/demo Code /apscheduler Set tasks not to be concurrent .py", line 14, in exception_maker
return 1 / 0
ZeroDivisionError: division by zero
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
Job "exception_maker (trigger: cron[second='*/5'], next run at: 2022-07-01 19:53:40 CST)" raised an exception
Traceback (most recent call last):
File "C:\Users\Jayce\Anaconda3\envs\tf2.3\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job
retval = job.func(*job.args, **job.kwargs)
File "E:/Code/Python/demo Code /apscheduler Set tasks not to be concurrent .py", line 14, in exception_maker
return 1 / 0
ZeroDivisionError: division by zero
job text: Every time 10 Once per second !
job text: Every time 10 Once per second !
Execution of job "job_printer (trigger: cron[second='*/10'], next run at: 2022-07-01 19:53:40 CST)" skipped: maximum number of running instances reached (1)
Job "exception_maker (trigger: cron[second='*/5'], next run at: 2022-07-01 19:53:45 CST)" raised an exception
Traceback (most recent call last):
File "C:\Users\Jayce\Anaconda3\envs\tf2.3\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job
retval = job.func(*job.args, **job.kwargs)
File "E:/Code/Python/demo Code /apscheduler Set tasks not to be concurrent .py", line 14, in exception_maker
return 1 / 0
ZeroDivisionError: division by zero
job text: Every time 10 Once per second !
namely :
You can see it here , Not in a hurry give the thumbs-up
, Comment on
, Collection
Take a walk ?
边栏推荐
- Error CVC complex type 2.4. a: Invalid content beginning with element 'base extension' was found. Should start with one of '{layoutlib}'.
- Online shrimp music will be closed in January next year. Netizens call No
- 我的NVIDIA开发者之旅——优化显卡性能
- 70000 words of detailed explanation of the whole process of pad openvino [CPU] - from environment configuration to model deployment
- Easy change
- 卸载Google Drive 硬盘-必须退出程序才能卸载
- C语言中的函数(详解)
- 复合非线性反馈控制(二)
- Install pytoch geometric
- HMS v1.0 appointment. PHP editid parameter SQL injection vulnerability (cve-2022-25491)
猜你喜欢
随机推荐
【雕爷学编程】Arduino动手做(105)---压电陶瓷振动模块
(4) Canal multi instance use
接地继电器DD-1/60
每周小结(*63):关于正能量
配置交叉编译工具链和环境变量
BUU-Pwn-test_ your_ nc
Overview of relevant subclasses of beanfactorypostprocessor and beanpostprocessor
Upper computer software development - log information is stored in the database based on log4net
509. Fibonacci number, all paths of climbing stairs, minimum cost of climbing stairs
Halcon图片标定,使得后续图片处理过后变成与模板图片一样
1.1 history of Statistics
Leakage detection relay jy82-2p
【无标题】
input显示当前选择的图片
Kubernets first meeting
The end of the Internet is rural revitalization
Install pytoch geometric
如何判断数组中是否含有某个元素
Compound nonlinear feedback control (2)
冲击继电器JC-7/11/DC110V