You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
/var is only ever going to be writable by root, except in very insecure environments. If this was trying to make something like /var/hadoop/hdfs-mount then we could deal with it by creating the "/var/hadoop" directory and making it writable by the user we are building as. As it is, it'll only work in a docker container.
hdfs-mount/FileHandleWriter.go
37 stageDir := "/var/hdfs-mount" // TODO: make configurable
38 if ok := os.MkdirAll(stageDir, 0700); ok != nil {
39 Error.Println("Failed to create stageDir /var/hdfs-mount, Error:", ok)
40 return nil, ok
41 }
The text was updated successfully, but these errors were encountered:
Please consider the TODO below.
/var is only ever going to be writable by root, except in very insecure environments. If this was trying to make something like /var/hadoop/hdfs-mount then we could deal with it by creating the "/var/hadoop" directory and making it writable by the user we are building as. As it is, it'll only work in a docker container.
hdfs-mount/FileHandleWriter.go
The text was updated successfully, but these errors were encountered: