About Arrow IPC/Feather format
Why use Feather instead of Parquet?
The "Magic" of Memory Mapping
import pyarrow.feather as feather
# Writing is straightforward
feather.write_feather(table, 'data.feather')
# Reading with memory mapping
# This is nearly instant, even for a 10GB file
read_table = feather.read_table('data.feather', memory_map=True)When to use which?
A Quick Note on "V1" vs "V2"
Where does this fit in "Streaming" knowledge?
Last updated