asp.net - Quartz.net Jobs after IIS Reset or server shutdown -
i have used quartz.net schedule jobs in asp.net application. using default jobstore think ramjobstore not sure know didn't config store.
well problem want store jobs in db can run remaining jobs again when server resets or shutdown , start again .
i know can store jobs db using adojobstore want know if application server restarts , application not running in iis how remaining jobs can triggered again ?
is there tutorial ? had experience triggering stored jobs after server reset ? appreciated
a. use adojobstore (as mentioned in comments).
b. need understand , tweak "misfire" configuration. there not simple "yes" or "no" question.
http://royontechnology.blogspot.com/2009/03/so-you-think-you-understand.html
since quartz.net java port over, can find helpful information here
http://www.nurkiewicz.com/2012/04/quartz-scheduler-misfire-instructions.html
here sample paragraph (in case link dies in future @ point)
sometimes quartz not capable of running job @ time when desired. there 3 reasons that: worker threads busy running other jobs (probably higher priority) ::: scheduler down ::: job scheduled start time in past (probably coding error)
the second 1 (in above quote) scenario.
it goes on explain scenarios , options.
Comments
Post a Comment