Hello, I am using step replicator to run a sub-process to provision to different target applications in a custom workflow. From log, it shows the provision to the target applications is in sequence. Is there a way to provision to the various target applications in parallel in the workflow?
Thank you!
You could have the parent workflow launch multiple instances of a child workflow, queueing them up in the Request Processor so that each runs in their own thread. The child workflow would essentially just receive the provisioning plan for a specific target application and just execute the provisioning portion (no policy checking, no approvals, etc., as these steps have already been done in the parent workflow). I guess the downside is it will b complicated to merge the results from each child workflow back into the parent.