-
Notifications
You must be signed in to change notification settings - Fork 158
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
Simplify Python impl for KafkaSourceStage #300
Conversation
/rerun tests |
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.
Are there any tests that compare the C++ and Python implementations?
I just added one, its a bit tricky as commits perform asynchronously. I had to add a new bool constructor argument to enable blocking commits. Even then the C++ impl commits just after calling |
…d in by cudf_kafka
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 good. Lets get branch-22.11
merged so we can get CI passing again.
@gpucibot merge |
Current impl is overly complicated making use of undocumented methods.
Removes dependency on
cudf_kafka
.Fixes #294