Jelajahi Sumber

Preparing for release 0.19.2

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.19@789657 13f79535-47bb-0310-9956-ffa450edef68
Thomas White 16 tahun lalu
induk
melakukan
e17ac59f5e

+ 1 - 1
CHANGES.txt

@@ -1,6 +1,6 @@
 Hadoop Change Log
 Hadoop Change Log
 
 
-Release 0.19.2 - Unreleased
+Release 0.19.2 - 2009-06-30
 
 
   BUG FIXES
   BUG FIXES
 
 

+ 1 - 1
build.xml

@@ -26,7 +26,7 @@
  
  
   <property name="Name" value="Hadoop"/>
   <property name="Name" value="Hadoop"/>
   <property name="name" value="hadoop"/>
   <property name="name" value="hadoop"/>
-  <property name="version" value="0.19.2-dev"/>
+  <property name="version" value="0.19.3-dev"/>
   <property name="final.name" value="${name}-${version}"/>
   <property name="final.name" value="${name}-${version}"/>
   <property name="year" value="2008"/>
   <property name="year" value="2008"/>
   <property name="libhdfs.version" value="1"/>
   <property name="libhdfs.version" value="1"/>

+ 100 - 24
docs/changes.html

@@ -36,7 +36,7 @@
     function collapse() {
     function collapse() {
       for (var i = 0; i < document.getElementsByTagName("ul").length; i++) {
       for (var i = 0; i < document.getElementsByTagName("ul").length; i++) {
         var list = document.getElementsByTagName("ul")[i];
         var list = document.getElementsByTagName("ul")[i];
-        if (list.id != 'release_0.19.1_-_2009-02-23_' && list.id != 'release_0.19.0_-_2008-11-18_') {
+        if (list.id != 'release_0.19.2_-_2009-06-30_' && list.id != 'release_0.19.1_-_2009-02-23_') {
           list.style.display = "none";
           list.style.display = "none";
         }
         }
       }
       }
@@ -52,31 +52,98 @@
 <a href="http://hadoop.apache.org/core/"><img class="logoImage" alt="Hadoop" src="images/hadoop-logo.jpg" title="Scalable Computing Platform"></a>
 <a href="http://hadoop.apache.org/core/"><img class="logoImage" alt="Hadoop" src="images/hadoop-logo.jpg" title="Scalable Computing Platform"></a>
 <h1>Hadoop Change Log</h1>
 <h1>Hadoop Change Log</h1>
 
 
-<h2><a href="javascript:toggleList('release_0.19.1_-_2009-02-23_')">Release 0.19.1 - 2009-02-23
+<h2><a href="javascript:toggleList('release_0.19.2_-_2009-06-30_')">Release 0.19.2 - 2009-06-30
 </a></h2>
 </a></h2>
-<ul id="release_0.19.1_-_2009-02-23_">
-  <li><a href="javascript:toggleList('release_0.19.1_-_2009-02-23_._incompatible_changes_')">  INCOMPATIBLE CHANGES
-</a>&nbsp;&nbsp;&nbsp;(2)
-    <ol id="release_0.19.1_-_2009-02-23_._incompatible_changes_">
+<ul id="release_0.19.2_-_2009-06-30_">
+  <li><a href="javascript:toggleList('release_0.19.2_-_2009-06-30_._bug_fixes_')">  BUG FIXES
+</a>&nbsp;&nbsp;&nbsp;(36)
+    <ol id="release_0.19.2_-_2009-06-30_._bug_fixes_">
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5379">HADOOP-5379</a>. CBZip2InputStream to throw IOException on data crc error.<br />(Rodrigo Schmidt via zshao)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5326">HADOOP-5326</a>. Fixes CBZip2OutputStream data corruption problem.<br />(Rodrigo Schmidt via zshao)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5154">HADOOP-5154</a>. Fixes a deadlock in the fairshare scheduler.<br />(Matei Zaharia via yhemanth)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5269">HADOOP-5269</a>. Fixes a problem to do with tasktracker holding on to FAILED_UNCLEAN
+or KILLED_UNCLEAN tasks forever.<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5280">HADOOP-5280</a>. Adds a check to prevent a task state transition from FAILED to
+any of UNASSIGNED, RUNNING, COMMIT_PENDING or SUCCEEDED.<br />(ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5241">HADOOP-5241</a>. Fixes a bug in disk-space resource estimation. Makes the estimation
+formula linear where blowUp = Total-Output/Total-Input.<br />(Sharad Agarwal via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5233">HADOOP-5233</a>. Addresses the three issues - Race condition in updating
+status, NPE in TaskTracker task localization when the conf file is missing
+(<a href="http://issues.apache.org/jira/browse/HADOOP-5234">HADOOP-5234</a>) and NPE in handling KillTaskAction of a cleanup task (<a href="http://issues.apache.org/jira/browse/HADOOP-5235">HADOOP-5235</a>).<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5247">HADOOP-5247</a>. Introduces a broadcast of KillJobAction to all trackers when
+a job finishes. This fixes a bunch of problems to do with NPE when a completed
+job is not in memory and a tasktracker comes to the jobtracker with a status
+report of a task belonging to that job.<br />(Amar Kamat via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5146">HADOOP-5146</a>. Fixes a race condition that causes LocalDirAllocator to miss
+files.<br />(Devaraj Das via yhemanth)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-4638">HADOOP-4638</a>. Fixes job recovery to not crash the job tracker for problems
+with a single job file.<br />(Amar Kamat via yhemanth)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5384">HADOOP-5384</a>. Fix a problem that DataNodeCluster creates blocks with
+generationStamp == 1.<br />(szetszwo)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5376">HADOOP-5376</a>. Fixes the code handling lost tasktrackers to set the task state
+to KILLED_UNCLEAN only for relevant type of tasks.<br />(Amareshwari Sriramadasu via yhemanth)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5285">HADOOP-5285</a>. Fixes the issues - (1) obtainTaskCleanupTask checks whether job is
+inited before trying to lock the JobInProgress (2) Moves the CleanupQueue class
+outside the TaskTracker and makes it a generic class that is used by the
+JobTracker also for deleting the paths on the job's output fs. (3) Moves the
+references to completedJobStore outside the block where the JobTracker is locked.<br />(ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5392">HADOOP-5392</a>. Fixes a problem to do with JT crashing during recovery when
+the job files are garbled.<br />(Amar Kamat vi ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5421">HADOOP-5421</a>. Removes the test TestRecoveryManager.java from the 0.19 branch
+as it has compilation issues.<br />(ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5332">HADOOP-5332</a>. Appending to files is not allowed (by default) unless
+dfs.support.append is set to true.<br />(dhruba)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5333">HADOOP-5333</a>. libhdfs supports appending to files.<br />(dhruba)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-3998">HADOOP-3998</a>. Fix dfsclient exception when JVM is shutdown.<br />(dhruba)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5440">HADOOP-5440</a>. Fixes a problem to do with removing a taskId from the list
+of taskIds that the TaskTracker's TaskMemoryManager manages.<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5446">HADOOP-5446</a>. Restore TaskTracker metrics.<br />(cdouglas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5449">HADOOP-5449</a>. Fixes the history cleaner thread.<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5479">HADOOP-5479</a>. NameNode should not send empty block replication request to
+DataNode.<br />(hairong)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5522">HADOOP-5522</a>. Documents the setup/cleanup tasks in the mapred tutorial.<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5549">HADOOP-5549</a>. ReplicationMonitor should schedule both replication and
+deletion work in one iteration.<br />(hairong)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5554">HADOOP-5554</a>. DataNodeCluster and CreateEditsLog should create blocks with
+the same generation stamp value.<br />(hairong via szetszwo)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5231">HADOOP-5231</a>. Clones the TaskStatus before passing it to the JobInProgress.<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-4719">HADOOP-4719</a>. Fix documentation of 'ls' format for FsShell.<br />(Ravi Phulari
+via cdouglas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5374">HADOOP-5374</a>. Fixes a NPE problem in getTasksToSave method.<br />(Amareshwari Sriramadasu via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-4780">HADOOP-4780</a>. Cache the size of directories in DistributedCache, avoiding
+long delays in recalculating it.<br />(He Yongqiang via cdouglas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5551">HADOOP-5551</a>. Prevent directory destruction on file create.<br />(Brian Bockelman via shv)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5671">HADOOP-5671</a>. Fix FNF exceptions when copying from old versions of
+HftpFileSystem. (Tsz Wo (Nicholas), SZE via cdouglas)
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5213">HADOOP-5213</a>. Fix Null pointer exception caused when bzip2compression
+was used and user closed a output stream without writing any data.<br />(Zheng Shao via dhruba)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5579">HADOOP-5579</a>. Set errno correctly in libhdfs for permission, quota, and FNF
+conditions.<br />(Brian Bockelman via cdouglas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5728">HADOOP-5728</a>. Fixed FSEditLog.printStatistics IndexOutOfBoundsException.<br />(Wang Xu via johan)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5816">HADOOP-5816</a>. Fixes a problem in the KeyFieldBasedComparator to do with
+ArrayIndexOutOfBounds exception.<br />(He Yongqiang via ddas)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5951">HADOOP-5951</a>. Add Apache license header to StorageInfo.java.<br />(Suresh
+Srinivas via szetszwo)</li>
+    </ol>
+  </li>
+</ul>
+<h2><a href="javascript:toggleList('release_0.19.1_-_2009-02-23_')">Release 0.19.1 - 2009-02-23 
+</a></h2>
+    <ul id="release_0.19.1_-_2009-02-23_">
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5225">HADOOP-5225</a>. Workaround for tmp file handling in HDFS. sync() is
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5225">HADOOP-5225</a>. Workaround for tmp file handling in HDFS. sync() is
 incomplete as a result. committed only to 0.19.x.<br />(Raghu Angadi)</li>
 incomplete as a result. committed only to 0.19.x.<br />(Raghu Angadi)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5224">HADOOP-5224</a>. HDFS append() is disabled. It throws
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5224">HADOOP-5224</a>. HDFS append() is disabled. It throws
 UnsupportedOperationException. committed only to 0.19.x<br />(Raghu Angadi)</li>
 UnsupportedOperationException. committed only to 0.19.x<br />(Raghu Angadi)</li>
-    </ol>
-  </li>
-  <li><a href="javascript:toggleList('release_0.19.1_-_2009-02-23_._improvements_')">  IMPROVEMENTS
-</a>&nbsp;&nbsp;&nbsp;(4)
-    <ol id="release_0.19.1_-_2009-02-23_._improvements_">
+    </ul>
+    <ul id="release_0.19.1_-_2009-02-23_._improvements_">
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4739">HADOOP-4739</a>. Fix spelling and grammar, improve phrasing of some sections in
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4739">HADOOP-4739</a>. Fix spelling and grammar, improve phrasing of some sections in
 mapred tutorial.<br />(Vivek Ratan via cdouglas)</li>
 mapred tutorial.<br />(Vivek Ratan via cdouglas)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-3894">HADOOP-3894</a>. DFSClient logging improvements.<br />(Steve Loughran via shv)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-3894">HADOOP-3894</a>. DFSClient logging improvements.<br />(Steve Loughran via shv)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5126">HADOOP-5126</a>. Remove empty file BlocksWithLocations.java<br />(shv)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5126">HADOOP-5126</a>. Remove empty file BlocksWithLocations.java<br />(shv)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5127">HADOOP-5127</a>. Remove public methods in FSDirectory.<br />(Jakob Homan via shv)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5127">HADOOP-5127</a>. Remove public methods in FSDirectory.<br />(Jakob Homan via shv)</li>
-    </ol>
-  </li>
-  <li><a href="javascript:toggleList('release_0.19.1_-_2009-02-23_._bug_fixes_')">  BUG FIXES
-</a>&nbsp;&nbsp;&nbsp;(31)
-    <ol id="release_0.19.1_-_2009-02-23_._bug_fixes_">
+    </ul>
+    <ul id="release_0.19.1_-_2009-02-23_._bug_fixes_">
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4697">HADOOP-4697</a>. Fix getBlockLocations in KosmosFileSystem to handle multiple
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4697">HADOOP-4697</a>. Fix getBlockLocations in KosmosFileSystem to handle multiple
 blocks correctly.<br />(Sriram Rao via cdouglas)</li>
 blocks correctly.<br />(Sriram Rao via cdouglas)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4420">HADOOP-4420</a>. Add null checks for job, caused by invalid job IDs.<br />(Aaron Kimball via tomwhite)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4420">HADOOP-4420</a>. Add null checks for job, caused by invalid job IDs.<br />(Aaron Kimball via tomwhite)</li>
@@ -130,11 +197,11 @@ for the JobTracker. (Amar Kamat via yhemanth).
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5067">HADOOP-5067</a>. Fixes TaskInProgress.java to keep track of count of failed and
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5067">HADOOP-5067</a>. Fixes TaskInProgress.java to keep track of count of failed and
 killed tasks correctly.<br />(Amareshwari Sriramadasu via ddas)</li>
 killed tasks correctly.<br />(Amareshwari Sriramadasu via ddas)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4760">HADOOP-4760</a>. HDFS streams should not throw exceptions when closed twice.<br />(enis)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-4760">HADOOP-4760</a>. HDFS streams should not throw exceptions when closed twice.<br />(enis)</li>
-    </ol>
-  </li>
-</ul>
-<h2><a href="javascript:toggleList('release_0.19.0_-_2008-11-18_')">Release 0.19.0 - 2008-11-18
-</a></h2>
+    </ul>
+<h2><a href="javascript:toggleList('older')">Older Releases</a></h2>
+<ul id="older">
+<h3><a href="javascript:toggleList('release_0.19.0_-_2008-11-18_')">Release 0.19.0 - 2008-11-18
+</a></h3>
 <ul id="release_0.19.0_-_2008-11-18_">
 <ul id="release_0.19.0_-_2008-11-18_">
   <li><a href="javascript:toggleList('release_0.19.0_-_2008-11-18_._incompatible_changes_')">  INCOMPATIBLE CHANGES
   <li><a href="javascript:toggleList('release_0.19.0_-_2008-11-18_._incompatible_changes_')">  INCOMPATIBLE CHANGES
 </a>&nbsp;&nbsp;&nbsp;(22)
 </a>&nbsp;&nbsp;&nbsp;(22)
@@ -757,13 +824,11 @@ path rather than the JobClient.<br />(Joydeep Sen Sarma via dhruba)</li>
     </ol>
     </ol>
   </li>
   </li>
 </ul>
 </ul>
-<h2><a href="javascript:toggleList('older')">Older Releases</a></h2>
-<ul id="older">
 <h3><a href="javascript:toggleList('release_0.18.4_-_unreleased_')">Release 0.18.4 - Unreleased
 <h3><a href="javascript:toggleList('release_0.18.4_-_unreleased_')">Release 0.18.4 - Unreleased
 </a></h3>
 </a></h3>
 <ul id="release_0.18.4_-_unreleased_">
 <ul id="release_0.18.4_-_unreleased_">
   <li><a href="javascript:toggleList('release_0.18.4_-_unreleased_._bug_fixes_')">  BUG FIXES
   <li><a href="javascript:toggleList('release_0.18.4_-_unreleased_._bug_fixes_')">  BUG FIXES
-</a>&nbsp;&nbsp;&nbsp;(3)
+</a>&nbsp;&nbsp;&nbsp;(8)
     <ol id="release_0.18.4_-_unreleased_._bug_fixes_">
     <ol id="release_0.18.4_-_unreleased_._bug_fixes_">
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5114">HADOOP-5114</a>. Remove timeout for accept() in DataNode. This makes accept()
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5114">HADOOP-5114</a>. Remove timeout for accept() in DataNode. This makes accept()
 fail in JDK on Windows and causes many tests to fail.<br />(Raghu Angadi)</li>
 fail in JDK on Windows and causes many tests to fail.<br />(Raghu Angadi)</li>
@@ -771,6 +836,17 @@ fail in JDK on Windows and causes many tests to fail.<br />(Raghu Angadi)</li>
 being written by other threads.<br />(hairong)</li>
 being written by other threads.<br />(hairong)</li>
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5134">HADOOP-5134</a>. FSNamesystem#commitBlockSynchronization adds under-construction
       <li><a href="http://issues.apache.org/jira/browse/HADOOP-5134">HADOOP-5134</a>. FSNamesystem#commitBlockSynchronization adds under-construction
 block locations to blocksMap.<br />(Dhruba Borthakur via hairong)</li>
 block locations to blocksMap.<br />(Dhruba Borthakur via hairong)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5412">HADOOP-5412</a>. Simulated DataNode should not write to a block that's being
+written by another thread.<br />(hairong)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5465">HADOOP-5465</a>. Fix the problem of blocks remaining under-replicated by
+providing synchronized modification to the counter xmitsInProgress in
+DataNode.<br />(hairong)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5557">HADOOP-5557</a>. Fixes some minor problems in TestOverReplicatedBlocks.<br />(szetszwo)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-5644">HADOOP-5644</a>. Namnode is stuck in safe mode.<br />(Suresh Srinivas via hairong)</li>
+      <li><a href="http://issues.apache.org/jira/browse/HADOOP-6017">HADOOP-6017</a>. Lease Manager in NameNode does not handle certain characters
+in filenames. This results in fatal errors in Secondary NameNode and while
+restrating NameNode. (Tsz Wo (Nicholas), SZE via rangadi)
+</li>
     </ol>
     </ol>
   </li>
   </li>
 </ul>
 </ul>

+ 3 - 3
docs/cn/cluster_setup.pdf

@@ -467,7 +467,7 @@ endobj
 endobj
 endobj
 73 0 obj
 73 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /16Eab01ARPLUMingCN,Light
+/FontName /12E62d4ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -491,13 +491,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /16Eab01ARPLUMingCN,Light
+/BaseFont /12E62d4ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 76 0 R ]  >>
 /DescendantFonts [ 76 0 R ]  >>
 endobj
 endobj
 76 0 obj
 76 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /16Eab01ARPLUMingCN,Light 
+/BaseFont /12E62d4ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 73 0 R
 /FontDescriptor 73 0 R

+ 3 - 3
docs/cn/commands_manual.pdf

@@ -910,7 +910,7 @@ endobj
 endobj
 endobj
 123 0 obj
 123 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /14Ea515ARPLUMingCN,Light
+/FontName /11E5f19ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -934,13 +934,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /14Ea515ARPLUMingCN,Light
+/BaseFont /11E5f19ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 126 0 R ]  >>
 /DescendantFonts [ 126 0 R ]  >>
 endobj
 endobj
 126 0 obj
 126 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /14Ea515ARPLUMingCN,Light 
+/BaseFont /11E5f19ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 123 0 R
 /FontDescriptor 123 0 R

+ 3 - 3
docs/cn/distcp.pdf

@@ -380,7 +380,7 @@ endobj
 endobj
 endobj
 59 0 obj
 59 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /9E90d4ARPLUMingCN,Light
+/FontName /2E2714ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -404,13 +404,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /9E90d4ARPLUMingCN,Light
+/BaseFont /2E2714ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 62 0 R ]  >>
 /DescendantFonts [ 62 0 R ]  >>
 endobj
 endobj
 62 0 obj
 62 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /9E90d4ARPLUMingCN,Light 
+/BaseFont /2E2714ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 59 0 R
 /FontDescriptor 59 0 R

+ 3 - 3
docs/cn/hadoop_archives.pdf

@@ -118,7 +118,7 @@ endobj
 endobj
 endobj
 23 0 obj
 23 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /2E5ec9ARPLUMingCN,Light
+/FontName /5E374aARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -142,13 +142,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /2E5ec9ARPLUMingCN,Light
+/BaseFont /5E374aARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 26 0 R ]  >>
 /DescendantFonts [ 26 0 R ]  >>
 endobj
 endobj
 26 0 obj
 26 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /2E5ec9ARPLUMingCN,Light 
+/BaseFont /5E374aARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 23 0 R
 /FontDescriptor 23 0 R

+ 3 - 3
docs/cn/hdfs_design.pdf

@@ -978,7 +978,7 @@ endobj
 endobj
 endobj
 148 0 obj
 148 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /5E6fd4ARPLUMingCN,Light
+/FontName /6E3a34ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -1002,13 +1002,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /5E6fd4ARPLUMingCN,Light
+/BaseFont /6E3a34ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 151 0 R ]  >>
 /DescendantFonts [ 151 0 R ]  >>
 endobj
 endobj
 151 0 obj
 151 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /5E6fd4ARPLUMingCN,Light 
+/BaseFont /6E3a34ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 148 0 R
 /FontDescriptor 148 0 R

+ 21 - 21
docs/cn/hdfs_permissions_guide.pdf

@@ -276,7 +276,7 @@ endobj
 endobj
 endobj
 47 0 obj
 47 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /17Ead51ARPLUMingCN,Light
+/FontName /4E3235ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -300,13 +300,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /17Ead51ARPLUMingCN,Light
+/BaseFont /4E3235ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 50 0 R ]  >>
 /DescendantFonts [ 50 0 R ]  >>
 endobj
 endobj
 50 0 obj
 50 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /17Ead51ARPLUMingCN,Light 
+/BaseFont /4E3235ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 47 0 R
 /FontDescriptor 47 0 R
@@ -400,31 +400,31 @@ endobj
 xref
 xref
 0 52
 0 52
 0000000000 65535 f 
 0000000000 65535 f 
-0000130510 00000 n 
-0000130596 00000 n 
-0000130688 00000 n 
+0000130507 00000 n 
+0000130593 00000 n 
+0000130685 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000000825 00000 n 
 0000000825 00000 n 
 0000000945 00000 n 
 0000000945 00000 n 
 0000001026 00000 n 
 0000001026 00000 n 
-0000130812 00000 n 
+0000130809 00000 n 
 0000001159 00000 n 
 0000001159 00000 n 
-0000130875 00000 n 
+0000130872 00000 n 
 0000001290 00000 n 
 0000001290 00000 n 
-0000130941 00000 n 
+0000130938 00000 n 
 0000001425 00000 n 
 0000001425 00000 n 
-0000131005 00000 n 
+0000131002 00000 n 
 0000001560 00000 n 
 0000001560 00000 n 
-0000131071 00000 n 
+0000131068 00000 n 
 0000001695 00000 n 
 0000001695 00000 n 
-0000131137 00000 n 
+0000131134 00000 n 
 0000001830 00000 n 
 0000001830 00000 n 
-0000131203 00000 n 
+0000131200 00000 n 
 0000001963 00000 n 
 0000001963 00000 n 
-0000131269 00000 n 
+0000131266 00000 n 
 0000002098 00000 n 
 0000002098 00000 n 
-0000131335 00000 n 
+0000131332 00000 n 
 0000002233 00000 n 
 0000002233 00000 n 
 0000004561 00000 n 
 0000004561 00000 n 
 0000004669 00000 n 
 0000004669 00000 n 
@@ -433,7 +433,7 @@ xref
 0000009474 00000 n 
 0000009474 00000 n 
 0000009582 00000 n 
 0000009582 00000 n 
 0000011561 00000 n 
 0000011561 00000 n 
-0000131399 00000 n 
+0000131396 00000 n 
 0000011669 00000 n 
 0000011669 00000 n 
 0000011776 00000 n 
 0000011776 00000 n 
 0000011912 00000 n 
 0000011912 00000 n 
@@ -447,10 +447,10 @@ xref
 0000013069 00000 n 
 0000013069 00000 n 
 0000013177 00000 n 
 0000013177 00000 n 
 0000013297 00000 n 
 0000013297 00000 n 
-0000013522 00000 n 
-0000128000 00000 n 
-0000128148 00000 n 
-0000130394 00000 n 
+0000013521 00000 n 
+0000127999 00000 n 
+0000128146 00000 n 
+0000130391 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 52
 /Size 52
@@ -458,5 +458,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-131450
+131447
 %%EOF
 %%EOF

+ 11 - 11
docs/cn/hdfs_quota_admin_guide.pdf

@@ -28,7 +28,7 @@ endobj
 endobj
 endobj
 8 0 obj
 8 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /8E8ef6ARPLUMingCN,Light
+/FontName /19E8d8aARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -52,13 +52,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /8E8ef6ARPLUMingCN,Light
+/BaseFont /19E8d8aARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 11 0 R ]  >>
 /DescendantFonts [ 11 0 R ]  >>
 endobj
 endobj
 11 0 obj
 11 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /8E8ef6ARPLUMingCN,Light 
+/BaseFont /19E8d8aARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 8 0 R
 /FontDescriptor 8 0 R
@@ -91,18 +91,18 @@ endobj
 xref
 xref
 0 13
 0 13
 0000000000 65535 f 
 0000000000 65535 f 
-0000047869 00000 n 
-0000047927 00000 n 
-0000047977 00000 n 
+0000047872 00000 n 
+0000047930 00000 n 
+0000047980 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000001741 00000 n 
 0000001741 00000 n 
 0000001847 00000 n 
 0000001847 00000 n 
 0000001954 00000 n 
 0000001954 00000 n 
-0000002176 00000 n 
-0000046566 00000 n 
-0000046713 00000 n 
-0000047753 00000 n 
+0000002177 00000 n 
+0000046567 00000 n 
+0000046715 00000 n 
+0000047756 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 13
 /Size 13
@@ -110,5 +110,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-48078
+48081
 %%EOF
 %%EOF

+ 3 - 3
docs/cn/hdfs_shell.pdf

@@ -782,7 +782,7 @@ endobj
 endobj
 endobj
 122 0 obj
 122 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /18Eaf21ARPLUMingCN,Light
+/FontName /16E701fARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -806,13 +806,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /18Eaf21ARPLUMingCN,Light
+/BaseFont /16E701fARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 125 0 R ]  >>
 /DescendantFonts [ 125 0 R ]  >>
 endobj
 endobj
 125 0 obj
 125 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /18Eaf21ARPLUMingCN,Light 
+/BaseFont /16E701fARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 122 0 R
 /FontDescriptor 122 0 R

+ 27 - 27
docs/cn/hdfs_user_guide.pdf

@@ -785,7 +785,7 @@ endobj
 endobj
 endobj
 104 0 obj
 104 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /3E615dARPLUMingCN,Light
+/FontName /14E68a1ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -809,13 +809,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /3E615dARPLUMingCN,Light
+/BaseFont /14E68a1ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 107 0 R ]  >>
 /DescendantFonts [ 107 0 R ]  >>
 endobj
 endobj
 107 0 obj
 107 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /3E615dARPLUMingCN,Light 
+/BaseFont /14E68a1ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 104 0 R
 /FontDescriptor 104 0 R
@@ -945,43 +945,43 @@ endobj
 xref
 xref
 0 109
 0 109
 0000000000 65535 f 
 0000000000 65535 f 
-0000190643 00000 n 
-0000190743 00000 n 
-0000190835 00000 n 
+0000190646 00000 n 
+0000190746 00000 n 
+0000190838 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000001135 00000 n 
 0000001135 00000 n 
 0000001255 00000 n 
 0000001255 00000 n 
 0000001378 00000 n 
 0000001378 00000 n 
-0000190940 00000 n 
+0000190943 00000 n 
 0000001511 00000 n 
 0000001511 00000 n 
-0000191003 00000 n 
+0000191006 00000 n 
 0000001642 00000 n 
 0000001642 00000 n 
-0000191069 00000 n 
+0000191072 00000 n 
 0000001777 00000 n 
 0000001777 00000 n 
-0000191135 00000 n 
+0000191138 00000 n 
 0000001912 00000 n 
 0000001912 00000 n 
-0000191201 00000 n 
+0000191204 00000 n 
 0000002047 00000 n 
 0000002047 00000 n 
-0000191267 00000 n 
+0000191270 00000 n 
 0000002182 00000 n 
 0000002182 00000 n 
-0000191333 00000 n 
+0000191336 00000 n 
 0000002315 00000 n 
 0000002315 00000 n 
-0000191397 00000 n 
+0000191400 00000 n 
 0000002450 00000 n 
 0000002450 00000 n 
-0000191463 00000 n 
+0000191466 00000 n 
 0000002585 00000 n 
 0000002585 00000 n 
-0000191529 00000 n 
+0000191532 00000 n 
 0000002720 00000 n 
 0000002720 00000 n 
-0000191595 00000 n 
+0000191598 00000 n 
 0000002855 00000 n 
 0000002855 00000 n 
-0000191659 00000 n 
+0000191662 00000 n 
 0000002988 00000 n 
 0000002988 00000 n 
-0000191725 00000 n 
+0000191728 00000 n 
 0000003123 00000 n 
 0000003123 00000 n 
-0000191791 00000 n 
+0000191794 00000 n 
 0000003258 00000 n 
 0000003258 00000 n 
-0000191857 00000 n 
+0000191860 00000 n 
 0000003393 00000 n 
 0000003393 00000 n 
 0000006479 00000 n 
 0000006479 00000 n 
 0000006602 00000 n 
 0000006602 00000 n 
@@ -1031,7 +1031,7 @@ xref
 0000025837 00000 n 
 0000025837 00000 n 
 0000026034 00000 n 
 0000026034 00000 n 
 0000026218 00000 n 
 0000026218 00000 n 
-0000191923 00000 n 
+0000191926 00000 n 
 0000026388 00000 n 
 0000026388 00000 n 
 0000026495 00000 n 
 0000026495 00000 n 
 0000026617 00000 n 
 0000026617 00000 n 
@@ -1049,10 +1049,10 @@ xref
 0000028595 00000 n 
 0000028595 00000 n 
 0000028726 00000 n 
 0000028726 00000 n 
 0000028835 00000 n 
 0000028835 00000 n 
-0000029061 00000 n 
-0000187489 00000 n 
-0000187638 00000 n 
-0000190526 00000 n 
+0000029062 00000 n 
+0000187490 00000 n 
+0000187640 00000 n 
+0000190529 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 109
 /Size 109
@@ -1060,5 +1060,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-191975
+191978
 %%EOF
 %%EOF

+ 14 - 14
docs/cn/hod.pdf

@@ -125,7 +125,7 @@ endobj
 endobj
 endobj
 22 0 obj
 22 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /10E92e5ARPLUMingCN,Light
+/FontName /7E444aARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -149,13 +149,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /10E92e5ARPLUMingCN,Light
+/BaseFont /7E444aARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 25 0 R ]  >>
 /DescendantFonts [ 25 0 R ]  >>
 endobj
 endobj
 25 0 obj
 25 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /10E92e5ARPLUMingCN,Light 
