February 6, 2022 7:00 PM PST


This document summarizes a mock system design interview focused on a cloud file storage system. The discussion covered various aspects of system architecture, functional and non-functional requirements, API design, and potential challenges in implementation. The interview aimed to assess the candidate's ability to design a scalable and reliable cloud storage solution.

Requirements
Functional Requirements
Non-Functional Requirements
System Design
API Design
Data Storage
File Upload Strategies
  1. Chunked Upload:

    • Pros: Can resume uploads if interrupted.
    • Cons: Requires client-side support and increases CPU usage.
  2. Full File Upload:

    • Pros: Easier to implement, supports web clients.
    • Cons: If upload fails, the entire process must restart.
Syncing Mechanisms
Handling Concurrent Modifications
Feedback and Discussion Points
Conclusion

The mock interview provided valuable insights into the design of a cloud file storage system, emphasizing the importance of scalability, reliability, and user experience. The candidate demonstrated a solid understanding of system architecture and the challenges involved in implementing a robust cloud storage solution.