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
In the current implementation, we read the first row of a Parquet file in order to determine which columns within a parquet file are nullable.
This has some significant performance drawback, since we are going to be paying the cost of at least an entire row group in terms of decompression time and memory.
Instead, we should parse the parquet metadata before launching any tasks and extract the nullable information.
The text was updated successfully, but these errors were encountered:
In the current implementation, we read the first row of a Parquet file in order to determine which columns within a parquet file are nullable.
This has some significant performance drawback, since we are going to be paying the cost of at least an entire row group in terms of decompression time and memory.
Instead, we should parse the parquet metadata before launching any tasks and extract the nullable information.
The text was updated successfully, but these errors were encountered: