java - Quartz instance should only run specific jobs, not all -


i'm using quartz in clustered environment multiple jboss as. there several applications using quartz. currently, application store jobs in tables a_qurtz_ prefix, application b b_qurtz_ , on.

so quartz configuration identical except for

<prop key="org.quartz.jobstore.tableprefix">a_qrtz_</prop> <prop key="org.quartz.jobstore.tableprefix">b_qrtz_</prop> ... 

is possible use same tableprefix different applications , distinguish jobs group quartz schedulers application running jobs , none application b?

damn, you're right, leo. it's easier thought.

using different

<prop key="org.quartz.scheduler.instancename">application_a_scheduler</prop> 

settings working fine. jobs created application_a_scheduler automatically executed application_a_scheduler instances, not application_b_scheduler instances.


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -