We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for reporting an issue!
When I try to open a valid parquet file (pandas can open it):
console.log('opening') const reader = await parquet.ParquetReader.openFile(values["input-file"]); console.log('reading') const cursor = reader.getCursor(); console.log('cursor') let record = null; let count = 0; console.log('looping') while ((record = await cursor.next())) { console.log(record); count++; }
I get the error:
Error processing parquet file: invalid compression method: ZSTD
Package version: 1.8.5
1.8.5
I will try to give a sample parquet file to aid in debugging.
The text was updated successfully, but these errors were encountered:
@vedantroy Currently we do not have support for zstd compression. Open to PRs for it.
Duplicate of #77
Sorry, something went wrong.
No branches or pull requests
Thanks for reporting an issue!
Steps to reproduce
When I try to open a valid parquet file (pandas can open it):
I get the error:
Package version:
1.8.5
I will try to give a sample parquet file to aid in debugging.
The text was updated successfully, but these errors were encountered: