'Scheduling of a RPA process
How can we set scheduling of a RPA process. Though I know we can set windows Task scheduler to schedule a RPA process but is there any way instead of setting scheduling it in Task Scheduler. Is there any workflow or can we design some custom protocol in which scheduling is set on deployment server and RPA process runs on specific local system. I know UiPath, Automagica etc are doing this but don't know how they are doing this. Can we use socket for this. Can we use some RMM (Remote monitoring and management) software like Atera for this.
Solution 1:[1]
After doing more R&D, I come to a resolution that Client-Server architecture using sockets is best suited approach for above mentioned requirement. For python we can use python-socketio library which is python implementation of actual javascript library.
Solution 2:[2]
in #UiPath only way is orchestrator. In case of RDA you can get notification from robot tray at the time you want to run. in earlier version RDA process can schedule with window scheduler but in 2019 they stop it.
Solution 3:[3]
You can schedule your process by the below way:
- Through the scheduler in the Orchestrator
- Through the queue: if any transaction gets added to the queue, then the respective process will get triggered called as Queue Based Trigger
- With the help of windows scheduler also we can schedule a process.
Cheers!!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Thakur Sahil Sambyal |
| Solution 2 | vishva |
| Solution 3 | Kalpesh Chaudhari |
