Jackie-Jiang commented on code in PR #11234: URL: https://github.com/apache/pinot/pull/11234#discussion_r1281486858
########## pinot-query-planner/src/main/java/org/apache/pinot/query/planner/physical/MailboxAssignmentVisitor.java: ########## @@ -59,9 +59,38 @@ public Void process(PlanNode node, DispatchablePlanContext context) { receiverMailboxesMap.computeIfAbsent(workerId, k -> new HashMap<>()).put(senderFragmentId, mailboxMetadata); } }); + } else if (senderMetadata.isPartitionedTableScan()) { + // For partitioned table scan, send the data to the worker with the same worker id (not necessary the same + // instance) Review Comment: Added -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org