Parquet File: An introduction
Lets understand this by comparing it to csv format, which is quite well known.
Query Performance: CSV vs Parquet
Example Queries and Performance
Query 1: Column Aggregation
sql
SELECT SUM(price) FROM sales;
CSV Performance:
Must read entire file (...
distributed-system.hashnode.dev2 min read