-
Notifications
You must be signed in to change notification settings - Fork 100
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
[BUG] "don't know how to skip type Set" error #118
Comments
there are missing compactTypes namespace Parquet.Meta.Proto { 1: STOP |
The same problem, expect to be resolved. |
Any chance y'all could share a sample file? You can upload it directly here by zipping it. I also see you opened an issue in the Parquet.net repo as well: aloneguid/parquet-dotnet#544 I'll see if I can recreate the test file you mentioned but no promises. |
no, i can't. it is a business file. |
This is an issue with the parquet-dotnet library we use. I opened an issue ticket here: aloneguid/parquet-dotnet#583 Going to close this out as a duplicate of #121 . Since there's no sample file in this thread, we can continue discussions there. |
i cant view a parquet file.
line below throws error -> "don't know how to skip type Set"
var parquetReader = await ParquetReader.CreateAsync(parquetFilePath, null, cancellationToken);
The error message "don't know how to skip type Set" in Parquet typically indicates that the Parquet reader or writer you're using does not support the Set data type directly. Parquet, which is a columnar storage format, has a limited set of primitive data types and some complex types (like arrays, maps, and structs), but it doesn't directly support Java specific types like Set. !!!!
The text was updated successfully, but these errors were encountered: