我目前正在调查使用Quartz.NET来调度系统中的任务。作为我如何使用Quartz.NET的一个例子,下面是一个非常简单的例子,演示了我如何安排任务:
class Program
{
static void Main(string[] args)
{
var properties = new NameValueCollection();
properties["quartz.scheduler.instanceName"] = "TestScheduler";
properties["quartz.scheduler.instanceId"] = "instance_one";
properties["quartz.jobStore.type"] = "Quartz.Impl.AdoJobStore.JobStoreTX, Quartz";
properties["quartz.jobStore.useProperties"] = "true";
properties["quartz.jobStore.dataSource"] = "default";
properties["quartz.jobStore.tablePrefix"] = "QRTZ_";
properties["quartz.jobStore.lockHandler.type"] = "Quartz.Impl.AdoJobStore.UpdateLockRowSemaphore, Quartz";
properties["quartz.dataSource.default.connectionString"] = "Server=.\\SqlExpress;Database=quartz;Trusted_Connection=True;";
properties["quartz.dataSource.default.provider"] = "SqlServer-20";
var scheduler = new StdSchedulerFactory(properties).GetScheduler();
scheduler.Start();
TriggerSimpleJob(scheduler);
Console.WriteLine("Waiting For Job");
Console.ReadLine();
}
private static void TriggerSimpleJob(IScheduler scheduler)
{
ITrigger trigger = TriggerBuilder.Create()
.WithIdentity("trigger1", "group1")
.StartAt(DateBuilder.EvenSecondDateAfterNow())
.UsingJobData("myTriggerParameter", "myTriggerValue")
.UsingJobData("myParameter", "triggerParameter")
.Build();
IJobDetail jobDetail = JobBuilder.Create<SimpleJob>().WithIdentity("job1", "group1")
.UsingJobData("myParameter", "myValue")
.Build();
scheduler.ScheduleJob(jobDetail, trigger);
}
}
public class SimpleJob : IJob
{
public void Execute(IJobExecutionContext context)
{
Console.WriteLine("Job completed");
}
}
我的问题是:
我想将作业的计划与作业的执行分离。
在上面的示例中,在计划作业之后,如果在计划时间到达时进程仍在运行,则作业正在此过程中执行。理想情况下,我希望能够拥有一个专用服务器,其中运行Quartz.NET调度程序实例,专门用于执行作业,并能够从其他进程安排作业,知道该作业将在此专用服务器上执行。 / p>
我尝试在调度作业的进程上简单地将属性“quartz.threadPool.threadCount”设置为“0”,但这会引发异常。调度程序上是否有任何配置属性可以实现我想要做的事情?
答案 0 :(得分:1)
早上好,
你可以阅读我的回答here。
我建议使用ADO.NET Job Store(似乎你正在使用它)。 应配置负责调度作业的应用程序,将属性 threadPool 设置为 ZeroSizeThreadPool :
properties["quartz.threadPool.type"] = "Quartz.Simpl.ZeroSizeThreadPool, Quartz";
您可以阅读有关此类线程池here的更多信息。
应使用以下设置配置负责执行作业的应用程序:
properties["quartz.threadPool.type"] = "Quartz.Simpl.SimpleThreadPool, Quartz";
properties["quartz.threadPool.threadCount"] = "10";
properties["quartz.threadPool.threadPriority"] = "Normal";
答案 1 :(得分:0)
删除行
scheduler.Start();