Tuesday, February 21, 2012

System Design Concepts

1. System Design Pre-requisiteshttp://massivetechinterview.blogspot.in/2016/08/system-design-misc.html
  • Have some experience working with a relational DB ( like MySQL ).
  • Have a basic idea about NoSQL DBs.
  • Understand the basics of the following : 
    • -  Concurrency : Do you understand threads, deadlock, and starvation? What happens when multiple processes / threads are trying to modify the same data? A basic understanding of read and write locks.
    • -  Networking : Do you roughly understand basic networking protocols like TCP and UDP? Do you understand the role of switches and routers?
    • -  File systems : You should understand the systems you’re building upon. Do you know roughly how an OS, file system, and database work? Do you know about the various levels of caching in a modern OS?
Basic Terminologies
We try to explain some of the terminologies in simple words. Lookup wiki for a more formal definition.
·        Replication : Replication refers to frequently copying the data across multiple machines. Post replication, multiple copies of the data exists across machines. This might help in case one or more of the machines die due to some failure.
·        Consistency: Assuming you have a storage system which has more than one machine, consistency implies that the data is same across the cluster, so you can read or write to/from any node and get the same data.
    • Eventual consistency : Exactly what the name suggests. In a cluster, if multiple machines store the same data, an eventual consistent model implies that all machines will have the same data eventually. Its possible that at a given instance, those machines have different versions of the same data ( temporarily inconsistent ) but they will eventually reach a state where they have the same data.
·        Availability: In the context of a database cluster, Availability refers to the ability to always respond to queries ( read or write ) irrespective of nodes going down.
·        Partition Tolerance: In the context of a database cluster, cluster continues to function even if there is a “partition” (communications break) between two nodes (both nodes are up, but can’t communicate).
·        Vertical scaling and Horizontal scaling : In simple terms, to scale horizontally is adding more servers. To scale vertically is to increase the resources of the server ( RAM, CPU, storage, etc. ).
Example: Lets say you own a restaurant which is now exceeding its seating capacity. One way of accomodating more people ( scaling ) would be to add more and more chairs (scaling vertically). However since the space is limited, you won’t be able to add more chairs once the space is full.
Another way of scaling would be to open new branches of the restaurant ( horizontal scaling ).
Source : http://stackoverflow.com/questions/5401992/what-does-scale-horizontally-and-scale-vertically-mean
·        Sharding : With most huge systems, data does not fit on a single machine. In such cases, sharding refers to splitting the very large database into smaller, faster and more manageable parts called data shards.

CAP Theorem
CAP Theorem states that in a distributed system, it is impossible to simultaneously guarantee all of the following:
  •  Consistency
  • Availability
  • Partition Tolerance
http://ksat.me/a-plain-english-introduction-to-cap-theorem/ does an awesome job of explaining it in simple english.

Useful Read:
2. Overall System Design Process
https://www.hiredintech.com/classrooms/system-design/lesson/55

It is recommended you follow the following steps to solving 
  • Feature expectations ( First 2 mins ) :
    As said earlier, there is no wrong design. There are just good and bad designs and the same solution can be a good design for one use case and a bad design for the other. It is extremely important hence to get a very clear understanding of whats the requirement for the question.
·        Estimations ( 2-5 mins )
Next step is usually to estimate the scale required for the system. The goal of this step is to understand the level of sharding required ( if any ) and to zero down on the design goals for the system.
For example, if the total data required for the system fits on a single machine, we might not need to go into sharding and the complications that go with a distributed system design.
OR if the most frequently used data fits on a single machine, in which case caching could be done on a single machine.
HLD
  • Design Goals ( 1 mins )
    Figure out what are the most important goals for the system. It is possible that there are systems which are latency systems in which case a solution that does not account for it, might lead to bad design.
·        Skeleton of the design ( 4 - 5 mins )
30-40 mins is not enough time to discuss every single component in detail. As such, a good strategy is to discuss a very high level with the interviewer and go into a deep dive of components as enquired by the interviewer.
           LLD
·        Deep dive ( 20-30 mins )
This is an extension of the previous section.

·        Storage Scalability

3. System Design Examples:

https://www.interviewbit.com/courses/system-design/
http://blog.gainlo.co/index.php/category/system-design-interview-questions/
http://www.hiredintech.com/data/uploads/hiredintech_system_design_the_twitter_problem_beta.pdf

4. More Reads:

System design individual Topics:
https://en.wikipedia.org/wiki/Web_framework
http://stackoverflow.com/questions/671118/what-exactly-is-restful-programming

System Design Blogs / Collection of Questions:
https://www.careercup.com/page?pid=system-design-interview-questions&sort=comments
http://massivetechinterview.blogspot.in/search/label/System%20Design
http://buttercola.blogspot.in/search/label/System%20Design
http://coding-geek.com/category/algorithm/
https://github.com/checkcheckzz/system-design-interview
https://github.com/filipegoncalves/interview-questions/tree/master/systems_design
http://blog.gainlo.co/index.php/category/system-design-interview-questions/
http://massivetechinterview.blogspot.in/search/label/Interview-System%20Design
http://www.slideshare.net/directi/building-a-scalable-architecture-for-web-apps

    No comments:

    Post a Comment