Package azkaban.jobs

Examples of azkaban.jobs.JobExecution


                    end = new DateTime(props.getLong("end"));
                    succeeded = props.getBoolean("succeeded");
                }
                String logFile = jobName + File.separator + execDir.getName() + File.separator
                                 + jobName + "." + execDir.getName() + ".log";
                execs.add(new JobExecution(jobName,
                                           start == null ? dirDate : start,
                                           end,
                                           succeeded,
                                           false,
                                           logFile));
View Full Code Here


     * @param jobId
     * @return
     */
    public JobExecution loadMostRecentJobExecution(String jobId) {

        JobExecution ret = null;
        try {
            List<JobExecution> list = this.loadJobExecutions(jobId);

            if(list == null)
                logger.warn("Job execution list for " + jobId + " is null");
View Full Code Here

TOP

Related Classes of azkaban.jobs.JobExecution

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.