NoSQL: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
=NoSQL Databases= | =NoSQL Databases= | ||
==Document Databases== | ==Document Databases== | ||
Google [[Bigtable]] introduced a data model allowing rows to be added with any set of columns. The columns do not need to be predefined. The lack of predefined schema makes these databases attractive for applications where the attributes of objects are not known in advance or change frequently. | |||
* Google [[Bigtable]] | * Google [[Bigtable]] | ||
** [[ | * [[Cassandra]] | ||
** [[ | * [[HBase]] | ||
** | * Hypertable | ||
Document databases are conceptually similar to Google [[Bigtable]] database. They have a related data model, where a Bigtable row with its arbitrary number of columns/attributes corresponds to a '''document'''. The document is a tree of objects containing attribute values and lists, often with a mapping to JSON or XML. | |||
* [[CouchDB]] | |||
* [[MongoDB]] | |||
* [[Voldemort]] | |||
==Graph Databases== | ==Graph Databases== |
Revision as of 22:36, 7 November 2021
Internal
Overview
The NoSQL databases are grouped in four categories:
- document stores
- key-value stores
- graph stores
- column stores
NoSQL Databases
Document Databases
Google Bigtable introduced a data model allowing rows to be added with any set of columns. The columns do not need to be predefined. The lack of predefined schema makes these databases attractive for applications where the attributes of objects are not known in advance or change frequently.
Document databases are conceptually similar to Google Bigtable database. They have a related data model, where a Bigtable row with its arbitrary number of columns/attributes corresponds to a document. The document is a tree of objects containing attribute values and lists, often with a mapping to JSON or XML.
Graph Databases
- CouchDB
- Neo4j
- Amazon DynamoDB
Organizatorium
- NoSQL discussion: https://bigdata-ir.com/wp-content/uploads/2017/04/NoSQL-Distilled.pdf NoSQL Distilled by Sadalage, Fowler. (Learning/Systems Design)
- Should you go Beyond Relational Databases? https://blog.teamtreehouse.com/should-you-go-beyond-relational-databases
- Lack of predefined schema.