Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

---
2023-03-14 11:25:48 -07:00
title_tag: What is NoSQL?
title: NoSQL
2023-03-14 11:25:48 -07:00
meta_desc: NoSQL is a type of database that organizes data into some data structure other than the two-dimensional tables seen in relational databases.
layout: glossary/single
---
## Definition
A type of database that organizes data into some data structure other than the two-dimensional tables seen in relational databases. Also called non-relational databases, NoSQL databases can be [document-based](/learn/glossary/document-oriented/) (like MongoDB), [column-based](/learn/glossary/column-oriented/) (like Apache Cassandra), [graph-based](/learn/glossary/graph-oriented/) (like Neo4j), or [key-value](/learn/glossary/key-value/) (like DynamoDB). Other flavors of NoSQL databases do exist, including hybrids, but these are the most commonly-used.
| Database Type | Use Cases | Cloud Examples | Self-hosted Examples |
|--------------- |---------------------------------------------------------------- |--------------------------------- |---------------------- |
| Key-Value | ECommerce, recommendation engines, high-traffic | [DynamoDB](https://aws.amazon.com/dynamodb/), [CosmosDB](https://azure.microsoft.com/en-us/services/cosmos-db/), [BigTable](https://cloud.google.com/bigtable) | [Redis](https://redis.io/) |
| Column | Business intelligence, data warehousing | [Keyspaces](https://aws.amazon.com/keyspaces/), [CosmosDB](https://azure.microsoft.com/en-us/services/cosmos-db/) | [Apache Cassandra](https://cassandra.apache.org/_/index.html) |
| Graph | Recommendation engines, fraud detection, social networks | [Neptune](https://aws.amazon.com/neptune/) | [Neo4j](https://neo4j.com/) |
| Document | Content management systems, user profiles, product information | [DocumentDB](https://aws.amazon.com/documentdb/), [CosmosDB](https://azure.microsoft.com/en-us/services/cosmos-db/), [Firestore](https://firebase.google.com/docs/firestore) | [MongoDB](https://www.mongodb.com/) |