You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to the schema argument passed to pyarrow.dataset.dataset() - "Optionally provide the Schema for the Dataset, in which case it will not be inferred from the source."
If I understand correctly, the current implementation of scan_parquet() reads the schema from the file. This can be very expensive (I/O) when working with many parquet files.
The text was updated successfully, but these errors were encountered:
Description
Similar to the
schema
argument passed topyarrow.dataset.dataset()
- "Optionally provide the Schema for the Dataset, in which case it will not be inferred from the source."If I understand correctly, the current implementation of
scan_parquet()
reads the schema from the file. This can be very expensive (I/O) when working with many parquet files.The text was updated successfully, but these errors were encountered: