|
@@ -259,4 +259,80 @@
|
|
|
<name>mapred.jobtracker.retirejob.interval</name>
|
|
|
<value>0</value>
|
|
|
</property>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>mapred.cluster.map.memory.mb</name>
|
|
|
+ <value>${MAPRED_CLUSTER_MAP_MEMORY_MB}</value>
|
|
|
+ <description>The size, in terms of virtual memory, of a single map slot
|
|
|
+ in the Map-Reduce framework, used by the scheduler.
|
|
|
+ A job can ask for multiple slots for a single map task via
|
|
|
+ mapred.job.map.memory.mb, upto the limit specified by
|
|
|
+ mapred.cluster.max.map.memory.mb, if the scheduler supports the feature.
|
|
|
+ The value of -1 indicates that this feature is turned off.
|
|
|
+ </description>
|
|
|
+ </property>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>mapred.cluster.reduce.memory.mb</name>
|
|
|
+ <value>${MAPRED_CLUSTER_REDUCE_MEMORY_MB}</value>
|
|
|
+ <description>The size, in terms of virtual memory, of a single reduce slot
|
|
|
+ in the Map-Reduce framework, used by the scheduler.
|
|
|
+ A job can ask for multiple slots for a single reduce task via
|
|
|
+ mapred.job.reduce.memory.mb, upto the limit specified by
|
|
|
+ mapred.cluster.max.reduce.memory.mb, if the scheduler supports the feature.
|
|
|
+ The value of -1 indicates that this feature is turned off.
|
|
|
+ </description>
|
|
|
+ </property>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>mapred.cluster.max.map.memory.mb</name>
|
|
|
+ <value>${MAPRED_CLUSTER_MAX_MAP_MEMORY_MB}</value>
|
|
|
+ <description>The maximum size, in terms of virtual memory, of a single map
|
|
|
+ task launched by the Map-Reduce framework, used by the scheduler.
|
|
|
+ A job can ask for multiple slots for a single map task via
|
|
|
+ mapred.job.map.memory.mb, upto the limit specified by
|
|
|
+ mapred.cluster.max.map.memory.mb, if the scheduler supports the feature.
|
|
|
+ The value of -1 indicates that this feature is turned off.
|
|
|
+ </description>
|
|
|
+ </property>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>mapred.cluster.max.reduce.memory.mb</name>
|
|
|
+ <value>${MAPRED_CLUSTER_MAX_REDUCE_MEMORY_MB}</value>
|
|
|
+ <description>The maximum size, in terms of virtual memory, of a single reduce
|
|
|
+ task launched by the Map-Reduce framework, used by the scheduler.
|
|
|
+ A job can ask for multiple slots for a single reduce task via
|
|
|
+ mapred.job.reduce.memory.mb, upto the limit specified by
|
|
|
+ mapred.cluster.max.reduce.memory.mb, if the scheduler supports the feature.
|
|
|
+ The value of -1 indicates that this feature is turned off.
|
|
|
+ </description>
|
|
|
+ </property>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>mapred.job.map.memory.mb</name>
|
|
|
+ <value>${MAPRED_JOB_MAP_MEMORY_MB}</value>
|
|
|
+ <description>The size, in terms of virtual memory, of a single map task
|
|
|
+ for the job.
|
|
|
+ A job can ask for multiple slots for a single map task, rounded up to the
|
|
|
+ next multiple of mapred.cluster.map.memory.mb and upto the limit
|
|
|
+ specified by mapred.cluster.max.map.memory.mb, if the scheduler supports
|
|
|
+ the feature.
|
|
|
+ The value of -1 indicates that this feature is turned off iff
|
|
|
+ mapred.cluster.map.memory.mb is also turned off (-1).
|
|
|
+ </description>
|
|
|
+ </property>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>mapred.job.reduce.memory.mb</name>
|
|
|
+ <value>${MAPRED_JOB_REDUCE_MEMORY_MB}</value>
|
|
|
+ <description>The size, in terms of virtual memory, of a single reduce task
|
|
|
+ for the job.
|
|
|
+ A job can ask for multiple slots for a single map task, rounded up to the
|
|
|
+ next multiple of mapred.cluster.reduce.memory.mb and upto the limit
|
|
|
+ specified by mapred.cluster.max.reduce.memory.mb, if the scheduler supports
|
|
|
+ the feature.
|
|
|
+ The value of -1 indicates that this feature is turned off iff
|
|
|
+ mapred.cluster.reduce.memory.mb is also turned off (-1).
|
|
|
+ </description>
|
|
|
+ </property>
|
|
|
</configuration>
|