You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by gatorsmile <gi...@git.apache.org> on 2017/10/02 22:51:17 UTC

[GitHub] spark pull request #19294: [SPARK-21549][CORE] Respect OutputFormats with no...

Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19294#discussion_r142276032
  
    --- Diff: core/src/main/scala/org/apache/spark/internal/io/HadoopMapReduceCommitProtocol.scala ---
    @@ -57,6 +57,15 @@ class HadoopMapReduceCommitProtocol(jobId: String, path: String)
        */
       private def absPathStagingDir: Path = new Path(path, "_temporary-" + jobId)
     
    +  /**
    +   * Checks whether there are files to be committed to an absolute output location.
    +   *
    +   * As the committing and aborting the job occurs on driver where `addedAbsPathFiles` is always
    +   * null, it is necessary to check whether the output path is specified, that may not be the case
    +   * for committers not writing to distributed file systems.
    +   */
    +  private def hasAbsPathFiles: Boolean = path != null
    --- End diff --
    
    Please add `@param path` to line 38 for explaining it.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org