Quartz.NET is an open source job scheduling library for .NET. A job scheduler is a system that is responsible for executing (or notifying) other software components when a pre-determined (scheduled) time arrives. Version 2.0 with many Breaking Changes to Version 1.0 was released on April 9, 2012.
Questions tagged [quartz.net-2.0]
89 questions
1
vote
1 answer
Questions and help regarding the implementation of Quartz.net 2.0
I am trying to write a simple proof of concept application implementing Quartz.net 2.x. I have never seen such poor excuse for documentation. I have so many questions that I can't seem to get answered. It seems that the documentation assumes that…

flyNflip
- 451
- 1
- 5
- 14
1
vote
2 answers
Quartz.NET as a Windows Service with Dependencies in the GAC
I've setup a Quartz as a windows service (using AdoJobStore if it matters) and have managed to get a ASP.NET site to communication with it via remoting to add/schedule a custom IJob that lives in my own project Company.Project.ServiceLayer.
This…

Oliver Pearmain
- 19,885
- 13
- 86
- 90
1
vote
1 answer
Weekly trigger with Quartz.Net 2.0.1
Is there any possibility to make the Quartz.Net trigger to work based on weekly basis. I have done up the rest of the things. Its urgent. Please guide me how can i do this.

Dheyvendaran
- 175
- 1
- 4
- 12
1
vote
1 answer
Durable Jobs being deleted using AdoJobStore
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…

Thad
- 1,518
- 2
- 21
- 37
1
vote
2 answers
Quartz.net not firing on remote server
I've implemented quartz.net in windows service to run tasks. And everything works fine on local workstation. But once it's deployed to remote win server host, it just hangs after initialization.
ISchedulerFactory schedFact = new…

Johnny_D
- 4,592
- 3
- 33
- 63
1
vote
2 answers
Using quartz.net on medium trust hosting
I need scheduling functionality on my .NET MVC website and I came across Quartz.net library which can do exactly what I need.
The problem is I'm running my site on a hosting (GoDaddy) and when I added Quartz.net 2.0.1 to my project I've got "that…

Burjua
- 12,506
- 27
- 80
- 111
1
vote
2 answers
Quartz.NET vs JAMS vs?
We are currently using Quartz.NET 1.1. (I see that Quartz.NET 2.0 was released a couple of weeks ago)
1.) Has anyone personally used both Quartz.NET and JAMS? If so, which was the 'better' (easy to implement, easy to configure, reliable) of the…

Glen J Fergo
- 134
- 1
- 1
- 9
0
votes
1 answer
Quartz 2.6.2 and .NET Core? - Error "Could Not Initialize DataSource"
I'm using an older version of Quartz.NET (v2.6.2) with .NET Core (or possibly .NET5). I'm getting an error when attempting to use the StdSchedulerFactory.GetScheduler. All my configuration settings are within my appsettings.json where I populate a…

RichieMN
- 905
- 1
- 12
- 33
0
votes
1 answer
quartz.net 2.0 job do not execute parallel
We have 3 quartz.net (version 2.3.3) job configured via xml file
IInterruptableJob Job1Class is marked with DisallowConcurrentExecution and being used by both Job1 & Job2 (of course with different job data) in xml file.
IInterruptableJob Job3Class…

user6096856
- 291
- 3
- 9
0
votes
1 answer
Can I Run Windows Service with Quartz scheduler on 2 machines?
Is this available in the free version? or if in Enterprise version, any details/guide to install it?
How does Quartz pick up the jobs? Is it possible that both instances run the same job?
If a job is still executing, and the trigger happens, will…

Rajesh Mishra
- 436
- 5
- 15
0
votes
2 answers
How to use multi threading in Quartz.net
I am planning to use quartz.net for processing files.
I will receive 1 or more files every hour and each file will have 1000’s of rows for different countries.
I want to read those rows, validate, process and insert it into multiple tables.
I…

Swamy
- 463
- 2
- 9
- 20
0
votes
2 answers
Quartz.net scheduler
We have installed quartz.net scheduler service and configured a (memory)job to run daily @ 10 pm. In case the server hosting this service is restarted, is there a way to force the job to run as soon as the service comes up? In normal scenario job…

bdotnet
- 343
- 1
- 4
- 16
0
votes
1 answer
What's the generally accepted means of cancelling a Quartz.Net job chain?
I've got a series of Quartz.Net jobs chained together using Listeners:
Job A executes...
JobAListener.JobWasExecuted() method is called, then executes Job B
Job B executes...
JobBListener.JobWasExecuted() method is called, then executes Job…

Howiecamp
- 2,981
- 6
- 38
- 59
0
votes
2 answers
Start quartz.net jobs more frequently
We're using Quartz.net and need the jobs to fire more often.
Job is set to fire in 3 seconds but it usually takes 15-30 seconds before it's run.
I've also tried (without result)
< add key="quartz.jobStore.clusterCheckinInterval" value="1000"…

bg_user
- 41
- 5
0
votes
1 answer
Quartz.Net scheduler - can completed non-durable jobs be reported on?
I am trying to understand job durability in Quartz. According to the docs if you specify .StoreDurably() when creating a job, the job will persist (note I am using a database-backed store) even when there are no current triggers. Does this then…

Howiecamp
- 2,981
- 6
- 38
- 59