From 2bcd7e6a4346ff69cde55a1861f70ba434f59176 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:21:50 +0400 Subject: [PATCH 01/30] Duplicate english for translate to az-Latn --- README-az-AZ.md | 1838 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1838 insertions(+) create mode 100644 README-az-AZ.md diff --git a/README-az-AZ.md b/README-az-AZ.md new file mode 100644 index 0000000..7f41e7b --- /dev/null +++ b/README-az-AZ.md @@ -0,0 +1,1838 @@ +*[English](README.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة‎](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-design-primer/issues/40) ∙ [Deutsch](https://github.com/donnemartin/system-design-primer/issues/186) ∙ [ελληνικά](https://github.com/donnemartin/system-design-primer/issues/130) ∙ [עברית](https://github.com/donnemartin/system-design-primer/issues/272) ∙ [Italiano](https://github.com/donnemartin/system-design-primer/issues/104) ∙ [한국어](https://github.com/donnemartin/system-design-primer/issues/102) ∙ [فارسی](https://github.com/donnemartin/system-design-primer/issues/110) ∙ [Polski](https://github.com/donnemartin/system-design-primer/issues/68) ∙ [русский язык](https://github.com/donnemartin/system-design-primer/issues/87) ∙ [Español](https://github.com/donnemartin/system-design-primer/issues/136) ∙ [ภาษาไทย](https://github.com/donnemartin/system-design-primer/issues/187) ∙ [Türkçe](https://github.com/donnemartin/system-design-primer/issues/39) ∙ [tiếng Việt](https://github.com/donnemartin/system-design-primer/issues/127) ∙ [Français](https://github.com/donnemartin/system-design-primer/issues/250) | [Add Translation](https://github.com/donnemartin/system-design-primer/issues/28)* + +**Help [translate](TRANSLATIONS.md) this guide!** + +# The System Design Primer + +

+ +
+

+ +## Motivation + +> Learn how to design large-scale systems. +> +> Prep for the system design interview. + +### Learn how to design large-scale systems + +Learning how to design scalable systems will help you become a better engineer. + +System design is a broad topic. There is a **vast amount of resources scattered throughout the web** on system design principles. + +This repo is an **organized collection** of resources to help you learn how to build systems at scale. + +### Learn from the open source community + +This is a continually updated, open source project. + +[Contributions](#contributing) are welcome! + +### Prep for the system design interview + +In addition to coding interviews, system design is a **required component** of the **technical interview process** at many tech companies. + +**Practice common system design interview questions** and **compare** your results with **sample solutions**: discussions, code, and diagrams. + +Additional topics for interview prep: + +* [Study guide](#study-guide) +* [How to approach a system design interview question](#how-to-approach-a-system-design-interview-question) +* [System design interview questions, **with solutions**](#system-design-interview-questions-with-solutions) +* [Object-oriented design interview questions, **with solutions**](#object-oriented-design-interview-questions-with-solutions) +* [Additional system design interview questions](#additional-system-design-interview-questions) + +## Anki flashcards + +

+ +
+

+ +The provided [Anki flashcard decks](https://apps.ankiweb.net/) use spaced repetition to help you retain key system design concepts. + +* [System design deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design.apkg) +* [System design exercises deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design%20Exercises.apkg) +* [Object oriented design exercises deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/OO%20Design.apkg) + +Great for use while on-the-go. + +### Coding Resource: Interactive Coding Challenges + +Looking for resources to help you prep for the [**Coding Interview**](https://github.com/donnemartin/interactive-coding-challenges)? + +

+ +
+

+ +Check out the sister repo [**Interactive Coding Challenges**](https://github.com/donnemartin/interactive-coding-challenges), which contains an additional Anki deck: + +* [Coding deck](https://github.com/donnemartin/interactive-coding-challenges/tree/master/anki_cards/Coding.apkg) + +## Contributing + +> Learn from the community. + +Feel free to submit pull requests to help: + +* Fix errors +* Improve sections +* Add new sections +* [Translate](https://github.com/donnemartin/system-design-primer/issues/28) + +Content that needs some polishing is placed [under development](#under-development). + +Review the [Contributing Guidelines](CONTRIBUTING.md). + +## Index of system design topics + +> Summaries of various system design topics, including pros and cons. **Everything is a trade-off**. +> +> Each section contains links to more in-depth resources. + +

+ +
+

+ +* [System design topics: start here](#system-design-topics-start-here) + * [Step 1: Review the scalability video lecture](#step-1-review-the-scalability-video-lecture) + * [Step 2: Review the scalability article](#step-2-review-the-scalability-article) + * [Next steps](#next-steps) +* [Performance vs scalability](#performance-vs-scalability) +* [Latency vs throughput](#latency-vs-throughput) +* [Availability vs consistency](#availability-vs-consistency) + * [CAP theorem](#cap-theorem) + * [CP - consistency and partition tolerance](#cp---consistency-and-partition-tolerance) + * [AP - availability and partition tolerance](#ap---availability-and-partition-tolerance) +* [Consistency patterns](#consistency-patterns) + * [Weak consistency](#weak-consistency) + * [Eventual consistency](#eventual-consistency) + * [Strong consistency](#strong-consistency) +* [Availability patterns](#availability-patterns) + * [Fail-over](#fail-over) + * [Replication](#replication) + * [Availability in numbers](#availability-in-numbers) +* [Domain name system](#domain-name-system) +* [Content delivery network](#content-delivery-network) + * [Push CDNs](#push-cdns) + * [Pull CDNs](#pull-cdns) +* [Load balancer](#load-balancer) + * [Active-passive](#active-passive) + * [Active-active](#active-active) + * [Layer 4 load balancing](#layer-4-load-balancing) + * [Layer 7 load balancing](#layer-7-load-balancing) + * [Horizontal scaling](#horizontal-scaling) +* [Reverse proxy (web server)](#reverse-proxy-web-server) + * [Load balancer vs reverse proxy](#load-balancer-vs-reverse-proxy) +* [Application layer](#application-layer) + * [Microservices](#microservices) + * [Service discovery](#service-discovery) +* [Database](#database) + * [Relational database management system (RDBMS)](#relational-database-management-system-rdbms) + * [Master-slave replication](#master-slave-replication) + * [Master-master replication](#master-master-replication) + * [Federation](#federation) + * [Sharding](#sharding) + * [Denormalization](#denormalization) + * [SQL tuning](#sql-tuning) + * [NoSQL](#nosql) + * [Key-value store](#key-value-store) + * [Document store](#document-store) + * [Wide column store](#wide-column-store) + * [Graph Database](#graph-database) + * [SQL or NoSQL](#sql-or-nosql) +* [Cache](#cache) + * [Client caching](#client-caching) + * [CDN caching](#cdn-caching) + * [Web server caching](#web-server-caching) + * [Database caching](#database-caching) + * [Application caching](#application-caching) + * [Caching at the database query level](#caching-at-the-database-query-level) + * [Caching at the object level](#caching-at-the-object-level) + * [When to update the cache](#when-to-update-the-cache) + * [Cache-aside](#cache-aside) + * [Write-through](#write-through) + * [Write-behind (write-back)](#write-behind-write-back) + * [Refresh-ahead](#refresh-ahead) +* [Asynchronism](#asynchronism) + * [Message queues](#message-queues) + * [Task queues](#task-queues) + * [Back pressure](#back-pressure) +* [Communication](#communication) + * [Transmission control protocol (TCP)](#transmission-control-protocol-tcp) + * [User datagram protocol (UDP)](#user-datagram-protocol-udp) + * [Remote procedure call (RPC)](#remote-procedure-call-rpc) + * [Representational state transfer (REST)](#representational-state-transfer-rest) +* [Security](#security) +* [Appendix](#appendix) + * [Powers of two table](#powers-of-two-table) + * [Latency numbers every programmer should know](#latency-numbers-every-programmer-should-know) + * [Additional system design interview questions](#additional-system-design-interview-questions) + * [Real world architectures](#real-world-architectures) + * [Company architectures](#company-architectures) + * [Company engineering blogs](#company-engineering-blogs) +* [Under development](#under-development) +* [Credits](#credits) +* [Contact info](#contact-info) +* [License](#license) + +## Study guide + +> Suggested topics to review based on your interview timeline (short, medium, long). + +![Imgur](images/OfVllex.png) + +**Q: For interviews, do I need to know everything here?** + +**A: No, you don't need to know everything here to prepare for the interview**. + +What you are asked in an interview depends on variables such as: + +* How much experience you have +* What your technical background is +* What positions you are interviewing for +* Which companies you are interviewing with +* Luck + +More experienced candidates are generally expected to know more about system design. Architects or team leads might be expected to know more than individual contributors. Top tech companies are likely to have one or more design interview rounds. + +Start broad and go deeper in a few areas. It helps to know a little about various key system design topics. Adjust the following guide based on your timeline, experience, what positions you are interviewing for, and which companies you are interviewing with. + +* **Short timeline** - Aim for **breadth** with system design topics. Practice by solving **some** interview questions. +* **Medium timeline** - Aim for **breadth** and **some depth** with system design topics. Practice by solving **many** interview questions. +* **Long timeline** - Aim for **breadth** and **more depth** with system design topics. Practice by solving **most** interview questions. + +| | Short | Medium | Long | +|---|---|---|---| +| Read through the [System design topics](#index-of-system-design-topics) to get a broad understanding of how systems work | :+1: | :+1: | :+1: | +| Read through a few articles in the [Company engineering blogs](#company-engineering-blogs) for the companies you are interviewing with | :+1: | :+1: | :+1: | +| Read through a few [Real world architectures](#real-world-architectures) | :+1: | :+1: | :+1: | +| Review [How to approach a system design interview question](#how-to-approach-a-system-design-interview-question) | :+1: | :+1: | :+1: | +| Work through [System design interview questions with solutions](#system-design-interview-questions-with-solutions) | Some | Many | Most | +| Work through [Object-oriented design interview questions with solutions](#object-oriented-design-interview-questions-with-solutions) | Some | Many | Most | +| Review [Additional system design interview questions](#additional-system-design-interview-questions) | Some | Many | Most | + +## How to approach a system design interview question + +> How to tackle a system design interview question. + +The system design interview is an **open-ended conversation**. You are expected to lead it. + +You can use the following steps to guide the discussion. To help solidify this process, work through the [System design interview questions with solutions](#system-design-interview-questions-with-solutions) section using the following steps. + +### Step 1: Outline use cases, constraints, and assumptions + +Gather requirements and scope the problem. Ask questions to clarify use cases and constraints. Discuss assumptions. + +* Who is going to use it? +* How are they going to use it? +* How many users are there? +* What does the system do? +* What are the inputs and outputs of the system? +* How much data do we expect to handle? +* How many requests per second do we expect? +* What is the expected read to write ratio? + +### Step 2: Create a high level design + +Outline a high level design with all important components. + +* Sketch the main components and connections +* Justify your ideas + +### Step 3: Design core components + +Dive into details for each core component. For example, if you were asked to [design a url shortening service](solutions/system_design/pastebin/README.md), discuss: + +* Generating and storing a hash of the full url + * [MD5](solutions/system_design/pastebin/README.md) and [Base62](solutions/system_design/pastebin/README.md) + * Hash collisions + * SQL or NoSQL + * Database schema +* Translating a hashed url to the full url + * Database lookup +* API and object-oriented design + +### Step 4: Scale the design + +Identify and address bottlenecks, given the constraints. For example, do you need the following to address scalability issues? + +* Load balancer +* Horizontal scaling +* Caching +* Database sharding + +Discuss potential solutions and trade-offs. Everything is a trade-off. Address bottlenecks using [principles of scalable system design](#index-of-system-design-topics). + +### Back-of-the-envelope calculations + +You might be asked to do some estimates by hand. Refer to the [Appendix](#appendix) for the following resources: + +* [Use back of the envelope calculations](http://highscalability.com/blog/2011/1/26/google-pro-tip-use-back-of-the-envelope-calculations-to-choo.html) +* [Powers of two table](#powers-of-two-table) +* [Latency numbers every programmer should know](#latency-numbers-every-programmer-should-know) + +### Source(s) and further reading + +Check out the following links to get a better idea of what to expect: + +* [How to ace a systems design interview](https://www.palantir.com/2011/10/how-to-rock-a-systems-design-interview/) +* [The system design interview](http://www.hiredintech.com/system-design) +* [Intro to Architecture and Systems Design Interviews](https://www.youtube.com/watch?v=ZgdS0EUmn70) +* [System design template](https://leetcode.com/discuss/career/229177/My-System-Design-Template) + +## System design interview questions with solutions + +> Common system design interview questions with sample discussions, code, and diagrams. +> +> Solutions linked to content in the `solutions/` folder. + +| Question | | +|---|---| +| Design Pastebin.com (or Bit.ly) | [Solution](solutions/system_design/pastebin/README.md) | +| Design the Twitter timeline and search (or Facebook feed and search) | [Solution](solutions/system_design/twitter/README.md) | +| Design a web crawler | [Solution](solutions/system_design/web_crawler/README.md) | +| Design Mint.com | [Solution](solutions/system_design/mint/README.md) | +| Design the data structures for a social network | [Solution](solutions/system_design/social_graph/README.md) | +| Design a key-value store for a search engine | [Solution](solutions/system_design/query_cache/README.md) | +| Design Amazon's sales ranking by category feature | [Solution](solutions/system_design/sales_rank/README.md) | +| Design a system that scales to millions of users on AWS | [Solution](solutions/system_design/scaling_aws/README.md) | +| Add a system design question | [Contribute](#contributing) | + +### Design Pastebin.com (or Bit.ly) + +[View exercise and solution](solutions/system_design/pastebin/README.md) + +![Imgur](images/4edXG0T.png) + +### Design the Twitter timeline and search (or Facebook feed and search) + +[View exercise and solution](solutions/system_design/twitter/README.md) + +![Imgur](images/jrUBAF7.png) + +### Design a web crawler + +[View exercise and solution](solutions/system_design/web_crawler/README.md) + +![Imgur](images/bWxPtQA.png) + +### Design Mint.com + +[View exercise and solution](solutions/system_design/mint/README.md) + +![Imgur](images/V5q57vU.png) + +### Design the data structures for a social network + +[View exercise and solution](solutions/system_design/social_graph/README.md) + +![Imgur](images/cdCv5g7.png) + +### Design a key-value store for a search engine + +[View exercise and solution](solutions/system_design/query_cache/README.md) + +![Imgur](images/4j99mhe.png) + +### Design Amazon's sales ranking by category feature + +[View exercise and solution](solutions/system_design/sales_rank/README.md) + +![Imgur](images/MzExP06.png) + +### Design a system that scales to millions of users on AWS + +[View exercise and solution](solutions/system_design/scaling_aws/README.md) + +![Imgur](images/jj3A5N8.png) + +## Object-oriented design interview questions with solutions + +> Common object-oriented design interview questions with sample discussions, code, and diagrams. +> +> Solutions linked to content in the `solutions/` folder. + +>**Note: This section is under development** + +| Question | | +|---|---| +| Design a hash map | [Solution](solutions/object_oriented_design/hash_table/hash_map.ipynb) | +| Design a least recently used cache | [Solution](solutions/object_oriented_design/lru_cache/lru_cache.ipynb) | +| Design a call center | [Solution](solutions/object_oriented_design/call_center/call_center.ipynb) | +| Design a deck of cards | [Solution](solutions/object_oriented_design/deck_of_cards/deck_of_cards.ipynb) | +| Design a parking lot | [Solution](solutions/object_oriented_design/parking_lot/parking_lot.ipynb) | +| Design a chat server | [Solution](solutions/object_oriented_design/online_chat/online_chat.ipynb) | +| Design a circular array | [Contribute](#contributing) | +| Add an object-oriented design question | [Contribute](#contributing) | + +## System design topics: start here + +New to system design? + +First, you'll need a basic understanding of common principles, learning about what they are, how they are used, and their pros and cons. + +### Step 1: Review the scalability video lecture + +[Scalability Lecture at Harvard](https://www.youtube.com/watch?v=-W9F__D3oY4) + +* Topics covered: + * Vertical scaling + * Horizontal scaling + * Caching + * Load balancing + * Database replication + * Database partitioning + +### Step 2: Review the scalability article + +[Scalability](https://web.archive.org/web/20221030091841/http://www.lecloud.net/tagged/scalability/chrono) + +* Topics covered: + * [Clones](https://web.archive.org/web/20220530193911/https://www.lecloud.net/post/7295452622/scalability-for-dummies-part-1-clones) + * [Databases](https://web.archive.org/web/20220602114024/https://www.lecloud.net/post/7994751381/scalability-for-dummies-part-2-database) + * [Caches](https://web.archive.org/web/20230126233752/https://www.lecloud.net/post/9246290032/scalability-for-dummies-part-3-cache) + * [Asynchronism](https://web.archive.org/web/20220926171507/https://www.lecloud.net/post/9699762917/scalability-for-dummies-part-4-asynchronism) + +### Next steps + +Next, we'll look at high-level trade-offs: + +* **Performance** vs **scalability** +* **Latency** vs **throughput** +* **Availability** vs **consistency** + +Keep in mind that **everything is a trade-off**. + +Then we'll dive into more specific topics such as DNS, CDNs, and load balancers. + +## Performance vs scalability + +A service is **scalable** if it results in increased **performance** in a manner proportional to resources added. Generally, increasing performance means serving more units of work, but it can also be to handle larger units of work, such as when datasets grow.1 + +Another way to look at performance vs scalability: + +* If you have a **performance** problem, your system is slow for a single user. +* If you have a **scalability** problem, your system is fast for a single user but slow under heavy load. + +### Source(s) and further reading + +* [A word on scalability](http://www.allthingsdistributed.com/2006/03/a_word_on_scalability.html) +* [Scalability, availability, stability, patterns](http://www.slideshare.net/jboner/scalability-availability-stability-patterns/) + +## Latency vs throughput + +**Latency** is the time to perform some action or to produce some result. + +**Throughput** is the number of such actions or results per unit of time. + +Generally, you should aim for **maximal throughput** with **acceptable latency**. + +### Source(s) and further reading + +* [Understanding latency vs throughput](https://community.cadence.com/cadence_blogs_8/b/fv/posts/understanding-latency-vs-throughput) + +## Availability vs consistency + +### CAP theorem + +

+ +
+ Source: CAP theorem revisited +

+ +In a distributed computer system, you can only support two of the following guarantees: + +* **Consistency** - Every read receives the most recent write or an error +* **Availability** - Every request receives a response, without guarantee that it contains the most recent version of the information +* **Partition Tolerance** - The system continues to operate despite arbitrary partitioning due to network failures + +*Networks aren't reliable, so you'll need to support partition tolerance. You'll need to make a software tradeoff between consistency and availability.* + +#### CP - consistency and partition tolerance + +Waiting for a response from the partitioned node might result in a timeout error. CP is a good choice if your business needs require atomic reads and writes. + +#### AP - availability and partition tolerance + +Responses return the most readily available version of the data available on any node, which might not be the latest. Writes might take some time to propagate when the partition is resolved. + +AP is a good choice if the business needs to allow for [eventual consistency](#eventual-consistency) or when the system needs to continue working despite external errors. + +### Source(s) and further reading + +* [CAP theorem revisited](http://robertgreiner.com/2014/08/cap-theorem-revisited/) +* [A plain english introduction to CAP theorem](http://ksat.me/a-plain-english-introduction-to-cap-theorem) +* [CAP FAQ](https://github.com/henryr/cap-faq) +* [The CAP theorem](https://www.youtube.com/watch?v=k-Yaq8AHlFA) + +## Consistency patterns + +With multiple copies of the same data, we are faced with options on how to synchronize them so clients have a consistent view of the data. Recall the definition of consistency from the [CAP theorem](#cap-theorem) - Every read receives the most recent write or an error. + +### Weak consistency + +After a write, reads may or may not see it. A best effort approach is taken. + +This approach is seen in systems such as memcached. Weak consistency works well in real time use cases such as VoIP, video chat, and realtime multiplayer games. For example, if you are on a phone call and lose reception for a few seconds, when you regain connection you do not hear what was spoken during connection loss. + +### Eventual consistency + +After a write, reads will eventually see it (typically within milliseconds). Data is replicated asynchronously. + +This approach is seen in systems such as DNS and email. Eventual consistency works well in highly available systems. + +### Strong consistency + +After a write, reads will see it. Data is replicated synchronously. + +This approach is seen in file systems and RDBMSes. Strong consistency works well in systems that need transactions. + +### Source(s) and further reading + +* [Transactions across data centers](http://snarfed.org/transactions_across_datacenters_io.html) + +## Availability patterns + +There are two complementary patterns to support high availability: **fail-over** and **replication**. + +### Fail-over + +#### Active-passive + +With active-passive fail-over, heartbeats are sent between the active and the passive server on standby. If the heartbeat is interrupted, the passive server takes over the active's IP address and resumes service. + +The length of downtime is determined by whether the passive server is already running in 'hot' standby or whether it needs to start up from 'cold' standby. Only the active server handles traffic. + +Active-passive failover can also be referred to as master-slave failover. + +#### Active-active + +In active-active, both servers are managing traffic, spreading the load between them. + +If the servers are public-facing, the DNS would need to know about the public IPs of both servers. If the servers are internal-facing, application logic would need to know about both servers. + +Active-active failover can also be referred to as master-master failover. + +### Disadvantage(s): failover + +* Fail-over adds more hardware and additional complexity. +* There is a potential for loss of data if the active system fails before any newly written data can be replicated to the passive. + +### Replication + +#### Master-slave and master-master + +This topic is further discussed in the [Database](#database) section: + +* [Master-slave replication](#master-slave-replication) +* [Master-master replication](#master-master-replication) + +### Availability in numbers + +Availability is often quantified by uptime (or downtime) as a percentage of time the service is available. Availability is generally measured in number of 9s--a service with 99.99% availability is described as having four 9s. + +#### 99.9% availability - three 9s + +| Duration | Acceptable downtime| +|---------------------|--------------------| +| Downtime per year | 8h 45min 57s | +| Downtime per month | 43m 49.7s | +| Downtime per week | 10m 4.8s | +| Downtime per day | 1m 26.4s | + +#### 99.99% availability - four 9s + +| Duration | Acceptable downtime| +|---------------------|--------------------| +| Downtime per year | 52min 35.7s | +| Downtime per month | 4m 23s | +| Downtime per week | 1m 5s | +| Downtime per day | 8.6s | + +#### Availability in parallel vs in sequence + +If a service consists of multiple components prone to failure, the service's overall availability depends on whether the components are in sequence or in parallel. + +###### In sequence + +Overall availability decreases when two components with availability < 100% are in sequence: + +``` +Availability (Total) = Availability (Foo) * Availability (Bar) +``` + +If both `Foo` and `Bar` each had 99.9% availability, their total availability in sequence would be 99.8%. + +###### In parallel + +Overall availability increases when two components with availability < 100% are in parallel: + +``` +Availability (Total) = 1 - (1 - Availability (Foo)) * (1 - Availability (Bar)) +``` + +If both `Foo` and `Bar` each had 99.9% availability, their total availability in parallel would be 99.9999%. + +## Domain name system + +

+ +
+ Source: DNS security presentation +

+ +A Domain Name System (DNS) translates a domain name such as www.example.com to an IP address. + +DNS is hierarchical, with a few authoritative servers at the top level. Your router or ISP provides information about which DNS server(s) to contact when doing a lookup. Lower level DNS servers cache mappings, which could become stale due to DNS propagation delays. DNS results can also be cached by your browser or OS for a certain period of time, determined by the [time to live (TTL)](https://en.wikipedia.org/wiki/Time_to_live). + +* **NS record (name server)** - Specifies the DNS servers for your domain/subdomain. +* **MX record (mail exchange)** - Specifies the mail servers for accepting messages. +* **A record (address)** - Points a name to an IP address. +* **CNAME (canonical)** - Points a name to another name or `CNAME` (example.com to www.example.com) or to an `A` record. + +Services such as [CloudFlare](https://www.cloudflare.com/dns/) and [Route 53](https://aws.amazon.com/route53/) provide managed DNS services. Some DNS services can route traffic through various methods: + +* [Weighted round robin](https://www.jscape.com/blog/load-balancing-algorithms) + * Prevent traffic from going to servers under maintenance + * Balance between varying cluster sizes + * A/B testing +* [Latency-based](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-latency) +* [Geolocation-based](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-geo) + +### Disadvantage(s): DNS + +* Accessing a DNS server introduces a slight delay, although mitigated by caching described above. +* DNS server management could be complex and is generally managed by [governments, ISPs, and large companies](http://superuser.com/questions/472695/who-controls-the-dns-servers/472729). +* DNS services have recently come under [DDoS attack](http://dyn.com/blog/dyn-analysis-summary-of-friday-october-21-attack/), preventing users from accessing websites such as Twitter without knowing Twitter's IP address(es). + +### Source(s) and further reading + +* [DNS architecture](https://technet.microsoft.com/en-us/library/dd197427(v=ws.10).aspx) +* [Wikipedia](https://en.wikipedia.org/wiki/Domain_Name_System) +* [DNS articles](https://support.dnsimple.com/categories/dns/) + +## Content delivery network + +

+ +
+ Source: Why use a CDN +

+ +A content delivery network (CDN) is a globally distributed network of proxy servers, serving content from locations closer to the user. Generally, static files such as HTML/CSS/JS, photos, and videos are served from CDN, although some CDNs such as Amazon's CloudFront support dynamic content. The site's DNS resolution will tell clients which server to contact. + +Serving content from CDNs can significantly improve performance in two ways: + +* Users receive content from data centers close to them +* Your servers do not have to serve requests that the CDN fulfills + +### Push CDNs + +Push CDNs receive new content whenever changes occur on your server. You take full responsibility for providing content, uploading directly to the CDN and rewriting URLs to point to the CDN. You can configure when content expires and when it is updated. Content is uploaded only when it is new or changed, minimizing traffic, but maximizing storage. + +Sites with a small amount of traffic or sites with content that isn't often updated work well with push CDNs. Content is placed on the CDNs once, instead of being re-pulled at regular intervals. + +### Pull CDNs + +Pull CDNs grab new content from your server when the first user requests the content. You leave the content on your server and rewrite URLs to point to the CDN. This results in a slower request until the content is cached on the CDN. + +A [time-to-live (TTL)](https://en.wikipedia.org/wiki/Time_to_live) determines how long content is cached. Pull CDNs minimize storage space on the CDN, but can create redundant traffic if files expire and are pulled before they have actually changed. + +Sites with heavy traffic work well with pull CDNs, as traffic is spread out more evenly with only recently-requested content remaining on the CDN. + +### Disadvantage(s): CDN + +* CDN costs could be significant depending on traffic, although this should be weighed with additional costs you would incur not using a CDN. +* Content might be stale if it is updated before the TTL expires it. +* CDNs require changing URLs for static content to point to the CDN. + +### Source(s) and further reading + +* [Globally distributed content delivery](https://figshare.com/articles/Globally_distributed_content_delivery/6605972) +* [The differences between push and pull CDNs](http://www.travelblogadvice.com/technical/the-differences-between-push-and-pull-cdns/) +* [Wikipedia](https://en.wikipedia.org/wiki/Content_delivery_network) + +## Load balancer + +

+ +
+ Source: Scalable system design patterns +

+ +Load balancers distribute incoming client requests to computing resources such as application servers and databases. In each case, the load balancer returns the response from the computing resource to the appropriate client. Load balancers are effective at: + +* Preventing requests from going to unhealthy servers +* Preventing overloading resources +* Helping to eliminate a single point of failure + +Load balancers can be implemented with hardware (expensive) or with software such as HAProxy. + +Additional benefits include: + +* **SSL termination** - Decrypt incoming requests and encrypt server responses so backend servers do not have to perform these potentially expensive operations + * Removes the need to install [X.509 certificates](https://en.wikipedia.org/wiki/X.509) on each server +* **Session persistence** - Issue cookies and route a specific client's requests to same instance if the web apps do not keep track of sessions + +To protect against failures, it's common to set up multiple load balancers, either in [active-passive](#active-passive) or [active-active](#active-active) mode. + +Load balancers can route traffic based on various metrics, including: + +* Random +* Least loaded +* Session/cookies +* [Round robin or weighted round robin](https://www.g33kinfo.com/info/round-robin-vs-weighted-round-robin-lb) +* [Layer 4](#layer-4-load-balancing) +* [Layer 7](#layer-7-load-balancing) + +### Layer 4 load balancing + +Layer 4 load balancers look at info at the [transport layer](#communication) to decide how to distribute requests. Generally, this involves the source, destination IP addresses, and ports in the header, but not the contents of the packet. Layer 4 load balancers forward network packets to and from the upstream server, performing [Network Address Translation (NAT)](https://www.nginx.com/resources/glossary/layer-4-load-balancing/). + +### Layer 7 load balancing + +Layer 7 load balancers look at the [application layer](#communication) to decide how to distribute requests. This can involve contents of the header, message, and cookies. Layer 7 load balancers terminate network traffic, reads the message, makes a load-balancing decision, then opens a connection to the selected server. For example, a layer 7 load balancer can direct video traffic to servers that host videos while directing more sensitive user billing traffic to security-hardened servers. + +At the cost of flexibility, layer 4 load balancing requires less time and computing resources than Layer 7, although the performance impact can be minimal on modern commodity hardware. + +### Horizontal scaling + +Load balancers can also help with horizontal scaling, improving performance and availability. Scaling out using commodity machines is more cost efficient and results in higher availability than scaling up a single server on more expensive hardware, called **Vertical Scaling**. It is also easier to hire for talent working on commodity hardware than it is for specialized enterprise systems. + +#### Disadvantage(s): horizontal scaling + +* Scaling horizontally introduces complexity and involves cloning servers + * Servers should be stateless: they should not contain any user-related data like sessions or profile pictures + * Sessions can be stored in a centralized data store such as a [database](#database) (SQL, NoSQL) or a persistent [cache](#cache) (Redis, Memcached) +* Downstream servers such as caches and databases need to handle more simultaneous connections as upstream servers scale out + +### Disadvantage(s): load balancer + +* The load balancer can become a performance bottleneck if it does not have enough resources or if it is not configured properly. +* Introducing a load balancer to help eliminate a single point of failure results in increased complexity. +* A single load balancer is a single point of failure, configuring multiple load balancers further increases complexity. + +### Source(s) and further reading + +* [NGINX architecture](https://www.nginx.com/blog/inside-nginx-how-we-designed-for-performance-scale/) +* [HAProxy architecture guide](http://www.haproxy.org/download/1.2/doc/architecture.txt) +* [Scalability](http://www.lecloud.net/post/7295452622/scalability-for-dummies-part-1-clones) +* [Wikipedia](https://en.wikipedia.org/wiki/Load_balancing_(computing)) +* [Layer 4 load balancing](https://www.nginx.com/resources/glossary/layer-4-load-balancing/) +* [Layer 7 load balancing](https://www.nginx.com/resources/glossary/layer-7-load-balancing/) +* [ELB listener config](http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html) + +## Reverse proxy (web server) + +

+ +
+ Source: Wikipedia +
+

+ +A reverse proxy is a web server that centralizes internal services and provides unified interfaces to the public. Requests from clients are forwarded to a server that can fulfill it before the reverse proxy returns the server's response to the client. + +Additional benefits include: + +* **Increased security** - Hide information about backend servers, blacklist IPs, limit number of connections per client +* **Increased scalability and flexibility** - Clients only see the reverse proxy's IP, allowing you to scale servers or change their configuration +* **SSL termination** - Decrypt incoming requests and encrypt server responses so backend servers do not have to perform these potentially expensive operations + * Removes the need to install [X.509 certificates](https://en.wikipedia.org/wiki/X.509) on each server +* **Compression** - Compress server responses +* **Caching** - Return the response for cached requests +* **Static content** - Serve static content directly + * HTML/CSS/JS + * Photos + * Videos + * Etc + +### Load balancer vs reverse proxy + +* Deploying a load balancer is useful when you have multiple servers. Often, load balancers route traffic to a set of servers serving the same function. +* Reverse proxies can be useful even with just one web server or application server, opening up the benefits described in the previous section. +* Solutions such as NGINX and HAProxy can support both layer 7 reverse proxying and load balancing. + +### Disadvantage(s): reverse proxy + +* Introducing a reverse proxy results in increased complexity. +* A single reverse proxy is a single point of failure, configuring multiple reverse proxies (ie a [failover](https://en.wikipedia.org/wiki/Failover)) further increases complexity. + +### Source(s) and further reading + +* [Reverse proxy vs load balancer](https://www.nginx.com/resources/glossary/reverse-proxy-vs-load-balancer/) +* [NGINX architecture](https://www.nginx.com/blog/inside-nginx-how-we-designed-for-performance-scale/) +* [HAProxy architecture guide](http://www.haproxy.org/download/1.2/doc/architecture.txt) +* [Wikipedia](https://en.wikipedia.org/wiki/Reverse_proxy) + +## Application layer + +

+ +
+ Source: Intro to architecting systems for scale +

+ +Separating out the web layer from the application layer (also known as platform layer) allows you to scale and configure both layers independently. Adding a new API results in adding application servers without necessarily adding additional web servers. The **single responsibility principle** advocates for small and autonomous services that work together. Small teams with small services can plan more aggressively for rapid growth. + +Workers in the application layer also help enable [asynchronism](#asynchronism). + +### Microservices + +Related to this discussion are [microservices](https://en.wikipedia.org/wiki/Microservices), which can be described as a suite of independently deployable, small, modular services. Each service runs a unique process and communicates through a well-defined, lightweight mechanism to serve a business goal. 1 + +Pinterest, for example, could have the following microservices: user profile, follower, feed, search, photo upload, etc. + +### Service Discovery + +Systems such as [Consul](https://www.consul.io/docs/index.html), [Etcd](https://coreos.com/etcd/docs/latest), and [Zookeeper](http://www.slideshare.net/sauravhaloi/introduction-to-apache-zookeeper) can help services find each other by keeping track of registered names, addresses, and ports. [Health checks](https://www.consul.io/intro/getting-started/checks.html) help verify service integrity and are often done using an [HTTP](#hypertext-transfer-protocol-http) endpoint. Both Consul and Etcd have a built in [key-value store](#key-value-store) that can be useful for storing config values and other shared data. + +### Disadvantage(s): application layer + +* Adding an application layer with loosely coupled services requires a different approach from an architectural, operations, and process viewpoint (vs a monolithic system). +* Microservices can add complexity in terms of deployments and operations. + +### Source(s) and further reading + +* [Intro to architecting systems for scale](http://lethain.com/introduction-to-architecting-systems-for-scale) +* [Crack the system design interview](http://www.puncsky.com/blog/2016-02-13-crack-the-system-design-interview) +* [Service oriented architecture](https://en.wikipedia.org/wiki/Service-oriented_architecture) +* [Introduction to Zookeeper](http://www.slideshare.net/sauravhaloi/introduction-to-apache-zookeeper) +* [Here's what you need to know about building microservices](https://cloudncode.wordpress.com/2016/07/22/msa-getting-started/) + +## Database + +

+ +
+ Source: Scaling up to your first 10 million users +

+ +### Relational database management system (RDBMS) + +A relational database like SQL is a collection of data items organized in tables. + +**ACID** is a set of properties of relational database [transactions](https://en.wikipedia.org/wiki/Database_transaction). + +* **Atomicity** - Each transaction is all or nothing +* **Consistency** - Any transaction will bring the database from one valid state to another +* **Isolation** - Executing transactions concurrently has the same results as if the transactions were executed serially +* **Durability** - Once a transaction has been committed, it will remain so + +There are many techniques to scale a relational database: **master-slave replication**, **master-master replication**, **federation**, **sharding**, **denormalization**, and **SQL tuning**. + +#### Master-slave replication + +The master serves reads and writes, replicating writes to one or more slaves, which serve only reads. Slaves can also replicate to additional slaves in a tree-like fashion. If the master goes offline, the system can continue to operate in read-only mode until a slave is promoted to a master or a new master is provisioned. + +

+ +
+ Source: Scalability, availability, stability, patterns +

+ +##### Disadvantage(s): master-slave replication + +* Additional logic is needed to promote a slave to a master. +* See [Disadvantage(s): replication](#disadvantages-replication) for points related to **both** master-slave and master-master. + +#### Master-master replication + +Both masters serve reads and writes and coordinate with each other on writes. If either master goes down, the system can continue to operate with both reads and writes. + +

+ +
+ Source: Scalability, availability, stability, patterns +

+ +##### Disadvantage(s): master-master replication + +* You'll need a load balancer or you'll need to make changes to your application logic to determine where to write. +* Most master-master systems are either loosely consistent (violating ACID) or have increased write latency due to synchronization. +* Conflict resolution comes more into play as more write nodes are added and as latency increases. +* See [Disadvantage(s): replication](#disadvantages-replication) for points related to **both** master-slave and master-master. + +##### Disadvantage(s): replication + +* There is a potential for loss of data if the master fails before any newly written data can be replicated to other nodes. +* Writes are replayed to the read replicas. If there are a lot of writes, the read replicas can get bogged down with replaying writes and can't do as many reads. +* The more read slaves, the more you have to replicate, which leads to greater replication lag. +* On some systems, writing to the master can spawn multiple threads to write in parallel, whereas read replicas only support writing sequentially with a single thread. +* Replication adds more hardware and additional complexity. + +##### Source(s) and further reading: replication + +* [Scalability, availability, stability, patterns](http://www.slideshare.net/jboner/scalability-availability-stability-patterns/) +* [Multi-master replication](https://en.wikipedia.org/wiki/Multi-master_replication) + +#### Federation + +

+ +
+ Source: Scaling up to your first 10 million users +

+ +Federation (or functional partitioning) splits up databases by function. For example, instead of a single, monolithic database, you could have three databases: **forums**, **users**, and **products**, resulting in less read and write traffic to each database and therefore less replication lag. Smaller databases result in more data that can fit in memory, which in turn results in more cache hits due to improved cache locality. With no single central master serializing writes you can write in parallel, increasing throughput. + +##### Disadvantage(s): federation + +* Federation is not effective if your schema requires huge functions or tables. +* You'll need to update your application logic to determine which database to read and write. +* Joining data from two databases is more complex with a [server link](http://stackoverflow.com/questions/5145637/querying-data-by-joining-two-tables-in-two-database-on-different-servers). +* Federation adds more hardware and additional complexity. + +##### Source(s) and further reading: federation + +* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=kKjm4ehYiMs) + +#### Sharding + +

+ +
+ Source: Scalability, availability, stability, patterns +

+ +Sharding distributes data across different databases such that each database can only manage a subset of the data. Taking a users database as an example, as the number of users increases, more shards are added to the cluster. + +Similar to the advantages of [federation](#federation), sharding results in less read and write traffic, less replication, and more cache hits. Index size is also reduced, which generally improves performance with faster queries. If one shard goes down, the other shards are still operational, although you'll want to add some form of replication to avoid data loss. Like federation, there is no single central master serializing writes, allowing you to write in parallel with increased throughput. + +Common ways to shard a table of users is either through the user's last name initial or the user's geographic location. + +##### Disadvantage(s): sharding + +* You'll need to update your application logic to work with shards, which could result in complex SQL queries. +* Data distribution can become lopsided in a shard. For example, a set of power users on a shard could result in increased load to that shard compared to others. + * Rebalancing adds additional complexity. A sharding function based on [consistent hashing](http://www.paperplanes.de/2011/12/9/the-magic-of-consistent-hashing.html) can reduce the amount of transferred data. +* Joining data from multiple shards is more complex. +* Sharding adds more hardware and additional complexity. + +##### Source(s) and further reading: sharding + +* [The coming of the shard](http://highscalability.com/blog/2009/8/6/an-unorthodox-approach-to-database-design-the-coming-of-the.html) +* [Shard database architecture](https://en.wikipedia.org/wiki/Shard_(database_architecture)) +* [Consistent hashing](http://www.paperplanes.de/2011/12/9/the-magic-of-consistent-hashing.html) + +#### Denormalization + +Denormalization attempts to improve read performance at the expense of some write performance. Redundant copies of the data are written in multiple tables to avoid expensive joins. Some RDBMS such as [PostgreSQL](https://en.wikipedia.org/wiki/PostgreSQL) and Oracle support [materialized views](https://en.wikipedia.org/wiki/Materialized_view) which handle the work of storing redundant information and keeping redundant copies consistent. + +Once data becomes distributed with techniques such as [federation](#federation) and [sharding](#sharding), managing joins across data centers further increases complexity. Denormalization might circumvent the need for such complex joins. + +In most systems, reads can heavily outnumber writes 100:1 or even 1000:1. A read resulting in a complex database join can be very expensive, spending a significant amount of time on disk operations. + +##### Disadvantage(s): denormalization + +* Data is duplicated. +* Constraints can help redundant copies of information stay in sync, which increases complexity of the database design. +* A denormalized database under heavy write load might perform worse than its normalized counterpart. + +###### Source(s) and further reading: denormalization + +* [Denormalization](https://en.wikipedia.org/wiki/Denormalization) + +#### SQL tuning + +SQL tuning is a broad topic and many [books](https://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords=sql+tuning) have been written as reference. + +It's important to **benchmark** and **profile** to simulate and uncover bottlenecks. + +* **Benchmark** - Simulate high-load situations with tools such as [ab](http://httpd.apache.org/docs/2.2/programs/ab.html). +* **Profile** - Enable tools such as the [slow query log](http://dev.mysql.com/doc/refman/5.7/en/slow-query-log.html) to help track performance issues. + +Benchmarking and profiling might point you to the following optimizations. + +##### Tighten up the schema + +* MySQL dumps to disk in contiguous blocks for fast access. +* Use `CHAR` instead of `VARCHAR` for fixed-length fields. + * `CHAR` effectively allows for fast, random access, whereas with `VARCHAR`, you must find the end of a string before moving onto the next one. +* Use `TEXT` for large blocks of text such as blog posts. `TEXT` also allows for boolean searches. Using a `TEXT` field results in storing a pointer on disk that is used to locate the text block. +* Use `INT` for larger numbers up to 2^32 or 4 billion. +* Use `DECIMAL` for currency to avoid floating point representation errors. +* Avoid storing large `BLOBS`, store the location of where to get the object instead. +* `VARCHAR(255)` is the largest number of characters that can be counted in an 8 bit number, often maximizing the use of a byte in some RDBMS. +* Set the `NOT NULL` constraint where applicable to [improve search performance](http://stackoverflow.com/questions/1017239/how-do-null-values-affect-performance-in-a-database-search). + +##### Use good indices + +* Columns that you are querying (`SELECT`, `GROUP BY`, `ORDER BY`, `JOIN`) could be faster with indices. +* Indices are usually represented as self-balancing [B-tree](https://en.wikipedia.org/wiki/B-tree) that keeps data sorted and allows searches, sequential access, insertions, and deletions in logarithmic time. +* Placing an index can keep the data in memory, requiring more space. +* Writes could also be slower since the index also needs to be updated. +* When loading large amounts of data, it might be faster to disable indices, load the data, then rebuild the indices. + +##### Avoid expensive joins + +* [Denormalize](#denormalization) where performance demands it. + +##### Partition tables + +* Break up a table by putting hot spots in a separate table to help keep it in memory. + +##### Tune the query cache + +* In some cases, the [query cache](https://dev.mysql.com/doc/refman/5.7/en/query-cache.html) could lead to [performance issues](https://www.percona.com/blog/2016/10/12/mysql-5-7-performance-tuning-immediately-after-installation/). + +##### Source(s) and further reading: SQL tuning + +* [Tips for optimizing MySQL queries](http://aiddroid.com/10-tips-optimizing-mysql-queries-dont-suck/) +* [Is there a good reason i see VARCHAR(255) used so often?](http://stackoverflow.com/questions/1217466/is-there-a-good-reason-i-see-varchar255-used-so-often-as-opposed-to-another-l) +* [How do null values affect performance?](http://stackoverflow.com/questions/1017239/how-do-null-values-affect-performance-in-a-database-search) +* [Slow query log](http://dev.mysql.com/doc/refman/5.7/en/slow-query-log.html) + +### NoSQL + +NoSQL is a collection of data items represented in a **key-value store**, **document store**, **wide column store**, or a **graph database**. Data is denormalized, and joins are generally done in the application code. Most NoSQL stores lack true ACID transactions and favor [eventual consistency](#eventual-consistency). + +**BASE** is often used to describe the properties of NoSQL databases. In comparison with the [CAP Theorem](#cap-theorem), BASE chooses availability over consistency. + +* **Basically available** - the system guarantees availability. +* **Soft state** - the state of the system may change over time, even without input. +* **Eventual consistency** - the system will become consistent over a period of time, given that the system doesn't receive input during that period. + +In addition to choosing between [SQL or NoSQL](#sql-or-nosql), it is helpful to understand which type of NoSQL database best fits your use case(s). We'll review **key-value stores**, **document stores**, **wide column stores**, and **graph databases** in the next section. + +#### Key-value store + +> Abstraction: hash table + +A key-value store generally allows for O(1) reads and writes and is often backed by memory or SSD. Data stores can maintain keys in [lexicographic order](https://en.wikipedia.org/wiki/Lexicographical_order), allowing efficient retrieval of key ranges. Key-value stores can allow for storing of metadata with a value. + +Key-value stores provide high performance and are often used for simple data models or for rapidly-changing data, such as an in-memory cache layer. Since they offer only a limited set of operations, complexity is shifted to the application layer if additional operations are needed. + +A key-value store is the basis for more complex systems such as a document store, and in some cases, a graph database. + +##### Source(s) and further reading: key-value store + +* [Key-value database](https://en.wikipedia.org/wiki/Key-value_database) +* [Disadvantages of key-value stores](http://stackoverflow.com/questions/4056093/what-are-the-disadvantages-of-using-a-key-value-table-over-nullable-columns-or) +* [Redis architecture](http://qnimate.com/overview-of-redis-architecture/) +* [Memcached architecture](https://adayinthelifeof.nl/2011/02/06/memcache-internals/) + +#### Document store + +> Abstraction: key-value store with documents stored as values + +A document store is centered around documents (XML, JSON, binary, etc), where a document stores all information for a given object. Document stores provide APIs or a query language to query based on the internal structure of the document itself. *Note, many key-value stores include features for working with a value's metadata, blurring the lines between these two storage types.* + +Based on the underlying implementation, documents are organized by collections, tags, metadata, or directories. Although documents can be organized or grouped together, documents may have fields that are completely different from each other. + +Some document stores like [MongoDB](https://www.mongodb.com/mongodb-architecture) and [CouchDB](https://blog.couchdb.org/2016/08/01/couchdb-2-0-architecture/) also provide a SQL-like language to perform complex queries. [DynamoDB](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/decandia07dynamo.pdf) supports both key-values and documents. + +Document stores provide high flexibility and are often used for working with occasionally changing data. + +##### Source(s) and further reading: document store + +* [Document-oriented database](https://en.wikipedia.org/wiki/Document-oriented_database) +* [MongoDB architecture](https://www.mongodb.com/mongodb-architecture) +* [CouchDB architecture](https://blog.couchdb.org/2016/08/01/couchdb-2-0-architecture/) +* [Elasticsearch architecture](https://www.elastic.co/blog/found-elasticsearch-from-the-bottom-up) + +#### Wide column store + +

+ +
+ Source: SQL & NoSQL, a brief history +

+ +> Abstraction: nested map `ColumnFamily>` + +A wide column store's basic unit of data is a column (name/value pair). A column can be grouped in column families (analogous to a SQL table). Super column families further group column families. You can access each column independently with a row key, and columns with the same row key form a row. Each value contains a timestamp for versioning and for conflict resolution. + +Google introduced [Bigtable](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/chang06bigtable.pdf) as the first wide column store, which influenced the open-source [HBase](https://www.edureka.co/blog/hbase-architecture/) often-used in the Hadoop ecosystem, and [Cassandra](http://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archIntro.html) from Facebook. Stores such as BigTable, HBase, and Cassandra maintain keys in lexicographic order, allowing efficient retrieval of selective key ranges. + +Wide column stores offer high availability and high scalability. They are often used for very large data sets. + +##### Source(s) and further reading: wide column store + +* [SQL & NoSQL, a brief history](http://blog.grio.com/2015/11/sql-nosql-a-brief-history.html) +* [Bigtable architecture](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/chang06bigtable.pdf) +* [HBase architecture](https://www.edureka.co/blog/hbase-architecture/) +* [Cassandra architecture](http://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archIntro.html) + +#### Graph database + +

+ +
+ Source: Graph database +

+ +> Abstraction: graph + +In a graph database, each node is a record and each arc is a relationship between two nodes. Graph databases are optimized to represent complex relationships with many foreign keys or many-to-many relationships. + +Graphs databases offer high performance for data models with complex relationships, such as a social network. They are relatively new and are not yet widely-used; it might be more difficult to find development tools and resources. Many graphs can only be accessed with [REST APIs](#representational-state-transfer-rest). + +##### Source(s) and further reading: graph + +* [Graph database](https://en.wikipedia.org/wiki/Graph_database) +* [Neo4j](https://neo4j.com/) +* [FlockDB](https://blog.twitter.com/2010/introducing-flockdb) + +#### Source(s) and further reading: NoSQL + +* [Explanation of base terminology](http://stackoverflow.com/questions/3342497/explanation-of-base-terminology) +* [NoSQL databases a survey and decision guidance](https://medium.com/baqend-blog/nosql-databases-a-survey-and-decision-guidance-ea7823a822d#.wskogqenq) +* [Scalability](http://www.lecloud.net/post/7994751381/scalability-for-dummies-part-2-database) +* [Introduction to NoSQL](https://www.youtube.com/watch?v=qI_g07C_Q5I) +* [NoSQL patterns](http://horicky.blogspot.com/2009/11/nosql-patterns.html) + +### SQL or NoSQL + +

+ +
+ Source: Transitioning from RDBMS to NoSQL +

+ +Reasons for **SQL**: + +* Structured data +* Strict schema +* Relational data +* Need for complex joins +* Transactions +* Clear patterns for scaling +* More established: developers, community, code, tools, etc +* Lookups by index are very fast + +Reasons for **NoSQL**: + +* Semi-structured data +* Dynamic or flexible schema +* Non-relational data +* No need for complex joins +* Store many TB (or PB) of data +* Very data intensive workload +* Very high throughput for IOPS + +Sample data well-suited for NoSQL: + +* Rapid ingest of clickstream and log data +* Leaderboard or scoring data +* Temporary data, such as a shopping cart +* Frequently accessed ('hot') tables +* Metadata/lookup tables + +##### Source(s) and further reading: SQL or NoSQL + +* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=kKjm4ehYiMs) +* [SQL vs NoSQL differences](https://www.sitepoint.com/sql-vs-nosql-differences/) + +## Cache + +

+ +
+ Source: Scalable system design patterns +

+ +Caching improves page load times and can reduce the load on your servers and databases. In this model, the dispatcher will first lookup if the request has been made before and try to find the previous result to return, in order to save the actual execution. + +Databases often benefit from a uniform distribution of reads and writes across its partitions. Popular items can skew the distribution, causing bottlenecks. Putting a cache in front of a database can help absorb uneven loads and spikes in traffic. + +### Client caching + +Caches can be located on the client side (OS or browser), [server side](#reverse-proxy-web-server), or in a distinct cache layer. + +### CDN caching + +[CDNs](#content-delivery-network) are considered a type of cache. + +### Web server caching + +[Reverse proxies](#reverse-proxy-web-server) and caches such as [Varnish](https://www.varnish-cache.org/) can serve static and dynamic content directly. Web servers can also cache requests, returning responses without having to contact application servers. + +### Database caching + +Your database usually includes some level of caching in a default configuration, optimized for a generic use case. Tweaking these settings for specific usage patterns can further boost performance. + +### Application caching + +In-memory caches such as Memcached and Redis are key-value stores between your application and your data storage. Since the data is held in RAM, it is much faster than typical databases where data is stored on disk. RAM is more limited than disk, so [cache invalidation](https://en.wikipedia.org/wiki/Cache_algorithms) algorithms such as [least recently used (LRU)](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)) can help invalidate 'cold' entries and keep 'hot' data in RAM. + +Redis has the following additional features: + +* Persistence option +* Built-in data structures such as sorted sets and lists + +There are multiple levels you can cache that fall into two general categories: **database queries** and **objects**: + +* Row level +* Query-level +* Fully-formed serializable objects +* Fully-rendered HTML + +Generally, you should try to avoid file-based caching, as it makes cloning and auto-scaling more difficult. + +### Caching at the database query level + +Whenever you query the database, hash the query as a key and store the result to the cache. This approach suffers from expiration issues: + +* Hard to delete a cached result with complex queries +* If one piece of data changes such as a table cell, you need to delete all cached queries that might include the changed cell + +### Caching at the object level + +See your data as an object, similar to what you do with your application code. Have your application assemble the dataset from the database into a class instance or a data structure(s): + +* Remove the object from cache if its underlying data has changed +* Allows for asynchronous processing: workers assemble objects by consuming the latest cached object + +Suggestions of what to cache: + +* User sessions +* Fully rendered web pages +* Activity streams +* User graph data + +### When to update the cache + +Since you can only store a limited amount of data in cache, you'll need to determine which cache update strategy works best for your use case. + +#### Cache-aside + +

+ +
+ Source: From cache to in-memory data grid +

+ +The application is responsible for reading and writing from storage. The cache does not interact with storage directly. The application does the following: + +* Look for entry in cache, resulting in a cache miss +* Load entry from the database +* Add entry to cache +* Return entry + +```python +def get_user(self, user_id): + user = cache.get("user.{0}", user_id) + if user is None: + user = db.query("SELECT * FROM users WHERE user_id = {0}", user_id) + if user is not None: + key = "user.{0}".format(user_id) + cache.set(key, json.dumps(user)) + return user +``` + +[Memcached](https://memcached.org/) is generally used in this manner. + +Subsequent reads of data added to cache are fast. Cache-aside is also referred to as lazy loading. Only requested data is cached, which avoids filling up the cache with data that isn't requested. + +##### Disadvantage(s): cache-aside + +* Each cache miss results in three trips, which can cause a noticeable delay. +* Data can become stale if it is updated in the database. This issue is mitigated by setting a time-to-live (TTL) which forces an update of the cache entry, or by using write-through. +* When a node fails, it is replaced by a new, empty node, increasing latency. + +#### Write-through + +

+ +
+ Source: Scalability, availability, stability, patterns +

+ +The application uses the cache as the main data store, reading and writing data to it, while the cache is responsible for reading and writing to the database: + +* Application adds/updates entry in cache +* Cache synchronously writes entry to data store +* Return + +Application code: + +```python +set_user(12345, {"foo":"bar"}) +``` + +Cache code: + +```python +def set_user(user_id, values): + user = db.query("UPDATE Users WHERE id = {0}", user_id, values) + cache.set(user_id, user) +``` + +Write-through is a slow overall operation due to the write operation, but subsequent reads of just written data are fast. Users are generally more tolerant of latency when updating data than reading data. Data in the cache is not stale. + +##### Disadvantage(s): write through + +* When a new node is created due to failure or scaling, the new node will not cache entries until the entry is updated in the database. Cache-aside in conjunction with write through can mitigate this issue. +* Most data written might never be read, which can be minimized with a TTL. + +#### Write-behind (write-back) + +

+ +
+ Source: Scalability, availability, stability, patterns +

+ +In write-behind, the application does the following: + +* Add/update entry in cache +* Asynchronously write entry to the data store, improving write performance + +##### Disadvantage(s): write-behind + +* There could be data loss if the cache goes down prior to its contents hitting the data store. +* It is more complex to implement write-behind than it is to implement cache-aside or write-through. + +#### Refresh-ahead + +

+ +
+ Source: From cache to in-memory data grid +

+ +You can configure the cache to automatically refresh any recently accessed cache entry prior to its expiration. + +Refresh-ahead can result in reduced latency vs read-through if the cache can accurately predict which items are likely to be needed in the future. + +##### Disadvantage(s): refresh-ahead + +* Not accurately predicting which items are likely to be needed in the future can result in reduced performance than without refresh-ahead. + +### Disadvantage(s): cache + +* Need to maintain consistency between caches and the source of truth such as the database through [cache invalidation](https://en.wikipedia.org/wiki/Cache_algorithms). +* Cache invalidation is a difficult problem, there is additional complexity associated with when to update the cache. +* Need to make application changes such as adding Redis or memcached. + +### Source(s) and further reading + +* [From cache to in-memory data grid](http://www.slideshare.net/tmatyashovsky/from-cache-to-in-memory-data-grid-introduction-to-hazelcast) +* [Scalable system design patterns](http://horicky.blogspot.com/2010/10/scalable-system-design-patterns.html) +* [Introduction to architecting systems for scale](http://lethain.com/introduction-to-architecting-systems-for-scale/) +* [Scalability, availability, stability, patterns](http://www.slideshare.net/jboner/scalability-availability-stability-patterns/) +* [Scalability](http://www.lecloud.net/post/9246290032/scalability-for-dummies-part-3-cache) +* [AWS ElastiCache strategies](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Strategies.html) +* [Wikipedia](https://en.wikipedia.org/wiki/Cache_(computing)) + +## Asynchronism + +

+ +
+ Source: Intro to architecting systems for scale +

+ +Asynchronous workflows help reduce request times for expensive operations that would otherwise be performed in-line. They can also help by doing time-consuming work in advance, such as periodic aggregation of data. + +### Message queues + +Message queues receive, hold, and deliver messages. If an operation is too slow to perform inline, you can use a message queue with the following workflow: + +* An application publishes a job to the queue, then notifies the user of job status +* A worker picks up the job from the queue, processes it, then signals the job is complete + +The user is not blocked and the job is processed in the background. During this time, the client might optionally do a small amount of processing to make it seem like the task has completed. For example, if posting a tweet, the tweet could be instantly posted to your timeline, but it could take some time before your tweet is actually delivered to all of your followers. + +**[Redis](https://redis.io/)** is useful as a simple message broker but messages can be lost. + +**[RabbitMQ](https://www.rabbitmq.com/)** is popular but requires you to adapt to the 'AMQP' protocol and manage your own nodes. + +**[Amazon SQS](https://aws.amazon.com/sqs/)** is hosted but can have high latency and has the possibility of messages being delivered twice. + +### Task queues + +Tasks queues receive tasks and their related data, runs them, then delivers their results. They can support scheduling and can be used to run computationally-intensive jobs in the background. + +**[Celery](https://docs.celeryproject.org/en/stable/)** has support for scheduling and primarily has python support. + +### Back pressure + +If queues start to grow significantly, the queue size can become larger than memory, resulting in cache misses, disk reads, and even slower performance. [Back pressure](http://mechanical-sympathy.blogspot.com/2012/05/apply-back-pressure-when-overloaded.html) can help by limiting the queue size, thereby maintaining a high throughput rate and good response times for jobs already in the queue. Once the queue fills up, clients get a server busy or HTTP 503 status code to try again later. Clients can retry the request at a later time, perhaps with [exponential backoff](https://en.wikipedia.org/wiki/Exponential_backoff). + +### Disadvantage(s): asynchronism + +* Use cases such as inexpensive calculations and realtime workflows might be better suited for synchronous operations, as introducing queues can add delays and complexity. + +### Source(s) and further reading + +* [It's all a numbers game](https://www.youtube.com/watch?v=1KRYH75wgy4) +* [Applying back pressure when overloaded](http://mechanical-sympathy.blogspot.com/2012/05/apply-back-pressure-when-overloaded.html) +* [Little's law](https://en.wikipedia.org/wiki/Little%27s_law) +* [What is the difference between a message queue and a task queue?](https://www.quora.com/What-is-the-difference-between-a-message-queue-and-a-task-queue-Why-would-a-task-queue-require-a-message-broker-like-RabbitMQ-Redis-Celery-or-IronMQ-to-function) + +## Communication + +

+ +
+ Source: OSI 7 layer model +

+ +### Hypertext transfer protocol (HTTP) + +HTTP is a method for encoding and transporting data between a client and a server. It is a request/response protocol: clients issue requests and servers issue responses with relevant content and completion status info about the request. HTTP is self-contained, allowing requests and responses to flow through many intermediate routers and servers that perform load balancing, caching, encryption, and compression. + +A basic HTTP request consists of a verb (method) and a resource (endpoint). Below are common HTTP verbs: + +| Verb | Description | Idempotent* | Safe | Cacheable | +|---|---|---|---|---| +| GET | Reads a resource | Yes | Yes | Yes | +| POST | Creates a resource or trigger a process that handles data | No | No | Yes if response contains freshness info | +| PUT | Creates or replace a resource | Yes | No | No | +| PATCH | Partially updates a resource | No | No | Yes if response contains freshness info | +| DELETE | Deletes a resource | Yes | No | No | + +*Can be called many times without different outcomes. + +HTTP is an application layer protocol relying on lower-level protocols such as **TCP** and **UDP**. + +#### Source(s) and further reading: HTTP + +* [What is HTTP?](https://www.nginx.com/resources/glossary/http/) +* [Difference between HTTP and TCP](https://www.quora.com/What-is-the-difference-between-HTTP-protocol-and-TCP-protocol) +* [Difference between PUT and PATCH](https://laracasts.com/discuss/channels/general-discussion/whats-the-differences-between-put-and-patch?page=1) + +### Transmission control protocol (TCP) + +

+ +
+ Source: How to make a multiplayer game +

+ +TCP is a connection-oriented protocol over an [IP network](https://en.wikipedia.org/wiki/Internet_Protocol). Connection is established and terminated using a [handshake](https://en.wikipedia.org/wiki/Handshaking). All packets sent are guaranteed to reach the destination in the original order and without corruption through: + +* Sequence numbers and [checksum fields](https://en.wikipedia.org/wiki/Transmission_Control_Protocol#Checksum_computation) for each packet +* [Acknowledgement](https://en.wikipedia.org/wiki/Acknowledgement_(data_networks)) packets and automatic retransmission + +If the sender does not receive a correct response, it will resend the packets. If there are multiple timeouts, the connection is dropped. TCP also implements [flow control](https://en.wikipedia.org/wiki/Flow_control_(data)) and [congestion control](https://en.wikipedia.org/wiki/Network_congestion#Congestion_control). These guarantees cause delays and generally result in less efficient transmission than UDP. + +To ensure high throughput, web servers can keep a large number of TCP connections open, resulting in high memory usage. It can be expensive to have a large number of open connections between web server threads and say, a [memcached](https://memcached.org/) server. [Connection pooling](https://en.wikipedia.org/wiki/Connection_pool) can help in addition to switching to UDP where applicable. + +TCP is useful for applications that require high reliability but are less time critical. Some examples include web servers, database info, SMTP, FTP, and SSH. + +Use TCP over UDP when: + +* You need all of the data to arrive intact +* You want to automatically make a best estimate use of the network throughput + +### User datagram protocol (UDP) + +

+ +
+ Source: How to make a multiplayer game +

+ +UDP is connectionless. Datagrams (analogous to packets) are guaranteed only at the datagram level. Datagrams might reach their destination out of order or not at all. UDP does not support congestion control. Without the guarantees that TCP support, UDP is generally more efficient. + +UDP can broadcast, sending datagrams to all devices on the subnet. This is useful with [DHCP](https://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol) because the client has not yet received an IP address, thus preventing a way for TCP to stream without the IP address. + +UDP is less reliable but works well in real time use cases such as VoIP, video chat, streaming, and realtime multiplayer games. + +Use UDP over TCP when: + +* You need the lowest latency +* Late data is worse than loss of data +* You want to implement your own error correction + +#### Source(s) and further reading: TCP and UDP + +* [Networking for game programming](http://gafferongames.com/networking-for-game-programmers/udp-vs-tcp/) +* [Key differences between TCP and UDP protocols](http://www.cyberciti.biz/faq/key-differences-between-tcp-and-udp-protocols/) +* [Difference between TCP and UDP](http://stackoverflow.com/questions/5970383/difference-between-tcp-and-udp) +* [Transmission control protocol](https://en.wikipedia.org/wiki/Transmission_Control_Protocol) +* [User datagram protocol](https://en.wikipedia.org/wiki/User_Datagram_Protocol) +* [Scaling memcache at Facebook](http://www.cs.bu.edu/~jappavoo/jappavoo.github.com/451/papers/memcache-fb.pdf) + +### Remote procedure call (RPC) + +

+ +
+ Source: Crack the system design interview +

+ +In an RPC, a client causes a procedure to execute on a different address space, usually a remote server. The procedure is coded as if it were a local procedure call, abstracting away the details of how to communicate with the server from the client program. Remote calls are usually slower and less reliable than local calls so it is helpful to distinguish RPC calls from local calls. Popular RPC frameworks include [Protobuf](https://developers.google.com/protocol-buffers/), [Thrift](https://thrift.apache.org/), and [Avro](https://avro.apache.org/docs/current/). + +RPC is a request-response protocol: + +* **Client program** - Calls the client stub procedure. The parameters are pushed onto the stack like a local procedure call. +* **Client stub procedure** - Marshals (packs) procedure id and arguments into a request message. +* **Client communication module** - OS sends the message from the client to the server. +* **Server communication module** - OS passes the incoming packets to the server stub procedure. +* **Server stub procedure** - Unmarshalls the results, calls the server procedure matching the procedure id and passes the given arguments. +* The server response repeats the steps above in reverse order. + +Sample RPC calls: + +``` +GET /someoperation?data=anId + +POST /anotheroperation +{ + "data":"anId"; + "anotherdata": "another value" +} +``` + +RPC is focused on exposing behaviors. RPCs are often used for performance reasons with internal communications, as you can hand-craft native calls to better fit your use cases. + +Choose a native library (aka SDK) when: + +* You know your target platform. +* You want to control how your "logic" is accessed. +* You want to control how error control happens off your library. +* Performance and end user experience is your primary concern. + +HTTP APIs following **REST** tend to be used more often for public APIs. + +#### Disadvantage(s): RPC + +* RPC clients become tightly coupled to the service implementation. +* A new API must be defined for every new operation or use case. +* It can be difficult to debug RPC. +* You might not be able to leverage existing technologies out of the box. For example, it might require additional effort to ensure [RPC calls are properly cached](http://etherealbits.com/2012/12/debunking-the-myths-of-rpc-rest/) on caching servers such as [Squid](http://www.squid-cache.org/). + +### Representational state transfer (REST) + +REST is an architectural style enforcing a client/server model where the client acts on a set of resources managed by the server. The server provides a representation of resources and actions that can either manipulate or get a new representation of resources. All communication must be stateless and cacheable. + +There are four qualities of a RESTful interface: + +* **Identify resources (URI in HTTP)** - use the same URI regardless of any operation. +* **Change with representations (Verbs in HTTP)** - use verbs, headers, and body. +* **Self-descriptive error message (status response in HTTP)** - Use status codes, don't reinvent the wheel. +* **[HATEOAS](http://restcookbook.com/Basics/hateoas/) (HTML interface for HTTP)** - your web service should be fully accessible in a browser. + +Sample REST calls: + +``` +GET /someresources/anId + +PUT /someresources/anId +{"anotherdata": "another value"} +``` + +REST is focused on exposing data. It minimizes the coupling between client/server and is often used for public HTTP APIs. REST uses a more generic and uniform method of exposing resources through URIs, [representation through headers](https://github.com/for-GET/know-your-http-well/blob/master/headers.md), and actions through verbs such as GET, POST, PUT, DELETE, and PATCH. Being stateless, REST is great for horizontal scaling and partitioning. + +#### Disadvantage(s): REST + +* With REST being focused on exposing data, it might not be a good fit if resources are not naturally organized or accessed in a simple hierarchy. For example, returning all updated records from the past hour matching a particular set of events is not easily expressed as a path. With REST, it is likely to be implemented with a combination of URI path, query parameters, and possibly the request body. +* REST typically relies on a few verbs (GET, POST, PUT, DELETE, and PATCH) which sometimes doesn't fit your use case. For example, moving expired documents to the archive folder might not cleanly fit within these verbs. +* Fetching complicated resources with nested hierarchies requires multiple round trips between the client and server to render single views, e.g. fetching content of a blog entry and the comments on that entry. For mobile applications operating in variable network conditions, these multiple roundtrips are highly undesirable. +* Over time, more fields might be added to an API response and older clients will receive all new data fields, even those that they do not need, as a result, it bloats the payload size and leads to larger latencies. + +### RPC and REST calls comparison + +| Operation | RPC | REST | +|---|---|---| +| Signup | **POST** /signup | **POST** /persons | +| Resign | **POST** /resign
{
"personid": "1234"
} | **DELETE** /persons/1234 | +| Read a person | **GET** /readPerson?personid=1234 | **GET** /persons/1234 | +| Read a person’s items list | **GET** /readUsersItemsList?personid=1234 | **GET** /persons/1234/items | +| Add an item to a person’s items | **POST** /addItemToUsersItemsList
{
"personid": "1234";
"itemid": "456"
} | **POST** /persons/1234/items
{
"itemid": "456"
} | +| Update an item | **POST** /modifyItem
{
"itemid": "456";
"key": "value"
} | **PUT** /items/456
{
"key": "value"
} | +| Delete an item | **POST** /removeItem
{
"itemid": "456"
} | **DELETE** /items/456 | + +

+ Source: Do you really know why you prefer REST over RPC +

+ +#### Source(s) and further reading: REST and RPC + +* [Do you really know why you prefer REST over RPC](https://apihandyman.io/do-you-really-know-why-you-prefer-rest-over-rpc/) +* [When are RPC-ish approaches more appropriate than REST?](http://programmers.stackexchange.com/a/181186) +* [REST vs JSON-RPC](http://stackoverflow.com/questions/15056878/rest-vs-json-rpc) +* [Debunking the myths of RPC and REST](http://etherealbits.com/2012/12/debunking-the-myths-of-rpc-rest/) +* [What are the drawbacks of using REST](https://www.quora.com/What-are-the-drawbacks-of-using-RESTful-APIs) +* [Crack the system design interview](http://www.puncsky.com/blog/2016-02-13-crack-the-system-design-interview) +* [Thrift](https://code.facebook.com/posts/1468950976659943/) +* [Why REST for internal use and not RPC](http://arstechnica.com/civis/viewtopic.php?t=1190508) + +## Security + +This section could use some updates. Consider [contributing](#contributing)! + +Security is a broad topic. Unless you have considerable experience, a security background, or are applying for a position that requires knowledge of security, you probably won't need to know more than the basics: + +* Encrypt in transit and at rest. +* Sanitize all user inputs or any input parameters exposed to user to prevent [XSS](https://en.wikipedia.org/wiki/Cross-site_scripting) and [SQL injection](https://en.wikipedia.org/wiki/SQL_injection). +* Use parameterized queries to prevent SQL injection. +* Use the principle of [least privilege](https://en.wikipedia.org/wiki/Principle_of_least_privilege). + +### Source(s) and further reading + +* [API security checklist](https://github.com/shieldfy/API-Security-Checklist) +* [Security guide for developers](https://github.com/FallibleInc/security-guide-for-developers) +* [OWASP top ten](https://www.owasp.org/index.php/OWASP_Top_Ten_Cheat_Sheet) + +## Appendix + +You'll sometimes be asked to do 'back-of-the-envelope' estimates. For example, you might need to determine how long it will take to generate 100 image thumbnails from disk or how much memory a data structure will take. The **Powers of two table** and **Latency numbers every programmer should know** are handy references. + +### Powers of two table + +``` +Power Exact Value Approx Value Bytes +--------------------------------------------------------------- +7 128 +8 256 +10 1024 1 thousand 1 KB +16 65,536 64 KB +20 1,048,576 1 million 1 MB +30 1,073,741,824 1 billion 1 GB +32 4,294,967,296 4 GB +40 1,099,511,627,776 1 trillion 1 TB +``` + +#### Source(s) and further reading + +* [Powers of two](https://en.wikipedia.org/wiki/Power_of_two) + +### Latency numbers every programmer should know + +``` +Latency Comparison Numbers +-------------------------- +L1 cache reference 0.5 ns +Branch mispredict 5 ns +L2 cache reference 7 ns 14x L1 cache +Mutex lock/unlock 25 ns +Main memory reference 100 ns 20x L2 cache, 200x L1 cache +Compress 1K bytes with Zippy 10,000 ns 10 us +Send 1 KB bytes over 1 Gbps network 10,000 ns 10 us +Read 4 KB randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD +Read 1 MB sequentially from memory 250,000 ns 250 us +Round trip within same datacenter 500,000 ns 500 us +Read 1 MB sequentially from SSD* 1,000,000 ns 1,000 us 1 ms ~1GB/sec SSD, 4X memory +HDD seek 10,000,000 ns 10,000 us 10 ms 20x datacenter roundtrip +Read 1 MB sequentially from 1 Gbps 10,000,000 ns 10,000 us 10 ms 40x memory, 10X SSD +Read 1 MB sequentially from HDD 30,000,000 ns 30,000 us 30 ms 120x memory, 30X SSD +Send packet CA->Netherlands->CA 150,000,000 ns 150,000 us 150 ms + +Notes +----- +1 ns = 10^-9 seconds +1 us = 10^-6 seconds = 1,000 ns +1 ms = 10^-3 seconds = 1,000 us = 1,000,000 ns +``` + +Handy metrics based on numbers above: + +* Read sequentially from HDD at 30 MB/s +* Read sequentially from 1 Gbps Ethernet at 100 MB/s +* Read sequentially from SSD at 1 GB/s +* Read sequentially from main memory at 4 GB/s +* 6-7 world-wide round trips per second +* 2,000 round trips per second within a data center + +#### Latency numbers visualized + +![](https://camo.githubusercontent.com/77f72259e1eb58596b564d1ad823af1853bc60a3/687474703a2f2f692e696d6775722e636f6d2f6b307431652e706e67) + +#### Source(s) and further reading + +* [Latency numbers every programmer should know - 1](https://gist.github.com/jboner/2841832) +* [Latency numbers every programmer should know - 2](https://gist.github.com/hellerbarde/2843375) +* [Designs, lessons, and advice from building large distributed systems](http://www.cs.cornell.edu/projects/ladis2009/talks/dean-keynote-ladis2009.pdf) +* [Software Engineering Advice from Building Large-Scale Distributed Systems](https://static.googleusercontent.com/media/research.google.com/en//people/jeff/stanford-295-talk.pdf) + +### Additional system design interview questions + +> Common system design interview questions, with links to resources on how to solve each. + +| Question | Reference(s) | +|---|---| +| Design a file sync service like Dropbox | [youtube.com](https://www.youtube.com/watch?v=PE4gwstWhmc) | +| Design a search engine like Google | [queue.acm.org](http://queue.acm.org/detail.cfm?id=988407)
[stackexchange.com](http://programmers.stackexchange.com/questions/38324/interview-question-how-would-you-implement-google-search)
[ardendertat.com](http://www.ardendertat.com/2012/01/11/implementing-search-engines/)
[stanford.edu](http://infolab.stanford.edu/~backrub/google.html) | +| Design a scalable web crawler like Google | [quora.com](https://www.quora.com/How-can-I-build-a-web-crawler-from-scratch) | +| Design Google docs | [code.google.com](https://code.google.com/p/google-mobwrite/)
[neil.fraser.name](https://neil.fraser.name/writing/sync/) | +| Design a key-value store like Redis | [slideshare.net](http://www.slideshare.net/dvirsky/introduction-to-redis) | +| Design a cache system like Memcached | [slideshare.net](http://www.slideshare.net/oemebamo/introduction-to-memcached) | +| Design a recommendation system like Amazon's | [hulu.com](https://web.archive.org/web/20170406065247/http://tech.hulu.com/blog/2011/09/19/recommendation-system.html)
[ijcai13.org](http://ijcai13.org/files/tutorial_slides/td3.pdf) | +| Design a tinyurl system like Bitly | [n00tc0d3r.blogspot.com](http://n00tc0d3r.blogspot.com/) | +| Design a chat app like WhatsApp | [highscalability.com](http://highscalability.com/blog/2014/2/26/the-whatsapp-architecture-facebook-bought-for-19-billion.html) +| Design a picture sharing system like Instagram | [highscalability.com](http://highscalability.com/flickr-architecture)
[highscalability.com](http://highscalability.com/blog/2011/12/6/instagram-architecture-14-million-users-terabytes-of-photos.html) | +| Design the Facebook news feed function | [quora.com](http://www.quora.com/What-are-best-practices-for-building-something-like-a-News-Feed)
[quora.com](http://www.quora.com/Activity-Streams/What-are-the-scaling-issues-to-keep-in-mind-while-developing-a-social-network-feed)
[slideshare.net](http://www.slideshare.net/danmckinley/etsy-activity-feeds-architecture) | +| Design the Facebook timeline function | [facebook.com](https://www.facebook.com/note.php?note_id=10150468255628920)
[highscalability.com](http://highscalability.com/blog/2012/1/23/facebook-timeline-brought-to-you-by-the-power-of-denormaliza.html) | +| Design the Facebook chat function | [erlang-factory.com](http://www.erlang-factory.com/upload/presentations/31/EugeneLetuchy-ErlangatFacebook.pdf)
[facebook.com](https://www.facebook.com/note.php?note_id=14218138919&id=9445547199&index=0) | +| Design a graph search function like Facebook's | [facebook.com](https://www.facebook.com/notes/facebook-engineering/under-the-hood-building-out-the-infrastructure-for-graph-search/10151347573598920)
[facebook.com](https://www.facebook.com/notes/facebook-engineering/under-the-hood-indexing-and-ranking-in-graph-search/10151361720763920)
[facebook.com](https://www.facebook.com/notes/facebook-engineering/under-the-hood-the-natural-language-interface-of-graph-search/10151432733048920) | +| Design a content delivery network like CloudFlare | [figshare.com](https://figshare.com/articles/Globally_distributed_content_delivery/6605972) | +| Design a trending topic system like Twitter's | [michael-noll.com](http://www.michael-noll.com/blog/2013/01/18/implementing-real-time-trending-topics-in-storm/)
[snikolov .wordpress.com](http://snikolov.wordpress.com/2012/11/14/early-detection-of-twitter-trends/) | +| Design a random ID generation system | [blog.twitter.com](https://blog.twitter.com/2010/announcing-snowflake)
[github.com](https://github.com/twitter/snowflake/) | +| Return the top k requests during a time interval | [cs.ucsb.edu](https://www.cs.ucsb.edu/sites/default/files/documents/2005-23.pdf)
[wpi.edu](http://davis.wpi.edu/xmdv/docs/EDBT11-diyang.pdf) | +| Design a system that serves data from multiple data centers | [highscalability.com](http://highscalability.com/blog/2009/8/24/how-google-serves-data-from-multiple-datacenters.html) | +| Design an online multiplayer card game | [indieflashblog.com](https://web.archive.org/web/20180929181117/http://www.indieflashblog.com/how-to-create-an-asynchronous-multiplayer-game.html)
[buildnewgames.com](http://buildnewgames.com/real-time-multiplayer/) | +| Design a garbage collection system | [stuffwithstuff.com](http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/)
[washington.edu](http://courses.cs.washington.edu/courses/csep521/07wi/prj/rick.pdf) | +| Design an API rate limiter | [https://stripe.com/blog/](https://stripe.com/blog/rate-limiters) | +| Design a Stock Exchange (like NASDAQ or Binance) | [Jane Street](https://youtu.be/b1e4t2k2KJY)
[Golang Implementation](https://around25.com/blog/building-a-trading-engine-for-a-crypto-exchange/)
[Go Implementation](http://bhomnick.net/building-a-simple-limit-order-in-go/) | +| Add a system design question | [Contribute](#contributing) | + +### Real world architectures + +> Articles on how real world systems are designed. + +

+ +
+ Source: Twitter timelines at scale +

+ +**Don't focus on nitty gritty details for the following articles, instead:** + +* Identify shared principles, common technologies, and patterns within these articles +* Study what problems are solved by each component, where it works, where it doesn't +* Review the lessons learned + +|Type | System | Reference(s) | +|---|---|---| +| Data processing | **MapReduce** - Distributed data processing from Google | [research.google.com](http://static.googleusercontent.com/media/research.google.com/zh-CN/us/archive/mapreduce-osdi04.pdf) | +| Data processing | **Spark** - Distributed data processing from Databricks | [slideshare.net](http://www.slideshare.net/AGrishchenko/apache-spark-architecture) | +| Data processing | **Storm** - Distributed data processing from Twitter | [slideshare.net](http://www.slideshare.net/previa/storm-16094009) | +| | | | +| Data store | **Bigtable** - Distributed column-oriented database from Google | [harvard.edu](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/chang06bigtable.pdf) | +| Data store | **HBase** - Open source implementation of Bigtable | [slideshare.net](http://www.slideshare.net/alexbaranau/intro-to-hbase) | +| Data store | **Cassandra** - Distributed column-oriented database from Facebook | [slideshare.net](http://www.slideshare.net/planetcassandra/cassandra-introduction-features-30103666) +| Data store | **DynamoDB** - Document-oriented database from Amazon | [harvard.edu](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/decandia07dynamo.pdf) | +| Data store | **MongoDB** - Document-oriented database | [slideshare.net](http://www.slideshare.net/mdirolf/introduction-to-mongodb) | +| Data store | **Spanner** - Globally-distributed database from Google | [research.google.com](http://research.google.com/archive/spanner-osdi2012.pdf) | +| Data store | **Memcached** - Distributed memory caching system | [slideshare.net](http://www.slideshare.net/oemebamo/introduction-to-memcached) | +| Data store | **Redis** - Distributed memory caching system with persistence and value types | [slideshare.net](http://www.slideshare.net/dvirsky/introduction-to-redis) | +| | | | +| File system | **Google File System (GFS)** - Distributed file system | [research.google.com](http://static.googleusercontent.com/media/research.google.com/zh-CN/us/archive/gfs-sosp2003.pdf) | +| File system | **Hadoop File System (HDFS)** - Open source implementation of GFS | [apache.org](http://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/HdfsDesign.html) | +| | | | +| Misc | **Chubby** - Lock service for loosely-coupled distributed systems from Google | [research.google.com](http://static.googleusercontent.com/external_content/untrusted_dlcp/research.google.com/en/us/archive/chubby-osdi06.pdf) | +| Misc | **Dapper** - Distributed systems tracing infrastructure | [research.google.com](http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/36356.pdf) +| Misc | **Kafka** - Pub/sub message queue from LinkedIn | [slideshare.net](http://www.slideshare.net/mumrah/kafka-talk-tri-hug) | +| Misc | **Zookeeper** - Centralized infrastructure and services enabling synchronization | [slideshare.net](http://www.slideshare.net/sauravhaloi/introduction-to-apache-zookeeper) | +| | Add an architecture | [Contribute](#contributing) | + +### Company architectures + +| Company | Reference(s) | +|---|---| +| Amazon | [Amazon architecture](http://highscalability.com/amazon-architecture) | +| Cinchcast | [Producing 1,500 hours of audio every day](http://highscalability.com/blog/2012/7/16/cinchcast-architecture-producing-1500-hours-of-audio-every-d.html) | +| DataSift | [Realtime datamining At 120,000 tweets per second](http://highscalability.com/blog/2011/11/29/datasift-architecture-realtime-datamining-at-120000-tweets-p.html) | +| Dropbox | [How we've scaled Dropbox](https://www.youtube.com/watch?v=PE4gwstWhmc) | +| ESPN | [Operating At 100,000 duh nuh nuhs per second](http://highscalability.com/blog/2013/11/4/espns-architecture-at-scale-operating-at-100000-duh-nuh-nuhs.html) | +| Google | [Google architecture](http://highscalability.com/google-architecture) | +| Instagram | [14 million users, terabytes of photos](http://highscalability.com/blog/2011/12/6/instagram-architecture-14-million-users-terabytes-of-photos.html)
[What powers Instagram](http://instagram-engineering.tumblr.com/post/13649370142/what-powers-instagram-hundreds-of-instances) | +| Justin.tv | [Justin.Tv's live video broadcasting architecture](http://highscalability.com/blog/2010/3/16/justintvs-live-video-broadcasting-architecture.html) | +| Facebook | [Scaling memcached at Facebook](https://cs.uwaterloo.ca/~brecht/courses/854-Emerging-2014/readings/key-value/fb-memcached-nsdi-2013.pdf)
[TAO: Facebook’s distributed data store for the social graph](https://cs.uwaterloo.ca/~brecht/courses/854-Emerging-2014/readings/data-store/tao-facebook-distributed-datastore-atc-2013.pdf)
[Facebook’s photo storage](https://www.usenix.org/legacy/event/osdi10/tech/full_papers/Beaver.pdf)
[How Facebook Live Streams To 800,000 Simultaneous Viewers](http://highscalability.com/blog/2016/6/27/how-facebook-live-streams-to-800000-simultaneous-viewers.html) | +| Flickr | [Flickr architecture](http://highscalability.com/flickr-architecture) | +| Mailbox | [From 0 to one million users in 6 weeks](http://highscalability.com/blog/2013/6/18/scaling-mailbox-from-0-to-one-million-users-in-6-weeks-and-1.html) | +| Netflix | [A 360 Degree View Of The Entire Netflix Stack](http://highscalability.com/blog/2015/11/9/a-360-degree-view-of-the-entire-netflix-stack.html)
[Netflix: What Happens When You Press Play?](http://highscalability.com/blog/2017/12/11/netflix-what-happens-when-you-press-play.html) | +| Pinterest | [From 0 To 10s of billions of page views a month](http://highscalability.com/blog/2013/4/15/scaling-pinterest-from-0-to-10s-of-billions-of-page-views-a.html)
[18 million visitors, 10x growth, 12 employees](http://highscalability.com/blog/2012/5/21/pinterest-architecture-update-18-million-visitors-10x-growth.html) | +| Playfish | [50 million monthly users and growing](http://highscalability.com/blog/2010/9/21/playfishs-social-gaming-architecture-50-million-monthly-user.html) | +| PlentyOfFish | [PlentyOfFish architecture](http://highscalability.com/plentyoffish-architecture) | +| Salesforce | [How they handle 1.3 billion transactions a day](http://highscalability.com/blog/2013/9/23/salesforce-architecture-how-they-handle-13-billion-transacti.html) | +| Stack Overflow | [Stack Overflow architecture](http://highscalability.com/blog/2009/8/5/stack-overflow-architecture.html) | +| TripAdvisor | [40M visitors, 200M dynamic page views, 30TB data](http://highscalability.com/blog/2011/6/27/tripadvisor-architecture-40m-visitors-200m-dynamic-page-view.html) | +| Tumblr | [15 billion page views a month](http://highscalability.com/blog/2012/2/13/tumblr-architecture-15-billion-page-views-a-month-and-harder.html) | +| Twitter | [Making Twitter 10000 percent faster](http://highscalability.com/scaling-twitter-making-twitter-10000-percent-faster)
[Storing 250 million tweets a day using MySQL](http://highscalability.com/blog/2011/12/19/how-twitter-stores-250-million-tweets-a-day-using-mysql.html)
[150M active users, 300K QPS, a 22 MB/S firehose](http://highscalability.com/blog/2013/7/8/the-architecture-twitter-uses-to-deal-with-150m-active-users.html)
[Timelines at scale](https://www.infoq.com/presentations/Twitter-Timeline-Scalability)
[Big and small data at Twitter](https://www.youtube.com/watch?v=5cKTP36HVgI)
[Operations at Twitter: scaling beyond 100 million users](https://www.youtube.com/watch?v=z8LU0Cj6BOU)
[How Twitter Handles 3,000 Images Per Second](http://highscalability.com/blog/2016/4/20/how-twitter-handles-3000-images-per-second.html) | +| Uber | [How Uber scales their real-time market platform](http://highscalability.com/blog/2015/9/14/how-uber-scales-their-real-time-market-platform.html)
[Lessons Learned From Scaling Uber To 2000 Engineers, 1000 Services, And 8000 Git Repositories](http://highscalability.com/blog/2016/10/12/lessons-learned-from-scaling-uber-to-2000-engineers-1000-ser.html) | +| WhatsApp | [The WhatsApp architecture Facebook bought for $19 billion](http://highscalability.com/blog/2014/2/26/the-whatsapp-architecture-facebook-bought-for-19-billion.html) | +| YouTube | [YouTube scalability](https://www.youtube.com/watch?v=w5WVu624fY8)
[YouTube architecture](http://highscalability.com/youtube-architecture) | + +### Company engineering blogs + +> Architectures for companies you are interviewing with. +> +> Questions you encounter might be from the same domain. + +* [Airbnb Engineering](http://nerds.airbnb.com/) +* [Atlassian Developers](https://developer.atlassian.com/blog/) +* [AWS Blog](https://aws.amazon.com/blogs/aws/) +* [Bitly Engineering Blog](http://word.bitly.com/) +* [Box Blogs](https://blog.box.com/blog/category/engineering) +* [Cloudera Developer Blog](http://blog.cloudera.com/) +* [Dropbox Tech Blog](https://tech.dropbox.com/) +* [Engineering at Quora](https://www.quora.com/q/quoraengineering) +* [Ebay Tech Blog](http://www.ebaytechblog.com/) +* [Evernote Tech Blog](https://blog.evernote.com/tech/) +* [Etsy Code as Craft](http://codeascraft.com/) +* [Facebook Engineering](https://www.facebook.com/Engineering) +* [Flickr Code](http://code.flickr.net/) +* [Foursquare Engineering Blog](http://engineering.foursquare.com/) +* [GitHub Engineering Blog](https://github.blog/category/engineering) +* [Google Research Blog](http://googleresearch.blogspot.com/) +* [Groupon Engineering Blog](https://engineering.groupon.com/) +* [Heroku Engineering Blog](https://engineering.heroku.com/) +* [Hubspot Engineering Blog](http://product.hubspot.com/blog/topic/engineering) +* [High Scalability](http://highscalability.com/) +* [Instagram Engineering](http://instagram-engineering.tumblr.com/) +* [Intel Software Blog](https://software.intel.com/en-us/blogs/) +* [Jane Street Tech Blog](https://blogs.janestreet.com/category/ocaml/) +* [LinkedIn Engineering](http://engineering.linkedin.com/blog) +* [Microsoft Engineering](https://engineering.microsoft.com/) +* [Microsoft Python Engineering](https://blogs.msdn.microsoft.com/pythonengineering/) +* [Netflix Tech Blog](http://techblog.netflix.com/) +* [Paypal Developer Blog](https://medium.com/paypal-engineering) +* [Pinterest Engineering Blog](https://medium.com/@Pinterest_Engineering) +* [Reddit Blog](http://www.redditblog.com/) +* [Salesforce Engineering Blog](https://developer.salesforce.com/blogs/engineering/) +* [Slack Engineering Blog](https://slack.engineering/) +* [Spotify Labs](https://labs.spotify.com/) +* [Twilio Engineering Blog](http://www.twilio.com/engineering) +* [Twitter Engineering](https://blog.twitter.com/engineering/) +* [Uber Engineering Blog](http://eng.uber.com/) +* [Yahoo Engineering Blog](http://yahooeng.tumblr.com/) +* [Yelp Engineering Blog](http://engineeringblog.yelp.com/) +* [Zynga Engineering Blog](https://www.zynga.com/blogs/engineering) + +#### Source(s) and further reading + +Looking to add a blog? To avoid duplicating work, consider adding your company blog to the following repo: + +* [kilimchoi/engineering-blogs](https://github.com/kilimchoi/engineering-blogs) + +## Under development + +Interested in adding a section or helping complete one in-progress? [Contribute](#contributing)! + +* Distributed computing with MapReduce +* Consistent hashing +* Scatter gather +* [Contribute](#contributing) + +## Credits + +Credits and sources are provided throughout this repo. + +Special thanks to: + +* [Hired in tech](http://www.hiredintech.com/system-design/the-system-design-process/) +* [Cracking the coding interview](https://www.amazon.com/dp/0984782850/) +* [High scalability](http://highscalability.com/) +* [checkcheckzz/system-design-interview](https://github.com/checkcheckzz/system-design-interview) +* [shashank88/system_design](https://github.com/shashank88/system_design) +* [mmcgrana/services-engineering](https://github.com/mmcgrana/services-engineering) +* [System design cheat sheet](https://gist.github.com/vasanthk/485d1c25737e8e72759f) +* [A distributed systems reading list](http://dancres.github.io/Pages/) +* [Cracking the system design interview](http://www.puncsky.com/blog/2016-02-13-crack-the-system-design-interview) + +## Contact info + +Feel free to contact me to discuss any issues, questions, or comments. + +My contact info can be found on my [GitHub page](https://github.com/donnemartin). + +## License + +*I am providing code and resources in this repository to you under an open source license. Because this is my personal repository, the license you receive to my code and resources is from me and not my employer (Facebook).* + + Copyright 2017 Donne Martin + + Creative Commons Attribution 4.0 International License (CC BY 4.0) + + http://creativecommons.org/licenses/by/4.0/ From c86d325ccfd313f473b8aaa1ffb90da167effafa Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:23:01 +0400 Subject: [PATCH 02/30] az: block: Motivation --- README-az-AZ.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README-az-AZ.md b/README-az-AZ.md index 7f41e7b..e77b789 100644 --- a/README-az-AZ.md +++ b/README-az-AZ.md @@ -9,11 +9,11 @@

-## Motivation +## Motivasiya -> Learn how to design large-scale systems. +> Böyük miqyaslı sistemlərin dizaynlaşdırılmasının öyrənilməsi. > -> Prep for the system design interview. +> Sistem dizaynı üzrə müsahibəyə hazırlanması. ### Learn how to design large-scale systems From 3a7b137fd325e9dce97b227c79bb7514811dd6aa Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:23:13 +0400 Subject: [PATCH 03/30] az: block: Learn how to design large-scale systems --- README-az-AZ.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README-az-AZ.md b/README-az-AZ.md index e77b789..339882b 100644 --- a/README-az-AZ.md +++ b/README-az-AZ.md @@ -15,13 +15,13 @@ > > Sistem dizaynı üzrə müsahibəyə hazırlanması. -### Learn how to design large-scale systems +### Böyük miqyaslı sistemlərin dizaynlaşdırılmasının öyrənilməsi. -Learning how to design scalable systems will help you become a better engineer. +Böyük miqyaslı sistemlərin dizaynının öyrənilməsi sizə daha yaxşı mühəndis olmağa kömək edəcək. -System design is a broad topic. There is a **vast amount of resources scattered throughout the web** on system design principles. +Sistem dizaynı geniş mövzudur. Bu mövzunun prinsipləri üzrə internetdə səpələnmiş formada **böyük miqdarda resurs mövcuddur**. -This repo is an **organized collection** of resources to help you learn how to build systems at scale. +Bu repo, bele tip sistemləri qurmağı öyrənməyə kömək etmək üçün **təşkil edilmiş resurslar toplusudur**. ### Learn from the open source community From 7127bf1e66967c51af44e3cfcd233e8da0042ea3 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:23:46 +0400 Subject: [PATCH 04/30] az: block: Learn from the open source community --- README-az-AZ.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README-az-AZ.md b/README-az-AZ.md index 339882b..1f0299b 100644 --- a/README-az-AZ.md +++ b/README-az-AZ.md @@ -23,11 +23,13 @@ Sistem dizaynı geniş mövzudur. Bu mövzunun prinsipləri üzrə internetdə s Bu repo, bele tip sistemləri qurmağı öyrənməyə kömək etmək üçün **təşkil edilmiş resurslar toplusudur**. -### Learn from the open source community +### Açıq mənbə (open source) icmasından öyrənin -This is a continually updated, open source project. +Bu daim yenilənən, open source layihədir. -[Contributions](#contributing) are welcome! +[Contributions](#contributing) xoş gördük. + +[//]: #Help (Contributions) ### Prep for the system design interview From 414515fa10e76acc92bcef758e7ff60cf49e9d0b Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:24:43 +0400 Subject: [PATCH 05/30] az: block: Prep for the system design interview --- README-az-AZ.md | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/README-az-AZ.md b/README-az-AZ.md index 1f0299b..30382cf 100644 --- a/README-az-AZ.md +++ b/README-az-AZ.md @@ -31,19 +31,22 @@ Bu daim yenilənən, open source layihədir. [//]: #Help (Contributions) -### Prep for the system design interview +### Sistem dizaynı üzrə müsahibəyə hazırlanması. -In addition to coding interviews, system design is a **required component** of the **technical interview process** at many tech companies. +Bir çox texnoloji şirkətlərin müsahibələrində kodlaşdırmaqla yanaşı, sistem dizaynı **texniki müsahibə prosesi**nin **tələb olunan komponent**lərindən biridir. -**Practice common system design interview questions** and **compare** your results with **sample solutions**: discussions, code, and diagrams. +**Sistem dizaynı üzrə ümumi müsahibə suallarını tətbiq edin** və nəticələrinizi **nümunə həllər** ilə **müqayisə edin**: müzakirələr, kodlar və diaqramlar. -Additional topics for interview prep: +[//]: #Help (**Practice common system design interview questions** and **compare** your results with **sample solutions**: discussions, code, and diagrams.) -* [Study guide](#study-guide) -* [How to approach a system design interview question](#how-to-approach-a-system-design-interview-question) -* [System design interview questions, **with solutions**](#system-design-interview-questions-with-solutions) -* [Object-oriented design interview questions, **with solutions**](#object-oriented-design-interview-questions-with-solutions) -* [Additional system design interview questions](#additional-system-design-interview-questions) + +Müsahibəyə hazırlaşmaq üçün əlavə mövzular: + +* [Tədris bələdçisi](#study-guide) +* [Sistem dizaynı ilə bağlı müsahibə sualına necə yanaşmaq olar](#how-to-approach-a-system-design-interview-question) +* [Sistem dizaynı ilə bağlı müsahibə sualları, **həllərlə birlikdə**](#system-design-interview-questions-with-solutions) +* [Obyekt yönümlü dizayn müsahibə sualları, **həllərlə birlikdə**](#object-oriented-design-interview-questions-with-solutions) +* [Əlavə sistem dizaynı müsahibə sualları](#additional-system-design-interview-questions) ## Anki flashcards @@ -52,13 +55,13 @@ Additional topics for interview prep:

-The provided [Anki flashcard decks](https://apps.ankiweb.net/) use spaced repetition to help you retain key system design concepts. +Təqdim edilən [Anki flashcard decks](https://apps.ankiweb.net/) əsas sistem dizayn konsepsiyalarını saxlamağınıza kömək etmək üçün təkrarlardan istifadə edir. * [System design deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design.apkg) * [System design exercises deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/System%20Design%20Exercises.apkg) * [Object oriented design exercises deck](https://github.com/donnemartin/system-design-primer/tree/master/resources/flash_cards/OO%20Design.apkg) -Great for use while on-the-go. +Oxuduqca paralel olaraq istifadə etmək məsləhətdir. ### Coding Resource: Interactive Coding Challenges From 38d9b090a2ea5136dfa612af218f3d8fcc078990 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:25:35 +0400 Subject: [PATCH 06/30] az: block: Contributing --- README-az-AZ.md | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/README-az-AZ.md b/README-az-AZ.md index 30382cf..5c4c351 100644 --- a/README-az-AZ.md +++ b/README-az-AZ.md @@ -63,35 +63,38 @@ Təqdim edilən [Anki flashcard decks](https://apps.ankiweb.net/) əsas sistem d Oxuduqca paralel olaraq istifadə etmək məsləhətdir. -### Coding Resource: Interactive Coding Challenges +### Kodlaşdırma Resursu: İnteraktiv Kodlaşdırma Problemləri -Looking for resources to help you prep for the [**Coding Interview**](https://github.com/donnemartin/interactive-coding-challenges)? +[**Kodlaşdırma Müsahibəsinə**](https://github.com/donnemartin/interactive-coding-challenges) hazırlaşmağınıza kömək edəcək resurslar axtarırsınız?


-Check out the sister repo [**Interactive Coding Challenges**](https://github.com/donnemartin/interactive-coding-challenges), which contains an additional Anki deck: +Bu repo ilə əlaqəli qardaş repo [**İnteraktiv Kodlaşdırma Problemləri**](https://github.com/donnemartin/interactive-coding-challenges) ilə tanış olun hansı ki, əlavə Anki deck-i məlumatlarını tapa bilərsiniz: * [Coding deck](https://github.com/donnemartin/interactive-coding-challenges/tree/master/anki_cards/Coding.apkg) ## Contributing -> Learn from the community. +[//]: #Help (Contributing) -Feel free to submit pull requests to help: +> Cəmiyyətdən öyrənin. -* Fix errors -* Improve sections -* Add new sections -* [Translate](https://github.com/donnemartin/system-design-primer/issues/28) +Kömək etmək üçün pull requests göndərməkdən çəkinməyin: -Content that needs some polishing is placed [under development](#under-development). +* Səhvləri düzəldin +* Bölmələri təkmilləşdirin +* Yeni bölmələr əlavə edin +* [Tərcümə](https://github.com/donnemartin/system-design-primer/issues/28) + +Müəyyən qədər dəyişikliyə ehtiyacı olan hissələri [inkişaf mərhələsinə](#under-development) yerləşdirilir. Review the [Contributing Guidelines](CONTRIBUTING.md). ## Index of system design topics +[//]: #Help (Review the Contributing Guidelines) > Summaries of various system design topics, including pros and cons. **Everything is a trade-off**. > From 21356772910e25fe5fefc8fd971b8cb6e881e74c Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:25:56 +0400 Subject: [PATCH 07/30] az: block: Index of system design topics --- README-az-AZ.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README-az-AZ.md b/README-az-AZ.md index 5c4c351..2a408cc 100644 --- a/README-az-AZ.md +++ b/README-az-AZ.md @@ -93,12 +93,14 @@ Müəyyən qədər dəyişikliyə ehtiyacı olan hissələri [inkişaf mərhəl Review the [Contributing Guidelines](CONTRIBUTING.md). -## Index of system design topics [//]: #Help (Review the Contributing Guidelines) -> Summaries of various system design topics, including pros and cons. **Everything is a trade-off**. + +## Sistem dizaynı mövzularının indeksi + +> Müxtəlif növ sistem dizayn mövzularının xülasəsi, müsbət və mənfi cəhətlərilə birlikdə. **Hər şey bir mübadilədir**. > -> Each section contains links to more in-depth resources. +> Hər bölmədə ki, qeyd edilən link-lər vasitəsilə daha dərin/ətraflı məlumatlar tapa bilərsiniz.

From bccc9bcbb3d29d363879dedfbd97ef440ffdda8c Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:30:03 +0400 Subject: [PATCH 08/30] az: fix: rename to IETF language tag format --- README-az-AZ.md => README-az-Latn.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README-az-AZ.md => README-az-Latn.md (100%) diff --git a/README-az-AZ.md b/README-az-Latn.md similarity index 100% rename from README-az-AZ.md rename to README-az-Latn.md From a1a9d996c4a0003652ed5e790e43da22623f7ae4 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 13:35:01 +0400 Subject: [PATCH 09/30] az: add azerbaijan to top of english and az. (If accept I'll add it to other too. --- README-az-Latn.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 2a408cc..f7b6cbc 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -1,4 +1,4 @@ -*[English](README.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة‎](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-design-primer/issues/40) ∙ [Deutsch](https://github.com/donnemartin/system-design-primer/issues/186) ∙ [ελληνικά](https://github.com/donnemartin/system-design-primer/issues/130) ∙ [עברית](https://github.com/donnemartin/system-design-primer/issues/272) ∙ [Italiano](https://github.com/donnemartin/system-design-primer/issues/104) ∙ [한국어](https://github.com/donnemartin/system-design-primer/issues/102) ∙ [فارسی](https://github.com/donnemartin/system-design-primer/issues/110) ∙ [Polski](https://github.com/donnemartin/system-design-primer/issues/68) ∙ [русский язык](https://github.com/donnemartin/system-design-primer/issues/87) ∙ [Español](https://github.com/donnemartin/system-design-primer/issues/136) ∙ [ภาษาไทย](https://github.com/donnemartin/system-design-primer/issues/187) ∙ [Türkçe](https://github.com/donnemartin/system-design-primer/issues/39) ∙ [tiếng Việt](https://github.com/donnemartin/system-design-primer/issues/127) ∙ [Français](https://github.com/donnemartin/system-design-primer/issues/250) | [Add Translation](https://github.com/donnemartin/system-design-primer/issues/28)* +*[English](README.md) ∙ [Azərbaycanca](README-az-Latn.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة‎](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-design-primer/issues/40) ∙ [Deutsch](https://github.com/donnemartin/system-design-primer/issues/186) ∙ [ελληνικά](https://github.com/donnemartin/system-design-primer/issues/130) ∙ [עברית](https://github.com/donnemartin/system-design-primer/issues/272) ∙ [Italiano](https://github.com/donnemartin/system-design-primer/issues/104) ∙ [한국어](https://github.com/donnemartin/system-design-primer/issues/102) ∙ [فارسی](https://github.com/donnemartin/system-design-primer/issues/110) ∙ [Polski](https://github.com/donnemartin/system-design-primer/issues/68) ∙ [русский язык](https://github.com/donnemartin/system-design-primer/issues/87) ∙ [Español](https://github.com/donnemartin/system-design-primer/issues/136) ∙ [ภาษาไทย](https://github.com/donnemartin/system-design-primer/issues/187) ∙ [Türkçe](https://github.com/donnemartin/system-design-primer/issues/39) ∙ [tiếng Việt](https://github.com/donnemartin/system-design-primer/issues/127) ∙ [Français](https://github.com/donnemartin/system-design-primer/issues/250) | [Add Translation](https://github.com/donnemartin/system-design-primer/issues/28)* **Help [translate](TRANSLATIONS.md) this guide!** diff --git a/README.md b/README.md index 7f41e7b..95bd44d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -*[English](README.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة‎](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-design-primer/issues/40) ∙ [Deutsch](https://github.com/donnemartin/system-design-primer/issues/186) ∙ [ελληνικά](https://github.com/donnemartin/system-design-primer/issues/130) ∙ [עברית](https://github.com/donnemartin/system-design-primer/issues/272) ∙ [Italiano](https://github.com/donnemartin/system-design-primer/issues/104) ∙ [한국어](https://github.com/donnemartin/system-design-primer/issues/102) ∙ [فارسی](https://github.com/donnemartin/system-design-primer/issues/110) ∙ [Polski](https://github.com/donnemartin/system-design-primer/issues/68) ∙ [русский язык](https://github.com/donnemartin/system-design-primer/issues/87) ∙ [Español](https://github.com/donnemartin/system-design-primer/issues/136) ∙ [ภาษาไทย](https://github.com/donnemartin/system-design-primer/issues/187) ∙ [Türkçe](https://github.com/donnemartin/system-design-primer/issues/39) ∙ [tiếng Việt](https://github.com/donnemartin/system-design-primer/issues/127) ∙ [Français](https://github.com/donnemartin/system-design-primer/issues/250) | [Add Translation](https://github.com/donnemartin/system-design-primer/issues/28)* +*[English](README.md) ∙ [Azərbaycanca](README-az-Latn.md) ∙ [日本語](README-ja.md) ∙ [简体中文](README-zh-Hans.md) ∙ [繁體中文](README-zh-TW.md) | [العَرَبِيَّة‎](https://github.com/donnemartin/system-design-primer/issues/170) ∙ [বাংলা](https://github.com/donnemartin/system-design-primer/issues/220) ∙ [Português do Brasil](https://github.com/donnemartin/system-design-primer/issues/40) ∙ [Deutsch](https://github.com/donnemartin/system-design-primer/issues/186) ∙ [ελληνικά](https://github.com/donnemartin/system-design-primer/issues/130) ∙ [עברית](https://github.com/donnemartin/system-design-primer/issues/272) ∙ [Italiano](https://github.com/donnemartin/system-design-primer/issues/104) ∙ [한국어](https://github.com/donnemartin/system-design-primer/issues/102) ∙ [فارسی](https://github.com/donnemartin/system-design-primer/issues/110) ∙ [Polski](https://github.com/donnemartin/system-design-primer/issues/68) ∙ [русский язык](https://github.com/donnemartin/system-design-primer/issues/87) ∙ [Español](https://github.com/donnemartin/system-design-primer/issues/136) ∙ [ภาษาไทย](https://github.com/donnemartin/system-design-primer/issues/187) ∙ [Türkçe](https://github.com/donnemartin/system-design-primer/issues/39) ∙ [tiếng Việt](https://github.com/donnemartin/system-design-primer/issues/127) ∙ [Français](https://github.com/donnemartin/system-design-primer/issues/250) | [Add Translation](https://github.com/donnemartin/system-design-primer/issues/28)* **Help [translate](TRANSLATIONS.md) this guide!** From 46f53eac6c8300955fecea0463c1335c64dba109 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 14:10:18 +0400 Subject: [PATCH 10/30] refactor --- README-az-Latn.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index f7b6cbc..b2c6e57 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -95,7 +95,6 @@ Review the [Contributing Guidelines](CONTRIBUTING.md). [//]: #Help (Review the Contributing Guidelines) - ## Sistem dizaynı mövzularının indeksi > Müxtəlif növ sistem dizayn mövzularının xülasəsi, müsbət və mənfi cəhətlərilə birlikdə. **Hər şey bir mübadilədir**. From ed82f9a4e19935cc5d3f1716443837833af62a8d Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 14:11:56 +0400 Subject: [PATCH 11/30] az: todo: for translation help --- README-az-Latn.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index b2c6e57..c580372 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -29,7 +29,7 @@ Bu daim yenilənən, open source layihədir. [Contributions](#contributing) xoş gördük. -[//]: #Help (Contributions) +[//]: # (ToDo: Help on translation: Contributions) ### Sistem dizaynı üzrə müsahibəyə hazırlanması. @@ -37,7 +37,7 @@ Bir çox texnoloji şirkətlərin müsahibələrində kodlaşdırmaqla yanaşı, **Sistem dizaynı üzrə ümumi müsahibə suallarını tətbiq edin** və nəticələrinizi **nümunə həllər** ilə **müqayisə edin**: müzakirələr, kodlar və diaqramlar. -[//]: #Help (**Practice common system design interview questions** and **compare** your results with **sample solutions**: discussions, code, and diagrams.) +[//]: # (ToDo: Help on translation: **Practice common system design interview questions** and **compare** your results with **sample solutions**: discussions, code, and diagrams.) Müsahibəyə hazırlaşmaq üçün əlavə mövzular: @@ -78,10 +78,12 @@ Bu repo ilə əlaqəli qardaş repo [**İnteraktiv Kodlaşdırma Problemləri**] ## Contributing -[//]: #Help (Contributing) +[//]: # (ToDo: Help on translation: Contributing) > Cəmiyyətdən öyrənin. +[//]: # (ToDo: Help on translation: Community) + Kömək etmək üçün pull requests göndərməkdən çəkinməyin: * Səhvləri düzəldin @@ -93,7 +95,7 @@ Müəyyən qədər dəyişikliyə ehtiyacı olan hissələri [inkişaf mərhəl Review the [Contributing Guidelines](CONTRIBUTING.md). -[//]: #Help (Review the Contributing Guidelines) +[//]: # (ToDo: Help on translation: Review the Contributing Guidelines) ## Sistem dizaynı mövzularının indeksi From c4ba9ce881b87a6b6a80aec0eb47cdf039eb97f1 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 14:13:13 +0400 Subject: [PATCH 12/30] az: todo: for update later --- README-az-Latn.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-az-Latn.md b/README-az-Latn.md index c580372..c1f240e 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -108,6 +108,7 @@ Review the [Contributing Guidelines](CONTRIBUTING.md).

+[//]: # (ToDo: Update later when finish translation...) * [System design topics: start here](#system-design-topics-start-here) * [Step 1: Review the scalability video lecture](#step-1-review-the-scalability-video-lecture) * [Step 2: Review the scalability article](#step-2-review-the-scalability-article) From 11196f2a2165071e84c7227638e6dbd5742a815a Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:07:32 +0400 Subject: [PATCH 13/30] az: block: Study guide --- README-az-Latn.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index c1f240e..bf58241 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -191,31 +191,31 @@ Review the [Contributing Guidelines](CONTRIBUTING.md). * [Contact info](#contact-info) * [License](#license) -## Study guide +## Öyrənmə qaydası -> Suggested topics to review based on your interview timeline (short, medium, long). +> Müsahibə qrafikinizə əsasən nəzərdən keçirmək üçün təklif olunan mövzular (qısa, orta, uzun). ![Imgur](images/OfVllex.png) -**Q: For interviews, do I need to know everything here?** +**Sual: Müsahibə üçün mən burdakı bütün materialı bilməliyəm?** -**A: No, you don't need to know everything here to prepare for the interview**. +**Cavab: Yox, Müsahibə üçün burdakı bütün materialı əzbər bilmək lazım deyil**. -What you are asked in an interview depends on variables such as: +Sizdən müsahibədə soruşulanlar aşağıdakı kimi şərtlərdən asılıdır: -* How much experience you have -* What your technical background is -* What positions you are interviewing for -* Which companies you are interviewing with -* Luck +* Nə qədər təcrübəniz var +* Texniki biliyiniz nə qədərdir +* Hansı vəzifə üçün müsahibə alırsınız +* Hansı şirkətdə müsahibə alırsınız +* Bəxt -More experienced candidates are generally expected to know more about system design. Architects or team leads might be expected to know more than individual contributors. Top tech companies are likely to have one or more design interview rounds. +Daha təcrübəli namizədlərin ümumiyyətlə sistem dizaynı haqqında daha çox məlumatlı olması gözlənilir. Architect-lər və ya Team Lead-lar fərdi contributor daha çox şey bilməsi gözlənilə bilər. Ən yaxşı texnoloji şirkətləri çox güman ki, bir və ya daha çox dizayn müsahibə mərhələsi keçirəcəklər. -Start broad and go deeper in a few areas. It helps to know a little about various key system design topics. Adjust the following guide based on your timeline, experience, what positions you are interviewing for, and which companies you are interviewing with. +Geniş başlayın və bir neçə sahədə daha dərinə gedin. Bu, müxtəlif əsas sistem dizayn mövzuları haqqında bir az bilməyə kömək edir. Aşağıdakı bələdçini vaxt cədvəlinizə, təcrübənizə, hansı vəzifələr üçün müsahibə aldığınıza və hansı şirkətlərlə müsahibə etdiyinizə əsasən tənzimləyin. -* **Short timeline** - Aim for **breadth** with system design topics. Practice by solving **some** interview questions. -* **Medium timeline** - Aim for **breadth** and **some depth** with system design topics. Practice by solving **many** interview questions. -* **Long timeline** - Aim for **breadth** and **more depth** with system design topics. Practice by solving **most** interview questions. +* **Qısa müddətli** - Sistem dizayn mövzuları ilə **genişliyə** hədəfləyin. Müsahibə suallarını **bəzilərini** həll etməklə məşq edin. +* **Orta müddətli** - Sistem dizaynı mövzuları ilə **genişliyə** və **bir qədər dərinliyə** hədəflənin. **Çoxlu sayda** müsahibə suallarını həll etməklə məşq edin. +* **Uzun müddətli** - Sistem dizaynı mövzuları ilə **genişliyə** və **daha çox dərinliyə** hədəfləyin. Müsahibə suallarını **əksəriyyətini** həll etməklə məşq edin. | | Short | Medium | Long | |---|---|---|---| From 0d787983f50c85ff1b45318639a70abe36d41ef2 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:07:45 +0400 Subject: [PATCH 14/30] az: todo: update later --- README-az-Latn.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README-az-Latn.md b/README-az-Latn.md index bf58241..23830ad 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -217,6 +217,7 @@ Geniş başlayın və bir neçə sahədə daha dərinə gedin. Bu, müxtəlif ə * **Orta müddətli** - Sistem dizaynı mövzuları ilə **genişliyə** və **bir qədər dərinliyə** hədəflənin. **Çoxlu sayda** müsahibə suallarını həll etməklə məşq edin. * **Uzun müddətli** - Sistem dizaynı mövzuları ilə **genişliyə** və **daha çox dərinliyə** hədəfləyin. Müsahibə suallarını **əksəriyyətini** həll etməklə məşq edin. +[//]: # (ToDo: Update later When finish translation...) | | Short | Medium | Long | |---|---|---|---| | Read through the [System design topics](#index-of-system-design-topics) to get a broad understanding of how systems work | :+1: | :+1: | :+1: | From d32ce426f04707d84567abca17bab255df6429fd Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:12:07 +0400 Subject: [PATCH 15/30] az: block: How to approach a system design interview question --- README-az-Latn.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 23830ad..582b1ba 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -228,13 +228,13 @@ Geniş başlayın və bir neçə sahədə daha dərinə gedin. Bu, müxtəlif ə | Work through [Object-oriented design interview questions with solutions](#object-oriented-design-interview-questions-with-solutions) | Some | Many | Most | | Review [Additional system design interview questions](#additional-system-design-interview-questions) | Some | Many | Most | -## How to approach a system design interview question +## Sistem dizaynı ilə bağlı müsahibə sualına necə yanaşmaq olar -> How to tackle a system design interview question. +> Sistem dizaynı ilə bağlı müsahibə sualını necə həll etmək olar. -The system design interview is an **open-ended conversation**. You are expected to lead it. +Sistem dizaynı üzrə müsahibə **açıq söhbətdir**. Sizə rəhbərlik edəcəyiniz gözlənilir. -You can use the following steps to guide the discussion. To help solidify this process, work through the [System design interview questions with solutions](#system-design-interview-questions-with-solutions) section using the following steps. +Müzakirəyə rəhbərlik etmək üçün aşağıdakı addımlardan istifadə edə bilərsiniz. Bu prosesi möhkəmlətməyə kömək etmək üçün aşağıdakı addımlardan istifadə edərək həllər bölməsi ilə [Həlləri olan sistem dizaynı müsahibə sualları](#həlləri-olan-sistem-dizaynı-müsahibə-sualları) üzərində işləyin. ### Step 1: Outline use cases, constraints, and assumptions From 5792908e02a83c926c84d95873523530e7a1e146 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:13:28 +0400 Subject: [PATCH 16/30] az: block: Step 1: Outline use cases, constraints, and assumptions --- README-az-Latn.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 582b1ba..a6c2035 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -236,18 +236,18 @@ Sistem dizaynı üzrə müsahibə **açıq söhbətdir**. Sizə rəhbərlik edə Müzakirəyə rəhbərlik etmək üçün aşağıdakı addımlardan istifadə edə bilərsiniz. Bu prosesi möhkəmlətməyə kömək etmək üçün aşağıdakı addımlardan istifadə edərək həllər bölməsi ilə [Həlləri olan sistem dizaynı müsahibə sualları](#həlləri-olan-sistem-dizaynı-müsahibə-sualları) üzərində işləyin. -### Step 1: Outline use cases, constraints, and assumptions +### Addım 1: İstifadə hallarını, məhdudiyyətləri və fərziyyələri təsvir edin -Gather requirements and scope the problem. Ask questions to clarify use cases and constraints. Discuss assumptions. +Tələbləri toplayın və problemi əhatə edin. İstifadə hallarını və məhdudiyyətləri aydınlaşdırmaq üçün suallar verin. Fərziyyələri müzakirə edin. -* Who is going to use it? -* How are they going to use it? -* How many users are there? -* What does the system do? -* What are the inputs and outputs of the system? -* How much data do we expect to handle? -* How many requests per second do we expect? -* What is the expected read to write ratio? +* Kim istifadə edəcək? +* Ondan necə istifadə edəcəklər? +* Neçə istifadəçi var? +* Sistem nə edir? +* Sistemin giriş və çıxışları hansılardır? +* Nə qədər məlumatı idarə etməyi gözləyirik? +* Biz saniyədə neçə sorğu gözləyirik? +* Gözlənilən oxu-yazma nisbəti nədir? ### Step 2: Create a high level design From 68bab48a0e5ba78538b41b157daf869d372c3bec Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:14:41 +0400 Subject: [PATCH 17/30] az: block: Step 2: Create a high level design --- README-az-Latn.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index a6c2035..26fffed 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -249,12 +249,12 @@ Tələbləri toplayın və problemi əhatə edin. İstifadə hallarını və mə * Biz saniyədə neçə sorğu gözləyirik? * Gözlənilən oxu-yazma nisbəti nədir? -### Step 2: Create a high level design +### Addım 2: Yüksək səviyyəli dizayn yaradın -Outline a high level design with all important components. +Bütün vacib komponentlər daxil olmaq şərtilə tərtib etdiyiniz dizaynı təsvir edin. -* Sketch the main components and connections -* Justify your ideas +* Əsas komponentləri və birləşmələri eskiz edin +* Fikirlərinizi əsaslandırın ### Step 3: Design core components From 1bd237fded09143e9ca303a91dda04115a52a999 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:18:47 +0400 Subject: [PATCH 18/30] az: block: Step 3: Design core components --- README-az-Latn.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 26fffed..bc1e17b 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -256,18 +256,18 @@ Bütün vacib komponentlər daxil olmaq şərtilə tərtib etdiyiniz dizaynı t * Əsas komponentləri və birləşmələri eskiz edin * Fikirlərinizi əsaslandırın -### Step 3: Design core components +### Addım 3: Əsas komponentləri dizayn edin -Dive into details for each core component. For example, if you were asked to [design a url shortening service](solutions/system_design/pastebin/README.md), discuss: +Hər bir əsas komponenti ətraflı izzah etməyə başlayın. Məsələn, sizdən [url qısaldıcı xidmət](solutions/system_design/pastebin/README.md) dizayn etmək istənilsə, müzakirə edin: * Generating and storing a hash of the full url - * [MD5](solutions/system_design/pastebin/README.md) and [Base62](solutions/system_design/pastebin/README.md) - * Hash collisions - * SQL or NoSQL - * Database schema -* Translating a hashed url to the full url - * Database lookup -* API and object-oriented design + * [MD5](solutions/system_design/pastebin/README.md) və [Base62](solutions/system_design/pastebin/README.md) + * Xeş toqquşmaları (Hash collision) + * SQL va ya NoSQL + * Məlumatlar bazası sxeması (Database schema) +* Hash-lənmiş url-in tam url-ə yönləndirilməsi + * Database axtarışı +* API və obyekt yönümlü dizayn ### Step 4: Scale the design From 650f5f13ea9d06b1a7f879912409823dc267057a Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:21:49 +0400 Subject: [PATCH 19/30] az: block: Step 4: Scale the design --- README-az-Latn.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index bc1e17b..b536ebd 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -269,16 +269,16 @@ Hər bir əsas komponenti ətraflı izzah etməyə başlayın. Məsələn, sizd * Database axtarışı * API və obyekt yönümlü dizayn -### Step 4: Scale the design +### Addım 4: Dizaynı genişləndirin -Identify and address bottlenecks, given the constraints. For example, do you need the following to address scalability issues? +Məhdudiyyətləri nəzərə alaraq problemləri müəyyənləşdirin və həll edin. Məsələn, miqyaslılıq problemlərini həll etmək üçün sizə aşağıdakılar lazımdırmı? * Load balancer * Horizontal scaling * Caching -* Database sharding +* Database parçalanması (Database sharding) -Discuss potential solutions and trade-offs. Everything is a trade-off. Address bottlenecks using [principles of scalable system design](#index-of-system-design-topics). +Potensial həll yollarını və güzəştləri müzakirə edin. Hər şey bir mübadilədir. [Ölçəklənən sistem dizaynı prinsiplərindən](#sistem-dizaynı-mövzularının-indeksi) istifadə edərək, darboğazları aradan qaldırın ### Back-of-the-envelope calculations From 440c5877d5c164e7d58924b45738f9897ea712f0 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:27:28 +0400 Subject: [PATCH 20/30] az: block: Back-of-the-envelope calculations --- README-az-Latn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index b536ebd..a35fb8f 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -280,9 +280,9 @@ Məhdudiyyətləri nəzərə alaraq problemləri müəyyənləşdirin və həll Potensial həll yollarını və güzəştləri müzakirə edin. Hər şey bir mübadilədir. [Ölçəklənən sistem dizaynı prinsiplərindən](#sistem-dizaynı-mövzularının-indeksi) istifadə edərək, darboğazları aradan qaldırın -### Back-of-the-envelope calculations +### Back-of-the-envelope hesablamaları -You might be asked to do some estimates by hand. Refer to the [Appendix](#appendix) for the following resources: +Sizdən bəzi təxminləri əl ilə etməyiniz xahiş oluna bilər. Aşağıdakı mənbələr üçün [Əlavələrə](#appendix) baxın: * [Use back of the envelope calculations](http://highscalability.com/blog/2011/1/26/google-pro-tip-use-back-of-the-envelope-calculations-to-choo.html) * [Powers of two table](#powers-of-two-table) From 8a744e825200bdb9ac8aba3d764b42bc22f28305 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:28:02 +0400 Subject: [PATCH 21/30] az: block: Source(s) and further reading --- README-az-Latn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index a35fb8f..2e9ad78 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -288,9 +288,9 @@ Sizdən bəzi təxminləri əl ilə etməyiniz xahiş oluna bilər. Aşağıdak * [Powers of two table](#powers-of-two-table) * [Latency numbers every programmer should know](#latency-numbers-every-programmer-should-know) -### Source(s) and further reading +### Mənbə(lər) və əlavə oxu -Check out the following links to get a better idea of what to expect: +Nə gözlədiyiniz barədə daha yaxşı fikir əldə etmək üçün aşağıdakı linklərə baxın: * [How to ace a systems design interview](https://www.palantir.com/2011/10/how-to-rock-a-systems-design-interview/) * [The system design interview](http://www.hiredintech.com/system-design) From 33b81773e73b3366b9dbc7649160c6b7e9008306 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:33:49 +0400 Subject: [PATCH 22/30] az: block: System design interview questions with solutions --- README-az-Latn.md | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 2e9ad78..68c0362 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -297,12 +297,13 @@ Nə gözlədiyiniz barədə daha yaxşı fikir əldə etmək üçün aşağıdak * [Intro to Architecture and Systems Design Interviews](https://www.youtube.com/watch?v=ZgdS0EUmn70) * [System design template](https://leetcode.com/discuss/career/229177/My-System-Design-Template) -## System design interview questions with solutions +## Həlləri olan sistem dizaynı müsahibə sualları -> Common system design interview questions with sample discussions, code, and diagrams. +> Nümunə müzakirələr, kodlar və diaqramlarla ümumi sistem dizaynı müsahibə sualları. > -> Solutions linked to content in the `solutions/` folder. +> Həlllər `solutions/` qovluğundakı məzmunla əlaqələndirilir. +[//]: # (ToDo: Update later When finish translation...) | Question | | |---|---| | Design Pastebin.com (or Bit.ly) | [Solution](solutions/system_design/pastebin/README.md) | @@ -315,51 +316,51 @@ Nə gözlədiyiniz barədə daha yaxşı fikir əldə etmək üçün aşağıdak | Design a system that scales to millions of users on AWS | [Solution](solutions/system_design/scaling_aws/README.md) | | Add a system design question | [Contribute](#contributing) | -### Design Pastebin.com (or Bit.ly) +### Pastebin.com (və Bit.ly) dizaynı [View exercise and solution](solutions/system_design/pastebin/README.md) ![Imgur](images/4edXG0T.png) -### Design the Twitter timeline and search (or Facebook feed and search) +### Twitter vaxt qrafikini və axtarışı dizaynı (və ya Facebook lenti və axtarışı) -[View exercise and solution](solutions/system_design/twitter/README.md) +[Tapşırıq və həll yoluna baxın](solutions/system_design/twitter/README.md) ![Imgur](images/jrUBAF7.png) -### Design a web crawler +### web crawler dizaynı -[View exercise and solution](solutions/system_design/web_crawler/README.md) +[Məşq və həll yoluna baxın](solutions/system_design/web_crawler/README.md) ![Imgur](images/bWxPtQA.png) -### Design Mint.com +### Mint.com dizaynı -[View exercise and solution](solutions/system_design/mint/README.md) +[Məşq və həll yoluna baxın](solutions/system_design/mint/README.md) ![Imgur](images/V5q57vU.png) -### Design the data structures for a social network +### Sosial şəbəkə üçün data structure dizaynı -[View exercise and solution](solutions/system_design/social_graph/README.md) +[Məşq və həll yoluna baxın](solutions/system_design/social_graph/README.md) ![Imgur](images/cdCv5g7.png) -### Design a key-value store for a search engine +### search engine üçün key-value store dizaynı -[View exercise and solution](solutions/system_design/query_cache/README.md) +[Məşq və həll yoluna baxın](solutions/system_design/query_cache/README.md) ![Imgur](images/4j99mhe.png) -### Design Amazon's sales ranking by category feature +### Kateqoriya xüsusiyyətinə görə Amazonun satış sıralamasını dizaynı -[View exercise and solution](solutions/system_design/sales_rank/README.md) +[Məşq və həll yoluna baxın](solutions/system_design/sales_rank/README.md) ![Imgur](images/MzExP06.png) -### Design a system that scales to millions of users on AWS +### AWS-də milyonlarla istifadəçini əhatə edən sistem dizaynı -[View exercise and solution](solutions/system_design/scaling_aws/README.md) +[Məşq və həll yoluna baxın](solutions/system_design/scaling_aws/README.md) ![Imgur](images/jj3A5N8.png) From 8be459f6af9ad5b2027a198b40b22f737005cdee Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:35:17 +0400 Subject: [PATCH 23/30] az: fix: `l` letter count --- README-az-Latn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 68c0362..50fa18a 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -301,7 +301,7 @@ Nə gözlədiyiniz barədə daha yaxşı fikir əldə etmək üçün aşağıdak > Nümunə müzakirələr, kodlar və diaqramlarla ümumi sistem dizaynı müsahibə sualları. > -> Həlllər `solutions/` qovluğundakı məzmunla əlaqələndirilir. +> Həllər `solutions/` qovluğundakı məzmunla əlaqələndirilir. [//]: # (ToDo: Update later When finish translation...) | Question | | From 41b59ba76bb6a2f1181f1049e4ed3cdb7f748f9e Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Fri, 1 Sep 2023 15:36:53 +0400 Subject: [PATCH 24/30] az: block: Object-oriented design interview questions with solutions --- README-az-Latn.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 50fa18a..d09853e 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -364,14 +364,15 @@ Nə gözlədiyiniz barədə daha yaxşı fikir əldə etmək üçün aşağıdak ![Imgur](images/jj3A5N8.png) -## Object-oriented design interview questions with solutions +## Həlləri olan obyekt yönümlü dizayn müsahibə sualları -> Common object-oriented design interview questions with sample discussions, code, and diagrams. +> Nümunə müzakirələr, kodlar və diaqramlarla ümumi sistem dizaynı müsahibə sualları. > -> Solutions linked to content in the `solutions/` folder. +> Həllər `solutions/` qovluğundakı məzmunla əlaqələndirilir. ->**Note: This section is under development** +>**Qeyd: Bu bölmə development mərhələsindədir** +[//]: # (ToDo: Update later When finish translation...) | Question | | |---|---| | Design a hash map | [Solution](solutions/object_oriented_design/hash_table/hash_map.ipynb) | From 46b4414d2c2f7255b5b0435df273aa65c6d72455 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Tue, 3 Oct 2023 15:06:52 +0400 Subject: [PATCH 25/30] az: small fixes: Fix some small translations --- README-az-Latn.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index d09853e..2b37eda 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -260,11 +260,11 @@ Bütün vacib komponentlər daxil olmaq şərtilə tərtib etdiyiniz dizaynı t Hər bir əsas komponenti ətraflı izzah etməyə başlayın. Məsələn, sizdən [url qısaldıcı xidmət](solutions/system_design/pastebin/README.md) dizayn etmək istənilsə, müzakirə edin: -* Generating and storing a hash of the full url +* Tam url-in hashının yaradılması və saxlanması * [MD5](solutions/system_design/pastebin/README.md) və [Base62](solutions/system_design/pastebin/README.md) * Xeş toqquşmaları (Hash collision) * SQL va ya NoSQL - * Məlumatlar bazası sxeması (Database schema) + * Məlumatlar bazası sxemi (Database schema) * Hash-lənmiş url-in tam url-ə yönləndirilməsi * Database axtarışı * API və obyekt yönümlü dizayn @@ -278,7 +278,7 @@ Məhdudiyyətləri nəzərə alaraq problemləri müəyyənləşdirin və həll * Caching * Database parçalanması (Database sharding) -Potensial həll yollarını və güzəştləri müzakirə edin. Hər şey bir mübadilədir. [Ölçəklənən sistem dizaynı prinsiplərindən](#sistem-dizaynı-mövzularının-indeksi) istifadə edərək, darboğazları aradan qaldırın +Potensial həll yollarını və güzəştləri müzakirə edin. Hər şey bir mübadilədir. [Ölçülən sistem dizaynı prinsiplərindən](#sistem-dizaynı-mövzularının-indeksi) istifadə edərək, çətin vəziyyəti aradan qaldırın ### Back-of-the-envelope hesablamaları From 2fca1b8aad42599fd8580f5999063c67d29ac987 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Tue, 3 Oct 2023 15:07:27 +0400 Subject: [PATCH 26/30] az: block: System design topics: start here --- README-az-Latn.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 2b37eda..09c6bd6 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -384,11 +384,11 @@ Nə gözlədiyiniz barədə daha yaxşı fikir əldə etmək üçün aşağıdak | Design a circular array | [Contribute](#contributing) | | Add an object-oriented design question | [Contribute](#contributing) | -## System design topics: start here +## Sistem dizaynı mövzuları: buradan başlayın -New to system design? +Sistem dizaynında yenisiniz? -First, you'll need a basic understanding of common principles, learning about what they are, how they are used, and their pros and cons. +İlk öncə əsas sistem dizaynın baza prinsiplərini, onların necə istifadə olunduğunu və onların üstünlüklərini və mənfi cəhətlərini öyrənməlisiniz. ### Step 1: Review the scalability video lecture From b555c4e0c2bd1caf8142301ac9688f2aa6d56b21 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Tue, 3 Oct 2023 15:07:43 +0400 Subject: [PATCH 27/30] az: block: Step 1: Review the scalability video lecture --- README-az-Latn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 09c6bd6..4c1284a 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -390,11 +390,11 @@ Sistem dizaynında yenisiniz? İlk öncə əsas sistem dizaynın baza prinsiplərini, onların necə istifadə olunduğunu və onların üstünlüklərini və mənfi cəhətlərini öyrənməlisiniz. -### Step 1: Review the scalability video lecture +### 1-ci addım: Harvarddakı scalability video müsahibəsini izləyin [Scalability Lecture at Harvard](https://www.youtube.com/watch?v=-W9F__D3oY4) -* Topics covered: +* Əhatə edən mövzular: * Vertical scaling * Horizontal scaling * Caching From f22f30ed5b503f2208dc9371652697eb659b12c7 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Tue, 3 Oct 2023 15:10:49 +0400 Subject: [PATCH 28/30] az: block: Step 2: Review the scalability article --- README-az-Latn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 4c1284a..4b05f11 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -402,11 +402,11 @@ Sistem dizaynında yenisiniz? * Database replication * Database partitioning -### Step 2: Review the scalability article +### 2-ci addım: scalability məqaləsini oxuyun [Scalability](https://web.archive.org/web/20221030091841/http://www.lecloud.net/tagged/scalability/chrono) -* Topics covered: +* Əhatə edən mövzular: * [Clones](https://web.archive.org/web/20220530193911/https://www.lecloud.net/post/7295452622/scalability-for-dummies-part-1-clones) * [Databases](https://web.archive.org/web/20220602114024/https://www.lecloud.net/post/7994751381/scalability-for-dummies-part-2-database) * [Caches](https://web.archive.org/web/20230126233752/https://www.lecloud.net/post/9246290032/scalability-for-dummies-part-3-cache) From cdd688a33034c0ba0e3a081f44dfe35ea3edcdd3 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Tue, 3 Oct 2023 15:11:11 +0400 Subject: [PATCH 29/30] az: block: Next steps --- README-az-Latn.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 4b05f11..2217e07 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -412,17 +412,17 @@ Sistem dizaynında yenisiniz? * [Caches](https://web.archive.org/web/20230126233752/https://www.lecloud.net/post/9246290032/scalability-for-dummies-part-3-cache) * [Asynchronism](https://web.archive.org/web/20220926171507/https://www.lecloud.net/post/9699762917/scalability-for-dummies-part-4-asynchronism) -### Next steps +### Növbəti addımlar -Next, we'll look at high-level trade-offs: +Növbəti olaraq aşağıdakı mövzulara baxacığıq: -* **Performance** vs **scalability** -* **Latency** vs **throughput** -* **Availability** vs **consistency** +* **Performans** vs **miqyaslılıq** +* **Gecikmə** vs **keçirmə qabiliyyəti** +* **Mövcudluq** vs **ardıcıllıq** -Keep in mind that **everything is a trade-off**. +Unutmayın ki, **hər şey bir mübadiləddəir**. -Then we'll dive into more specific topics such as DNS, CDNs, and load balancers. +Ardınca daha çətin mövzulara baxacağıq, məsələn DNS, CDN və load balancer-lər kimi. ## Performance vs scalability From e3231e7080d377901e862eb717aec330140a2850 Mon Sep 17 00:00:00 2001 From: MDReal32 Date: Tue, 3 Oct 2023 15:11:37 +0400 Subject: [PATCH 30/30] az: block: Performance vs scalability --- README-az-Latn.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README-az-Latn.md b/README-az-Latn.md index 2217e07..414e83b 100644 --- a/README-az-Latn.md +++ b/README-az-Latn.md @@ -424,14 +424,14 @@ Unutmayın ki, **hər şey bir mübadiləddəir**. Ardınca daha çətin mövzulara baxacağıq, məsələn DNS, CDN və load balancer-lər kimi. -## Performance vs scalability +## Performans vs miqyaslılıq -A service is **scalable** if it results in increased **performance** in a manner proportional to resources added. Generally, increasing performance means serving more units of work, but it can also be to handle larger units of work, such as when datasets grow.1 +Servis **miqyaslı**dırsa, əlavə resurslar əlavə edildikcə **performans** artır. Ümumiyyətlə, performansı artırmaq daha çox iş birlikləri deməkdir, amma həm də dataset-lərin böyüməsi buna bir nümunədir.1 -Another way to look at performance vs scalability: +Performans vs miqyaslılıq mübadiləsinə başqa bir yanaşmada baxaq: -* If you have a **performance** problem, your system is slow for a single user. -* If you have a **scalability** problem, your system is fast for a single user but slow under heavy load. +* **Performans** problemi varsa, sistem bir istifadəçi üçün yavaşdır. +* **Miqyaslılıq** problemi varsa, sistem bir istifadəçi üçün sürətli olsa da, ağır yüklənmə zamanı yavaşdır. ### Source(s) and further reading