-
Notifications
You must be signed in to change notification settings - Fork 3
Column oriented storage
Prayag edited this page Dec 23, 2022
·
2 revisions
While a relational database is optimized for storing rows of data, typically for transactional applications, a columnar database is optimized for fast retrieval of columns of data, typically in analytical applications. Column-oriented storage for database tables is an important factor in analytic query performance because it drastically reduces the overall disk I/O requirements and reduces the amount of data you need to load from disk.