Questions tagged [quartz.net]

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 predetermined (scheduled) time arrives. NOTE: this tag is for questions about the .NET version; for Java questions please use [quartz-scheduler] instead.

Quartz.NET is an open-source job scheduling service for .NET.

Quartz.Net can be used to create schedules for jobs at any scale with support for things like transactions and clustering. Quartz.NET is a port of the Java library, Quartz.

1484 questions
0
votes
0 answers

Best Data Caching Strategy for Asp.Net Mvc and SqlServer

Users can do CRUD operations for web application mostly. But the situation is different for my specific web application. Users never do CUD. They can only Retrieve data. So the picture: 1- There is a service updating database frequently (7-8 updates…
Oguz Karadenizli
  • 3,449
  • 6
  • 38
  • 73
0
votes
1 answer

Quartz.net for multiple databases

I am using quartz.net for job scheduling. I have a table in my database JobQueue. Quartz.net reads from this JobQueue and executes the jobs. Everything works fine. Now there is a new requirement that i need to extend the job scheduling for more…
Vinoth
  • 2,419
  • 2
  • 19
  • 34
0
votes
1 answer

Quartz.net CRON expression always returns last day of month?

I'm a quartz newbie. I'm simply attempting to find out if Quartz.net can, given a start date (possibly in the past), an end date and an interval calculate the correct date occurances - it might not be Quartz's primary use case but it appears…
6footunder
  • 1,318
  • 18
  • 29
0
votes
1 answer

Does quartz.net support time windows?

I have a Quartz.net service that is supposed to run every day, every 10 minutes, between 6AM and 9AM only. I cannot find anything in Quartz that specifically supports time windows, but I may be misreading it, or it could be badly documented. Is…
Thinking Sites
  • 3,494
  • 17
  • 30
0
votes
1 answer

Stop Quartez.net Scheduler

I have a web application and i want to implement scheduler I am using Quartez.Net library I added the following code to the application in Global.asax protected void Application_Start() { AreaRegistration.RegisterAllAreas(); …
Mohamed Salah
  • 959
  • 10
  • 40
0
votes
1 answer

Quartz.net Job unhandled exception behaviour

I am implementing quartz.net scheduler to my project, and have some questions about the workings of this library: What happens if one job raises an exception without a catch block (unhandled exception)? Would this cause the process to terminate and…
Johnny_D
  • 4,592
  • 3
  • 33
  • 63
0
votes
3 answers

Quartz.Net JobExecutionContext missing referance?

I started to implamenet first sample on quartz.net 2.0.1 but it gives an error. I created an asp.net web aplication called QuartzSample my simple code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using…
Mennan
  • 4,451
  • 13
  • 54
  • 86
0
votes
2 answers

DbContext ASP.Net and Quartz.net

I just created a cron job like job using Quartz.net. For the test, it execute a simple request to the database. It simply adds a field. I have a dbcontext: private TotoContext db = new TotoContext(); In my job I have: var totos = from u in…
MaT
  • 1,556
  • 3
  • 28
  • 64
0
votes
1 answer

Quartz.NET after web hosting

I have an ASP.NET application and a job scheduled using Quartz.NET that runs once every day. The job execution is nothing but a method call (Execute method to be specific) in one of the classes that implements IJob interface. If I host this web…
Shyam
  • 139
  • 1
  • 7
0
votes
1 answer

Quartz.net cron trigger fires only once

Started using Quartz.net in my project. But got stuck. Using cron trigger fires only once, and stops. What may cause this problem? Here are masks for cron trigger: 0 0/7 * * * ? 0 0/10 * * * ? And they look good for me, also no exception raised in…
Johnny_D
  • 4,592
  • 3
  • 33
  • 63
0
votes
1 answer

how to make quartz.net load a different sql driver version

the nuget package of quartz.net is compiled to specifically load sqlite v1.74 the nuget package for sqlite is version 1.80 I know I could recompile the quartz library but I would rather not (and I cant find sqlite 1.74) so I was wondering if there…
pm100
  • 48,078
  • 23
  • 82
  • 145
0
votes
2 answers

Datetime and offsets in .net

How can I schedule a background job to start every day at 9pm in Colombian time? Im using quartz.net public class Program { static void Main(string[] args) { // construct a scheduler var schedulerFactory…
nacho10f
  • 5,816
  • 6
  • 42
  • 73
0
votes
1 answer

Quartz.net + Execute on Australian local time

I am new to Quartz.NET and I am having a hard time creating an event that will fire daily when its 11AM local time in Australia. I know I have to use the ScheduleJob method but how do I go about adding the time for Australia? I am not very good with…
TheWebGuy
  • 11,429
  • 16
  • 52
  • 72
0
votes
2 answers

How to update existing job firing time?

I have created a list of job which is executing as per there schedule time but what i need to do if job schedule time is changed so how the scheduled job's firing time will get changed? Thanks in advance.
user1301587
  • 455
  • 4
  • 11
  • 23
0
votes
4 answers

CronExpression for every day between 9 AM-10 AM

How can I schedule Task for every day between 8-11 AM for every 5 mins ? What would be config entry for this ?
Ocean
  • 293
  • 3
  • 14