Quartz.NETQuartz.NET
Home
Features
Blog
Discussions
NuGet
GitHub
Home
Features
Blog
Discussions
NuGet
GitHub
  • Getting Started

    • Overview
    • Quartz 4 Quick Start
    • Tutorial
      • Using Quartz
      • Jobs And Triggers
      • More About Jobs & JobDetails
      • Job Data
      • More About Triggers
      • Querying Jobs and Triggers
      • Simple Triggers
      • Cron Triggers
      • RecurrenceTrigger
      • Time and TimeProvider
      • Trigger and Job Listeners
      • Scheduler Listeners
      • Job Execution Middleware
      • Job Stores
      • Configuration, Resource Usage and Building a Scheduler
      • Building a Scheduler Without a Host
      • Clustering
      • Execution Groups
      • Node Affinity (Preferred Node)
      • Testing
      • Compile-Time Checks
      • Declaring Jobs with Attributes
    • Configuration Reference
    • JSON Configuration
    • Cron Expression Reference
    • Multi-Tenancy
    • Comparison
    • Frequently Asked Questions
    • Best Practices
    • Before You Go Live
    • Operating a Cluster
    • Log Events
    • Tenancy Patterns
    • Database Schema
    • Database Schema Changes
    • Migration Guide
    • Troubleshooting
    • API Documentation
  • How To's
    • One-Off Job
    • Rescheduling Jobs
    • Retrying Failed Jobs
    • Job Continuations
    • Multiple Triggers
    • Job Template
    • Running Quartz under Aspire
    • Quartz.NET with Wolverine
    • Coming from Hangfire
    • Coming from TickerQ
    • Embedding Quartz in a Library
    • Running under an External Leader Election
    • Publishing Trimmed and Native AOT
    • Extending Quartz: what is open, what is closed, and how to ask
    • A Job Store of Your Own
    • A Driver Delegate for a New Database
    • Persisting a Custom Trigger Type
    • A Lock Handler of Your Own
  • Packages

    • Quartz Core Additions

      • Jobs
      • Serialization (System.Text.Json)
      • JSON Serialization
      • Plugins
    • Integrations

      • Aspire Integration
      • ASP.NET Core Integration
      • HTTP API
      • HTTP Client
      • Dashboard
      • Hosted Services Integration
      • Microsoft DI Integration
      • Multiple Schedulers with Microsoft DI
      • Observability
      • Redis Lock Handler
      • TimeZoneConverter Integration
    • 3rd Party Plugins for Quartz
  • Quartz 3.x

    • Getting Started

      • Quartz 3 Quick Start
      • Tutorial
        • Using Quartz
        • Library Overview
        • Jobs And Triggers
        • More About Jobs
        • More About Triggers
        • Execution Groups
        • Node Affinity (Preferred Node)
        • Simple Triggers
        • Cron Triggers
        • RecurrenceTrigger
        • Trigger and Job Listeners
        • Scheduler Listeners
        • Job Stores
        • Tuning the Scheduler
        • Configuration, Resource Usage and SchedulerFactory
        • Advanced (Enterprise) Features
      • Configuration Reference
      • JSON Configuration
      • Multi-Tenancy
      • Frequently Asked Questions
      • Best Practices
      • Tenancy Patterns
      • Troubleshooting
      • API Documentation
      • Database Schema
      • Database Schema Changes
      • Migration Guide
      • Miscellaneous Features
    • How To's

      • One-Off Job
      • Multiple Triggers
      • Job Template
      • Using the CronTrigger
      • Rescheduling Jobs
    • Packages

      • Quartz Core Additions

        • Dashboard
        • Jobs
        • Serialization (System.Text.Json)
        • Serialization (Newtonsoft Json.NET)
        • Plugins
      • Integrations

        • ASP.NET Core Integration
        • Hosted Services Integration
        • Microsoft DI Integration
        • Multiple Schedulers with Microsoft DI
        • OpenTelemetry Integration
        • OpenTracing Integration
        • Redis Lock Handler
        • TimeZoneConverter Integration
      • 3rd Party Plugins for Quartz
  • Old Releases

    • Quartz 2.x
      • Quartz 2 Quick Start
      • Tutorial
        • Lesson 1: Using Quartz
        • Lesson 2: Jobs And Triggers
        • Lesson 3: More About Jobs & JobDetails
        • Lesson 4: More About Triggers
        • Lesson 5: SimpleTrigger
        • Lesson 6: CronTrigger
        • Lesson 7: TriggerListeners and JobListeners
        • Lesson 8: SchedulerListeners
        • Lesson 9: JobStores
        • Lesson 10: Configuration, Resource Usage and SchedulerFactory
        • Lesson 11: Advanced (Enterprise) Features
        • Lesson 12: Miscellaneous Features of Quartz
        • CronTrigger Tutorial
      • Configuration Reference
      • Migration Guide
      • API Documentation
    • Quartz 1.x
      • Tutorial
        • Lesson 1: Using Quartz
        • Lesson 2: Jobs And Triggers
        • Lesson 3: More About Jobs & JobDetails
        • Lesson 4: More About Triggers
        • Lesson 5: SimpleTrigger
        • Lesson 6: CronTrigger
        • Lesson 7: TriggerListeners and JobListeners
        • Lesson 8: SchedulerListeners
        • Lesson 9: JobStores
        • Lesson 10: Configuration, Resource Usage and SchedulerFactory
        • Lesson 11: Advanced (Enterprise) Features
        • Lesson 12: Miscellaneous Features of Quartz
      • API Documentation
  • License

