1. 학습
  2. /
  3. 강의
  4. /
  5. Scaling and Optimizing Data Pipelines with Polars

Connected

연습 문제

Targeting the streaming engine

You're back with the Seattle library team. Their checkout history is growing, and queries are starting to flirt with memory limits. The simplest fix is to run lazy queries on Polars' streaming engine instead of the default in-memory one.

polars is loaded as pl. The LazyFrame monthly_digital is pre-loaded and totals digital checkouts by month.

지침

100 XP
  • Run monthly_digital using the streaming engine.