| View previous topic :: View next topic |
| Author |
Message |
wl
Joined: 07 Jun 2007 Posts: 6
|
Posted: Tue Sep 23, 2008 7:37 am Post subject: concurrent running of large number of FTP tasks |
|
|
I have a large number [about 50 or more] of FTP scheduled tasks that run every 30mins. Each task checks for a file in the FTP folder.
They appear to run concurrently at exactly the specified time and do not close the FTP session for each task.
I'd like them all to run single-threaded, top to bottom in the list.
How can Synchronization fix it ?
How exactly is Synchronization run ?
I have set up an "All_Tasks" Synchronization, but I don't see anything that will "run" it on that window. |
|
| Back to top |
|
 |
Robert Site Admin
Joined: 25 May 2006 Posts: 1140
|
Posted: Tue Sep 23, 2008 10:22 am Post subject: |
|
|
If you want to run ~50 Ftp tasks to a single server or multiple servers in sequence, the best thing may be to put about ~10 of these Ftp tasks in a Visual Script or Chain tasks. This way each Ftp task will run in sequence. Make sure you put every Ftp task that connects to the same server in the same Chain.
You would need to schedule only the Visual Script or chain tasks.
The synchronize feature prevents overlapping instances of the same task title. |
|
| Back to top |
|
 |
|