-
Notifications
You must be signed in to change notification settings - Fork 240
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
Support columnar processing for FlatMapCoGroupInPandas[databricks] #6751
Conversation
Signed-off-by: firestarman <[email protected]>
Draft due to missing the benchmark numbers, working on it now. |
Signed-off-by: Firestarman <[email protected]>
build |
It depends on rapidsai/cudf#11883, which was just merged. Wait for the latest jni jar to run the premerge CI. |
build |
Signed-off-by: Firestarman <[email protected]>
build |
1 similar comment
build |
Signed-off-by: Firestarman <[email protected]>
build |
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.
Small typo but otherwise lgtm.
/** | ||
* Python UDF Runner for cogrouped UDFs, designed for `GpuFlatMapCoGroupsInPandasExec` only. | ||
* | ||
* It sends Arrow bathes from two different DataFrames, groups them in Python, |
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.
* It sends Arrow bathes from two different DataFrames, groups them in Python, | |
* It sends Arrow batches from two different DataFrames, groups them in Python, |
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.
Nice catch, will update this in a following PR for issue #6778.
closes #305
This PR implements the columnar support for the
FlatMapCoGroupInPandasExec
, along with some refactors.Performance
Signed-off-by: firestarman [email protected]