Forráskód Böngészése

update release notes and release date for 1.1.2-rc5

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1.1@1440782 13f79535-47bb-0310-9956-ffa450edef68
Matthew Foley 12 éve
szülő
commit
5df286b750
2 módosított fájl, 6 hozzáadás és 1 törlés
  1. 1 1
      CHANGES.txt
  2. 5 0
      src/docs/releasenotes.html

+ 1 - 1
CHANGES.txt

@@ -1,6 +1,6 @@
 Hadoop Change Log
 
-Release 1.1.2 - 2013.01.27
+Release 1.1.2 - 2013.01.30
 
   INCOMPATIBLE CHANGES
 

+ 5 - 0
src/docs/releasenotes.html

@@ -99,6 +99,11 @@
      <b>Improve confusing log message that prints exception when editlog read is completed</b><br>
      <blockquote>Namenode prints a log with an exception to indicate successful completion of reading of logs. This causes misunderstanding where people have interpreted it as failure to load editlog. The log message could be better.</blockquote></li>
 
+<li> <a href="https://issues.apache.org/jira/browse/HDFS-4423">HDFS-4423</a>.
+     Blocker bug reported by chenfolin and fixed by cnauroth (namenode)<br>
+     <b>Checkpoint exception causes fatal damage to fsimage.</b><br>
+     <blockquote>The impact of class is org.apache.hadoop.hdfs.server.namenode.FSImage.java<br>{code}<br>boolean loadFSImage(MetaRecoveryContext recovery) throws IOException {<br>...<br>latestNameSD.read();<br>    needToSave |= loadFSImage(getImageFile(latestNameSD, NameNodeFile.IMAGE));<br>    LOG.info(&quot;Image file of size &quot; + imageSize + &quot; loaded in &quot; <br>        + (FSNamesystem.now() - startTime)/1000 + &quot; seconds.&quot;);<br>    <br>    // Load latest edits<br>    if (latestNameCheckpointTime &gt; latestEditsCheckpointTime)<br>      // the image i...</blockquote></li>
+
 <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2374">MAPREDUCE-2374</a>.
      Major bug reported by tlipcon and fixed by adi2 <br>
      <b>&quot;Text File Busy&quot; errors launching MR tasks</b><br>