Question
MATLAB does not read parquet file, simply says "Unable to read Parquet file". How can I still read it?
I have created a parquet file using Python polars' .write_parquet
method. It can be read back by Python without a problem and MATLAB can also read the information about the file using parquetinfo
without a problem.
However, when I run parquetread
in MATLAB to actually load the data, it fails quickly with the error "Unable to read Parquet file" without further details.
I've searched around, and only found this Mathworks forum post without a solution.
How can I create a parquetfile using Python that is readable by MATLAB?