-
Notifications
You must be signed in to change notification settings - Fork 651
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
Read Parquet file with fastparquet
instead of Arrow
#5285
Comments
Hi @trgiangdo thank you for raising this issue! I was able to replicate the issue on latest master. I think you're right, we should be adding @trgiangdo would you like to contribute the change to Modin? We can help you with your PR! 😄 |
Yes, this should be a simple fix. My main concern is that we have to wait until the next realease of Modin for this to work. Is there any possible way to add a hotfix to the current version of Modin? |
We could merge in the fix to master and you could work off the latest master if that would work for your codebase? I also think the next minor release should be coming soon. |
@pyrito @mvashishtha Can you share when will the next minor version be released? It would help us so much. Thank you. |
@trgiangdo the next planned release is 0.18.0, scheduled for December 7. After #5285 is merged and before the next release comes out, you can install from master or from a specific commit to get your fix. |
…ormat (#5297) Signed-off-by: trgiangdo <dtr.giang.1299@gmail.com>
Hello Modin team,
I'm trying to read Parquet file using
On my environment, only
fastparquet
is install.The
read_parquet
will raise:However, if I remove Line 606-609 from parquet_dispatcher.py, the read function works fine since I believe Modin support both
fastparquet
andpyarrow
.Can we also check for
fastparquet
here?Or is there any specific reason to not do so?
Thank you in advance for answering my question,
The text was updated successfully, but these errors were encountered: