Skip to content

Commit

Permalink
share hash table
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Oct 9, 2024
1 parent 92787fe commit cee316d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private List<AssignedJob> filterInstancesWhichCanReceiveDataFromRemote(
if (useLocalShuffle) {
return getFirstInstancePerShareScan(receiverPlan);
} else if (enableShareHashTableForBroadcastJoin && linkNode.isRightChildOfBroadcastHashJoin()) {
return getFirstInstancePerShareScan(receiverPlan);
return getFirstInstancePerWorker(receiverPlan.getInstanceJobs());
} else {
return receiverPlan.getInstanceJobs();
}
Expand Down

0 comments on commit cee316d

Please sign in to comment.