Migrate Parquet support to Mason package - #5510
Merged
Merged
Conversation
- Updated `test_checkpoint` to include `uint8` as a valid dtype and adjusted array creation accordingly. - Introduced `test_unknown_entry_type` to validate error handling for unknown checkpoint entry types. - Enhanced parquet tests in `io_test.py` to ensure proper handling of uint8 data types, including round-trip tests for various scenarios. - Removed a known failure case from `parquet_edge_test.py` related to concatenated gzip members due to Arrow v9 correctness issues.
jabraham17
reviewed
Aug 3, 2026
jabraham17
left a comment
Contributor
There was a problem hiding this comment.
Review part 1, I have not yet looked at the Parquet server code changes
jabraham17
reviewed
Aug 4, 2026
…quet-mason-migration
jabraham17
reviewed
Aug 13, 2026
Contributor
|
I believe the CI is failing because you have not yet merged chapel-lang/Parquet#22 correct? Lets focus on getting that merged first (that PR looks almost good to go) so we can look at the CI here |
jabraham17
reviewed
Aug 14, 2026
jabraham17
approved these changes
Aug 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces Arkouda's Parquet implementation with the external Mason
Parquetpackage.Arkouda now retains only server-specific responsibilities: message handling, symbol-table conversion, client responses, and Arkouda-specific null processing. File, schema, reader, writer, and distributed Parquet mechanics are delegated to the package.
Changes
ParquetMsgfor existing server modules.Dependency
This PR depends on the companion Mason Parquet PR and should be merged after it.