You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement broadcast join. This will be important where one relation is significantly smaller than the other. Then, it is efficient to broadcast/ all-gather the smaller table rather than shuffling.
All the required building blocks are already available. Should support all join variations (left, right, inner, outer).
Steps:
Broadcast/ all-gather right table (this should be the small one)
Do a local join
The text was updated successfully, but these errors were encountered:
Implement broadcast join. This will be important where one relation is significantly smaller than the other. Then, it is efficient to broadcast/ all-gather the smaller table rather than shuffling.
All the required building blocks are already available. Should support all join variations (left, right, inner, outer).
Steps:
The text was updated successfully, but these errors were encountered: