You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-commits@hadoop.apache.org by to...@apache.org on 2011/05/12 02:33:47 UTC

svn commit: r1102148 - in /hadoop/mapreduce/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/mapred_tutorial.xml

Author: todd
Date: Thu May 12 00:33:47 2011
New Revision: 1102148

URL: http://svn.apache.org/viewvc?rev=1102148&view=rev
Log:
MAPREDUCE-869. Documentation for config to set map/reduce task environment. Contributed by Alejandro Abdelnur.

Modified:
    hadoop/mapreduce/trunk/CHANGES.txt
    hadoop/mapreduce/trunk/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml

Modified: hadoop/mapreduce/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/CHANGES.txt?rev=1102148&r1=1102147&r2=1102148&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/CHANGES.txt (original)
+++ hadoop/mapreduce/trunk/CHANGES.txt Thu May 12 00:33:47 2011
@@ -87,6 +87,9 @@ Trunk (unreleased changes)
     failed fetch notifications in the JobTracker log.
     (Jeffrey Naisbitt via cdouglas)
 
+    MAPREDUCE-869. Documentation for config to set map/reduce task environment
+    (Alejandro Abdelnur via todd)
+
   OPTIMIZATIONS
     
     MAPREDUCE-2026. Make JobTracker.getJobCounters() and

Modified: hadoop/mapreduce/trunk/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/trunk/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml?rev=1102148&r1=1102147&r2=1102148&view=diff
==============================================================================
--- hadoop/mapreduce/trunk/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml (original)
+++ hadoop/mapreduce/trunk/src/docs/src/documentation/content/xdocs/mapred_tutorial.xml Thu May 12 00:33:47 2011
@@ -1156,13 +1156,13 @@
         
         <p>The child-task inherits the environment of the parent 
         <code>TaskTracker</code>. The user can specify additional options to the
-        child-jvm via the <code>mapred.{map|reduce}.child.java.opts</code> 
+        child-jvm via the <code>mapreduce.{map|reduce}.java.opts</code>
         configuration parameter in the job configuration such as non-standard 
          paths for the run-time linker to search shared libraries via 
         <code>-Djava.library.path=&lt;&gt;</code> etc. If the 
-        <code>mapred.{map|reduce}.child.java.opts</code> parameters contains the 
+        <code>mapreduce.{map|reduce}.java.opts</code> parameters contains the
         symbol <em>@taskid@</em> it is interpolated with value of 
-        <code>taskid</code> of the MapReduce task.</p>
+        <code>taskid</code> of the Map or Reduce task.</p>
         
         <p>Here is an example with multiple arguments and substitutions, 
         showing jvm GC logging, and start of a passwordless JVM JMX agent so that
@@ -1200,6 +1200,10 @@
           <code>&lt;/property&gt;</code>
         </p>
         
+        <p>In addition the <code>mapreduce.{map|reduce}.env</code> properties can be used
+        to add environment variables to the Map or Reduce child process.
+        </p>
+
         <section>
          <title>Configuring Memory Requirements For A Job</title>