当前位置:网站首页>Quartz misfire missed and compensated execution
Quartz misfire missed and compensated execution
2022-07-06 03:15:00 【to. to】
Dispatch (scheduleJob) Or resume scheduling (resumeTrigger,resumeJob) The latter is different misfire Corresponding processing rules
misfire The condition for this is : By the time of the trigger execution, the previous execution has not been completed , And there are no idle threads in the thread pool to use ( Or there are idle threads that can be used, but job Set to @DisallowConcurrentExecution) And the expiration time has exceeded misfireThreshold Think of it as misfire 了 , Missed trigger
such as :13:07:24 Start execution , repeat 5 Time , At the beginning of execution ,quartz The time of each scheduling has been calculated , They are as follows :
03:33:36,03:33:39,03:33:42,03:33:45,03:33:48,03:33:51
If the first execution time is 11s, To 03:33:47 end ,03:33:47 subtract 03:33:39 The time interval is 8s, If misfireThreshold The set time is less than or equal to 8s interval , Think it is misfire 了 , If it is greater than 8s interval , I don't think so misfire.
CronTrigger
CronScheduleBuilder csb = CronScheduleBuilder.cronSchedule("0/5 * * * * ?");
csb.withMisfireHandlingInstructionDoNothing();
csb.withMisfireHandlingInstructionFireAndProceed();( Default )
csb.withMisfireHandlingInstructionIgnoreMisfires();
withMisfireHandlingInstructionDoNothing
—— Do not trigger immediate execution
—— Wait for the next time Cron When the trigger frequency reaches the time, it starts to follow Cron Frequency in turn
withMisfireHandlingInstructionIgnoreMisfires
—— Start execution immediately with the first missed frequency time
—— Redo all missed frequency cycles after
—— The occurrence time of the next trigger frequency is longer than the current time , Then follow the normal Cron Frequency in turn
withMisfireHandlingInstructionFireAndProceed( Default )
—— Trigger an execution immediately with the current time as the trigger frequency
—— And then according to Cron Frequency in turn
SimpleTrigger
SimpleScheduleBuilder ssb = SimpleScheduleBuilder.simpleSchedule();
ssb.withMisfireHandlingInstructionFireNow();
ssb.withMisfireHandlingInstructionIgnoreMisfires();
ssb.withMisfireHandlingInstructionNextWithExistingCount();
ssb.withMisfireHandlingInstructionNextWithRemainingCount();
ssb.withMisfireHandlingInstructionNowWithExistingCount(); ( Default )
ssb.withMisfireHandlingInstructionNowWithRemainingCount();
withMisfireHandlingInstructionFireNow
—— Trigger the execution immediately with the current time as the trigger frequency
—— To FinalTIme The number of remaining cycles
—— The period frequency based on the time of scheduling or recovery scheduling ,FinalTime According to the remaining times and the current time
—— Adjusted FinalTime It will be slightly greater than the basis starttime Calculated to FinalTime value
withMisfireHandlingInstructionIgnoreMisfires
—— Start execution immediately with the first missed frequency time
—— Redo all missed frequency cycles
—— The next trigger frequency occurs later than the current time , according to Interval And then the rest of the frequencies
—— In total RepeatCount+1 Time
withMisfireHandlingInstructionNextWithExistingCount
—— Do not trigger immediate execution
—— Wait for the next trigger frequency cycle , To FinalTime The number of remaining cycles
—— With startTime Calculate the cycle frequency for the reference , And get the FinalTime
—— Even if in the middle pause,resume Keep it up later FinalTime Time invariable
withMisfireHandlingInstructionNextWithRemainingCount
—— Do not trigger immediate execution
—— Wait for the next trigger frequency cycle , To FinalTime The number of remaining cycles
—— With startTime Calculate the cycle frequency for the reference , And get the FinalTime
—— Even if in the middle pause,resume Keep it up later FinalTime Time invariable
withMisfireHandlingInstructionNowWithExistingCount( Default )
—— Trigger the execution immediately with the current time as the trigger frequency
—— To FinalTIme The number of remaining cycles
—— The period frequency based on the time of scheduling or recovery scheduling ,FinalTime According to the remaining times and the current time
—— Adjusted FinalTime It will be slightly greater than the basis starttime Calculated to FinalTime value
withMisfireHandlingInstructionNowWithRemainingCount
—— Trigger the execution immediately with the current time as the trigger frequency
—— To FinalTIme The number of remaining cycles
—— The period frequency based on the time of scheduling or recovery scheduling ,FinalTime According to the remaining times and the current time
—— Adjusted FinalTime It will be slightly greater than the basis starttime Calculated to FinalTime value
MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_REMAINING_REPEAT_COUNT
—— This instruction causes trigger Forget the original settings starttime and repeat-count
—— Trigger repeat-count Will be set to the number of times remaining
—— This will result in failure to obtain the original settings later starttime and repeat-count value
misfireHandler Threads
The following reasons may cause misfired job:
- The system was restarted for some reason . Between system shutdown and restart , Maybe some tasks will be misfire;
- Trigger Be suspended (suspend) For a while , Some tasks may be misfire;
- All threads in the thread pool are occupied , As a result, the task cannot be triggered to execute , cause misfire;
- Stateful tasks arrive at the next trigger time , The last execution is not over yet ; In order to deal with misfired job,Quartz In Chinese, it means trigger Defines the processing strategy , There are mainly the following two :MISFIRE_INSTRUCTION_FIRE_ONCE_NOW: in the light of misfired job Do it right now ;MISFIRE_INSTRUCTION_DO_NOTHING: Ignore misfired job, Wait for the next trigger ; The default is MISFIRE_INSTRUCTION_SMART_POLICY, The strategy is CronTrigger in =MISFIRE_INSTRUCTION_FIRE_ONCE_NOW Thread default 1 Once per minute ; In a transaction , The default is at most recovery 20 individual ;
Execute the process :
- If configured ( The default is true, Configurable ) Check whether it is necessary before acquiring the lock recovery Of trigger, First get misfireCount;
- obtain TRIGGER_ACCESS lock ;
- hasMisfiredTriggersInState: obtain misfired Of trigger, By default, a transaction can only have the largest 20 individual misfired trigger( Configurable ),misfired The basis of judgment :status=waiting,next_fire_time < current_time-misfirethreshold( Configurable , Default 1min)
- notifyTriggerListenersMisfired
- updateAfterMisfire: obtain misfire Strategy ( The default is MISFIRE_INSTRUCTION_SMART_POLICY, The strategy is CronTrigger in =MISFIRE_INSTRUCTION_FIRE_ONCE_NOW), Update according to policy nextFireTime;
- take nextFireTime Update to trigger surface ;
- commit connection, Release the lock
- If there are more misfired,sleep Short time ( For cluster load balancing ), otherwise sleep misfirethreshold Time , Continue polling after ;
misfireHandler The thread execution process is shown in the following figure :
边栏推荐
猜你喜欢

My C language learning records (blue bridge) -- files and file input and output
![[kubernetes series] learn the exposed application of kubernetes service security](/img/61/4564230feeb988886fe595e3125ef4.png)
[kubernetes series] learn the exposed application of kubernetes service security

Sign SSL certificate as Ca

Apt installation ZABBIX

I sorted out a classic interview question for my job hopping friends

Linear programming matlab
![BUUCTF刷题笔记——[极客大挑战 2019]EasySQL 1](/img/37/c38a933ce7fa5d2b8fa597965ffcb2.png)
BUUCTF刷题笔记——[极客大挑战 2019]EasySQL 1

Redo file corruption repair
![[ruoyi] enable Mini navigation bar](/img/28/a8b38aecd90c8ddc98333f0e2d3eab.png)
[ruoyi] enable Mini navigation bar

Modeling specifications: naming conventions
随机推荐
Analyze 菜单分析
手写数据库客户端
three.js网页背景动画液态js特效
How to choose PLC and MCU?
【指针训练——八道题】
【RISC-V】外部中断
张丽俊:穿透不确定性要靠四个“不变”
如何做好功能测试
js 正则过滤和增加富文本中图片前缀
MySQL advanced notes
指针笔试题~走近大厂
深度解析指针与数组笔试题
下一个行业风口:NFT 数字藏品,是机遇还是泡沫?
Fault analysis | analysis of an example of MySQL running out of host memory
Codeworks 5 questions per day (1700 average) - day 6
Zhang Lijun: penetrating uncertainty depends on four "invariants"
Descriptor implements ORM model
MySQL Server层四个日志
Résumé des méthodes de reconnaissance des caractères ocr
Handwriting database client