Mulai sekarangMulai gratis

Reading the optimized plan

The naive plan you just printed is the starting point. Before running the query, Polars rewrites it: pushing filters down, dropping columns it doesn't need, and turning sort+head into a fast top-k. Use .explain() to see the optimized plan.

polars is loaded as pl, and the LazyFrame top_titles_by_format is the same query as before.

Latihan ini merupakan bagian dari kursus

Scaling and Optimizing Data Pipelines with Polars

Lihat Kursus

Instruksi latihan

  • Show the optimized plan for top_titles_by_format.

Latihan interaktif langsung praktik

Cobalah latihan ini dengan melengkapi kode contoh ini.

# Show the optimized plan
print(top_titles_by_format.____())
Edit dan Jalankan Kode