System Design Interview Template | Crack the System Design Interview

A system design interview usually lasts for 45-60 minutes. It involves solving an abstract design problem. The problem would be something like ‘Design WhatsApp’. You would not be provided with any other requirements at this stage.

Note: Consider that the interviewer is a Engineering Manager. They want to understand how you’ll be creating the system. They will help you with the requirements. Do not assume any requirement.

Step 1: Gather Requirements [10-15 mins]

The first step of a system design interview is to gather the exact requirements for the given problem statement. When you are asked to design WhatsApp, your design is not expected to consider all the functionalities that WhatsApp provides.

Let’s say you don’t know what WhatsApp is, you should start by mentioning that you don’t know about it. The interviewer would, let’s say, respond with “it is a chat application”.

Once you have a broad idea about the problem statement, ask for all the requirements. 

Functional Requirements (FR) [5-7 mins]

Start by gathering the features (Functional Requirements) that the chat application should have. Think of common features that such an application might have. After every question, wait for the interviewer to answer and note it down. Provide your inputs if required.

Examples:

  1. Do we need to support only 1:1 chat or group chats as well?
  2. Do we need to support only text messages or media as well?
  3. Do we need read receipts? [Discuss the specifics]
  4. Do we need ‘Online’ and ‘Last Seen’ timestamps?
  5. Do we need to support audio/video calls? If yes, do we need to support group calls as well?
  6. Do we need to support message broadcasting?
  7. Do we need to support status updates (images/videos/text)?
  8. Should the chat messages be stored just on the device? How do we provide backup? Do we support multiple devices?
  9. Do we need to support end-to-end encryption?
  10. What profile information would each user have and which of them would be public? [This should be a discussion. Provide options that you can come up with]
  11. Any other requirements that we would want to have?

The interviewer would mostly say yes to 4-5 features that you ask for. The first 4-5 features that you ask for would most likely be approved. Spend a minute thinking about and choosing/ordering the features that you are going to ask about.

Most good interviewers avoid bias about the features that they want to see before you start gathering the requirements. They want to understand your thought process and solutioning.

Non-Functional Requirements (NFR) [5-10 mins]

Once you have an idea about the functionalities (FR), you need to clarify the non-functional requirements from the interviewer. After every question, wait for the interviewer to answer and note it down. Provide your inputs if required. Some of these questions would be dependent on the approved functional requirements.

Examples:

  1. How many users would be concurrently using the service on average and at peak times?
  2. How many messages do we expect to be sent per day?
  3. What would be the maximum number of characters in each text?
  4. What is the expected average latency for users to get the messages after coming online?
  5. What can be the maximum size of the group?
  6. Would the media be downloaded locally or does it need to be loaded every time it is opened?
  7. How big could the media files be?
  8. What would be the Read/Write ratio for the different functionalities?
  9. Indirectly ask if we should prefer consistency or availability for the various major features. Try to figure out if we need ACID transactions.
    Examples:
    1. In the case of chat, if we are storing messages permanently, the interviewer would most likely prefer consistency.
    2. In the case of last-seen, the interviewer would most likely prefer availability.
    3. In the case of status, the interviewer would most likely prefer availability.

These questions would help you identify the traffic, resource requirements, latency requirements, etc. It will also help you design your system based on consistency and availability requirements considering the trade-offs. Do a basic estimation at this stage.

Step 2: API Design [3-5 mins]

Based on the functional requirements, list down all the API endpoints that you need to expose from your system.

Make sure to double-check if you’ve supported all the approved requirements. Verify the same with the interviewer before moving to the next step.

Best Practices:

Step 3: High-Level Design and Discussion [15-20 mins]

Once the requirements are clear and you have the API design ready, it is time to sketch out the high-level design of your system.

Let’s consider a sample high-level design of a given system. A basic overview of how the high-level design of a system might have these components:

  • Clients: Multiple mobile devices and laptops denoting the clients.
  • CDN: The clients would get static data from the CDN.
  • Load balancer: The clients would talk to a load balancer for dynamic data.
  • Application servers: There would be many application servers behind the load balancer.
  • Database: The application servers would talk to one or more SQL/NoSQL servers with some replication/sharding/partitioning involved.
  • Microservices: The application servers would talk to other internal servers if the system has a microservices architecture. Example: Auth Service.
  • Queue: The application servers would add some events/messages to a queue with certain workers listening to the queue for events.
  • Cache: The application servers might fetch data from the cache before hitting the database.

There could be other components as well and a few of these components might not be there in the design.

Let’s sketch the above design to get a better idea.

System Design Interview Template | Crack the Design WhatsApp at Meta (Facebook)
System Design Interview Template | Crack the Design WhatsApp at Meta (Facebook)

Step 4: Metric Estimation [5 mins]

Estimate the different metrics of the different functionalities and your entire system. This would you help you decide the resources and number of machines required for each of the components.

The common metrics that you should estimate are:

  • Throughput
  • Latency
  • Memory
  • Storage

This can be approximately calculated based on the NFRs and the high-level system.

References: Latency numbers every programmer should know

Note: This step is generally not required for junior engineers (< 3 years of experience).

This template should provide you with a strong guide to follow during a System Design Interview.

This template has been used and proven to work for many System Design Interviews at companies like Meta, Google, Uber, Microsoft, Ola, etc. and engineers I have coached in the past have cleared the System Design round at all of these companies.

If you’re a beginner in System Design then you may want to go through “System Design for Beginners” to get a decent idea about the different components and trade-offs involved in designing a scalable system.

Leave a Reply

Your email address will not be published. Required fields are marked *