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
4
votes
2 answers
Scheduler doesn't execute job, doesn't appear to even register it
I've created the following:
A windows service
A quartz scheduler class
A single IJob implementation called Worker, which contains a set of tasks that I intend to execute via the Quartz scheduler.
The windows service overrides OnStart to call the…

SpaceBison
- 3,704
- 1
- 30
- 44
3
votes
1 answer
Running a async method as a Quartz.NET job and disposed object issue
I'm using Quartz.NET in this context (needs to mention that GrabberContext is a DbContext extended class):
// configuring Autofac:
var builder = new ContainerBuilder();
// configuring GrabberContext
builder.RegisterType()
…

amiry jd
- 27,021
- 30
- 116
- 215
3
votes
2 answers
how to send an array as parameter to quartz scheduled job in C#?
i use quartz.net in asp.net mvc for executes some scheduled jobs every 1 minute,
normally you can send some parameters to your job in this code i send two string parameter as key/value to my job
IJobDetail SendMatchQuestionJob =…

Edalat Feizi
- 1,371
- 20
- 32
3
votes
1 answer
Quartz.Net scheduler - What specifically indicates successful job completion?
Is the sole factor in Quartz determining if a job is successful is if the job's Execute() method completes without having thrown a JobExecutionException?
This is the assumption I've been working under; so if I wire up a listener to my job and the…

Howiecamp
- 2,981
- 6
- 38
- 59
3
votes
1 answer
Quartz.NET One-Shot Job
I have created an ASP.NET MVC UI to create fire and forget jobs for the Quartz.NET scheduler running as a window service (RAMJobStore) but I am just wondering whether I need to clean up the executed jobs. Can anyone shed some lights? The following…

Thurein
- 2,536
- 7
- 34
- 49
3
votes
1 answer
Quartz.Net file store
Quartz.Net provides RAMJobStore and AdoJobStore to store the internal state in volatile memory and a database respectively.
It also effectively allows persisting some state in a file by watching an XML file.
But there is no FileJobStore, which would…

Alapago
- 368
- 2
- 11
3
votes
2 answers
How to check for existing Quartz.net schedulers?
Recently upgraded my embedded Quartz.net scheduler to 2.x at which point I had to give up on giving my Zero Thread Schedulers unique names and now I have a problem that (very rarely) an object trying to create an instance of ZT scheduler throws an…

Dean Kuga
- 11,878
- 8
- 54
- 108
3
votes
1 answer
Strange error in Quartz: Quartz.XmlSerializers not found
I am getting the following error in Quartz.net
The assembly with display name 'Quartz.XmlSerializers' failed to load
in the 'LoadFrom' binding context of the AppDomain with ID 1. The
cause of the failure was: System.IO.FileNotFoundException:…

Thinking Sites
- 3,494
- 17
- 30
3
votes
1 answer
How to configure Quartz.net to use an Azure SQL database to store ADOJobStore details
I am using quartz.net as a scheduler in a Microsoft Azure Web Role. I can get Quartz.net to work just fine if I use the RamDataStore. However, I want to break this into two components: the first will allow scheduling of jobs through a web…

yamspog
- 18,173
- 17
- 63
- 95
3
votes
1 answer
Quartz.Net in ASP.Net Application
Just downloaded Quartz.Net, read the documentation which is out of date and have ended up with the code below which I believe is correct. (Let me know if it isn't)
I put this in my Application_Start of my ASP.Net application and the code gets…

Jon
- 38,814
- 81
- 233
- 382
2
votes
1 answer
Quartz.Net: Prevent different job types from running concurrently
Our system uses Quartz.Net for scheduling and has multiple types of jobs (say: job type A, job type B, job type C). We want to avoid that certain types of jobs run concurrently:
scenario 1: jobs of type A cannot run concurrently with other jobs of…

dennis_vok
- 171
- 7
2
votes
1 answer
Cannot open TCP channel on 127.0.0.1 port 555 (SocketException: No Such Host Is Known)
I have been running a Quartz scheduler Windows service for about 2 years on 127.0.0.1 port 555. Starting a couple of days ago, I can no longer start my service. When I look in the code, I see that I cannot start a TcpChannel object.
IChannel…

disasterkid
- 6,948
- 25
- 94
- 179
2
votes
3 answers
Quartz.NET - Scheduled tasks ceases running randomly
We run Quartz.NET for a variety of jobs on different schedules ranging from every 30 seconds to once a week.
On reviewing our internal logging, we find that some jobs have ceased running for no discernible reason, even while others continued. As an…

Brendan Hill
- 3,406
- 4
- 32
- 61
2
votes
2 answers
Quartz.NET - Run every hour except for 3am on Monday Mornings
What is the best way to tackle setting up a job to run every hour of every day except for Monday morning at 3am? My ideal goal is to have an alternate job run in that position.
I have my two classes setup to be the Jobs - UpdateJob and…

BuddyJoe
- 69,735
- 114
- 291
- 466
2
votes
1 answer
Quartz.net Late Execution with DisallowConcurrentExecution
I am using the latest nuget Quartz.net packages (v2.1.2.400).
This is my job...
[DisallowConcurrentExecution]
[PersistJobDataAfterExecution]
public class HelloJob : IJob
{
public void Execute(IJobExecutionContext context)
{
…

Sam Sippe
- 3,160
- 3
- 27
- 40