+/BaseFont /7E444aARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 22 0 R
 /FontDescriptor 22 0 R
@@ -207,32 +207,32 @@ endobj
 xref
 xref
 0 27
 0 27
 0000000000 65535 f 
 0000000000 65535 f 
-0000054509 00000 n 
-0000054574 00000 n 
-0000054666 00000 n 
+0000054506 00000 n 
+0000054571 00000 n 
+0000054663 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000000558 00000 n 
 0000000558 00000 n 
 0000000678 00000 n 
 0000000678 00000 n 
 0000000710 00000 n 
 0000000710 00000 n 
-0000054768 00000 n 
+0000054765 00000 n 
 0000000843 00000 n 
 0000000843 00000 n 
-0000054831 00000 n 
+0000054828 00000 n 
 0000000974 00000 n 
 0000000974 00000 n 
 0000002833 00000 n 
 0000002833 00000 n 
 0000002956 00000 n 
 0000002956 00000 n 
 0000002997 00000 n 
 0000002997 00000 n 
 0000003167 00000 n 
 0000003167 00000 n 
 0000003338 00000 n 
 0000003338 00000 n 
-0000054897 00000 n 
+0000054894 00000 n 
 0000003507 00000 n 
 0000003507 00000 n 
 0000003614 00000 n 
 0000003614 00000 n 
 0000003722 00000 n 
 0000003722 00000 n 
 0000003830 00000 n 
 0000003830 00000 n 
-0000004055 00000 n 
-0000053142 00000 n 
-0000053290 00000 n 
-0000054393 00000 n 
+0000004054 00000 n 
+0000053141 00000 n 
+0000053288 00000 n 
+0000054390 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 27
 /Size 27
@@ -240,5 +240,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-54948
+54945
 %%EOF
 %%EOF

+ 28 - 28
docs/cn/hod_admin_guide.pdf

@@ -635,7 +635,7 @@ endobj
 endobj
 endobj
 91 0 obj
 91 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /12E9e5aARPLUMingCN,Light
+/FontName /8E48c0ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -659,13 +659,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /12E9e5aARPLUMingCN,Light
+/BaseFont /8E48c0ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 94 0 R ]  >>
 /DescendantFonts [ 94 0 R ]  >>
 endobj
 endobj
 94 0 obj
 94 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /12E9e5aARPLUMingCN,Light 
+/BaseFont /8E48c0ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 91 0 R
 /FontDescriptor 91 0 R
@@ -801,37 +801,37 @@ endobj
 xref
 xref
 0 96
 0 96
 0000000000 65535 f 
 0000000000 65535 f 
-0000175215 00000 n 
-0000175322 00000 n 
-0000175414 00000 n 
+0000175212 00000 n 
+0000175319 00000 n 
+0000175411 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000001083 00000 n 
 0000001083 00000 n 
 0000001203 00000 n 
 0000001203 00000 n 
 0000001305 00000 n 
 0000001305 00000 n 
