Package org.apache.hadoop.mapreduce.JobStatus

Examples of org.apache.hadoop.mapreduce.JobStatus.State


  @Override
  public void abortVertex(VertexStatus.State finalState) throws IOException {
    if (!initialized) {
      throw new RuntimeException("Committer not initialized");
    }
    State jobState = getJobStateFromVertexStatusState(finalState);
    committer.abortJob(jobContext, jobState);
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.mapreduce.JobStatus.State

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.