-
Notifications
You must be signed in to change notification settings - Fork 902
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
Implement groupby MERGE_LISTS
and MERGE_SETS
aggregates
#8436
Implement groupby MERGE_LISTS
and MERGE_SETS
aggregates
#8436
Conversation
LGTM, so far. |
Codecov Report
@@ Coverage Diff @@
## branch-21.08 #8436 +/- ##
===============================================
Coverage ? 82.59%
===============================================
Files ? 109
Lines ? 17858
Branches ? 0
===============================================
Hits ? 14750
Misses ? 3108
Partials ? 0 Continue to review full report at Codecov.
|
This reverts commit 81b0b6d.
Rerun tests. |
1 similar comment
Rerun tests. |
@gpucibot merge |
Closes #8445 This PR is to provide Java bindings for #8436. Authors: - Alfred Xu (https://github.com/sperlingxx) Approvers: - Nghia Truong (https://github.com/ttnghia) - Robert (Bobby) Evans (https://github.com/revans2) URL: #8516
Groupby aggregations can be performed for distributed computing by the following approach:
groupby::aggregate
a final time on the master nodeThis PR supports merging operations for the lists resulted from distributed aggregate
collect_list
andcollect_set
.Closes #7839.