-
Notifications
You must be signed in to change notification settings - Fork 912
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
Add Parquet Reader options classes to pylibcudf #17464
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
@@ -410,6 +410,7 @@ class parquet_reader_options_builder { | |||
* | |||
* @param val Boolean value whether to read matching projected and filter columns from mismatched | |||
* Parquet sources. | |||
* |
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.
For the reviewer: I couldn't find this function in the docs, so I thought it may not be rendering correctly without this new line. I confirmed that you can see the function in the docs with it.
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.
Wow, thanks for catching this! We usually don’t include a blank line between @param
and @return
, but it might be time to change that.
/ok to test |
/ok to test |
/ok to test |
/ok to test |
Note: The telemetry job failure is non-blocking |
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 for the doc fix.
@@ -410,6 +410,7 @@ class parquet_reader_options_builder { | |||
* | |||
* @param val Boolean value whether to read matching projected and filter columns from mismatched | |||
* Parquet sources. | |||
* |
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.
Wow, thanks for catching this! We usually don’t include a blank line between @param
and @return
, but it might be time to change that.
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.
I'm not well versed with the Python side of the project, but this looks mostly good to my eyes. Thank you for this change.
I have a couple of requests for clarification, and a minor suggestion to fix a copy/paste error.
Co-authored-by: MithunR <[email protected]>
/ok to test |
/merge |
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.
Thank you for accommodating the review suggestions. 👍
Might need a rebase. |
/ok to test |
cbeefd8
into
rapidsai:branch-25.02
Description
Follow up of #17263, this PR adds the parquet reader options classes to pylibcudf and plumbs the changes through cudf python.
Checklist