Reputation: 497
I am using Quartz & Spring Batch framework and scheduled almost 84 jobs. I have noticed recently that some of the jobs are not executing at all when above 80 jobs are scheduled to run.
If I schedule around 30 jobs then each jobs are executing on time and found no issue.
Not sure how to track down the root cause but i believe it could be the issue of unavailability of thread to each jobs. Any idea to sort out this issue ?
Upvotes: 0
Views: 525
Reputation: 2301
You can specify the number of threads:
org.quartz.threadPool.threadCount = 100
Look this post for default thread number: What is the quartz default thread count
Upvotes: 1