@Override
public void add(StepExecution stepExecution) {
try {
AddWithStepExecutionReq request = JobRepositoryRpcFactory.buildAddWithStepExecutionReq(stepExecution);
AddWithStepExecutionRes response = (AddWithStepExecutionRes) getAppmasterScOperations().doMindRequest(request);
stepExecution.setId(response.getId());
stepExecution.setVersion(response.getVersion());
} catch (Exception e) {
throw convertException(e);