Github user chenghao-intel commented on a diff in the pull request:

    https://github.com/apache/spark/pull/10225#discussion_r47095833
  
    --- 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 --
    
    I am wondering if we can split the faster devices and the normal devices 
for backward-compatible.
    e.g.
    ```
    spark.storage.hierarchyStore=/mnt/nvm1,/mnt/nvm2,/mnt/ssd1,/mnt/ssd2
    spark.local.dir=/mnt/sata1/,/mnt/sata2,/mnt/stat3
    ```



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

Reply via email to