My timer jobs are not executing after due dates are passed
my Flowable engine is unable to execute jobs even after due dates are passed
please can anyone help on it
That typically means:
- the async executor is not running
- or all threads are blocked by a very long-running job
Have you any insights in the async executor? Do async jobs get picked up? Did you configure it specifically in some way?
we configured Async executor
flowable:
async-executor:
thread:
queue-capacity: 256
core-pool-size: 32
max-pool-size: 32
async-history:
thread-pool:
core-pool-size: 32
max-pool-size: 32
queue-capacity: 256
async:
max-pool-size: 32
core-pool-size: 32
queue-capacity: 256
but there is no change