Author: yhemanth
Date: Fri Dec 19 00:52:44 2008
New Revision: 727981
URL: http://svn.apache.org/viewvc?rev=727981&view=rev
Log:
Merge -r 727973:727974 from trunk to branch-0.20 to fix HADOOP-4782.
Modified:
hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt
hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring
Modified: hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt?rev=727981&r1=727980&r2=727981&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt (original)
+++ hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt Fri Dec 19
00:52:44 2008
@@ -8,6 +8,18 @@
IMPROVEMENTS
+ OPTIMIZATIONS
+
+ BUG FIXES
+
+Release 0.20.0 - (unreleased changes)
+
+ INCOMPATIBLE CHANGES
+
+ NEW FEATURES
+
+ IMPROVEMENTS
+
HADOOP-4705. Grant read permissions for files/directories
created by HOD. (Peeyush Bishnoi via yhemanth)
@@ -15,6 +27,10 @@
BUG FIXES
+ HADOOP-4782. Revert umask changes in HADOOP-4705 so that
+ files are still securely created. (Peeyush Bishnoi via
+ yhemanth)
+
Release 0.19.0 - 2008-11-18
INCOMPATIBLE CHANGES
Modified: hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring
URL:
http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring?rev=727981&r1=727980&r2=727981&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring (original)
+++ hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring Fri Dec 19
00:52:44 2008
@@ -141,12 +141,6 @@
if __name__ == '__main__':
- # pbsdsh sets the umask of the process it launches to 0077. This prevents
- # read access to other processes, like chukwa, to read files created by the
- # hadoop processes, like the job history files. Resetting the umask to
- # address this issue
- os.umask(0022)
-
confDef = definition()
confDef.add_defs(defList)
hodRingOptions = options(confDef, "./%s [OPTIONS]" % myName, VERSION)