pandas read feather ArrowInvalid

When I'm trying to read a feather file I got this Error:

ArrowInvalid: Column 0: In chunk 0: Invalid: Buffer #1 too small in array of type int64 and length 14712: expected at least 117696 byte(s), got 3450

Upvotes: 0

Views: 2621

Answers (1)

This file was created with another pyarrow version. I had version 0.17.0 and file was created by version 1.0.0. So updating my pyarrow to new version solved the problem.

Upvotes: 4

Related Questions