Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[opt](parquet) change parquet init footer read size to 48KB (#46904)
### What problem does this PR solve? Change the initial footer read size from 128KB to 48KB, to slightly reduce the read size. This is same as presto/trino, because typically, a 1GB parquet file usually has footer with size 30~40KB. And usercase shows when there are 30 thousands parquet file, the parse footer time can reduce from: ``` ParseFooterTime: avg 2s28ms, max 3s707ms, min 905.866ms ``` to ``` ParseFooterTime: avg 886.364ms, max 1s734ms, min 391.846ms ```
- Loading branch information