Repository: hadoop Updated Branches: refs/heads/branch-2 397836a7b -> d5782a419
HADOOP-12568. Update core-default.xml to describe posixGroups support. Contributed by Wei-Chiu Chuang. (cherry picked from commit 4a3b8f1ed20aaa6c9503a2888339a0ec8a6fefc1) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d5782a41 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d5782a41 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d5782a41 Branch: refs/heads/branch-2 Commit: d5782a41999e3e4cc102f61e2b819872e8edd700 Parents: 397836a Author: Akira Ajisaka <[email protected]> Authored: Wed Nov 18 17:23:00 2015 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Wed Nov 18 17:23:34 2015 +0900 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ .../hadoop-common/src/main/resources/core-default.xml | 9 ++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d5782a41/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 863f4fb..891a75e 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -329,6 +329,9 @@ Release 2.8.0 - UNRELEASED HADOOP-12562. Make hadoop dockerfile usable by Yetus. (Allen Wittenauer via wheat9) + HADOOP-12568. Update core-default.xml to describe posixGroups support. + (Wei-Chiu Chuang via aajisaka) + OPTIMIZATIONS HADOOP-11785. Reduce the number of listStatus operation in distcp http://git-wip-us.apache.org/repos/asf/hadoop/blob/d5782a41/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml b/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml index fc09ddf..d5ebc17 100644 --- a/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml +++ b/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml @@ -323,6 +323,11 @@ for ldap providers in the same way as above does. an LDAP server with a non-AD schema, this should be replaced with (&(objectClass=inetOrgPerson)(uid={0}). {0} is a special string used to denote where the username fits into the filter. + + If the LDAP server supports posixGroups, Hadoop can enable the feature by + setting the value of this property to "posixAccount" and the value of + the hadoop.security.group.mapping.ldap.search.filter.group property to + "posixGroup". </description> </property> @@ -332,7 +337,9 @@ for ldap providers in the same way as above does. <description> An additional filter to use when searching for LDAP groups. This should be changed when resolving groups against a non-Active Directory installation. - posixGroups are currently not a supported group class. + + See the description of hadoop.security.group.mapping.ldap.search.filter.user + to enable posixGroups support. </description> </property>
