ChuckLin2025 commented on code in PR #57075:
URL: https://github.com/apache/spark/pull/57075#discussion_r3541486785


##########
core/src/main/scala/org/apache/spark/internal/config/package.scala:
##########
@@ -586,6 +586,18 @@ package object config {
       .checkValue(_ > 0, "The maximum number of threads should be positive")
       .createWithDefault(8)
 
+  private[spark] val STORAGE_DECOMMISSION_SHUFFLE_BUFFER_RACING_MIGRATIONS =
+    
ConfigBuilder("spark.storage.decommission.shuffleBlocks.bufferRacingMigrations")
+      .internal()
+      .doc("Whether to buffer a shuffle-migration relocation report that 
arrives before the " +
+        "map output it relocates has been registered on the driver, and replay 
it once " +
+        "registration happens. When false, such a relocation is dropped 
(legacy behavior), " +
+        "which can leave the map output pointing at the decommissioned origin 
executor and " +
+        "surface downstream as a fetch failure once that executor is removed.")
+      .version("5.0.0")

Review Comment:
   Thanks! Applied `4.3.0`. This is a correctness fix and the commit 
cherry-picks cleanly onto `branch-4.x` (4.3.0-SNAPSHOT), so it's good to 
backport there once this lands on master.



-- 
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