Sunday, June 28, 2015

checkcheckzz/system-design-interview



checkcheckzz/system-design-interview


  • System Design Interview Tips
  • Basic Knowledge about System Design
  • Company Engineering Blogs
  • Products and Systems
  • Hot Questions and Reference
  • Object Oriented Design

  • System Design Interview Tips:

    Clarify the constraints and identify the user cases
    Spend a few minutes questioning the interviewer and agreeing on the scope of the system. Remember to make sure you know all the requirements the interviewer didn't tell your about in the beginning.
    User cases indicate the main functions of the system, and constraints list the scale of the system such as requests per second, requests types, data written per second, data read per second.
    High-level architecture design
    Sketch the important components and the connections between them, but don't go into some details. Usually, a scalable system includes webserver (load balancer), service (service partition), database (master/slave database cluster plug cache).
    Component design
    For each component, you need to write the specific APIs for each component. You may need to finish the detailed OOD design for a particular function. You may also need to design the database schema for the database.

    [⬆] Basic Knowledge about System Design:

    Here are some articles about system design related topics.
    Of course, if you want to dive into system related topics, here is a good collection of reading list aboutservices-engineering, and a good collection of material about distributed systems.

    [⬆] Company Engineering Blogs:

    If you are going to have an onsite with a company, you should read their engineering blog.

    [⬆] Products and Systems:

    The following papers/articles/slides can help you to understand the general design idea of different real products and systems.

    [⬆] Hot Questions and Reference:

    There are some good references for each question. The references here are slides and articles.
    Design a CDN network
    Reference:
    Design a Google document system
    Reference:
    Design a random ID generation system
    Reference:
    Design a key-value database
    Reference:
    Design the Facebook news seed function
    Reference:
    Design the Facebook timeline function
    Reference:
    Design a function to return the top k requests during past time interval
    Reference:
    Design an online multiplayer card game
    Reference:
    Design a graph search function
    Reference:
    Design a picture sharing system
    Reference:
    Design a search engine
    Reference:
    Design a recommendition system
    Reference:
    Design a tinyurl system
    Reference:
    Design a garbage collection system
    Reference:
    Design a scalable web crawling system
    Reference:
    Design the Facebook chat function
    Reference:
    Design a trending topic system
    Reference:
    Design a cache system
    Reference:

    [⬆] Object Oriented Design:

    Tips for OOD Interview

    Clarify the scenario, write out user cases
    Use case is a description of sequences of events that, taken together, lead to a system doing something useful. Who is going to use it and how they are going to use it. The system may be very simple or very complicated.
    Special system requirements such as multi-threading, read or write oriented.
    Define objects
    Map identity to class: one scenario for one class, each core object in this scenario for one class.
    Consider the relationships among classes: certain class must have unique instance, one object has many other objects (composition), one object is another object (inheritance).
    Identify attributes for each class: change noun to variable and action to methods.
    Use design patterns such that it can be reused in multiple applications.

    Useful Websites

    Read full article from checkcheckzz/system-design-interview

    Labels

    Review (572) System Design (334) System Design - Review (198) Java (189) Coding (75) Interview-System Design (65) Interview (63) Book Notes (59) Coding - Review (59) to-do (45) Linux (43) Knowledge (39) Interview-Java (35) Knowledge - Review (32) Database (31) Design Patterns (31) Big Data (29) Product Architecture (28) MultiThread (27) Soft Skills (27) Concurrency (26) Cracking Code Interview (26) Miscs (25) Distributed (24) OOD Design (24) Google (23) Career (22) Interview - Review (21) Java - Code (21) Operating System (21) Interview Q&A (20) System Design - Practice (20) Tips (19) Algorithm (17) Company - Facebook (17) Security (17) How to Ace Interview (16) Brain Teaser (14) Linux - Shell (14) Redis (14) Testing (14) Tools (14) Code Quality (13) Search (13) Spark (13) Spring (13) Company - LinkedIn (12) How to (12) Interview-Database (12) Interview-Operating System (12) Solr (12) Architecture Principles (11) Resource (10) Amazon (9) Cache (9) Git (9) Interview - MultiThread (9) Scalability (9) Trouble Shooting (9) Web Dev (9) Architecture Model (8) Better Programmer (8) Cassandra (8) Company - Uber (8) Java67 (8) Math (8) OO Design principles (8) SOLID (8) Design (7) Interview Corner (7) JVM (7) Java Basics (7) Kafka (7) Mac (7) Machine Learning (7) NoSQL (7) C++ (6) Chrome (6) File System (6) Highscalability (6) How to Better (6) Network (6) Restful (6) CareerCup (5) Code Review (5) Hash (5) How to Interview (5) JDK Source Code (5) JavaScript (5) Leetcode (5) Must Known (5) Python (5)

    Popular Posts