@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);
}