ivoson commented on code in PR #39459: URL: https://github.com/apache/spark/pull/39459#discussion_r1112123108
########## core/src/main/scala/org/apache/spark/storage/BlockManagerMasterEndpoint.scala: ########## @@ -210,6 +219,65 @@ class BlockManagerMasterEndpoint( case StopBlockManagerMaster => context.reply(true) stop() + + case UpdateRDDBlockTaskInfo(blockId, taskId) => + // This is to report the information that a rdd block(with `blockId`) is computed + // and cached by task(with `taskId`). The happens right after the task finished + // computing/caching the block only when the block is not visible yet. And the rdd + // block will be marked as visible only when the corresponding task finished successfully. + context.reply(updateRDDBlockTaskInfo(blockId, taskId)) + + case GetRDDBlockVisibility(blockId) => + // Get the visibility status of a specific rdd block. + if (!trackingCacheVisibility) { Review Comment: Sure, updated. ########## core/src/main/scala/org/apache/spark/storage/BlockManagerMasterEndpoint.scala: ########## @@ -210,6 +219,65 @@ class BlockManagerMasterEndpoint( case StopBlockManagerMaster => context.reply(true) stop() + + case UpdateRDDBlockTaskInfo(blockId, taskId) => + // This is to report the information that a rdd block(with `blockId`) is computed + // and cached by task(with `taskId`). The happens right after the task finished Review Comment: Thanks, updated. -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org