-0000175516 00000 n 
+0000175513 00000 n 
 0000001438 00000 n 
 0000001438 00000 n 
-0000175579 00000 n 
+0000175576 00000 n 
 0000001569 00000 n 
 0000001569 00000 n 
-0000175645 00000 n 
+0000175642 00000 n 
 0000001704 00000 n 
 0000001704 00000 n 
-0000175710 00000 n 
+0000175707 00000 n 
 0000001839 00000 n 
 0000001839 00000 n 
-0000175776 00000 n 
+0000175773 00000 n 
 0000001974 00000 n 
 0000001974 00000 n 
-0000175842 00000 n 
+0000175839 00000 n 
 0000002109 00000 n 
 0000002109 00000 n 
-0000175908 00000 n 
+0000175905 00000 n 
 0000002242 00000 n 
 0000002242 00000 n 
-0000175974 00000 n 
+0000175971 00000 n 
 0000002377 00000 n 
 0000002377 00000 n 
-0000176040 00000 n 
+0000176037 00000 n 
 0000002512 00000 n 
 0000002512 00000 n 
-0000176106 00000 n 
+0000176103 00000 n 
 0000002647 00000 n 
 0000002647 00000 n 
-0000176172 00000 n 
+0000176169 00000 n 
 0000002782 00000 n 
 0000002782 00000 n 
