Package com.taobao.zeus.jobs.sub.tool

Examples of com.taobao.zeus.jobs.sub.tool.CancelHadoopJob


    return exitCode;
  }
 
  public void cancel(){
    try {
      new CancelHadoopJob(jobContext).run();
    } catch (Exception e1) {
      log(e1);
    }
    //强制kill 进程
    if (process != null) {
View Full Code Here


          operator=history.getOperator();
          if(history.getStatus()==Status.RUNNING){
            try {
              JobContext temp=JobContext.getTempJobContext();
              temp.setJobHistory(history);
              new CancelHadoopJob(temp).run();
            } catch (Exception e) {
              //忽略
            }
          }
        }
View Full Code Here

TOP

Related Classes of com.taobao.zeus.jobs.sub.tool.CancelHadoopJob

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.