Flowable 6.6.0 History Job not working

Hi everyone, I just updated from 6.5.0 to 6.6.0, however, async history jobs is not working, I tried to debug but still don’t know what happened. Everything with with 6.5.0 is work fine.

I saw the history data job is storaged at act_ru_history_job tables

Below is my configuration:

Spring boot: 2.2.4.RELEASE
Flowable: 6.6.0

config.setAsyncExecutorActivate(true);
config.setAsyncHistoryEnabled(true);
config.setAsyncHistoryExecutorActivate(true);
config.setAsyncExecutorNumberOfRetries(10);

config.setLoggingListener(new FlowableLoggingListener());
config.setEnableDatabaseEventLogging(true);

Someone please help me

I have solved it by disable cmmn engine.

flowable.cmmn.enable= false

That’s very weird, as the configuration is shared between the bpmn and cmmn engine. Can you share your full configuration so we can verify?

Hi, FYI

Java: 1.8
SpringBoot: 2.3.4
Flowable:
org.flowable
flowable-spring-boot-starter
6.6.0

application.yaml

image