Hi All, is it possible for different camunda clusters to share the job executor? Or each node will always have its own Job executor?
Thanks:
Satish T
Hi All, is it possible for different camunda clusters to share the job executor? Or each node will always have its own Job executor?
Thanks:
Satish T
@satish8784, Camunda will not share the job executors between nodes in the clustered environments.
Each node will have its own job executor. But you can turn off the job executor in specific node on need basis by disabling the below property.
<property name="jobExecutorActivate" value="false" />
Jobs are persisted to the database, in the ACT_RU_JOB
table.
Read more about running job-executor in cluster-setup environments.
Read this blog also: scaling-camunda-bpm-in-cluster-job
Perfect! Thanks for the detailed explanation @aravindhrs.