You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cadrage stratégique 2026 (mai 2026) — PIVOT PRODUIT
ML inference passage à l'échelle pour produit multi-tenant. Foundation
models = volumes GPU significatifs, doivent être servis efficacement.
Voir `.claude/memory/VISION_ALIGNMENT.md §0.6`.
Contexte
Aujourd'hui : 3 backends `MLWorkerProvider` (subprocess, in-process, Triton stub).
Inference largement "in-process" — modèle chargé dans le worker FastAPI.
Acceptable PoC. Pour un produit multi-tenant servant N modèles fine-tunés
(un par tenant, Wave 10), il faut un serveur d'inférence dédié.
Cible
Triton Inference Server activé en production (le stub Wave 4 sprint 11 devient implémentation complète)
GPU pool partagé : 1 cluster GPU sert tous les tenants, pas 1 GPU par tenant
Batch inference : N requêtes regroupées en 1 batch GPU pour throughput
Queue + back-pressure : si GPU saturé, queue avec back-pressure 429 / Retry-After
Model hot-swap : déploiement nouveau modèle sans downtime
Multi-tenant model registry : Triton sert `tenant_id/model_name/version`
Cadrage stratégique 2026 (mai 2026) — PIVOT PRODUIT
Contexte
Aujourd'hui : 3 backends `MLWorkerProvider` (subprocess, in-process, Triton stub).
Inference largement "in-process" — modèle chargé dans le worker FastAPI.
Acceptable PoC. Pour un produit multi-tenant servant N modèles fine-tunés
(un par tenant, Wave 10), il faut un serveur d'inférence dédié.
Cible
Approche technique proposée
Acceptance criteria
Dépendances
Références