JSON Configuration

appsettings.json can hold both scheduler settings, as nested JSON instead of flat property keys, and job and trigger definitions.

Tips

JSON configuration is in the core Quartz package. The Configuration Reference lists every option.

Hierarchical Properties

Instead of flat keys like "quartz.threadPool.maxConcurrency": "10", nest the settings:

{
  "Quartz": {
    "Scheduler": {
      "InstanceName": "My Scheduler",
      "InstanceId": "AUTO"
    },
    "ThreadPool": {
      "MaxConcurrency": 10
    },
    "JobStore": {
      "Type": "Quartz.Impl.AdoJobStore.LocalTransactionJobStore, Quartz",
      "DataSource": "default",
      "TablePrefix": "QRTZ_"
    },
    "DataSource": {
      "default": {
        "Provider": "SqlServer",
        "ConnectionString": "Server=localhost;Database=quartznet"
      }
    },
    "Plugin": {
      "jobHistory": {
        "Type": "Quartz.Plugins.History.LoggingJobHistoryPlugin, Quartz.Plugins"
      }
    },
    "Serializer": {
      "Type": "stj"
    }
  }
}

Mapping Rules

Each JSON path segment becomes a dot-separated segment of the flat key, with PascalCase converted to camelCase:

JSON PathFlat Property Key
Scheduler:InstanceNamequartz.scheduler.instanceName
ThreadPool:MaxConcurrencyquartz.threadPool.maxConcurrency
DataSource:default:Providerquartz.dataSource.default.provider
Plugin:jobHistory:Typequartz.plugin.jobHistory.type

Usage with DI

services.AddQuartz(Configuration.GetSection("Quartz"), q =>
{
    // Additional code-based configuration still works alongside JSON
    q.AddJob<MyJob>(j => j.WithIdentity("codeJob").StoreDurably());
});

Usage without DI

QuartzSchedulerBuilder reads the same section: hand it the IConfiguration, and it binds the typed options and translates the flat keys, as AddQuartz does.

ISchedulerFactory factory = QuartzSchedulerBuilder.Create()
    .UseConfiguration(Configuration.GetSection("Quartz"))
    .Build();

A NameValueCollection you built yourself (from a properties file, from environment variables) goes in through UseProperties(properties).

Backward Compatibility

Flat property keys still work, and both styles can be mixed in one section:

{
  "Quartz": {
    "quartz.scheduler.instanceId": "AUTO",
    "ThreadPool": {
      "MaxConcurrency": 10
    }
  }
}

JSON Scheduling Data

Jobs and triggers can be declared in appsettings.json under a Schedule sub-section:

{
  "Quartz": {
    "Scheduler": {
      "InstanceName": "My Scheduler"
    },
    "Schedule": {
      "Jobs": [
        {
          "Name": "sampleJob",
          "Group": "sampleGroup",
          "JobType": "MyApp.Jobs.SampleJob, MyApp",
          "Description": "A sample job",
          "Durable": true,
          "Recover": false,
          "JobDataMap": {
            "connectionString": "Server=localhost",
            "retryCount": "3"
          }
        }
      ],
      "Triggers": [
        {
          "Name": "cronTrigger",
          "JobName": "sampleJob",
          "JobGroup": "sampleGroup",
          "Description": "Fires every 10 seconds",
          "Cron": {
            "Expression": "0/10 * * * * ?",
            "TimeZone": "UTC"
          }
        }
      ]
    }
  }
}

Trigger Types

Each trigger has exactly one schedule object — Simple, Cron, CalendarInterval, DailyTimeInterval or Recurrence — and that object decides the trigger type.

Simple Trigger

{
  "Name": "simpleTrigger",
  "JobName": "myJob",
  "Simple": {
    "RepeatCount": -1,
    "Interval": "00:00:10",
    "MisfireInstruction": "SmartPolicy"
  }
}
  • RepeatCount: how many times to repeat; -1 for indefinite, 0 to fire once.
  • Interval: a TimeSpan string, e.g. "00:00:10" for 10 seconds, "01:00:00" for 1 hour.

Cron Trigger

{
  "Name": "cronTrigger",
  "JobName": "myJob",
  "Cron": {
    "Expression": "0/30 * * * * ?",
    "TimeZone": "America/New_York",
    "MisfireInstruction": "DoNothing"
  }
}

Calendar Interval Trigger

{
  "Name": "calendarTrigger",
  "JobName": "myJob",
  "CalendarInterval": {
    "RepeatInterval": 1,
    "RepeatIntervalUnit": "Day",
    "MisfireInstruction": "SmartPolicy"
  }
}

RepeatIntervalUnit values: Second, Minute, Hour, Day, Week, Month, Year.

Daily Time Interval Trigger

{
  "Name": "businessHoursTrigger",
  "JobName": "myJob",
  "DailyTimeInterval": {
    "RepeatInterval": 15,
    "RepeatIntervalUnit": "Minute",
    "RepeatCount": -1,
    "StartTimeOfDay": "08:00:00",
    "EndTimeOfDay": "17:00:00",
    "DaysOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
    "TimeZone": "America/Chicago"
  }
}

Recurrence Trigger

{
  "Name": "recurrenceTrigger",
  "JobName": "myJob",
  "StartTime": "2026-01-05T09:00:00Z",
  "Recurrence": {
    "Rule": "FREQ=WEEKLY;INTERVAL=2;BYDAY=MO",
    "TimeZone": "America/New_York",
    "MisfireInstruction": "DoNothing"
  }
}
  • Rule: the RFC 5545 recurrence rule, required. See Recurrence Triggers.
  • TimeZone: the zone the rule's days and times are read in. Defaults to the machine's local zone, so name it if the schedule must mean the same thing wherever it runs.
  • MisfireInstruction: SmartPolicy (the default), FireOnceNow, DoNothing or IgnoreMisfirePolicy.

The trigger's StartTime anchors the rule, as DTSTART does in iCalendar: FREQ=WEEKLY;INTERVAL=2 is every second week counted from the start time. Without a StartTime, the anchor is the moment the scheduler read the declaration. A rule that does not parse is refused, naming the rule, when the file is read.

Tips

This trigger kind is JSON only. The XML format is frozen at its three trigger kinds and will not gain a <recurrence> element; declare a recurrence rule in JSON or in code.

Common Trigger Fields

