About

Learn Open Source Software from source codes, stack traces and a debugger. This blog is mostly focusing on software written in Java.

3 thoughts on “About

  1. Hi Toshiya – First off, great series on Quartz and jBPM. Secondly, is it possible to use the Quartz scheduler with two different jBPM runtime managers and a shared DB? We have two servers (A and B) running JBOSS using Quartz and instantiating their own named runtime managers (RTMA and RTMB). Currently, server B will receive scheduled events for processes created on Server A via RTMA leading to errors. Thanks in advance.

    • Hi Kevin,

      Basically Quartz database is designed to be shared with clustered jBPM instances so those RuntimeManagers should know the same deployment so that jobs can be load-balanced. If you use completely different RuntimeManagers, I recommend to use different database or schema. If you need to use the same database, you may differentiate the tables by org.quartz.jobStore.tablePrefix to avoid the conflict.

      Cheers,

Leave a comment