jerrypeng commented on code in PR #57286:
URL: https://github.com/apache/spark/pull/57286#discussion_r3591274414


##########
core/src/main/scala/org/apache/spark/SparkEnv.scala:
##########
@@ -323,9 +397,14 @@ class SparkEnv (
       return
     }
 
+    // The tracker is also needed when a StreamingShuffleManager is configured 
as the incremental
+    // manager (spark.shuffle.manager.incremental) to serve pipelined shuffle 
dependencies.
     val shuffleManagerName = ShuffleManager.getShuffleManagerClassName(conf)
+    val incrementalManagerName =
+      
conf.get(config.SHUFFLE_MANAGER_INCREMENTAL).map(ShuffleManager.resolveShortName)
     if (shuffleManagerName == classOf[StreamingShuffleManager].getName
-        || shuffleManagerName == classOf[MultiShuffleManager].getName) {
+        || shuffleManagerName == classOf[MultiShuffleManager].getName

Review Comment:
   MultiShuffleManager is still reference here.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to