-0000176238 00000 n 
+0000176235 00000 n 
 0000002915 00000 n 
 0000002915 00000 n 
 0000005593 00000 n 
 0000005593 00000 n 
 0000005716 00000 n 
 0000005716 00000 n 
@@ -869,7 +869,7 @@ xref
 0000023696 00000 n 
 0000023696 00000 n 
 0000023919 00000 n 
 0000023919 00000 n 
 0000025132 00000 n 
 0000025132 00000 n 
-0000176304 00000 n 
+0000176301 00000 n 
 0000025240 00000 n 
 0000025240 00000 n 
 0000025347 00000 n 
 0000025347 00000 n 
 0000025485 00000 n 
 0000025485 00000 n 
@@ -880,22 +880,22 @@ xref
 0000026214 00000 n 
 0000026214 00000 n 
 0000026354 00000 n 
 0000026354 00000 n 
 0000026553 00000 n 
 0000026553 00000 n 
-0000176355 00000 n 
+0000176352 00000 n 
 0000026839 00000 n 
 0000026839 00000 n 
-0000176421 00000 n 
+0000176418 00000 n 
 0000027050 00000 n 
 0000027050 00000 n 
 0000027292 00000 n 
 0000027292 00000 n 
-0000176487 00000 n 
+0000176484 00000 n 
 0000027593 00000 n 
 0000027593 00000 n 
 0000027790 00000 n 
 0000027790 00000 n 
-0000176553 00000 n 
+0000176550 00000 n 
 0000028173 00000 n 
 0000028173 00000 n 
 0000028401 00000 n 
 0000028401 00000 n 
 0000028509 00000 n 
 0000028509 00000 n 
-0000028734 00000 n 
-0000172258 00000 n 
-0000172406 00000 n 
-0000175099 00000 n 
+0000028733 00000 n 
+0000172257 00000 n 
+0000172404 00000 n 
+0000175096 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 96
 /Size 96
@@ -903,5 +903,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-176617
+176614
 %%EOF
 %%EOF

+ 22 - 22
docs/cn/hod_config_guide.pdf

@@ -299,7 +299,7 @@ endobj
 endobj
 endobj
 50 0 obj
 50 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /19Eb0b5ARPLUMingCN,Light
+/FontName /9E4d2eARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -323,13 +323,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /19Eb0b5ARPLUMingCN,Light
+/BaseFont /9E4d2eARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 53 0 R ]  >>
 /DescendantFonts [ 53 0 R ]  >>
 endobj
 endobj
 53 0 obj
 53 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /19Eb0b5ARPLUMingCN,Light 
+/BaseFont /9E4d2eARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 50 0 R
 /FontDescriptor 50 0 R
@@ -429,33 +429,33 @@ endobj
 xref
 xref
 0 55
 0 55
 0000000000 65535 f 
 0000000000 65535 f 
-0000123044 00000 n 
-0000123130 00000 n 
-0000123222 00000 n 
+0000123041 00000 n 
+0000123127 00000 n 
+0000123219 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000000902 00000 n 
 0000000902 00000 n 
 0000001022 00000 n 
 0000001022 00000 n 
 0000001110 00000 n 
 0000001110 00000 n 
-0000123324 00000 n 
+0000123321 00000 n 
 0000001243 00000 n 
 0000001243 00000 n 
-0000123387 00000 n 
+0000123384 00000 n 
 0000001374 00000 n 
 0000001374 00000 n 
-0000123453 00000 n 
+0000123450 00000 n 
 0000001509 00000 n 
 0000001509 00000 n 
-0000123519 00000 n 
+0000123516 00000 n 
 0000001644 00000 n 
 0000001644 00000 n 
-0000123585 00000 n 
+0000123582 00000 n 
 0000001779 00000 n 
 0000001779 00000 n 
-0000123650 00000 n 
+0000123647 00000 n 
 0000001914 00000 n 
 0000001914 00000 n 
-0000123716 00000 n 
+0000123713 00000 n 
 0000002047 00000 n 
 0000002047 00000 n 
-0000123780 00000 n 
+0000123777 00000 n 
 0000002182 00000 n 
 0000002182 00000 n 
-0000123846 00000 n 
+0000123843 00000 n 
 0000002317 00000 n 
 0000002317 00000 n 
-0000123912 00000 n 
+0000123909 00000 n 
 0000002452 00000 n 
 0000002452 00000 n 
 0000004685 00000 n 
 0000004685 00000 n 
 0000004793 00000 n 
 0000004793 00000 n 
@@ -466,7 +466,7 @@ xref
 0000011072 00000 n 
 0000011072 00000 n 
 0000011180 00000 n 
 0000011180 00000 n 
 0000013504 00000 n 
 0000013504 00000 n 
-0000123978 00000 n 
+0000123975 00000 n 
 0000013612 00000 n 
 0000013612 00000 n 
 0000013734 00000 n 
 0000013734 00000 n 
 0000013863 00000 n 
 0000013863 00000 n 
@@ -479,10 +479,10 @@ xref
 0000015429 00000 n 
 0000015429 00000 n 
 0000015625 00000 n 
 0000015625 00000 n 
 0000015733 00000 n 
 0000015733 00000 n 
-0000015958 00000 n 
-0000120671 00000 n 
-0000120819 00000 n 
-0000122928 00000 n 
+0000015957 00000 n 
+0000120670 00000 n 
+0000120817 00000 n 
+0000122925 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 55
 /Size 55
@@ -490,5 +490,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-124029
+124026
 %%EOF
 %%EOF

+ 3 - 3
docs/cn/hod_user_guide.pdf

@@ -944,7 +944,7 @@ endobj
 endobj
 endobj
 145 0 obj
 145 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /11E99c5ARPLUMingCN,Light
+/FontName /10E54eeARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -968,13 +968,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /11E99c5ARPLUMingCN,Light
+/BaseFont /10E54eeARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 148 0 R ]  >>
 /DescendantFonts [ 148 0 R ]  >>
 endobj
 endobj
 148 0 obj
 148 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /11E99c5ARPLUMingCN,Light 
+/BaseFont /10E54eeARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 145 0 R
 /FontDescriptor 145 0 R

+ 11 - 11
docs/cn/index.pdf

@@ -141,7 +141,7 @@ endobj
 endobj
 endobj
 18 0 obj
 18 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /1E5749ARPLUMingCN,Light
+/FontName /13E6609ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -165,13 +165,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /1E5749ARPLUMingCN,Light
+/BaseFont /13E6609ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 21 0 R ]  >>
 /DescendantFonts [ 21 0 R ]  >>
 endobj
 endobj
 21 0 obj
 21 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /1E5749ARPLUMingCN,Light 
+/BaseFont /13E6609ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 18 0 R
 /FontDescriptor 18 0 R
@@ -204,9 +204,9 @@ endobj
 xref
 xref
 0 23
 0 23
 0000000000 65535 f 
 0000000000 65535 f 
-0000028211 00000 n 
-0000028269 00000 n 
-0000028319 00000 n 
+0000028214 00000 n 
+0000028272 00000 n 
+0000028322 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000001566 00000 n 
 0000001566 00000 n 
@@ -222,10 +222,10 @@ xref
 0000003185 00000 n 
 0000003185 00000 n 
 0000003368 00000 n 
 0000003368 00000 n 
 0000003476 00000 n 
 0000003476 00000 n 
-0000003700 00000 n 
-0000027336 00000 n 
-0000027483 00000 n 
-0000028095 00000 n 
+0000003701 00000 n 
+0000027337 00000 n 
+0000027485 00000 n 
+0000028098 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 23
 /Size 23
