Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Schedule Win32 Perl Scripts with AT

by YordanGeorgiev (Acolyte)
on Jan 07, 2007 at 19:52 UTC ( [id://593429]=note: print w/replies, xml ) Need Help??


in reply to Schedule Win32 Perl Scripts with AT

I had to develop a comparably complicated perl based scheduler running on Windows used for running QA GUI scripts. Some points :

1. Use perl2exe in order to generate the executables - not need to deploy Perl to all workstations (if you have them more ; )

2. Do not put all the eggs into one basket - one executable starting the daily cycle and rebooting according to the times in the settings file

3. Produce different executables for the Daily Cycle, Hourly cycle .. etc.

4. Timing related code into a Timer.pm - array of hashes to store the dynamicly generated times according to the cycle length

5. Process handling and killing - in separate modules

6. Do not use fork , use CAREFULLY perl threads combined with

use Win32::Process ; Win32::Process::Create( $proc_o, "$proc_path", "" , 0, CREATE_NO_WINDOW ,$dir_where_to_run);

7. Use a simple xml file in order to keep track of the whole system

8. Many other small tricks - send me e-mail First.Last@gmail.com if need more information

9. The whole think has worked already 4 months 24/7 without any serious failures ...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://593429]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-19 20:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found