使用Activiti引擎的群集应用程序上的异步服务任务

时间:2015-07-27 07:37:39

标签: java activiti bpmn

我有2个应用程序在同一个数据库上运行。 他们两个都开始像这样的激活过程:

for (i = 0; i < msgNbr; i++) {
    Map<String, Object> dataMap = Data.prepareData(testOptions);
    runtimeService.startProcessInstanceByKey("asyncTransferProcess", dataMap);
}

正在启动的进程中的第一个服务任务是异步:

<serviceTask id="serviceTask1" name="ServiceTask1" activiti:exclusive="true"
    activiti:class="com.test.activiti.async.ServiceTask1"></serviceTask>

异步执行程序配置:

<property name="asyncExecutor" ref="asyncExecutor" />
<property name="asyncExecutorEnabled" value="true" />
<property name="asyncExecutorActivate" value="true" />

<bean id="asyncExecutor" class="org.activiti.engine.impl.asyncexecutor.DefaultAsyncJobExecutor">
    <property name="corePoolSize" value="20" />
    <property name="maxPoolSize" value="50" />
    <property name="keepAliveTime" value="3000" />
    <property name="queueSize" value="200" />
    <property name="maxTimerJobsPerAcquisition" value="2" />
    <property name="maxAsyncJobsDuePerAcquisition" value="2" />
    <property name="defaultAsyncJobAcquireWaitTimeInMillis" value="1000" />
    <property name="defaultTimerJobAcquireWaitTimeInMillis" value="1000" />
    <property name="timerLockTimeInMillis" value="60000" />
    <property name="asyncJobLockTimeInMillis" value="60000" />
</bean>

问题是当应用程序尝试运行进程时我得到ActivitiOptimisticLockingException和NullPointerException导致应用程序的bouth可能尝试运行相同的工作。如果不注意异常,应用程序工作正常,但我想知道是否有任何提示如何在同一个数据库上运行具有异步进程的多个应用程序,可能有一种方法可以让应用程序只运行自己的工作吗? / p>

1 个答案:

答案 0 :(得分:0)

您需要做的第一件事就是启用强大的UUID。通过将以下内容添加到Activiti配置类中来启用此功能:

StrongUuidGenerator idGenerator = new StrongUuidGenerator(); processEngineConfiguration.setIdGenerator(idGenerator);

为什么我相信这会有所帮助?因为您遇到的乐观锁可能是从数据库中检索下一个ID。 Strong UUID生成器不会触及数据库,因此更适合大规模应用程序。

希望这有帮助。