Am facing a challenge with creating a stable schedule, and I was hoping someone can help.
Currently using v4.2, but if the solution lies in v5.0 I'll be happy as we are soon upgrading...
Anyway - the problem:
I have a sequence of processes that I have to run, some singularly, some concurrently - as thus;
1) Process A runs (one machine)
2) Process B runs (multiple machines)
3) Process C, D and E run (concurrently, multiple machines)
4) Process F runs (multiple machines).
The problem I have is with the second and fourth steps of this process - I need the same process to run across multiple machines concurrently, but I need to stagger the start times - probably by 90-120 seconds. The reason for this is that multiple instances running at EXACTLY the same time is overloading the connected application and causing it to error - by staggering the start times slightly we avoid this.
Any ideas?