Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to ensure that when a trigger fire time arrived it has always a thread to run on.triggers has priority but this not guarantee ,and i giving more thread then max number of job is not an option.I have lots of job but one of them must run at specified time.

share|improve this question

1 Answer

up vote 0 down vote accepted

Use a separate scheduler for the job. So the important job will always have a free thread, because nobody else would use it.

share|improve this answer
is it possible apply different configuration to scheduler instances – ayengin Aug 19 '11 at 8:38
Sorry, what do you mean? Which configuration? What could be impossible? – kan Aug 19 '11 at 9:17
quartz.properties file which is used for configuring quartz .Like org.quartz.threadPool.threadCount = 6 ,Are you using quartz with spring ? – ayengin Aug 19 '11 at 9:30
Yes, I use the Spring. If you don't, as I see then you could use StdSchedulerFactory with an alternative properties file. – kan Aug 19 '11 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.