You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Steve Loughran (Jira)" <ji...@apache.org> on 2020/01/15 19:47:00 UTC

[jira] [Commented] (SPARK-30190) HistoryServerDiskManager will fail on appStoreDir in s3

    [ https://issues.apache.org/jira/browse/SPARK-30190?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17016263#comment-17016263 ] 

Steve Loughran commented on SPARK-30190:
----------------------------------------

S3A creates a dir marker and deletes it

But I'd rather you do the mkdir() call and only if that fails look at the dest (getFileStatus) and raise an exception if it isn't a directory.



> HistoryServerDiskManager will fail on appStoreDir in s3
> -------------------------------------------------------
>
>                 Key: SPARK-30190
>                 URL: https://issues.apache.org/jira/browse/SPARK-30190
>             Project: Spark
>          Issue Type: Improvement
>          Components: Spark Core
>    Affects Versions: 3.0.0
>            Reporter: thierry accart
>            Priority: Major
>
> Hi
> While setting spark.eventLog.dir to s3a://... I realized that it *requires destination directory to preexists for S3* 
> This is explained I think in HistoryServerDiskManager's appStoreDir: it tries check if directory exists or can be created
> {{if (!appStoreDir.isDirectory() && !appStoreDir.mkdir()) \{throw new IllegalArgumentException(s"Failed to create app directory ($appStoreDir).")}}}
> But in S3, a directory does not exists and cannot be created: directories don't exists by themselves, they are only materialized due to existence of objects.
> Before proposing a patch, I wanted to know what are the prefered options : 
> should we have a spark option to skip the appStoreDir test, or skip it only when a particular scheme is set, have a custom implementation of HistoryServerDiskManager ...? 
>  
> _Note for people facing the {{IllegalArgumentException:}} {{Failed to create app directory}} *you just have to put an empty file in bucket destination 'path'*._



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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