independent operation of processes without waiting for each other

I had this question when working with Camunda

How to reconfigure the process here so that when reassigning a task, they are executed in parallel, independently of each other

For example:

let’s say 1 person reassigned to 2 and 3

after 2 people reassign to 4 and 5

the problem here is that the tasks will not get to 4-5 until 3 is finished

and I need them all to run in parallel without waiting for each other

parallel works like this (2nd picture), if there is such a gateway, it waits for all services to complete

Thanks in advance


2024-11-07 16.46.41

as the treatement in the process is fully independent between each person you can make a separate process instance for each person and you can use the processInstanceId to get or set execution variables so you can make a single A task in your process.

1 Like

thank you for attention

1 Like

Does this approach help you, or do you have a different scenario in mind?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.