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

Feast

Feast is the feature store for MATIH, providing consistent feature serving for both training and inference with offline (batch) and online (real-time) stores.


Architecture

+------------------+     +------------------+
| Feast Registry   |     | Online Store     |
| (PostgreSQL)     |     | (Redis)          |
+------------------+     +------------------+
       |
       v
+------------------+
| Offline Store    |
| (Iceberg / S3)   |
+------------------+

Components

ComponentBackendPurpose
RegistryPostgreSQLFeature definition metadata
Online StoreRedisLow-latency feature serving
Offline StoreIceberg tables via TrinoHistorical feature retrieval

Connection

feast:
  registry: "postgresql://feast@postgresql:5432/feast_registry"
  onlineStore:
    type: redis
    host: "redis-master.matih-data-plane.svc.cluster.local"
    port: 6379
  offlineStore:
    type: iceberg
    catalog: "polaris"