Design Instagram Stories

Last updated: May 3, 2026

Quick Overview

Design the architecture for Instagram Stories. Cover scalability, data storage, caching, and real-time requirements.

Meta
System Design
Software Engineer
Meta
May 3, 2026
Software Engineer
Technical Screen
System Design
Medium

11

8

4,731 solved


Design the architecture for Instagram Stories. Cover scalability, data storage, caching, and real-time requirements.

Meta asks this during the Technical Screen to assess your understanding of the full ML lifecycle. They want to see how you translate a business problem into an ML objective, design the feature pipeline, and plan for model monitoring and retraining.

What the Interviewer Expects
  • Define clear ML objectives with appropriate loss functions and metrics
  • Design a comprehensive feature engineering pipeline
  • Discuss model selection with trade-offs (complexity vs interpretability vs latency)
  • Plan online and offline evaluation strategies including A/B testing
  • Address serving infrastructure: batch vs real-time, latency requirements
  • Consider data quality, labeling strategy, and feedback loops
Key Topics to Cover
Training pipeline and infrastructure
A/B testing and experimentation
Model serving and latency optimization
Online vs offline evaluation
How to Approach This
  1. Start by clarifying functional and non-functional requirements with the interviewer.
  2. Estimate the scale: QPS, storage, bandwidth. This drives your design decisions.
  3. Draw a high-level architecture first, then deep dive into 1-2 critical components.
  4. Discuss trade-offs explicitly (e.g., consistency vs availability, SQL vs NoSQL).
  5. Address failure scenarios, monitoring, and how the system handles 10x traffic spikes.
Possible Follow-up Questions
  • How would you handle a 10x increase in prediction requests?
  • How would you ensure fairness and reduce bias in the model?
  • How would you run A/B tests on different model versions?
  • How would you handle the cold start problem?
Practice a Similar Problem on Codemia

Solve a related problem with our interactive workspace, get AI feedback, and view detailed solutions.

Solve on Codemia
Sample Answer
Requirements

Functional Requirements

  1. Story Creation: Users should be able to create, edit, and delete stories that last for 24 hours.
  2. Story Viewing: Users can view stories in a sequential manner ...
Capacity Estimation

Assuming Meta has 1 billion active Instagram users, and approximately 500 million users post stories daily:

  • Daily Story Views: If each story is viewed 10 times on average, that leads to 5 bill...

Submit Your Answer
Markdown supported

Related Questions