ankitsultana commented on code in PR #10285: URL: https://github.com/apache/pinot/pull/10285#discussion_r1107394494
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/MailboxReceiveOperator.java: ########## @@ -67,19 +67,21 @@ public class MailboxReceiveOperator extends MultiStageOperator { private int _serverIdx; private TransferableBlock _upstreamErrorBlock; - private static MailboxIdentifier toMailboxId(VirtualServer sender, long jobId, long stageId, - VirtualServerAddress receiver) { + private static MailboxIdentifier toMailboxId(VirtualServer sender, long jobId, int senderStageId, + int receiverStageId, VirtualServerAddress receiver) { return new JsonMailboxIdentifier( - String.format("%s_%s", jobId, stageId), + String.format("%s_%s", jobId, senderStageId), Review Comment: Yeah the json ignore thing should help with no downtimes during rollout. -- 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