Github user ericl commented on a diff in the pull request:
https://github.com/apache/spark/pull/15814#discussion_r87111922
--- Diff:
core/src/main/scala/org/apache/spark/internal/io/HadoopMapReduceCommitProtocol.scala
---
@@ -42,17 +44,21 @@ class HadoopMapReduceCommitProtocol(jobId: String,
path: String)
/** OutputCommitter from Hadoop is not serializable so marking it
transient. */
@transient private var committer: OutputCommitter = _
+ /**
+ * Tracks files staged by this task for absolute output paths. These
outputs are not managed by
+ * the Hadoop OutputCommitter, so we must move these to their final
locations on job commit.
+ */
+ @transient private var addedAbsPathFiles: mutable.Map[String, String] =
null
+
+ private def absPathStagingDir: Path = new Path(path, "_temporary-" +
jobId)
--- End diff --
Done
---
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]