@@ -233,5 +233,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-28421
+28424
 %%EOF
 %%EOF

+ 11 - 11
docs/cn/linkmap.pdf

@@ -43,7 +43,7 @@ endobj
 endobj
 endobj
 10 0 obj
 10 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /15Ea77cARPLUMingCN,Light
+/FontName /1Efc8ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -67,13 +67,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /15Ea77cARPLUMingCN,Light
+/BaseFont /1Efc8ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 13 0 R ]  >>
 /DescendantFonts [ 13 0 R ]  >>
 endobj
 endobj
 13 0 obj
 13 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /15Ea77cARPLUMingCN,Light 
+/BaseFont /1Efc8ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 10 0 R
 /FontDescriptor 10 0 R
@@ -106,9 +106,9 @@ endobj
 xref
 xref
 0 15
 0 15
 0000000000 65535 f 
 0000000000 65535 f 
-0000026651 00000 n 
-0000026715 00000 n 
-0000026765 00000 n 
+0000026645 00000 n 
+0000026709 00000 n 
+0000026759 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000001269 00000 n 
 0000001269 00000 n 
@@ -116,10 +116,10 @@ xref
 0000001953 00000 n 
 0000001953 00000 n 
 0000002059 00000 n 
 0000002059 00000 n 
 0000002166 00000 n 
 0000002166 00000 n 
-0000002391 00000 n 
-0000025730 00000 n 
-0000025878 00000 n 
-0000026535 00000 n 
+0000002389 00000 n 
+0000025728 00000 n 
+0000025874 00000 n 
+0000026529 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 15
 /Size 15
@@ -127,5 +127,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-26866
+26860
 %%EOF
 %%EOF

+ 63 - 63
docs/cn/mapred_tutorial.pdf

@@ -2702,7 +2702,7 @@ endobj
 endobj
 endobj
 336 0 obj
 336 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /7E8ac2ARPLUMingCN,Light
+/FontName /17E81b4ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -2726,13 +2726,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /7E8ac2ARPLUMingCN,Light
+/BaseFont /17E81b4ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 339 0 R ]  >>
 /DescendantFonts [ 339 0 R ]  >>
 endobj
 endobj
 339 0 obj
 339 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /7E8ac2ARPLUMingCN,Light 
+/BaseFont /17E81b4ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 336 0 R
 /FontDescriptor 336 0 R
@@ -3078,53 +3078,53 @@ endobj
 xref
 xref
 0 341
 0 341
 0000000000 65535 f 
 0000000000 65535 f 
-0000339724 00000 n 
-0000340029 00000 n 
-0000340122 00000 n 
+0000339727 00000 n 
+0000340032 00000 n 
+0000340125 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000001275 00000 n 
 0000001275 00000 n 
 0000001395 00000 n 
 0000001395 00000 n 
 0000001553 00000 n 
 0000001553 00000 n 
-0000340227 00000 n 
+0000340230 00000 n 
 0000001686 00000 n 
 0000001686 00000 n 
-0000340290 00000 n 
+0000340293 00000 n 
 0000001817 00000 n 
 0000001817 00000 n 
-0000340356 00000 n 
+0000340359 00000 n 
 0000001952 00000 n 
 0000001952 00000 n 
-0000340422 00000 n 
+0000340425 00000 n 
 0000002087 00000 n 
 0000002087 00000 n 
-0000340488 00000 n 
+0000340491 00000 n 
 0000002222 00000 n 
 0000002222 00000 n 
-0000340553 00000 n 
+0000340556 00000 n 
 0000002357 00000 n 
 0000002357 00000 n 
-0000340619 00000 n 
+0000340622 00000 n 
 0000002490 00000 n 
 0000002490 00000 n 
-0000340684 00000 n 
+0000340687 00000 n 
 0000002625 00000 n 
 0000002625 00000 n 
-0000340750 00000 n 
+0000340753 00000 n 
 0000002760 00000 n 
 0000002760 00000 n 
-0000340816 00000 n 
+0000340819 00000 n 
 0000002895 00000 n 
 0000002895 00000 n 
-0000340882 00000 n 
+0000340885 00000 n 
 0000003030 00000 n 
 0000003030 00000 n 
-0000340949 00000 n 
+0000340952 00000 n 
 0000003163 00000 n 
 0000003163 00000 n 
-0000341016 00000 n 
+0000341019 00000 n 
 0000003298 00000 n 
 0000003298 00000 n 
-0000341083 00000 n 
+0000341086 00000 n 
 0000003433 00000 n 
 0000003433 00000 n 
-0000341150 00000 n 
+0000341153 00000 n 
 0000003568 00000 n 
 0000003568 00000 n 
-0000341217 00000 n 
+0000341220 00000 n 
 0000003703 00000 n 
 0000003703 00000 n 
-0000341284 00000 n 
+0000341287 00000 n 
 0000003836 00000 n 
 0000003836 00000 n 
-0000341349 00000 n 
+0000341352 00000 n 
 0000003971 00000 n 
 0000003971 00000 n 
-0000341416 00000 n 
+0000341419 00000 n 
 0000004106 00000 n 
 0000004106 00000 n 
-0000341482 00000 n 
+0000341485 00000 n 
 0000004241 00000 n 
 0000004241 00000 n 
 0000007046 00000 n 
 0000007046 00000 n 
 0000007169 00000 n 
 0000007169 00000 n 
@@ -3233,7 +3233,7 @@ xref
 0000064520 00000 n 
 0000064520 00000 n 
 0000064646 00000 n 
 0000064646 00000 n 
 0000064715 00000 n 
 0000064715 00000 n 
-0000341549 00000 n 
+0000341552 00000 n 
 0000064847 00000 n 
 0000064847 00000 n 
 0000065088 00000 n 
 0000065088 00000 n 
 0000065323 00000 n 
 0000065323 00000 n 
@@ -3331,7 +3331,7 @@ xref
 0000119023 00000 n 
 0000119023 00000 n 
 0000119133 00000 n 
 0000119133 00000 n 
 0000120784 00000 n 
 0000120784 00000 n 
-0000341609 00000 n 
+0000341612 00000 n 
 0000120894 00000 n 
 0000120894 00000 n 
 0000121004 00000 n 
 0000121004 00000 n 
 0000121146 00000 n 
 0000121146 00000 n 
@@ -3342,71 +3342,71 @@ xref
 0000121938 00000 n 
 0000121938 00000 n 
 0000122059 00000 n 
 0000122059 00000 n 
 0000122316 00000 n 
 0000122316 00000 n 
-0000341663 00000 n 
+0000341666 00000 n 
 0000122511 00000 n 
 0000122511 00000 n 
-0000341729 00000 n 
+0000341732 00000 n 
 0000122705 00000 n 
 0000122705 00000 n 
-0000341796 00000 n 
+0000341799 00000 n 
 0000122876 00000 n 
 0000122876 00000 n 
-0000341863 00000 n 
+0000341866 00000 n 
 0000123091 00000 n 
 0000123091 00000 n 
-0000341930 00000 n 
+0000341933 00000 n 
 0000123259 00000 n 
 0000123259 00000 n 
-0000341997 00000 n 
+0000342000 00000 n 
 0000123466 00000 n 
 0000123466 00000 n 
-0000342064 00000 n 
+0000342067 00000 n 
 0000123670 00000 n 
 0000123670 00000 n 
-0000342131 00000 n 
+0000342134 00000 n 
 0000123847 00000 n 
 0000123847 00000 n 
-0000342198 00000 n 
+0000342201 00000 n 
 0000124066 00000 n 
 0000124066 00000 n 
-0000342266 00000 n 
+0000342269 00000 n 
 0000124242 00000 n 
 0000124242 00000 n 
-0000342334 00000 n 
+0000342337 00000 n 
 0000124439 00000 n 
 0000124439 00000 n 
-0000342400 00000 n 
+0000342403 00000 n 
 0000124618 00000 n 
 0000124618 00000 n 
 0000124824 00000 n 
 0000124824 00000 n 
 0000124975 00000 n 
 0000124975 00000 n 
 0000125159 00000 n 
 0000125159 00000 n 
-0000342468 00000 n 
+0000342471 00000 n 
 0000125383 00000 n 
 0000125383 00000 n 
 0000125522 00000 n 
 0000125522 00000 n 
-0000342535 00000 n 
+0000342538 00000 n 
 0000125723 00000 n 
 0000125723 00000 n 
-0000342603 00000 n 
+0000342606 00000 n 
 0000125899 00000 n 
 0000125899 00000 n 
 0000126087 00000 n 
 0000126087 00000 n 
