Wide Column Database
A wide-column database is a NoSQL database that stores data in tables where rows can have a very large and variable number of columns, organized into column families and distributed across many nodes for horizontal scalability.
7 resources across 1 library
Glossary Terms(7)
LSM Tree
A Log-Structured Merge-tree (LSM tree) is a write-optimized data structure that batches writes in memory and flushes them sequentially to disk as immutable sor…
Column-Family Store
A column-family store is a type of NoSQL database that groups related columns into named 'column families' within a row, storing and retrieving data by row key…
Wide-Column Database
A wide-column database is a NoSQL database that stores data in tables where rows can have a very large and variable number of columns, organized into column fa…
Document Store Database
A document store is a NoSQL database that stores data as self-contained documents — typically JSON, BSON, or XML — each holding nested fields and arrays, allow…
OLAP (Online Analytical Processing)
OLAP (Online Analytical Processing) refers to database systems and workloads optimized for complex analytical queries — aggregations, multidimensional analysis…
Database Sharding Key
A database sharding key (or partition key) is the attribute, or combination of attributes, used to determine which shard (physical partition) of a distributed…
Multi-Tenancy (Database)
Multi-tenancy in databases refers to architectures where a single database (or database instance) serves multiple independent customers, or 'tenants,' while ke…