-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feather file causes segfault in R #117
Comments
The problem seems to be JuliaData/FlatBuffers.jl#38 |
Feather files created with julia are bigger than the same dataset created with R. |
I'm not too surprised that the files created in Julia are bigger. As I recall, we've seen examples of some of the other writers automatically deciding to write dictionary encoded (i.e. compressed) columns. In this package we only do this if the original column is a To do the same, we'd need some sort of heuristic for deciding when to automatically use dictionary ecnoded columns. |
You could also support PooledArrays, and expect people to use that when they want to save memory. |
Saving a DataFrame with Feather causes R to crash when reading the file. I am using Feather 0.5.1 with Julia 1.1. If I create a simple feather file with
I get the following crash in R 3.5.1 with the package feather 0.3.2:
The text was updated successfully, but these errors were encountered: