mirror of
				https://github.com/donnemartin/system-design-primer.git
				synced 2025-11-04 10:12:32 +03:00 
			
		
		
		
	Update re:Invent url (#137)
This commit is contained in:
		
				
					committed by
					
						
						Donne Martin
					
				
			
			
				
	
			
			
			
						parent
						
							2e1627e0da
						
					
				
				
					commit
					f952d6addc
				
			@@ -759,7 +759,7 @@ Systems such as [Consul](https://www.consul.io/docs/index.html), [Etcd](https://
 | 
			
		||||
<p align="center">
 | 
			
		||||
  <img src="http://i.imgur.com/Xkm5CXz.png">
 | 
			
		||||
  <br/>
 | 
			
		||||
  <i><a href=https://www.youtube.com/watch?v=vg5onp8TU6Q>Source: Scaling up to your first 10 million users</a></i>
 | 
			
		||||
  <i><a href=https://www.youtube.com/watch?v=w95murBkYmU>Source: Scaling up to your first 10 million users</a></i>
 | 
			
		||||
</p>
 | 
			
		||||
 | 
			
		||||
### Relational database management system (RDBMS)
 | 
			
		||||
@@ -825,7 +825,7 @@ Both masters serve reads and writes and coordinate with each other on writes.  I
 | 
			
		||||
<p align="center">
 | 
			
		||||
  <img src="http://i.imgur.com/U3qV33e.png">
 | 
			
		||||
  <br/>
 | 
			
		||||
  <i><a href=https://www.youtube.com/watch?v=vg5onp8TU6Q>Source: Scaling up to your first 10 million users</a></i>
 | 
			
		||||
  <i><a href=https://www.youtube.com/watch?v=w95murBkYmU>Source: Scaling up to your first 10 million users</a></i>
 | 
			
		||||
</p>
 | 
			
		||||
 | 
			
		||||
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.
 | 
			
		||||
@@ -839,7 +839,7 @@ Federation (or functional partitioning) splits up databases by function.  For ex
 | 
			
		||||
 | 
			
		||||
##### Source(s) and further reading: federation
 | 
			
		||||
 | 
			
		||||
* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=vg5onp8TU6Q)
 | 
			
		||||
* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=w95murBkYmU)
 | 
			
		||||
 | 
			
		||||
#### Sharding
 | 
			
		||||
 | 
			
		||||
@@ -1075,7 +1075,7 @@ Sample data well-suited for NoSQL:
 | 
			
		||||
 | 
			
		||||
##### Source(s) and further reading: SQL or NoSQL
 | 
			
		||||
 | 
			
		||||
* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=vg5onp8TU6Q)
 | 
			
		||||
* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=w95murBkYmU)
 | 
			
		||||
* [SQL vs NoSQL differences](https://www.sitepoint.com/sql-vs-nosql-differences/)
 | 
			
		||||
 | 
			
		||||
## Cache
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user