-0000342671 00000 n 
+0000342674 00000 n 
 0000126288 00000 n 
 0000126288 00000 n 
-0000342739 00000 n 
+0000342742 00000 n 
 0000126522 00000 n 
 0000126522 00000 n 
 0000126710 00000 n 
 0000126710 00000 n 
-0000342807 00000 n 
+0000342810 00000 n 
 0000126911 00000 n 
 0000126911 00000 n 
-0000342874 00000 n 
+0000342877 00000 n 
 0000127075 00000 n 
 0000127075 00000 n 
-0000342942 00000 n 
+0000342945 00000 n 
 0000127302 00000 n 
 0000127302 00000 n 
-0000343008 00000 n 
+0000343011 00000 n 
 0000127457 00000 n 
 0000127457 00000 n 
-0000343075 00000 n 
+0000343078 00000 n 
 0000127678 00000 n 
 0000127678 00000 n 
-0000343142 00000 n 
+0000343145 00000 n 
 0000127863 00000 n 
 0000127863 00000 n 
-0000343210 00000 n 
+0000343213 00000 n 
 0000128050 00000 n 
 0000128050 00000 n 
-0000343278 00000 n 
+0000343281 00000 n 
 0000128243 00000 n 
 0000128243 00000 n 
-0000343345 00000 n 
+0000343348 00000 n 
 0000128437 00000 n 
 0000128437 00000 n 
-0000343413 00000 n 
+0000343416 00000 n 
 0000128594 00000 n 
 0000128594 00000 n 
-0000343481 00000 n 
+0000343484 00000 n 
 0000128785 00000 n 
 0000128785 00000 n 
-0000343549 00000 n 
+0000343552 00000 n 
 0000128974 00000 n 
 0000128974 00000 n 
-0000343616 00000 n 
+0000343619 00000 n 
 0000129131 00000 n 
 0000129131 00000 n 
 0000129288 00000 n 
 0000129288 00000 n 
 0000129528 00000 n 
 0000129528 00000 n 
@@ -3414,10 +3414,10 @@ xref
 0000129806 00000 n 
 0000129806 00000 n 
 0000129942 00000 n 
 0000129942 00000 n 
 0000130051 00000 n 
 0000130051 00000 n 
-0000130277 00000 n 
-0000335859 00000 n 
-0000336008 00000 n 
-0000339607 00000 n 
+0000130278 00000 n 
+0000335860 00000 n 
+0000336010 00000 n 
+0000339610 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 341
 /Size 341
@@ -3425,5 +3425,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-343684
+343687
 %%EOF
 %%EOF

+ 3 - 3
docs/cn/native_libraries.pdf

@@ -462,7 +462,7 @@ endobj
 endobj
 endobj
 62 0 obj
 62 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /4E6d4dARPLUMingCN,Light
+/FontName /3E2da3ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -486,13 +486,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /4E6d4dARPLUMingCN,Light
+/BaseFont /3E2da3ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 65 0 R ]  >>
 /DescendantFonts [ 65 0 R ]  >>
 endobj
 endobj
 65 0 obj
 65 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /4E6d4dARPLUMingCN,Light 
+/BaseFont /3E2da3ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 62 0 R
 /FontDescriptor 62 0 R

+ 25 - 25
docs/cn/quickstart.pdf

@@ -439,7 +439,7 @@ endobj
 endobj
 endobj
 67 0 obj
 67 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /6E7853ARPLUMingCN,Light
+/FontName /18E89afARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -463,13 +463,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /6E7853ARPLUMingCN,Light
+/BaseFont /18E89afARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 70 0 R ]  >>
 /DescendantFonts [ 70 0 R ]  >>
 endobj
 endobj
 70 0 obj
 70 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /6E7853ARPLUMingCN,Light 
+/BaseFont /18E89afARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 67 0 R
 /FontDescriptor 67 0 R
@@ -587,39 +587,39 @@ endobj
 xref
 xref
 0 72
 0 72
 0000000000 65535 f 
 0000000000 65535 f 
-0000104934 00000 n 
-0000105020 00000 n 
-0000105112 00000 n 
+0000104937 00000 n 
+0000105023 00000 n 
+0000105115 00000 n 
 0000000015 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000071 00000 n 
 0000000962 00000 n 
 0000000962 00000 n 
 0000001082 00000 n 
 0000001082 00000 n 
 0000001191 00000 n 
 0000001191 00000 n 
-0000105214 00000 n 
+0000105217 00000 n 
 0000001324 00000 n 
 0000001324 00000 n 
-0000105277 00000 n 
+0000105280 00000 n 
 0000001455 00000 n 
 0000001455 00000 n 
-0000105341 00000 n 
+0000105344 00000 n 
 0000001590 00000 n 
 0000001590 00000 n 
-0000105407 00000 n 
+0000105410 00000 n 
 0000001725 00000 n 
 0000001725 00000 n 
-0000105472 00000 n 
+0000105475 00000 n 
 0000001860 00000 n 
 0000001860 00000 n 
-0000105537 00000 n 
+0000105540 00000 n 
 0000001995 00000 n 
 0000001995 00000 n 
-0000105601 00000 n 
+0000105604 00000 n 
 0000002128 00000 n 
 0000002128 00000 n 
-0000105667 00000 n 
+0000105670 00000 n 
 0000002263 00000 n 
 0000002263 00000 n 
-0000105733 00000 n 
+0000105736 00000 n 
 0000002398 00000 n 
 0000002398 00000 n 
-0000105799 00000 n 
+0000105802 00000 n 
 0000002533 00000 n 
 0000002533 00000 n 
-0000105865 00000 n 
+0000105868 00000 n 
 0000002668 00000 n 
 0000002668 00000 n 
-0000105931 00000 n 
+0000105934 00000 n 
 0000002801 00000 n 
 0000002801 00000 n 
-0000105996 00000 n 
+0000105999 00000 n 
 0000002936 00000 n 
 0000002936 00000 n 
 0000005090 00000 n 
 0000005090 00000 n 
 0000005213 00000 n 
 0000005213 00000 n 
@@ -638,7 +638,7 @@ xref
 0000011885 00000 n 
 0000011885 00000 n 
 0000012058 00000 n 
 0000012058 00000 n 
 0000012229 00000 n 
 0000012229 00000 n 
-0000106062 00000 n 
+0000106065 00000 n 
 0000012397 00000 n 
 0000012397 00000 n 
 0000012504 00000 n 
 0000012504 00000 n 
 0000012682 00000 n 
 0000012682 00000 n 
@@ -654,10 +654,10 @@ xref
 0000014235 00000 n 
 0000014235 00000 n 
 0000014416 00000 n 
 0000014416 00000 n 
 0000014524 00000 n 
 0000014524 00000 n 
-0000014748 00000 n 
-0000102841 00000 n 
-0000102988 00000 n 
-0000104818 00000 n 
+0000014749 00000 n 
+0000102842 00000 n 
+0000102990 00000 n 
+0000104821 00000 n 
 trailer
 trailer
 <<
 <<
 /Size 72
 /Size 72
@@ -665,5 +665,5 @@ trailer
 /Info 4 0 R
 /Info 4 0 R
 >>
 >>
 startxref
 startxref
-106113
+106116
 %%EOF
 %%EOF

+ 3 - 3
docs/cn/streaming.pdf

@@ -859,7 +859,7 @@ endobj
 endobj
 endobj
 130 0 obj
 130 0 obj
 << /Type /FontDescriptor
 << /Type /FontDescriptor
-/FontName /13Ea15eARPLUMingCN,Light
+/FontName /15E6c54ARPLUMingCN,Light
 /FontBBox  [-62 -151 1009 895] 
 /FontBBox  [-62 -151 1009 895] 
 /Flags 33
 /Flags 33
 /CapHeight 603
 /CapHeight 603
@@ -883,13 +883,13 @@ endobj
 << /Type /Font
 << /Type /Font
 /Subtype /Type0
 /Subtype /Type0
 /Name /F15
 /Name /F15
-/BaseFont /13Ea15eARPLUMingCN,Light
+/BaseFont /15E6c54ARPLUMingCN,Light
 /Encoding /Identity-H
 /Encoding /Identity-H
 /DescendantFonts [ 133 0 R ]  >>
 /DescendantFonts [ 133 0 R ]  >>
 endobj
 endobj
 133 0 obj
 133 0 obj
 << /Type /Font
 << /Type /Font
