I am trying to read a feather file into Python using pyarrow
like so:
import pyarrow.feather as feather
feather.read_feather("../data/my_file.feather")
However, when I run this, I get the following error message:
ArrowInvalid: Unrecognized compression type: LZ4
According to the documentation here, LZ4 is supported for V2. I also tried using the feather
package to read it into R, but there it tells me that the file is not a feather file. Any idea why this is happening? Does this indicate that the file itself is corrupt?
I am using Python 3.8 and the latest version of pyarrow (2.0.0).
Thanks!