Hello All,
I have a scenario where I am calling the process from web API, to get this completed faster I have added few flows in parallel using AND gateway and these paths has to complete to return the response from web API hence I have applied activity chaining on both the flows.
With this implementation I have observed that, even we are having parallel flows using AND, because activity chaining, only one path is executing first and then other is starting which delaying time of execution.
Why chaining is over-passing AND functionality here? Any thoughts on this?
Please find below example process.
Thanks!
Priyanka
Discussion posts and replies are publicly visible
Logically, chaining can only really apply across one branch of an AND gateway.
Hi Mike,This just example process I shared, in my scenario I need to call multiple integration to form the final response of web API. Hence I tried to call those integration in parallel flows with chaining.
I'm unclear what parallel flows buys you here when both flows are unattended. You may as well put all the items in sequence (especially since when the two flows are running in parallel, even if chaining worked there'd be no way to assure what order the nodes execute in, meaning you should be able to make the two paths sequential anyway).