is Mutiple UiPath studio workflow runs in same maechine at a time ,without any crash for running multiple portal…
Hi @nihethan_e
Yes, multiple UiPath workflows can run on the same machine simultaneously but
1 Only background processes can run in parallel
2 Foreground (UI-based) processes cannot run at the same time
3 Requires sufficient system resources (RAM/CPU)
4 With Orchestrator, parallel runs need multiple robot licenses
If Solution helps you please mark as Solution & Happy Automation with UiPath.
Regards,
Nishi
Yes, multiple UiPath workflows can run on the same machine, but it may cause slow performance or errors if resources or apps overlap.
@nihethan_e Please follow below documents. Please let me know if it helps or not
Run Parallel Process
UiPath.Core.Activities.BeginProcess
Executes a UiPath process that is available for the local machine. Can be used to run local packages, as well as processes in Orchestrator, if a connection is available.
The Run Parallel Process activity runs in Asynchronous mode, meaning that the parent process is only responsible for starting the child ones. After that happens, both processes run independently from each other.
Logs generated for the execution of the parent and child processes are written individually in the local log files and Orchestrator. They both contain complete information about each execution.
When using the Run Parallel Process activity, a separate job is created for each process, as opposed to the Invoke Process activity which creates only one job.
If a child process is invoked but not found, an error is logged containing the name of the child process, the path where Robot searched for it and additional details such as WindowsIdentity and machineName. When this happens, an exception is thrown and additional details are being logged.
If an error occurs in the child process after it has been invoked, the parent is not aware of it and continues its normal execution.