-
Notifications
You must be signed in to change notification settings - Fork 460
GH-508: Finalize Variant and shredding specs #509
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
Conversation
alamb
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From the Rust perspective (https://github.com/apache/arrow-rs) this works well
Thank you
wgtmac
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The progress looks good. We can merge this once the vote passes.
mrcnc
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
|
Thanks @aihuaxu for driving this! |
|
Does Variant support top-array-struct ? |
@amorynan You mean nested variant such as ARRAY(variant), MAP<String, Variant>, right? I think we need some work there. |
Rationale for this change
Per Parquet's requirements, we need at least two reference implementations to finalize the Variant logical type specification and here are the current status:
Java already has the encoding and shredding implementations in place:
apache/parquet-java#3197
apache/parquet-java#3202
apache/parquet-java#3223
apache/parquet-java#3211
Go also includes encoding and shredding support:
apache/arrow-go#344
apache/arrow-go#434
We also have validated cross-language verification between Java and GO languages (apache/arrow-go#455 and apache/parquet-java#3258).
Rust is currently working on the shredding implementation. In addition to these, we already have a full Variant implementation in Apache Iceberg, as well as in some closed-source engines. At this point, I think we have enough implementation coverage to move forward with finalizing the Variant spec.
What changes are included in this PR?
Remove "under active development" notes from the doc.
Do these changes have PoC implementations?
Closes #508