apache / arrow-cookbook

Apache Arrow Cookbook
https://arrow.apache.org/
Apache License 2.0
95 stars 46 forks source link

Recommended file extension for Feather files #329

Open jason-s opened 10 months ago

jason-s commented 10 months ago

Python cookbook uses .feather (https://github.com/apache/arrow-cookbook/blob/90cdc3c5516f475149f172f869a1538cc50e8e68/python/source/io.rst#L535)

Arrow docs suggest .arrow instead of .feather https://arrow.apache.org/docs/format/Columnar.html#ipc-file-format

Which is it?

lidavidm commented 10 months ago

It should be .arrow

jason-s commented 10 months ago

So Feather is the primary on-disk serialization format for Arrow? (It's just a bit weird to get used to: these are Feather files, and the Python module is pyarrow.feather, and the function name is write_feather, but the recommended extension is .arrow)

lidavidm commented 10 months ago

They are the same thing. https://stackoverflow.com/questions/67910612/arrow-ipc-vs-feather/67911190#67911190

jason-s commented 10 months ago

OK then I feel comfortable filing apache/arrow#38515