Profile your Polars queries Polars released its query profiler for open source users for free, enabling profiling via a single line, `pl.Config.enable_monitoring()`, after installing `polars_cloud`. The profiler hooks into the streaming engine, sending the optimized logical and physical plans plus per-node progress telemetry every 5 seconds to https://cloud.pola.rs/portal/, while query data stays in the user's environment; Polars says an MCP for agents is coming soon. TL;DR; Add pl.Config.enable monitoring to your python environment to enable profiling of your query allowing you to view your query’s progress live and find & optimize bottlenecks. Our query profiler is now available for open source Polars users for free