트랜젝션처리 임시폴더 uid업데이트

This commit is contained in:
2026-02-13 12:52:11 +09:00
parent 124da48e51
commit 47f4ffd4db

View File

@@ -60,9 +60,9 @@ public class TrainJobWorker {
totalEpoch = Integer.parseInt(params.get("totalEpoch").toString());
}
}
log.info("[JOB] markRunning start jobId={}, containerName={}", jobId, containerName);
modelTrainJobCoreService.markRunning(jobId, containerName, null, "TRAIN_WORKER", totalEpoch);
log.info("[JOB] markRunning done jobId={}", jobId);
try {
TrainRunResult result;
@@ -109,6 +109,7 @@ public class TrainJobWorker {
}
} else {
String failMsg = result.getStatus() + "\n" + result.getLogs();
modelTrainJobCoreService.markFailed(
jobId, result.getExitCode(), result.getStatus() + "\n" + result.getLogs());