viirya commented on a change in pull request #32361:
URL: https://github.com/apache/spark/pull/32361#discussion_r624640418
##########
File path:
sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/CheckpointFileManager.scala
##########
@@ -285,6 +291,11 @@ class FileSystemBasedCheckpointFileManager(path: Path,
hadoopConf: Configuration
case _: LocalFileSystem | _: RawLocalFileSystem => true
case _ => false
}
+
+ override def createCheckpointDirectory(): Path = {
+ fs.mkdirs(path, FsPermission.getDirDefault)
+ fs.makeQualified(path)
Review comment:
Before this change, it is first qualified and then calls `mkdirs`. Let's
follow up original behavior.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]