Repository: hadoop Updated Branches: refs/heads/branch-2 e0a356fee -> 86760c0f5
HADOOP-12766. The default value of "hadoop.workaround.non.threadsafe.getpwuid" is different between core-default.xml and NativeIO.java (Akira AJISAKA via cmccabe) (cherry picked from commit 9086dd58c3fc391ffdc017a913e56d1801040c7a) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/86760c0f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/86760c0f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/86760c0f Branch: refs/heads/branch-2 Commit: 86760c0f528ed50cf6211ba6592f6f226b085b90 Parents: e0a356f Author: Colin Patrick Mccabe <[email protected]> Authored: Fri Feb 5 10:56:54 2016 -0800 Committer: Colin Patrick Mccabe <[email protected]> Committed: Fri Feb 5 10:57:47 2016 -0800 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 4 ++++ .../hadoop-common/src/main/resources/core-default.xml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/86760c0f/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 db62325..4765b09 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -1028,6 +1028,10 @@ Release 2.8.0 - UNRELEASED HADOOP-12771. Fix typo in JvmPauseMonitor#getNumGcWarnThreadholdExceeded. (Xiaobing Zhou via xyao) + HADOOP-12766. The default value of + "hadoop.workaround.non.threadsafe.getpwuid" is different between + core-default.xml and NativeIO.java (Akira AJISAKA via cmccabe) + Release 2.7.3 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/86760c0f/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 7d6a2d9..252c42e 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 @@ -438,7 +438,7 @@ for ldap providers in the same way as above does. <property> <name>hadoop.workaround.non.threadsafe.getpwuid</name> - <value>false</value> + <value>true</value> <description>Some operating systems or authentication modules are known to have broken implementations of getpwuid_r and getpwgid_r, such that these calls are not thread-safe. Symptoms of this problem include JVM crashes
