You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Starting Point

  • Users would like to check in individual job scripts or monitor scripts
    • if a job has been executed in the current period, e.g. for the current day
    • what execution result (success/failure) was created on completion of the job
  • The intention for checking the job execution history is to automate decision making based on the point in time or execution result of a previous job start.

Feature

  • This feature 
    • is available with
      JITL-217 - Getting issue details... STATUS
    • is a subset of
      JITL-212 - Getting issue details... STATUS
  • A Java object is provided for job history checks that can be used
    • in individual jobs that are implemented with Java or JavaScript.
    • in individual job monitors that are implemented with Java or JavaScript.
  • The job history returns a set of objects and properties:
    • Objects
      • Object running: the current job run
      • Object lastCompleted: the last job run being completed
      • Object lastCompletedSuccessful: the last, successfully completed execution of the job
      • Object lastCompletedWithError: the last, unsuccessfully completed execution of the job
    • Properties per object:
      • Property name: Job Name
      • Property id: Task ID
      • Property position: position of the object in the job execution history. A value 0 signals the most recent entry, larger values suggest older entries.
      • Property found: true if the associated object is not null
      • Property start; the start date of the job run
      • Property end; the end date of the job run
      • Property executionResult: the exit code or -1
      • Property error: 1 if the exit code is > 0
      • Property errorMessage: the error message
      • Property errorCode; can include an error code
  • When querying the job history the following arguments are specified for an instance of the JobHistory class.
    • The job name (a relative name or absolute path)
    • The limit for the number of entries from the job history
    • The limit for specific point in time up to that the job history is considered
  • The job history provides the following methods:

 

MethodDescription
JobHistoryInfoEntry getLastExecution()get the history object for the most recently started job run including running jobs and jobs that completed successfully or with error
JobHistoryInfoEntry getLastCompletedExecution()get the history object for the most recently started job run for jobs that completed successfully or with error
boolean isStartedToday()indicates that the job run started within the current period and applies to running jobs and completed job runs
boolean isStartedTodayCompleted()indicates that the job run started and completed within the current period and applies to job runs that completed successfully or with errror
boolean isStartedTodayCompletedSuccessful()indicates that the job run started and completed successfully within the current period
boolean isStartedTodayCompletedWithError()indicates that the job run started and completed with error within the current period
boolean isCompletedToday()indicates that the job run completed in the current period and applies to job runs that completed successfully or with error
boolean isCompletedTodaySuccessful()

indicates that the job run completed successfully within the current period

boolean isCompletedTodayWithError()indicates that the job run completed with error within the current period
boolean endedAfter( "03:00:00" )indicates that the job run completed after the given date
boolean endedWithSuccessfulAfter( "03:00:00" )indicates that the job run completed successfully after the given date
boolean endedWithErrorAfter( "03:00:00" )indicates that the job run completed with error after the given date
boolean startedAfter( "03:00:00" )

indicates that the job run started after the given date, the job might be completed or running

boolean startedWithSuccessfulAfter( "03:00:00" )indictes that the job run started after the given date and does not report any errors, the job might be completed or running
boolean startedWithErrorAfter( "03:00:00" )indicates that the job run started after the given date and does report errors, the job might be completed or running

Usage

Use with a Job Script

A complete sample files demonstrates the use of 


function spooler_process()  {

    // using the current job name and default limit
    var jobHistoryInfo = getJobHistoryInfoObject();

    // using the current job name and the given limit        
    // var jobHistoryInfo = getJobHistoryInfoObject( "", 30 );

    // using the given job name and default limit
    // var jobHistoryInfo = getJobHistoryInfoObject( "job1" );

    // using the given job name and the given limit
    // var jobHistoryInfo = getJobHistoryInfoObject( "job1", 20 );

    // reporting some info on job runs
    report( jobHistoryInfo.getLastCompleted() );
    report( jobHistoryInfo.getRunning() );
    report( jobHistoryInfo.getLastCompletedSuccessful() );
    report( jobHistoryInfo.getLastCompletedWithError() );

    // report on currently running job
    report( jobHistoryInfo.getLastExecution() );
 
    spooler_log.info("isStartedToday: " + jobHistoryInfo.isStartedToday());
    spooler_log.info("isStartedTodayCompletedSuccessful: " + jobHistoryInfo.isStartedTodayCompletedSuccessful());
    spooler_log.info("isStartedTodayCompletedWithError: " + jobHistoryInfo.isStartedTodayCompletedWithError());
    spooler_log.info("isStartedTodayCompleted: " + jobHistoryInfo.isStartedTodayCompleted());
    spooler_log.info("isCompletedToday: " + jobHistoryInfo.isCompletedToday());
    spooler_log.info("isCompletedTodaySuccessful: " + jobHistoryInfo.isCompletedTodaySuccessful());
    spooler_log.info("isCompletedTodayWithError: " + jobHistoryInfo.isCompletedTodayWithError());

    spooler_log.info("endedAfter: " + jobHistoryInfo.endedAfter("03:00:00"));
    spooler_log.info("endedWithErrorAfter: " + jobHistoryInfo.endedWithErrorAfter("03:00:00"));
    spooler_log.info("endedSuccessfulAfter: " + jobHistoryInfo.endedSuccessfulAfter("03:00:00"));

    spooler_log.info("startedAfter: " + jobHistoryInfo.startedAfter("03:00:00"));
    spooler_log.info("startedWithErrorAfter: " + jobHistoryInfo.startedWithErrorAfter("03:00:00"));
    spooler_log.info("startedSuccessfulAfter: " + jobHistoryInfo.startedSuccessfulAfter("03:00:00"));

    // example how to convert Date fields (start date)
    if ( jobHistoryInfo.getLastCompletedSuccessful().found ) {
        var d = jobHistoryInfo.getLastCompletedSuccessful().start;
        if (d != null) {
            var d2 = new Date(d.getTime());
            spooler_log.info ("------->" + d2.getFullYear() );
        }
    }

    spooler_log.info ( "check if the job started on the previous day before a specific point in time" );
    var jobHistoryInfo = getJobHistoryInfoObject( "", "", "-1:10:43:56" );
    spooler_log.info ( "endedBefore -1:10:43:56: " + jobHistoryInfo.getLastCompleted().found );
    spooler_log.info( "endedBeforeWithError -1:10:43:56: " + jobHistoryInfo.getLastComletedWithError().found );
    spooler_log.info( "endedBeforeSuccessful -1:10:43:56: " + jobHistoryInfo.getLastCompletedSuccessful().found );
     
    return false;
}

