Skip to content

Commit

Permalink
fix bucket_seq_to_instance_index
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Oct 17, 2024
1 parent a1ecef8 commit 775c14c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ private static void filterInstancesWhichReceiveDataFromRemote(
Map<DataSink, List<AssignedJob>> sinkToDestInstances = firstInputPlan.getDestinations();
for (Entry<DataSink, List<AssignedJob>> kv : sinkToDestInstances.entrySet()) {
DataSink senderSink = kv.getKey();
if (senderSink.getExchNodeId() == linkNode.getId()) {
if (senderSink.getExchNodeId().asInt() == linkNode.getId().asInt()) {
Set<AssignedJob> destinations = Sets.newLinkedHashSet(kv.getValue());
Map<Long, AtomicInteger> backendIdToInstanceCount = Maps.newLinkedHashMap();
List<AssignedJob> instanceJobs = receivePlan.getInstanceJobs();
Expand Down

0 comments on commit 775c14c

Please sign in to comment.