Note that there are some explanatory texts on larger screens.

plurals
  1. PODurable Jobs being deleted using AdoJobStore
    primarykey
    data
    text
    <p>We have windows service that runs quartz using the below configuration. We also have a mvc application with the same settings which is used to maintain the jobs and triggers for the cluster. But for some reason the jobs and triggers are being deleted, even if the job is durable.</p> <pre><code>&lt;quartz&gt; &lt;add key="quartz.scheduler.instanceId" value="AUTO" /&gt; &lt;add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" /&gt; &lt;add key="quartz.threadPool.threadCount" value="10" /&gt; &lt;add key="quartz.threadPool.threadPriority" value="Normal" /&gt; &lt;add key="quartz.jobStore.misfireThreshold" value="60000" /&gt; &lt;add key="quartz.jobStore.type" value="Quartz.Impl.AdoJobStore.JobStoreTX, Quartz" /&gt; &lt;add key="quartz.jobStore.tablePrefix" value="support.QRTZ_" /&gt; &lt;add key="quartz.jobStore.dataSource" value="myDS" /&gt; &lt;add key="quartz.jobStore.useProperties" value="true" /&gt; &lt;add key="quartz.jobStore.clustered" value="true" /&gt; &lt;add key="quartz.jobStore.clusterCheckinInterval" value="15000" /&gt; &lt;add key="quartz.dataSource.paymentsDS.connectionString" value="connString" /&gt; &lt;add key="quartz.dataSource.paymentsDS.provider" value="SqlServer-20" /&gt; &lt;/quartz&gt; </code></pre> <p>Windows Service Start</p> <pre><code> IScheduler scheduler = _schedulerFactory.GetScheduler(); scheduler.JobFactory = _jobFactory; scheduler.Start(); </code></pre> <p>MVC Manager</p> <pre><code> IScheduler scheduler = _schedulerFactory.GetScheduler(); scheduler.AddJob(jobDetail, false); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload