Separate job queues

Separate job queues

Comments

  • When should we put schedule jobs or interval jobs in separate queues?

  • By default interval jobs and schedule jobs both get added to the Default Schedule Job" queue. We do have the option to put jobs in unique queues. Putting jobs in a separate queue would be recommended for the following reasons(Its mainly based on time sensitivity).

    [ul][li]If we see the default schedule job queue getting stacked up. Jobs can easily get stacked up since they are single threads.[/li][li]if a job has to occur on a specific recurring schedule then it should be moved into a separate queue. Ex, job running every few minutes vs running 1 time a day[/li][li]Jobs expected to run longer that may impact other jobs in the default queue.[/li][/ul]

Sign In or Register to comment.