-/BaseFont /13Ea15eARPLUMingCN,Light 
+/BaseFont /15E6c54ARPLUMingCN,Light 
 /Subtype /CIDFontType2
 /Subtype /CIDFontType2
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /CIDSystemInfo << /Registry (Adobe)/Ordering (UCS)/Supplement 0 >>
 /FontDescriptor 130 0 R
 /FontDescriptor 130 0 R

+ 15 - 1
docs/mapred_tutorial.html

@@ -2204,15 +2204,22 @@ document.write("Last Published: " + document.lastModified);
             Setup the job during initialization. For example, create
             Setup the job during initialization. For example, create
             the temporary output directory for the job during the
             the temporary output directory for the job during the
             initialization of the job. 
             initialization of the job. 
+            Job setup is done by a separate task when the job is
+            in PREP state and after initializing tasks. Once the setup task
+            completes, the job will be moved to RUNNING state.
           </li>
           </li>
           
           
 <li>
 <li>
             Cleanup the job after the job completion. For example, remove the
             Cleanup the job after the job completion. For example, remove the
             temporary output directory after the job completion.
             temporary output directory after the job completion.
+            Job cleanup is done by a separate task at the end of the job.
+            Job is declared SUCCEDED/FAILED/KILLED after the cleanup
+            task completes.
           </li>
           </li>
           
           
 <li>
 <li>
             Setup the task temporary output.
             Setup the task temporary output.
+            Task setup is done as part of the same task, during task initialization.
           </li> 
           </li> 
           
           
 <li>
 <li>
@@ -2222,16 +2229,23 @@ document.write("Last Published: " + document.lastModified);
           
           
 <li>
 <li>
             Commit of the task output. 
             Commit of the task output. 
+            Once task is done, the task will commit it's output if required.  
           </li> 
           </li> 
           
           
 <li>
 <li>
             Discard the task commit.
             Discard the task commit.
+            If the task has been failed/killed, the output will be cleaned-up. 
+            If task could not cleanup (in exception block), a separate task 
+            will be launched with same attempt-id to do the cleanup.
           </li>
           </li>
         
         
 </ol>
 </ol>
 <p>
 <p>
 <span class="codefrag">FileOutputCommitter</span> is the default 
 <span class="codefrag">FileOutputCommitter</span> is the default 
-        <span class="codefrag">OutputCommitter</span>.</p>
+        <span class="codefrag">OutputCommitter</span>. Job setup/cleanup tasks occupy 
+        map or reduce slots, whichever is free on the TaskTracker. And
+        JobCleanup task, TaskCleanup tasks and JobSetup task have the highest
+        priority, and in that order.</p>
 <a name="N10CA7"></a><a name="Task+Side-Effect+Files"></a>
 <a name="N10CA7"></a><a name="Task+Side-Effect+Files"></a>
 <h4>Task Side-Effect Files</h4>
 <h4>Task Side-Effect Files</h4>
 <p>In some applications, component tasks need to create and/or write to
 <p>In some applications, component tasks need to create and/or write to

File diff ditekan karena terlalu besar
+ 2 - 2
docs/mapred_tutorial.pdf


+ 101 - 1
docs/releasenotes.html

@@ -1,8 +1,108 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head>
 <html><head>
-    <title>Hadoop 0.19.1</title></head>
+    <title>Hadoop 0.19.2</title></head>
 <body>
 <body>
 <font face="sans-serif">
 <font face="sans-serif">
+	
+<h1>Hadoop 0.19.2 Release Notes</h1>
+The bug fixes and improvements are listed below.
+<ul>
+<h2>Changes Since Hadoop 0.19.1</h2>
+<h3>        Bug
+</h3>
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-3998'>HADOOP-3998</a>] -         Got an exception from ClientFinalizer when the JT is terminated
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-4619'>HADOOP-4619</a>] -         hdfs_write infinite loop when dfs fails and cannot write files &gt; 2 GB
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-4638'>HADOOP-4638</a>] -         Exception thrown in/from RecoveryManager.recover() should be caught and handled
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-4719'>HADOOP-4719</a>] -         The ls shell command documentation is out-dated
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-4780'>HADOOP-4780</a>] -         Task Tracker  burns a lot of cpu in calling getLocalCache
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5146'>HADOOP-5146</a>] -         LocalDirAllocator misses files on the local filesystem
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5154'>HADOOP-5154</a>] -         4-way deadlock in FairShare scheduler
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5213'>HADOOP-5213</a>] -         BZip2CompressionOutputStream NullPointerException
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5231'>HADOOP-5231</a>] -         Negative number of maps in cluster summary
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5233'>HADOOP-5233</a>] -         Reducer not Succeded after 100%
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5241'>HADOOP-5241</a>] -         Reduce tasks get stuck because of over-estimated task size (regression from 0.18)
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5247'>HADOOP-5247</a>] -         NPEs in JobTracker and JobClient when mapred.jobtracker.completeuserjobs.maximum is set to zero.
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5269'>HADOOP-5269</a>] -         TaskTracker.runningTasks holding FAILED_UNCLEAN and KILLED_UNCLEAN taskStatuses forever in some cases.
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5280'>HADOOP-5280</a>] -         When expiring a lost launched task, JT doesn't remove the attempt from the taskidToTIPMap.
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5285'>HADOOP-5285</a>] -         JobTracker hangs for long periods of time
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5326'>HADOOP-5326</a>] -         bzip2 codec (CBZip2OutputStream) creates corrupted output file for some inputs
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5333'>HADOOP-5333</a>] -         The libhdfs append API is not coded correctly
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5374'>HADOOP-5374</a>] -         NPE in JobTracker.getTasksToSave() method
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5376'>HADOOP-5376</a>] -         JobInProgress.obtainTaskCleanupTask() throws an ArrayIndexOutOfBoundsException
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5384'>HADOOP-5384</a>] -         DataNodeCluster should not create blocks with generationStamp == 1
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5392'>HADOOP-5392</a>] -         JobTracker crashes during recovery if job files are garbled
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5421'>HADOOP-5421</a>] -         HADOOP-4638 has broken 0.19 compilation
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5440'>HADOOP-5440</a>] -         Successful taskid are not removed from TaskMemoryManager
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5446'>HADOOP-5446</a>] -         TaskTracker metrics are disabled
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5449'>HADOOP-5449</a>] -         Verify if JobHistory.HistoryCleaner works as expected
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5454'>HADOOP-5454</a>] -         SortedMapWritable: readFields() will not clear values before deserialization
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5465'>HADOOP-5465</a>] -         Blocks remain under-replicated
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5479'>HADOOP-5479</a>] -         NameNode should not send empty block replication request to DataNode
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5522'>HADOOP-5522</a>] -         Document job setup/cleaup tasks and task cleanup tasks in mapred tutorial
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5549'>HADOOP-5549</a>] -         ReplicationMonitor should schedule both replication and deletion work in one iteration
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5551'>HADOOP-5551</a>] -         Namenode permits directory destruction on overwrite
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5554'>HADOOP-5554</a>] -         DataNodeCluster should create blocks with the same generation stamp as the blocks created in CreateEditsLog
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5557'>HADOOP-5557</a>] -         Two minor problems in TestOverReplicatedBlocks
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5579'>HADOOP-5579</a>] -         libhdfs does not set errno correctly
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5644'>HADOOP-5644</a>] -         Namnode is stuck in safe mode
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5671'>HADOOP-5671</a>] -         DistCp.sameFile(..) should return true if src fs does not support checksum
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5728'>HADOOP-5728</a>] -         FSEditLog.printStatistics may cause IndexOutOfBoundsException
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5816'>HADOOP-5816</a>] -         ArrayIndexOutOfBoundsException when using KeyFieldBasedComparator
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5951'>HADOOP-5951</a>] -         StorageInfo needs Apache license header.
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-6017'>HADOOP-6017</a>] -         NameNode and SecondaryNameNode fail to restart because of abnormal filenames.
+</li>
+</ul>
+    
+<h3>        Improvement
+</h3>
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5332'>HADOOP-5332</a>] -         Make support for file append API configurable
+</li>
+<li>[<a href='https://issues.apache.org/jira/browse/HADOOP-5379'>HADOOP-5379</a>] -         Throw exception instead of writing to System.err when there is a CRC error on CBZip2InputStream
+</li>
+</ul>
+</ul>
+
 
 
 <h1>Hadoop 0.19.1 Release Notes</h1>
 <h1>Hadoop 0.19.1 Release Notes</h1>
 Hadoop 0.19.1 fixes serveral problems that may lead to data loss
 Hadoop 0.19.1 fixes serveral problems that may lead to data loss

Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini