Is it Bigger than a Breadbox: Efficient Cardinality Estimation for Real World Workloads
Zixuan Yi, Sami Abu-el-Haija, Yawen Wang, Teja Vemparala, Yannis Chronis, Yu Gan, Michael Burrows, Carsten Binnig, Bryan Perozzi, Ryan Marcus, Fatma Ozcan
TL;DR
The paper tackles efficient cardinality estimation for real-world workloads by introducing LiteCard, an online, graph-pattern–localized estimator. It learns many small, pattern-specific models online, organized in a three-level hierarchy and keyed by hashed query-graph patterns, enabling cold-start operation with negligible update and inference overhead. Empirical results on IMDb JOB-lite show LiteCard delivering a $7.5$ minute speedup (over $30\%$) with minimal overhead, and a substantial reduction in End-to-End time and Q-Error relative to PostgreSQL and other learned estimators, while maintaining scalability as joins increase. Integrating LiteCard into PostgreSQL via planner hooks demonstrates practical viability and highlights a favorable Pareto frontier for learned cardinality estimators in real systems.
Abstract
DB engines produce efficient query execution plans by relying on cost models. Practical implementations estimate cardinality of queries using heuristics, with magic numbers tuned to improve average performance on benchmarks. Empirically, estimation error significantly grows with query complexity. Alternatively, learning-based estimators offer improved accuracy, but add operational complexity preventing their adoption in-practice. Recognizing that query workloads contain highly repetitive subquery patterns, we learn many simple regressors online, each localized to a pattern. The regressor corresponding to a pattern can be randomly-accessed using hash of graph structure of the subquery. Our method has negligible overhead and competes with SoTA learning-based approaches on error metrics. Further, amending PostgreSQL with our method achieves notable accuracy and runtime improvements over traditional methods and drastically reduces operational costs compared to other learned cardinality estimators, thereby offering the most practical and efficient solution on the Pareto frontier. Concretely, simulating JOB-lite workload on IMDb speeds-up execution by 7.5 minutes (>30%) while incurring only 37 seconds overhead for online learning.
