SQLAdvisor: An Open-Source SQL Optimization Tool from Meituan-Dianping
SQLAdvisor, an open-source MySQL optimization utility from Meituan-Dianping, analyzes a given SQL statement—parsing its lexical structure, WHERE clauses, field selectivity, aggregations and multi-table joins—to automatically recommend missing indexes, supporting INSERT/DELETE/UPDATE/SELECT operations, filtering existing indexes, and inviting community contributions on GitHub.
SQLAdvisor is an open-source SQL optimization tool developed by Meituan-Dianping's Beijing DBA team. It takes a SQL statement as input and outputs index optimization suggestions based on MySQL native lexical parsing, WHERE conditions, field selectivity, aggregation, and multi-table join relationships.
Usage example:
sql: SELECT id FROM crm_loan WHERE id_card = '1234567'
cmd: ./sqladvisor -h xx -P xx -u xx -pxx -d xx -q "SELECT id FROM crm_loan WHERE id_card = '1234567'"
SQLAdvisor输出: alter table crm_loan add index idx_id_card(id_card)The tool supports common SQL types (INSERT/DELETE/UPDATE/SELECT), multi-table joins, aggregation (ORDER BY, GROUP BY), and filters out existing indexes. Its architecture includes join processing, WHERE condition handling, selectivity calculation, driver table selection, and index recommendation generation.
SQLAdvisor has been widely used internally and is now open-sourced on GitHub, with the internal and open-source versions kept consistent. The project welcomes community contributions and issue reporting.
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
Meituan Technology Team
Over 10,000 engineers powering China’s leading lifestyle services e‑commerce platform. Supporting hundreds of millions of consumers, millions of merchants across 2,000+ industries. This is the public channel for the tech teams behind Meituan, Dianping, Meituan Waimai, Meituan Select, and related services.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
