我已经使用Quartz .Net库进行调度任务。
它对我来说很好。但是当我在Production Server IIS 7上运行它时。它最好工作但3-4小时后会自动停止。我必须重新启动Scheduler。 问题是什么。
没有生成任何异常。因为我正在记录日志文件的异常。但没有任何关于调度程序错误的文字。
ISchedulerFactory schedFact = new StdSchedulerFactory();
// get a scheduler
IScheduler sched = schedFact.GetScheduler();
sched.Start();
JobDetail jobDetail = new JobDetail("myJob", null, typeof(DumbJob));
DateTime dt = DateTime.Now;
dt = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(dt, TimeZoneInfo.Local.Id, "India Standard Time");
SimpleTrigger trigger2 = new SimpleTrigger("myTrigger",
null,
DateTime.UtcNow,
null,
SimpleTrigger.RepeatIndefinitely,
TimeSpan.FromSeconds(60));
sched.ScheduleJob(jobDetail, trigger2);
答案 0 :(得分:2)
我猜这就是应用程序池回收... (IIS会在一些请求或一段时间后自动回收应用程序池)
更多信息:http://www.iis.net/ConfigReference/system.applicationHost/applicationPools/add/recycling
答案 1 :(得分:0)
请检查Quartz调度程序的线程数。 在Web配置中,您可以将线程计数定义如下。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="quartz"
type="System.Configuration.NameValueSectionHandler,
System, Version=1.0.5000.0,Culture=neutral,
PublicKeyToken=b77a5c561934e089" />
</configSections>
<quartz>
<add key="quartz.scheduler.instanceName" value="ServerScheduler" />
<add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" />
<add key="quartz.threadPool.threadCount" value="10" />
<add key="quartz.threadPool.threadPriority" value="2" />
<add key="quartz.jobStore.misfireThreshold" value="60000" />
<add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz" />
</quartz>
</configuration>
我希望这会对你有所帮助。