Columnar Databases (1).pptx

ssuser55cbdb 382 views 8 slides Dec 01, 2022
Slide 1
Slide 1 of 8
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8

About This Presentation

c


Slide Content

Columnar Databases

What is Columnar Database? stores data in columns rather than the rows read data more efficiently and return queries with greater speed called the future of business intelligence (BI) because it allows for instant analytical queries that enterprises depend on for business decisions used in data warehouses where businesses send massive amounts of data from multiple sources for BI analysis

What is Columnar Database? Row Oriented Column Oriented

Why are columnar databases faster for data warehouses? Storage systems have to pull data from physical disk drives, which store information magnetically on spinning platters using read/write heads that move around to find the data that users request. The less the heads have to move, the faster the drive performs. If data is kept closer together, minimizing seek time, systems can deliver that data faster.

Columnar Database Versus Row Based Database fields for each r eco r d a r e sequentially sto r ed i a long r ow

Columnar Database Versus Relational Database relational database ideal for transactional applications columnar database preferred for analytical applications designed for data warehousing and big data processing drastically reduces the overall disk I/O requirements

Column Oriented

Pros and Cons of Columnar Database To summarize, columnar databases are good for: Queries that involve only a few columns Aggregation queries against vast amounts of data Column-wise compression But are not so good at: Incremental data loading Online Transaction Processing (OLTP) usage Queries against only a few rows
Tags