svn merge -c 1379537 FIXES: HADOOP-8727. Gracefully deprecate dfs.umaskmode in 2.x onwards (Harsh J via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1379538 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7287665955
commit
f3bdc03270
|
@ -818,6 +818,9 @@ Release 0.23.3 - UNRELEASED
|
|||
HADOOP-8726. The Secrets in Credentials are not available to MR tasks
|
||||
(daryn and Benoy Antony via bobby)
|
||||
|
||||
HADOOP-8727. Gracefully deprecate dfs.umaskmode in 2.x onwards (Harsh J
|
||||
via bobby)
|
||||
|
||||
Release 0.23.2 - UNRELEASED
|
||||
|
||||
NEW FEATURES
|
||||
|
|
|
@ -2286,6 +2286,8 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
|||
new String[]{CommonConfigurationKeys.IO_NATIVE_LIB_AVAILABLE_KEY});
|
||||
Configuration.addDeprecation("fs.default.name",
|
||||
new String[]{CommonConfigurationKeys.FS_DEFAULT_NAME_KEY});
|
||||
Configuration.addDeprecation("dfs.umaskmode",
|
||||
new String[]{CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1091,5 +1091,15 @@
|
|||
</description>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
<name>fs.permissions.umask-mode</name>
|
||||
<value>022</value>
|
||||
<description>
|
||||
The umask used when creating files and directories.
|
||||
Can be in octal or in symbolic. Examples are:
|
||||
"022" (octal for u=rwx,g=r-x,o=r-x in symbolic),
|
||||
or "u=rwx,g=rwx,o=" (symbolic for 007 in octal).
|
||||
</description>
|
||||
</property>
|
||||
|
||||
</configuration>
|
||||
|
|
Loading…
Reference in New Issue