mirror of
				https://github.com/donnemartin/system-design-primer.git
				synced 2025-11-04 02:02:31 +03:00 
			
		
		
		
	Update broken HBase architecture link (#481)
This commit is contained in:
		@@ -1048,7 +1048,7 @@ Document stores provide high flexibility and are often used for working with occ
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
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.
 | 
					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.mapr.com/blog/in-depth-look-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.
 | 
					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.
 | 
					Wide column stores offer high availability and high scalability.  They are often used for very large data sets.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1056,7 +1056,7 @@ Wide column stores offer high availability and high scalability.  They are often
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
* [SQL & NoSQL, a brief history](http://blog.grio.com/2015/11/sql-nosql-a-brief-history.html)
 | 
					* [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)
 | 
					* [Bigtable architecture](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/chang06bigtable.pdf)
 | 
				
			||||||
* [HBase architecture](https://www.mapr.com/blog/in-depth-look-hbase-architecture)
 | 
					* [HBase architecture](https://www.edureka.co/blog/hbase-architecture/)
 | 
				
			||||||
* [Cassandra architecture](http://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archIntro.html)
 | 
					* [Cassandra architecture](http://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archIntro.html)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### Graph database
 | 
					#### Graph database
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user