Ngone51 commented on a change in pull request #33078: URL: https://github.com/apache/spark/pull/33078#discussion_r660699353
########## File path: core/src/main/scala/org/apache/spark/storage/DiskBlockManager.scala ########## @@ -57,6 +61,11 @@ private[spark] class DiskBlockManager(conf: SparkConf, var deleteFilesOnStop: Bo // of subDirs(i) is protected by the lock of subDirs(i) private val subDirs = Array.fill(localDirs.length)(new Array[File](subDirsPerLocalDir)) + // Get merge directory name, append attemptId if there is any + private val mergeDirName = + conf.getOption("spark.app.attempt.id") + .map(id => MERGE_DIRECTORY + "_" + id).getOrElse(MERGE_DIRECTORY) Review comment: nit: `s"${MERGE_DIRECTORY}_ $id"` -- 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