Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi,
Unlike Unica, ACC workflow activities are processed in sequence, top-to-bottom in the fork's list.
You can use advanced js activity or xtk.workflow.PostEvent() to invoke activities in parallel, though you won't be able to join them back together with ootb activities.
What's the use case for parallelism, out of curiosity?
Thanks,
-Jon
Hi,
Unlike Unica, ACC workflow activities are processed in sequence, top-to-bottom in the fork's list.
You can use advanced js activity or xtk.workflow.PostEvent() to invoke activities in parallel, though you won't be able to join them back together with ootb activities.
What's the use case for parallelism, out of curiosity?
Thanks,
-Jon
I would've thought ACC would also provide that parallel execution just like Unica (it's quite common/expected tbh). There could be multiple use cases, for eg: Fork spawning 3 branches in the order below
a) labelled Heavy (takes roughly 30 mins to complete) and then finally outputs an email delivery and ends.
b) labelled Moderate (takes roughly 15 mins to complete) and then finally outputs another mail delivery (to a different set of customers) and ends.
c) labelled Light (takes 2 mins to complete) and then finally outputs to another email delivery (to a different set of customers) and ends.
If having this executed in sequence, although (c) can complete within seconds, it has to wait until (b) is completed, which in turn has to wait for 30 mins for (a) to complete. Furthermore, if (a) fails for any reason, chances are the entire workflow could go into the Paused state leaving (b) & (c) incomplete/hanging for not so good reasons.
-wALF
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies