171172173174175176177178179180181
} else if (jobType.equals("mapreduce")) { submit = new SubmitMRCommand(conf, getAuthToken()); } jobId = submit.call(); } start(jobId); return jobId; } catch (CommandException ex) {
124125126127128129130131132133134
else if (jobType.equals("mapreduce")) { submit = new SubmitMRCommand(conf, getAuthToken()); } try { String jobId = submit.call(); start(jobId); return jobId; } catch (CommandException ex) { throw new DagEngineException(ex);
174175176177178179180181182183184