|
|
|
|
|
by cm2187
795 days ago
|
|
Like parquet this isn't really meant for RDBMS type of database, more like for analytics over large datasets. I work in an environment where we typically have tables with over 300 columns, 10s if not 100s millions of rows daily. When you want to do a simple sum/group by involving 2 or 3 columns, it is great to have a column store file format, where you only read the columns you need and those are compressed. The price you pay is that it is inefficient for single record access, or for "select * " kind of queries. |
|