-
Notifications
You must be signed in to change notification settings - Fork 915
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
Refactor io::orc::ProtobufWriter
#12877
Refactor io::orc::ProtobufWriter
#12877
Conversation
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
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.
Is this based on my issue #7015 or a convergent idea? :)
Some comments about implementation details.
benchmark bot, please test this PR |
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.
💯
benchmark bot, please test this PR |
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.
Looks ok. One comment on a possible clarifying constructor.
/merge |
This refactors the class
cudf::io::orc::ProtobufWriter
, making it independent from the ORC writer buffer. From now, a new instance ofProtobufWriter
will work on its own buffer. That avoids touching the ORC writer's internal states.The PR is part of solution for #12792.