Autosys
Autosys
The following article provides a brief information about the commands essential for job scheduling.
Introduction to Autosys: AutoSys is an automated job control system for scheduling, monitoring,
and reporting. These jobs can reside on any AutoSys-configured machine that is attached to a
network.
An AutoSys job is any single command, executable, script, or Windows batch file. Each AutoSys
job definition contains a variety of qualifying attributes, including the conditions specifying when
and where a job should be run.
Defining Jobs :
There are the two methods you can use to create job definitions:
¦ Using the AutoSys Graphical User Interface (GUI).
¦ Using the AutoSys Job Information Language (JIL) through a command-line interface.
Autosys Jobs:
INACTIVE : The job has not yet been processed. Either the job has never been run, or its status
was intentionally altered to “turn off” its previous completion status
ACTIVATED :The top-level box that this job is in is now in the RUNNING state, but the job itself
has not started yet.
STARTING : The event processor has initiated the start job procedure with the Remote Agent.
RUNNING : The job is running. If the job is a box job, this value simply means that the jobs within
the box may be started (other conditions permitting). If it is a command or file watcher job, the
value means that the process is actually running on the remote machine.
SUCCESS : The job exited with an exit code equal to or less than the “maximum exit code for
success.” By default, only the exit code “0” is interpreted as “success.” If the job is a box job, this
value means that all the jobs within the box have finished with the status SUCCESS (the default),
or the “Exit Condition for Box Success” evaluated to true
FAILURE : The job exited with an exit code greater than the “maximum exit code for success.” By
default, any number greater than zero is interpreted as “failure.” AutoSys issues an alarm if a job
fails
TERMINATED : The job terminated while in the RUNNING state. A job can be terminated if a user
sends a KILLJOB event or if it was defined to terminate if the box it is in failed. If the job itself
fails, it has a FAILURE status, not a TERMINATED status. A job may also be terminated if it has
exceeded the maximum run time (term_run_time attribute, if one was specified for the job), or if
it was killed from the command line through a UNIX kill command. AutoSys issues an alarm if a
job is terminated.
RESTART : The job was unable to start due to hardware or application problems, and has been
scheduled to restart.
QUE_WAIT : The job can logically run (that is, all the starting conditions have been met), but there
are not enough machine resources available.
ON_HOLD : This job is on hold and will not be run until it receives the JOB_OFF_HOLD event.
ON_ICE : This job is removed from all conditions and logic, but is still defined to AutoSys.
Operationally, this condition is like deactivating the job. It will remain on ice until it receives the
JOB_OFF_ICE event.
The difference between "on hold" and "on ice" is that when an "on hold" job is taken off hold, if its
starting conditions are already satisfied, it will be scheduled to run, and it will run. On the other
hand, if an "on ice" job is taken "off ice," it will not start, even if its starting conditions are already
satisfied. This job will not run until its starting conditions reoccur.
The other major distinction is that jobs downstream from the job that is "on ice" will run as though
the job succeeded. Whereas, all dependent jobs do not run when a job is on "on hold"—nothing
downstream from this job will run.
Starting Parameters :
AutoSys determines whether to start or not to start a job based on the evaluation of the starting
conditions (or starting parameters) defined for the job. These conditions can be one or more of the
following:
¦ Date and time scheduling parameters are met (it is or has passed the specified date and time).
¦ Starting Conditions specified in the job definition evaluate to true.
¦ For jobs in a box, the box must be in the RUNNING state.
¦ The current status of the job is not ON_HOLD or ON_ICE.
Every time an event changes any of the above conditions, AutoSys finds all the jobs that may be
affected by this change, and determines whether or not to start them.
sample jil code / Writing jil code:
Runs the Job Information Language (JIL) processor to add, update, and delete AutoSys jobs,
machines, monitors, and reports. Also used to insert one-time job override definitions.
-------------------------------------------------------------------------------------------------
command: /local/SAP/processCheckUAT.sh
machine: MU03-UAT
owner: admin@MU03-UAT
permission: gx,wx,mx,me
days_of_week: all
alarm_if_fail: 1
max_exit_success: 1
-------------------------------------------------------------------------------------------------
The above example is a simple jil code of autosys which we have to write if we want any particular
job to be thru autosys.
bash-3.00$ jil<>
This section lists which AutoSys commands to use for specific tasks. All commands are for both
Windows and UNIX, unless otherwise specified.
Function
Reports information about a job, jobs within boxes, machines, and machine status. Also reports
information about job overrides and global variables.
Syntax
autorep {-J job_name -M machine_name -G global_name} [-s -d -q -o over_num] [-r run_num]
This will display a list of jobs with complete details with box/jobname, last/latest run date & time,
status, exit code, etc.
Viewing JIL code for any Autosys job
To obtain the underlying JIL (Job Interaction Language) source code for any Autosys job, run
command:
autorep -J (job name here) -r (No of runs back) example : autorep -J (job name here) -r 1
would generate a report for the job run one runs back
-------------------------------------------------------------------------------------------------
Status Abbreviations
The following table lists the abbreviations used in the ST (status) column of the autorep report,
and gives the status for each abbreviation.
AC - ACTIVATED
FA - FAILURE
IN - INACTIVE
OH - ON_HOLD
OI - ON_ICE
QU - QUE_WAIT
RE - RESTART
RU - RUNNING
ST - STARTING
SU - SUCCESS
TE - TERMINATED
-------------------------------------------------------------------------------------------------
sendevent:
sendevents to AutoSys for a variety of purposes, including starting or stopping AutoSys jobs,
stopping the Event processor, and putting a job on hold. This command is also used to set AutoSys
global variables or cancel a scheduled event.
-J job_name : Specifies the name of the job to which the specified event should be sent. This
option is required for all events except STOP_DEMON, COMMENT, ALARM, or SET_GLOBAL
-E event :Specifies the event to be sent. This option is required. Any one of the following events
may be specified:
STARTJOB
KILLJOB
DELETEJOB
FORCE_STARTJOB
JOB_ON_ICE
JOB_OFF_ICE
JOB_ON_HOLD
JOB_OFF_HOLD
CHANGE_STATUS
STOP_DEMON
CHANGE_PRIORITY
COMMENT
ALARM
SET_GLOBAL
SEND_SIGNAL
Following are the example of sendevent command frequently used.
____________________________________________________________________
______________________________________________________________
autostatus: Reports the current status of a specific job, or the value of an AutoSys global variable.
Ex: autostatus -J job_name, -S instance
how to do application monitoring through AutoSys?
JobScape
Unicenter Enterprise Job Manager - Web Console
Unicenter Workload Control Center - Web Console
JAWS
iXP
Autosys Web Interface
Or
#1:if your jobs are running on the Unix platform then use
the Autosys comands available for monitoring.
Example commands:
autorep -j <Job Name> --Will give you the current status of
the job.