Cluster for Jmix and BPM Flowable

Hi Team,
We are interesting how to scale jmix application with Flowable bpm on-premise. We have some question:

  1. How to deploy cluster jmix application with BPM add-on on-premise environment?
    For example, in cluster we have 3 nodes: BpmApp1 , BpmApp2, BpmApp3. We plan to run processes, where automation tasks are executed in Spring Beans.
    We have concern about tasks executed simultaneously on 3 nodes in the same time? (Expect: we need the tasks executed only one time on any one node).
  2. And please share with us Jmix cluster config on-premise environment?

Thank you very much!

Hi,

  1. Flowable services are stateless. The state is stored in the database, so multiple flowable instances can be started in a clustered environment with no problem.
  2. Here is an example of deployment to Kubernetes cluster: Kubernetes Cluster :: Jmix Documentation

That all we need. Thank you very much!