NoSql Tutorial 6 : Column-oriented
These databases are optimized for queries over
large datasets, and store columns of data together, instead of rows.
·
Column-oriented
databases primarily work on columns and every column is treated individually.
·
Values
of a single column are stored contiguously.
·
Column
stores data in column specific files.
·
In
Column stores, query processors work on columns too.
·
All
data within each column datafile have the same type which makes it ideal for
compression.
·
Column
stores can improve the performance of queries as it can access specific column
data.
·
High
performance on aggregation queries (e.g. COUNT, SUM, AVG, MIN, MAX).
·
Works
on data warehouses and business intelligence, customer relationship management
(CRM), Library card catalogs etc.
Comments
Post a Comment