Skip to content

Commit

Permalink
Fix typo in docs (#11776)
Browse files Browse the repository at this point in the history
Co-authored-by: Armin Berres <[email protected]>
  • Loading branch information
aberres and Armin Berres authored Oct 17, 2023
1 parent 7983724 commit 4476fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user-guide/io/cloud-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Polars can scan a Parquet file in lazy mode from cloud storage. We may need to p

This query creates a `LazyFrame` without downloading the file. In the `LazyFrame` we have access to file metadata such as the schema. Polars uses the `object_store.rs` library internally to manage the interface with the cloud storage providers and so no extra dependencies are required in Python to scan a cloud Parquet file.

If we create a lazy query with [predicate and projection pushdowns](../lazy/optimizations.md), the query optimiszr will apply them before the file is downloaded. This can significantly reduce the amount of data that needs to be downloaded. The query evaluation is triggered by calling `collect`.
If we create a lazy query with [predicate and projection pushdowns](../lazy/optimizations.md), the query optimizer will apply them before the file is downloaded. This can significantly reduce the amount of data that needs to be downloaded. The query evaluation is triggered by calling `collect`.

{{code_block('user-guide/io/cloud-storage','scan_parquet_query',[])}}

Expand Down

0 comments on commit 4476fbd

Please sign in to comment.