Github user chenghao-intel commented on a diff in the pull request:
https://github.com/apache/spark/pull/10225#discussion_r47096059
--- Diff:
core/src/main/scala/org/apache/spark/storage/DiskBlockManager.scala ---
@@ -80,6 +77,65 @@ private[spark] class DiskBlockManager(blockManager:
BlockManager, conf: SparkCon
new File(subDir, filename)
}
+ def getFileDefault(filename: String): File = {
+ _getFile(filename, localDirs)
+ }
+ var getFile = getFileDefault _
+
+ private val hierarchyStore =
conf.getOption("spark.storage.hierarchyStore")
+ if (hierarchyStore.isDefined) {
+ val HSLayers: Array[(String, Long)] =
+ hierarchyStore.get.trim.split(",").map {
+ s => val x = s.trim.split(" +")
+ (x(0), Utils.byteStringAsGb(x(1)))
+ }
+ val HSLayerDirs: Array[Array[File]] = HSLayers.map(
--- End diff --
`spark.storage.hierarchyStore` is optional and the devices are from the
fastest to slowest, or given the weight for each device.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]