protected void setJobProgress(JobMetadata.Id jobId, float progress) {
MetaGraphTx tx = metaGraphService.newTransaction();
try {
JobMetadata jobMetadata = tx.getJob(jobId);
jobMetadata.setProgress(progress);
tx.commit();
} catch (TitanException e) {
logger.debug("exception", e);
throw e;
}
}