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
If I read back an item with no _metadata files but a metadata.json, I end up with the error below when fastparquet attemps to read the metadata.json as a parquet file.
File ".../fastparquet/api.py", line 121, in _parse_header
f.seek(-(head_size+8), 2)
OSError: [Errno 22] Invalid argument
I need to add write_metadata_file=True to my collection.write calls to ensure I always have a _metadata file created.
The text was updated successfully, but these errors were encountered:
If I read back an item with no _metadata files but a metadata.json, I end up with the error below when fastparquet attemps to read the metadata.json as a parquet file.
I need to add
write_metadata_file=True
to mycollection.write
calls to ensure I always have a _metadata file created.The text was updated successfully, but these errors were encountered: