vote up 1 vote down star
1

It appears that our implementation of using Quartz - JDBCJobStore along with Spring, Hibernate and Websphere is throwing unmanaged threads.

I have done some reading and found a tech article from IBM stating that the usage of Quartz with Spring will cause that. They make the suggestion of using CommnonJ to address this issue.

I have done some further research and the only examples I have seen so far all deal with the plan old JobStore that is not in a database.

So, I was wondering if anyone has an example of the solution for this issue.

Thanks

flag

71% accept rate
What do you mean by "throwing unmanaged threads"? – Alex Miller Oct 6 '08 at 20:51
It was reported to me by our WAS team, that when our application is running there are threads that are spawned, in a unmanged state - that is not attached to anything, GC can not get to them. Based on reading from the IBM website, this can happen when using Quartz. – boyd4715 Oct 9 '08 at 20:02

4 Answers

vote up 2 vote down check

We have a working solution for this (two actually).

1) Alter the quartz source code to use a WorkManager daemon thread for the main scheduler thread. It works, but requires changing quarts. We didn't use this though since we didn't want maintain a hacked version of quartz. (That reminds me, I was going to submit this to the project but completely forgot)

2) Create a WorkManagerThreadPool to be used as the quartz threadpool. Implement the interface for the quartz ThreadPool, so that each task that is triggered within quartz is wrapped in a commonj Work object that will then be scheduled in the WorkManager. The key is that the WorkManager in the WorkManagerThreadPool has to be initialized before the scheduler is started, from a JEE thread (such as servlet initialization). The WorkManagerThreadPool must then create a daemon thread which will handle all the scheduled tasks by creating and scheduling the new Work objects. This way, the scheduler (on its own thread) is passing the tasks to a managed thread (the Work daemon).

Not simple, and unfortunately I do not have code readily available to include.

link|flag
How about a 1 up for the answer 8-( – Robin Oct 20 '08 at 18:48
vote up 0 vote down

Check this article: http://www.ibm.com/developerworks/websphere/techjournal/0609_alcott/0609_alcott.html

basically, set the taskExecutor property on SchedulerFactoryBean to use a org.springframework.scheduling.commonj.WorkManager TaskExecutor which will use container managed threads.

link|flag
vote up 0 vote down

@Robin - I realize this post is old but do you have an example of how you were able to either change Quartz to use a WorkManager daemon thread, or creating a WorkManagerThreadPool that can be used as the Quartz threadpool? I would like to use Quartz with Websphere but realize the limitations of unmanaged threads, and want to do it the "right way".

Thanks.

link|flag
vote up 0 vote down

Hi,

You can check the below JIRA link raised on quartz regarding this.

http://jira.opensymphony.com/browse/QUARTZ-708

This has the required WebSphereThreadPool implementation which can be used with the changes in quartz.properties as mentioned to meet your requirements. Hope this helps.

Regards, Siva

link|flag

Your Answer

Get an OpenID
or

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