FieldDescription
NameTrigger name (required)
GroupTrigger group (defaults to DEFAULT)
JobNameAssociated job name (required)
JobGroupAssociated job group (defaults to DEFAULT)
DescriptionTrigger description
PriorityTrigger priority (integer)
CalendarNameCalendar to apply
ExecutionGroupThe trigger's execution group
RetryPolicyThe trigger's retry policy in stored form, e.g. fixed;3;00:00:30
PreferredNodeThe cluster node the trigger prefers: a scheduler instance id, or "*" for whichever node fires it first. Omitted: unpinned
ContinuesAfterThe trigger this one waits for, as a Name/Group pair — a continuation. Omitted: fires on its own schedule
ContinuationConditionWhich outcomes release the wait: OnSuccess, OnFailure, OnCancellation, OnVeto or OnAnyOutcome, joined with |. Omitted: OnSuccess
StartTimeISO 8601 start time (e.g., "2024-01-01T00:00:00Z")
StartTimeSecondsInFutureStart time as seconds from now (mutually exclusive with StartTime)
EndTimeISO 8601 end time
JobDataMapKey-value pairs for the trigger's data map

PreferredNode describes the deployment, not the schedule: every machine that reads the file pins the trigger to the node it names.

{
  "Name": "nightlyReport",
  "JobName": "reportJob",
  "PreferredNode": "production-node-1",
  "Cron": { "Expression": "0 0 2 * * ?" }
}

Warning

The value must match a scheduler instance id exactly. Pins are compared in SQL with the database's collation, so a value differing only in case is a different node on a case-sensitive database. A pin to a node that is not checking in is ignored: any node fires the trigger until the named node is live again. "*" names no node: the first node to fire the trigger claims it, and the pin is released if that node stops checking in.

In the XML format the field is <preferred-node>.

Waiting for another trigger

ContinuesAfter names a trigger by Name and optional Group (default DEFAULT), as a delete command does. The trigger declared with it is stored waiting, not scheduled:

{
  "Name": "reconcile",
  "Group": "nightly",
  "JobName": "reconcileJob",
  "ContinuesAfter": { "Name": "import", "Group": "nightly" },
  "ContinuationCondition": "OnFailure|OnCancellation",
  "Cron": { "Expression": "0 0 2 * * ?" }
}
  • The parent is looked up when the file is scheduled, not read. It may be declared later in the same file (the file's triggers are stored parent first) or already be in the store.
  • A parent in neither is refused when the file is scheduled, with ObjectDoesNotExistException.
  • An unknown outcome, or a ContinuationCondition without ContinuesAfter, is refused when the file is read, naming the trigger.

In the XML format the pair is <continues-after> and <continuation-condition>.

Multiple Named Schedulers

Each child of a Schedulers sub-section is registered as a named scheduler:

{
  "Quartz": {
    "Schedulers": {
      "Primary": {
        "Scheduler": {
          "InstanceId": "AUTO"
        },
        "ThreadPool": {
          "MaxConcurrency": 10
        },
        "Schedule": {
          "Jobs": [
            {
              "Name": "primaryJob",
              "JobType": "MyApp.Jobs.PrimaryJob, MyApp",
              "Durable": true
            }
          ],
          "Triggers": [
            {
              "Name": "primaryTrigger",
              "JobName": "primaryJob",
              "Cron": { "Expression": "0/10 * * * * ?" }
            }
          ]
        }
      },
      "Secondary": {
        "ThreadPool": {
          "MaxConcurrency": 5
        }
      }
    }
  }
}
// Registers "Primary" and "Secondary" named schedulers automatically
services.AddQuartz(Configuration.GetSection("Quartz"));
services.AddQuartzHostedService();

Each named section supports the same properties, a Schedule sub-section with Jobs/Triggers, and code-based overrides.

To register one named scheduler explicitly, pass either its own section or the root Quartz section; given the root, the overload finds Schedulers:{name} itself:

// Both lines are equivalent
services.AddQuartz("Primary", Configuration.GetSection("Quartz"));
services.AddQuartz("Primary", Configuration.GetSection("Quartz:Schedulers:Primary"));

Warning

A Schedulers sub-section cannot be combined with top-level scheduler configuration (Scheduler, ThreadPool, …) or with a top-level Schedule/Scheduling section. Move those under the matching Schedulers:{name} entry.

Standalone JSON Files (quartz_jobs.json)

For file-based scheduling with hot reload, use JsonSchedulingDataProcessorPlugin from the Quartz.Plugins package — see Quartz Plugins.

A standalone file uses the same Jobs and Triggers format as the Schedule section, in an envelope with optional PreProcessingCommands and ProcessingDirectives:

{
  "PreProcessingCommands": {
    "DeleteJobsInGroup": ["obsoleteGroup"],
    "DeleteTriggersInGroup": ["oldTriggerGroup"],
    "DeleteJobs": [
      { "Name": "oldJob", "Group": "DEFAULT" }
    ],
    "DeleteTriggers": [
      { "Name": "oldTrigger" }
    ]
  },
  "ProcessingDirectives": {
    "OverwriteExistingData": true,
    "IgnoreDuplicates": false,
    "ScheduleTriggerRelativeToReplacedTrigger": false
  },
  "Schedule": {
    "Jobs": [
      {
        "Name": "myJob",
        "JobType": "MyApp.Jobs.MyJob, MyApp",
        "Durable": true
      }
    ],
    "Triggers": [
      {
        "Name": "myTrigger",
        "JobName": "myJob",
        "Cron": {
          "Expression": "0/30 * * * * ?"
        }
      }
    ]
  }
}

PreProcessingCommands

Run before scheduling. All fields are optional:

FieldDescription
DeleteJobsInGroupArray of group names. "*" deletes jobs in all groups.
DeleteTriggersInGroupArray of group names. "*" deletes triggers in all groups.
DeleteJobsArray of { "Name": "...", "Group": "..." } objects. Group is optional.
DeleteTriggersArray of { "Name": "...", "Group": "..." } objects. Group is optional.

ProcessingDirectives

FieldDefaultDescription
OverwriteExistingDatatrueReplace existing jobs/triggers with the same identity. The default applies only when the file does not carry IgnoreDuplicates.
IgnoreDuplicatesfalseSkip duplicates instead of failing. A file with this and no OverwriteExistingData gets overwriting turned off.
ScheduleTriggerRelativeToReplacedTriggerfalseTime a replacing trigger from the old trigger's last fire time.

Declaring one key twice in a file is an error

The directives describe how the file relates to the scheduler, not to itself. None of them suppresses the error for a job or trigger key (name and group) declared twice in one file:

Trigger 'DEFAULT.myTrigger' is defined more than once in the scheduling data.

The same holds for the XML format's <overwrite-existing-data> and <ignore-duplicates>. Before Quartz.NET 4, the last definition won, logged only at Debug.

When a file is wrong

Two settings on FileSchedulingOptions decide what a bad file does. Everything below applies to the XML format too.

SettingDefaultEffect
FailOnFileNotFoundtrueA named file that does not exist stops the scheduler being built, with a SchedulerException naming it. false logs it and skips it, for an optional overlay file.
FailOnSchedulingErrorfalseA file that exists but is wrong is logged and reported; true rethrows so the deployment stops.

The missing-file error:

File named 'quartz_jobs.json' does not exist.

A file that is there and is wrong — malformed JSON, a trigger with two schedule blocks, a JobType that will not load, a key declared twice. The plugin logs it, wraps it in a SchedulerException naming the file, and passes it to every registered ISchedulerListener through SchedulerError. Unless FailOnSchedulingError is true, the scheduler starts without that file's schedule.

Which exception you get:

  • Quartz.SchedulingDataValidationException, a SchedulerException, carries every violation found: ValidationExceptions is the list, and Message has one message per line. A document is checked against the schema, and for duplicate keys, before any of it is applied, so three mistakes report three.
  • Anything else — a JobType that will not load, a non-durable job with no trigger — is an ordinary SchedulerException raised where it happens, naming the one thing that failed.

A file is not a transaction against the store: PreProcessingCommands have run by the time a job is stored, and several jobs are applied one at a time.

Help us by improving this page!
Last Updated: 9/24/26, 8:07 PM
Contributors: Marko Lahma, Claude Opus 5.5 (1M context)
Prev
Configuration Reference
Next
Cron Expression Reference