[ OK ] 444 — full content available
[ INFO ] category: System Design difficulty: hard freq: high first seen: 2026-01-13
[HARD][SYSTEM DESIGN][HIGH]data_engineeringReal-time InferencewebFeature Storemachine_learningmobileML Infrastructurebackendinfrastructure
$ cat problem.md
Design an ML infrastructure system to predict the likelihood of a user commenting on a post.
Background:
Build the infrastructure to serve a model that predicts whether a user will comment on a given post. The model itself is a black box.
Key Components:
- Feature Store - Store and serve features for real-time inference
- Inference Service - Serve predictions in real-time
- Model Registry - Manage model versions
- Monitoring - Track model performance
Discussion Points:
- Feature engineering pipeline (offline vs online features)
- Real-time vs batch feature computation
- Low-latency inference requirements (<100ms)
- A/B testing infrastructure
- Model retraining pipeline
- Caching strategies for features
- Reliability and fault tolerance