1

我使用 Quartz .Net 库来调度任务。

它对我来说工作正常。但是当我让它在生产服务器 IIS 7 上运行时。最初它工作得很好,但在 3-4 小时后它会自动停止。我必须重新启动调度程序。什么问题。

没有生成任何异常。因为我正在将异常记录到日志文件中。但是没有任何关于调度程序错误的内容。

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);
4

2 回答 2

2

我猜这都是关于应用程序池回收的......(IIS会在多次请求或经过一定时间后自动回收应用程序池)

更多信息:http ://www.iis.net/ConfigReference/system.applicationHost/applicationPools/add/recycling

于 2012-07-17T05:55:06.637 回答
0

请检查您的 Quartz 调度程序的线程数。在 web config 中,您可以如下定义线程数。

<?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>

我希望这能帮到您。

于 2015-09-17T07:51:44.033 回答