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
When a new Parquet writer is created, the previous Parquet file is not closed. This can lead to potential errors if there are open files that are not actively being written.
Impact
Unclosed files may lead to resource exhaustion.
Errors can occur when switching between different Parquet files or partitions.
Potential data corruption or loss if files remain open unexpectedly.
Expected Behavior
When a new Parquet writer is created, the previous one should be properly closed before switching.
Inactive Parquet files should not cause errors if they are not actively being written.
Possible Solution
Ensure that before creating a new writer, the existing one is explicitly closed.
The text was updated successfully, but these errors were encountered:
Description
When a new Parquet writer is created, the previous Parquet file is not closed. This can lead to potential errors if there are open files that are not actively being written.
Impact
Expected Behavior
Possible Solution
The text was updated successfully, but these errors were encountered: