Big Data & Tools with NoSQL
  • Big Data & Tools
  • ReadMe
  • Big Data Overview
    • Overview
    • Job Opportunities
    • What is Data?
    • How does it help?
    • Types of Data
    • The Big 4 V's
      • Variety
      • Volume
      • Velocity
      • Veracity
      • Other V's
    • Trending Technologies
    • Big Data Concerns
    • Big Data Challenges
    • Data Integration
    • Scaling
      • CAP Theorem
      • Optimistic concurrency
      • Eventual consistency
      • Concurrent vs. Parallel Programming
    • Big Data Tools
    • No SQL Databases
    • What does Big Data learning means?
  • Linux & Tools
    • Overview
    • Linux Commands - 01
    • Linux Commands - 02
    • AWK
    • CSVKIT
    • CSVSQL
    • CSVGREP
  • Data Format
    • Storage Formats
    • CSV/TSV/Parquet
    • Parquet Example
    • JSON
    • HTTP & REST API
      • Terms to Know
        • Statefulness
        • Statelessness
        • Monolithic Architecture
        • Microservices
        • Idempotency
    • REST API
    • Python
      • Setup
      • Decorator
      • Unit Testing
      • Flask Demo
      • Flask Demo - 01
      • Flask Demo - 02
      • Flask Demo - 03
      • Flask Demo - 04
      • Flask Demo - 06
    • API Testing
    • Flask Demo Testing
    • API Performance
    • API in Big Data World
  • NoSQL
    • Types of NoSQL Databases
    • Redis
      • Overview
      • Terms to know
      • Redis - (RDBMS) MySql
      • Redis Cache Demo
      • Use Cases
      • Data Structures
        • Strings
        • List
        • Set
        • Hash
        • Geospatial Index
        • Pub/Sub
        • Redis - Python
      • Redis JSON
      • Redis Search
      • Persistence
      • Databases
      • Timeseries
    • Neo4J
      • Introduction
      • Neo4J Terms
      • Software
      • Neo4J Components
      • Hello World
      • Examples
        • MySQL: Neo4J
        • Sample Transactions
        • Sample
        • Create Nodes
        • Update Nodes
        • Relation
        • Putting it all together
        • Commonly used Functions
        • Data Profiling
        • Queries
        • Python Scripts
      • More reading
    • MongoDB
      • Sample JSON
      • Introduction
      • Software
      • MongoDB Best Practices
      • MongoDB Commands
      • Insert Document
      • Querying MongoDB
      • Update & Remove
      • Import
      • Logical Operators
      • Data Types
      • Operators
      • Aggregation Pipeline
      • Further Reading
      • Fun Task
        • Sample
    • InfluxDB
      • Data Format
      • Scripts
  • Python
    • Python Classes
    • Serialization-Deserialization
  • Tools
    • JQ
    • DUCK DB
    • CICD Intro
    • CICD Tools
      • CI YAML
      • CD Yaml
    • Containers
      • VMs or Containers
      • What container does
      • Podman
      • Podman Examples
  • Cloud Everywhere
    • Overview
    • Types of Cloud Services
    • Challenges of Cloud Computing
    • High Availability
    • Azure Cloud
      • Services
      • Storages
      • Demo
    • Terraform
  • Data Engineering
    • Batch vs Streaming
    • Kafka
      • Introduction
      • Kafka Use Cases
      • Kafka Software
      • Python Scripts
      • Different types of Streaming
    • Quality & Governance
    • Medallion Architecture
    • Data Engineering Model
    • Data Mesh
  • Industry Trends
    • Roadmap - Data Engineer
    • Good Reads
      • IP & SUBNET
Powered by GitBook
On this page
  • Key-Value Store
  • Document Store
  • Wide-Column Store
  • Graph Database
  • Time Series DB
  • Multi-Model DB
  1. NoSQL

Types of NoSQL Databases

PreviousAPI in Big Data WorldNextRedis

Last updated 1 year ago

Key-Value Store

  • Description: Stores data as a collection of key-value pairs where a key serves as a unique identifier. Highly efficient for lookups, insertions, and deletions.

  • Examples:

    • Redis (Open Source): An in-memory data structure store used as a database, cache, and message broker.

    • DynamoDB (Commercial) is a fully managed, serverless, key-value NoSQL database designed for internet-scale applications provided by AWS.

Document Store

  • Description: It stores data in documents (typically JSON, BSON, etc.) and allows nested structures. It is ideal for storing, retrieving, and managing document-oriented information.

  • Examples:

    • MongoDB (Open Source) is a document database with the scalability and flexibility you want, as well as the querying and indexing you need.

    • CouchDB (Open Source) is a database that uses JSON for documents, JavaScript for MapReduce indexes, and regular HTTP for its API.

Wide-Column Store

  • Description: It stores data in tables, rows, and dynamic columns. It is efficient for querying large datasets and suitable for distributed computing.

  • Examples:

    • Cassandra (Open Source) is a distributed database system for handling large amounts of data across many commodity servers.

    • HBase (Open Source) is an open-source, distributed, versioned, non-relational database modeled after Google's Big Table.

Graph Database

  • Description: Stores data in nodes and edges, representing entities and their interrelations. Ideal for analyzing interconnected data and complex queries.

  • Examples:

    • Neo4j (Open Source / Commercial) is a graph database platform that provides an ACID-compliant transactional backend for your applications.

    • OrientDB (Open Source) is a multi-model database that supports graph, document, object, and key/value models.

Time Series DB

  • Description: Optimized for handling time-stamped data. Ideal for analytics over time-series data like financial data, IoT sensor data, etc.

  • Examples:

    • InfluxDB (Open Source): An open-source time series database that handles high write and query loads.

    • TimescaleDB (Open Source / Commercial) is an open-source time-series SQL database optimized for fast ingest and complex queries.

Multi-Model DB

  • Description: Supports multiple data models against a single, integrated backend. This can include documents, graphs, key values, in-memory, and search engines.

  • Examples:

    • Redis (with Extensions)

    • FaunaDB (Commercial): A distributed database that supports multiple data models and is designed for serverless applications.

    • ArangoDB (Open Source) is a native multi-model database with flexible data models for documents, graphs, and key values.