📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

EXPLAIN ANALYZE GRAPHICAL



Analyzes query performance with an interactive visual representation in your browser. Available exclusively in LakeSQL v0.22.2+.

Syntax

EXPLAIN ANALYZE GRAPHICAL <statement>

Configuration

Add to your LakeSQL config file ~/.config/lakesql/config.toml:

[server] bind_address = "127.0.0.1" auto_open_browser = true

Example

EXPLAIN ANALYZE GRAPHICAL SELECT l_returnflag, COUNT(*) FROM lineitem WHERE l_shipdate <= '1998-09-01' GROUP BY l_returnflag;

Output:

View graphical online: http://127.0.0.1:8080?perf_id=1

Opens an interactive view showing execution plan, operator runtimes, and data flow.

Graphical Analysis

Was this page helpful?