SIENTIAPDE-1174

SIENTIAPDE-1174 Update replica count and enhance logging in MLFlow

- Changed replicaCount in values.yaml from 3 to 1 for reduced resource usage.
- Added debug logging for prediction response data in MLFlow to improve traceability.
This commit is contained in:
vitor-aignosi
2025-08-01 10:32:06 -03:00
parent 4f6f4d1fa9
commit 963f089c7b
3 changed files with 3 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ class MLFlowRepository():
try:
start_time = datetime.now()
data = self.model_serving.get_cached_predict(
model_name, data, model_retention)[0:1]
model_name, data, model_retention)
end_time = datetime.now()
data = pd.DataFrame(data, columns=['prediction'])