MATIH Platform is in active MVP development. Documentation reflects current implementation status.
17. Kubernetes & Helm
ML Infrastructure
MLflow

MLflow

MLflow provides experiment tracking, model versioning, and artifact management for ML workloads.


Architecture

+------------------+     +------------------+
| MLflow Tracking  |     | PostgreSQL       |
| Server           |---->| (Backend Store)  |
| Port: 5000       |     +------------------+
+------------------+
       |
       v
+------------------+
| MinIO / S3       |
| (Artifact Store) |
+------------------+

Configuration

# From ml-service values
config:
  mlflow:
    trackingUrl: "http://mlflow:5000"

MLflow stores experiment metadata in PostgreSQL and model artifacts in S3/MinIO.


Key Features

FeatureDescription
Experiment TrackingLog parameters, metrics, and artifacts per run
Model RegistryVersion, stage, and promote models
Artifact StoreS3-compatible storage for model files
REST APIProgrammatic access from ML Service