From db91eee239670011aa67f47a77f261e9d67e7773 Mon Sep 17 00:00:00 2001 From: bjkim Date: Thu, 21 May 2026 16:57:50 +0900 Subject: [PATCH] =?UTF-8?q?[ADD]=20MLflow=20=EC=84=A4=EC=A0=95=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=20=EB=B0=8F=20KubeflowRunBatch=EC=97=90=EC=84=9C=20`r?= =?UTF-8?q?esponse.getRuns()`=20NPE=20=EB=B0=A9=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kr/re/etri/autoflow/batch/KubeflowRunBatchConfig.java | 2 +- src/main/resources/application-aws.properties | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/kr/re/etri/autoflow/batch/KubeflowRunBatchConfig.java b/src/main/java/kr/re/etri/autoflow/batch/KubeflowRunBatchConfig.java index d35c490..67e2407 100644 --- a/src/main/java/kr/re/etri/autoflow/batch/KubeflowRunBatchConfig.java +++ b/src/main/java/kr/re/etri/autoflow/batch/KubeflowRunBatchConfig.java @@ -101,7 +101,7 @@ public class KubeflowRunBatchConfig { .bodyToMono(KubeflowRunResponse.class) .block(); - if (response == null || response.getRuns().isEmpty()) { + if (response == null || response.getRuns() == null || response.getRuns().isEmpty()) { log.info("KubeflowRunBatch: 데이터 없음, 종료"); runs = Collections.emptyList(); return null; diff --git a/src/main/resources/application-aws.properties b/src/main/resources/application-aws.properties index 27ff1fe..bd72095 100644 --- a/src/main/resources/application-aws.properties +++ b/src/main/resources/application-aws.properties @@ -43,3 +43,8 @@ minio.endpoint=http://minio.minio.svc.cluster.local:9000 minio.access-key=HpaY4yx33VhsIE18nh1b minio.secret-key=SDuToOgDZdSKR032j895mHZyDOqQaB88Wpg9RjMk minio.bucket=mlpipeline + +# MLflow +mlflow.url=http://ml-flow-mlflow.etri-aisw.svc.cluster.local:80 +mlflow.user=mlflow +mlflow.password=mlflowpassword