kou commented on issue #33412: URL: https://github.com/apache/arrow/issues/33412#issuecomment-1439066824
Feather (= Apache Arrow IPC file format)'s Zstandard support isn't file level compression. It means that `*.feather.zst` is wrong. Both of non-compressed and compressed Feather (= Apache Arrow IPC file format) files use `*.feather`. You don't need to specify compression algorithm for `feather.read_feather()`. It detects compression algorithm automatically. You just need to write a Feather (= Apache Arrow IPC file format) file with Zstandard compression: `feather.write_feather(table, 'data/iptc.feather', compression='zstd')`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