function getJobHistoryInfoObject(jobname, limit, timelimit) {
    var jobHistory = new Packages.com.sos.jitl.checkrunhistory.JobHistory( spooler.delegate );

    if ((jobname === undefined) || (jobname === "")) {
      jobname = spooler_task.job.name;
    }
    if (limit === undefined || limit === "") {
       limit = "100";
    }
    if (timelimit === undefined) {
       timelimit = "";
    }

    var jobHistoryInfo = jobHistory.getJobInfo( jobname, limit, timelimit );
    return jobHistoryInfo;
}

function report( reportItem ) {
    spooler_log.info( "_____________________________" );
    if (reportItem.found) {
        spooler_log.info( "Name:" + reportItem.name );
        spooler_log.info( "Task ID: " + reportItem.id );
        spooler_log.info( "Job Name: " + reportItem.jobName );
        spooler_log.info( "Position: " + reportItem.position );
        spooler_log.info( "Start Time: " + reportItem.start );
        spooler_log.info( "End Time: " + reportItem.end );
        spooler_log.info( "Exit Code: " + reportItem.executionResult );
        spooler_log.info( "Error Message: " + reportItem.errorMessage );
        spooler_log.info( "Error: " + reportItem.error );
        spooler_log.info( "ErrorCode: " + reportItem.errorCode );
    } else {
        spooler_log.info( "Name: " + reportItem.name + " not found" );
    }
}

Use with a Monitor Script

To identify if a running job is a rerun of a previously failed job execution you can use the following script for a pre-processing monitor. The script will expose the information if a rerun has been identified with the environment variable SCHEDULER_PARAM_IS_RERUN


function spooler_task_before() {
    var jobHistory = new Packages.com.sos.jitl.checkrunhistory.JobHistory( spooler.delegate );
    var jobHistoryInfo = jobHistory.getJobInfo( spooler_task.job.name, 100, "" );
    var isRerun = (jobHistoryInfo.getLastCompletedWithError().found && jobHistoryInfo.getLastCompletedWithError().position == 0);

    var params = spooler_task.params;
    params.set_var("IS_RERUN", isRerun );
    spooler_log.info("Job rerun identified: " + isRerun);

    return true;
}

Explanations

  • The script retrieves the last job execution that completed with error and checks if the position of the object provided is the first in the recent history list. The first position of a job that recently completed with error is
    • 0 if the script is executed as a pre-processing monitor script before a task start.
    • 1 if the script is executed as a job script for a running task. That task would be added to the begin of the recent history list.
  • In order to check if a job did run before a given point in time you can query a job history object that takes a time limit into consideration as from the following samples:
    • jobHistoryInfo = jobHistory.getJobInfo( "job1", 100, "-1:10:43:56" );
      
      spooler_log.info( "endedBefore -1:10:43:16:" + jobHistoryInfo.getLastCompleted().found );
      spooler_log.info( "endedBeforeWithError -1:10:43:16:" + jobHistoryInfo.getLastComletedWithError().found );
      spooler_log.info( "endedBeforeSuccessful -1:10:43:16:" + jobHistoryInfo.getLastCompletedSuccessful().found );
    • jobHistory.setTimeLimit( "-1:10:43:56" );
      jobHistoryInfo = jobHistory.getJobInfo( "job1", 100, "" );
      
      spooler_log.info( "endedBefore -1:10:43:16:" + jobHistoryInfo.getLastCompleted().found );
      spooler_log.info( "endedBeforeWithError -1:10:43:16:" + jobHistoryInfo.getLastComletedWithError().found );
      spooler_log.info( "endedBeforeSuccessful -1:10:43:16:" + jobHistoryInfo.getLastCompletedSuccessful().found );

Implementation

  • The implementation makes use of API methods, i.e. XML commands, to retrieve the job history instead of a database connection.
  • The solution can be used with Agents.
  • No separate HTTP connection is created, the solution makes use of the HTTP(S) connection that is established between Master and Agent.
  • No labels