DEV Community

Cover image for Design Facebook News Feed | Instagram | Twitter | Facebook System Design (Pirate) Interview Series
The Interview Sage
The Interview Sage

Posted on • Updated on

Design Facebook News Feed | Instagram | Twitter | Facebook System Design (Pirate) Interview Series

Hi Everyone, I recently got the Design Facebook News Feed question in my Facebook onsite interview round.

Key Features

I was asked to design the following key features:

  1. Facebook users should be able to see the news feed containing posts and statuses, from their friends and pages that they have followed.
  2. Users can post and like statuses that may contain text, images, and videos.
  3. They can send friend requests to other users
  4. They can follow other pages.

Detailed Framework

I used the following framework to answer this question in the interview. It helped me to maintain focus and answer it better.

  1. Key Features
  2. Design Goals
    • Minimum Latency
    • High Availability
    • Partition Tolerance
    • Eventual Consistency (CAP Theorem)
    • Read vs. Write Heavy
  3. Scale Estimation
    • Daily Active Users (DAUs)
    • Read QPS
    • Write QPS
    • Data generated each day and over 10 years (Storage Utilization)
    • Approximate number of servers required
  4. High-Level Design
    • Feed Generation
    • Feed Publishing
      • Push vs. Pull
  5. Application Layer
    • Multiple Stateless Servers with Load Balancer
  6. Database Design
    • Schema design
    • SQL vs. No-SQL
    • Sharding
      • Hash-based sharding
      • Consistent Hashing
    • Replication (for Fault Tolerance)
    • Quorum
      • Read + Write Consistency
  7. Caching for Fast Retrieval
    • Eviction Policy - LRU
  8. Detailed Architecture Diagram

Optional

If time permits, you can also discuss the following towards the end of the interview:

  1. Push Notifications
  2. Security, for example, ACL (Access Control List)

Preparation Material for this question

⬇ High-Level Design + Detailed Architecture Diagram + Framework to answer this question in the interview

Learn more about the design goals, scale estimations, high-level design overview, and detailed architecture diagram of these problems inΒ this video.


Cracking the Facebook Behavioral Interview

If you have not read our first article on Top Facebook Behavioral Interview Questions, we recommend reading it by clicking the below link:


Cracking the Facebook System Design Interview

In case if you have not read our series on Cracking the Facebook System Design Interview, we recommend reading it by clicking the below link:


Useful Links

βœ… Educative.io Unlimited Plan [πŸ’° 10% off for first 100 users]
βœ… TryExponent.com Membership [πŸ’° Limited Time 10% offer]

πŸ‘©β€πŸ’» Best System Design Interview Course
πŸš€ Complete SWE Interview Course [πŸ’° Limited Time 10% offer]
πŸ™‹β€β™€οΈ Behavioral Interview Guide [πŸ’° Special Discount]
πŸ“š Recommended Interview Preparation Book (on Amazon)


Buy Me a Coffee

β˜•οΈ Buy us a Coffee at BuyMeACoffee.com/InterviewSage

This article is part of the series on System Design Interviews at Facebook. So, follow us to get notified when our next article in this series is published. Thanks for reading!

theinterviewsage image

Full Disclosure & Disclaimer

Top comments (0)