Skip to content

Commit a5784f6

Browse files
committed
Hadoop 1.1.2-rc3 release candidate, with corrected release notes
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/tags/release-1.1.2-rc3@1439293 13f79535-47bb-0310-9956-ffa450edef68
1 parent a15dbea commit a5784f6

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

src/docs/releasenotes.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,26 @@ <h3>Jiras with Release Notes (describe major or incompatible changes)</h3>
5454
<h3>Other Jiras (describe bug fixes and minor changes)</h3>
5555
<ul>
5656

57+
<li> <a href="https://issues.apache.org/jira/browse/HADOOP-8418">HADOOP-8418</a>.
58+
Major bug reported by vicaya and fixed by crystal_gaoyu (security)<br>
59+
<b>Fix UGI for IBM JDK running on Windows</b><br>
60+
<blockquote>The login module and user principal classes are different for 32 and 64-bit Windows in IBM J9 JDK 6 SR10. Hadoop 1.0.3 does not run on either because it uses the 32 bit login module and the 64-bit user principal class.</blockquote></li>
61+
62+
<li> <a href="https://issues.apache.org/jira/browse/HADOOP-8561">HADOOP-8561</a>.
63+
Major improvement reported by vicaya and fixed by crystal_gaoyu (security)<br>
64+
<b>Introduce HADOOP_PROXY_USER for secure impersonation in child hadoop client processes</b><br>
65+
<blockquote>To solve the problem for an authenticated user to type hadoop shell commands in a web console, we can introduce an HADOOP_PROXY_USER environment variable to allow proper impersonation in the child hadoop client processes.</blockquote></li>
66+
5767
<li> <a href="https://issues.apache.org/jira/browse/HADOOP-8880">HADOOP-8880</a>.
5868
Major bug reported by gkesavan and fixed by gkesavan <br>
5969
<b>Missing jersey jars as dependency in the pom causes hive tests to fail</b><br>
6070
<blockquote>ivy.xml has the dependency included where as the same dependency is not updated in the pom template.</blockquote></li>
6171

72+
<li> <a href="https://issues.apache.org/jira/browse/HADOOP-9051">HADOOP-9051</a>.
73+
Minor test reported by [email protected] and fixed by vicaya (test)<br>
74+
<b>Òant testÓ will build failed for trying to delete a file</b><br>
75+
<blockquote>Run &quot;ant test&quot; on branch-1 of hadoop-common.<br>When the test process reach &quot;test-core-excluding-commit-and-smoke&quot;<br><br>It will invoke the &quot;macro-test-runner&quot; to clear and rebuild the test environment.<br>Then the ant task command &lt;delete dir=&quot;@{test.dir}/logs&quot; /&gt;<br>failed for trying to delete an non-existent file.<br><br>following is the test result logs:<br>test-core-excluding-commit-and-smoke:<br> [delete] Deleting: /home/jdu/bdc/hadoop-topology-branch1-new/hadoop-common/build/test/testsfailed<br> [delete] Dele...</blockquote></li>
76+
6277
<li> <a href="https://issues.apache.org/jira/browse/HADOOP-9111">HADOOP-9111</a>.
6378
Minor improvement reported by jingzhao and fixed by jingzhao (test)<br>
6479
<b>Fix failed testcases with @ignore annotation In branch-1</b><br>
@@ -84,6 +99,21 @@ <h3>Other Jiras (describe bug fixes and minor changes)</h3>
8499
<b>&quot;Text File Busy&quot; errors launching MR tasks</b><br>
85100
<blockquote>Some very small percentage of tasks fail with a &quot;Text file busy&quot; error.<br><br>The following was the original diagnosis:<br>{quote}<br>Our use of PrintWriter in TaskController.writeCommand is unsafe, since that class swallows all IO exceptions. We&apos;re not currently checking for errors, which I&apos;m seeing result in occasional task failures with the message &quot;Text file busy&quot; - assumedly because the close() call is failing silently for some reason.<br>{quote}<br>.. but turned out to be another issue as well (see below)</blockquote></li>
86101

102+
<li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-4272">MAPREDUCE-4272</a>.
103+
Major bug reported by vicaya and fixed by crystal_gaoyu (task)<br>
104+
<b>SortedRanges.Range#compareTo is not spec compliant</b><br>
105+
<blockquote>SortedRanges.Range#compareTo does not satisfy the requirement of Comparable#compareTo, where &quot;the implementor must ensure {noformat}sgn(x.compareTo(y)) == -sgn(y.compareTo(x)){noformat} for all x and y.&quot;<br><br>This is manifested as TestStreamingBadRecords failures in alternative JDKs.</blockquote></li>
106+
107+
<li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-4396">MAPREDUCE-4396</a>.
108+
Minor bug reported by vicaya and fixed by crystal_gaoyu (client)<br>
109+
<b>Make LocalJobRunner work with private distributed cache</b><br>
110+
<blockquote>Some LocalJobRunner related unit tests fails if user directory permission and/or umask is too restrictive.</blockquote></li>
111+
112+
<li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-4397">MAPREDUCE-4397</a>.
113+
Major improvement reported by vicaya and fixed by crystal_gaoyu (task-controller)<br>
114+
<b>Introduce HADOOP_SECURITY_CONF_DIR for task-controller</b><br>
115+
<blockquote>The linux task controller currently hard codes the directory in which to look for its config file at compile time (via the HADOOP_CONF_DIR macro). Adding a new environment variable to look for task-controller&apos;s conf dir (with strict permission checks) would make installation much more flexible.</blockquote></li>
116+
87117
<li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-4696">MAPREDUCE-4696</a>.
88118
Minor bug reported by gopalv and fixed by gopalv <br>
89119
<b>TestMRServerPorts throws NullReferenceException</b><br>
@@ -114,6 +144,10 @@ <h3>Other Jiras (describe bug fixes and minor changes)</h3>
114144
<b>TestRecoveryManager fails on branch-1</b><br>
115145
<blockquote>Looks like the tests are extremely flaky and just hang.</blockquote></li>
116146

147+
<li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-4888">MAPREDUCE-4888</a>.
148+
Blocker bug reported by revans2 and fixed by vinodkv (mrv1)<br>
149+
<b>NLineInputFormat drops data in 1.1 and beyond</b><br>
150+
<blockquote>When trying to root cause why MAPREDUCE-4782 did not cause us issues on 1.0.2, I found out that HADOOP-7823 introduced essentially the exact same error into org.apache.hadoop.mapred.lib.NLineInputFormat.<br><br>In 1.X org.apache.hadoop.mapred.lib.NLineInputFormat and org.apache.hadoop.mapreduce.lib.input.NLineInputFormat are separate implementations. The latter had an off by one error in it until MAPREDUCE-4782 fixed it. The former had no error in it until HADOOP-7823 introduced it in 1.1 and MAPR...</blockquote></li>
117151

118152
</ul>
119153

0 commit comments

Comments
 (0)