Overview
Column statistics are automatically computed during every Parquet write and stored in both Iceberg snapshot properties and Delta Lakeadd action metadata. Query engines use these statistics for predicate pushdown — skipping entire data files that cannot contain matching rows.
What’s Computed
How It Improves Query Performance
When a query engine reads an Iceberg table or Delta table, it checks the per-file column statistics before downloading data files. If a file’s max value fordate is 2025-12-31, any query filtering date > 2026-01-01 skips the file entirely. This can reduce I/O by 90%+ for selective queries.
Viewing Column Stats
Navigate to Managed Lakehouse → select a table → Column Stats tab. The Column Stats panel displays:API
Response
Thresholds
Tables with more than 200 columns only compute statistics for primary keys, partition columns, sort columns, and system columns to keep commit latency low.
Storage Details
Iceberg
Statistics are stored as snapshot-level properties with keys:Delta Lake
Statistics are embedded in thestats JSON field of each add action in the transaction log:
Best Practices
Use with Z-Order
Z-ordered data has tighter min/max ranges per file, making statistics-based pruning even more effective.
Compact regularly
Compaction recalculates statistics across merged files for up-to-date min/max bounds.
Related
Z-Order Sort
Improve data locality for multi-column queries
Table Maintenance
Compaction refreshes column statistics automatically