We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b13e0 commit e9823e7Copy full SHA for e9823e7
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/FileCommitProtocol.scala
@@ -62,8 +62,11 @@ object FileCommitProtocol {
62
63
64
/**
65
- * An interface to define how a Spark job commits its outputs. Implementations must be serializable,
66
- * as the committer instance instantiated on the driver will be used for tasks on executors.
+ * An interface to define how a single Spark job commits its outputs. Two notes:
+ *
67
+ * 1. Implementations must be serializable, as the committer instance instantiated on the driver
68
+ * will be used for tasks on executors.
69
+ * 2. A committer should not be reused across multiple Spark jobs.
70
*
71
* The proper call sequence is:
72
0 commit comments