MAPREDUCE-6307. Remove property mapreduce.tasktracker.taskmemorymanager.monitoringinterval. Contributed by J.Andreina.
This commit is contained in:
parent
c91b2de68a
commit
83979e61a4
|
@ -239,7 +239,6 @@ The following table lists the configuration property names that are deprecated i
|
|||
| mapred.tasktracker.reduce.tasks.maximum | mapreduce.tasktracker.reduce.tasks.maximum |
|
||||
| mapred.task.tracker.report.address | mapreduce.tasktracker.report.address |
|
||||
| mapred.task.tracker.task-controller | mapreduce.tasktracker.taskcontroller |
|
||||
| mapred.tasktracker.taskmemorymanager.monitoring-interval | mapreduce.tasktracker.taskmemorymanager.monitoringinterval |
|
||||
| mapred.tasktracker.tasks.sleeptime-before-sigkill | mapreduce.tasktracker.tasks.sleeptimebeforesigkill |
|
||||
| mapred.temp.dir | mapreduce.cluster.temp.dir |
|
||||
| mapred.text.key.comparator.options | mapreduce.partition.keycomparator.options |
|
||||
|
|
|
@ -293,6 +293,10 @@ Release 2.8.0 - UNRELEASED
|
|||
CompletedJob#loadFullHistoryData for code optimization.
|
||||
(zxu via rkanter)
|
||||
|
||||
MAPREDUCE-6307. Remove property
|
||||
mapreduce.tasktracker.taskmemorymanager.monitoringinterval.
|
||||
(J.Andreina via aajisaka)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -80,8 +80,6 @@ public interface TTConfig extends MRConfig {
|
|||
"mapreduce.tasktracker.resourcecalculatorplugin";
|
||||
public static final String TT_REDUCE_SLOTS =
|
||||
"mapreduce.tasktracker.reduce.tasks.maximum";
|
||||
public static final String TT_MEMORY_MANAGER_MONITORING_INTERVAL =
|
||||
"mapreduce.tasktracker.taskmemorymanager.monitoringinterval";
|
||||
public static final String TT_LOCAL_CACHE_SIZE =
|
||||
"mapreduce.tasktracker.cache.local.size";
|
||||
public static final String TT_LOCAL_CACHE_SUBDIRS_LIMIT =
|
||||
|
|
|
@ -164,9 +164,6 @@ public class ConfigUtil {
|
|||
TTConfig.TT_RESOURCE_CALCULATOR_PLUGIN),
|
||||
new DeprecationDelta("mapred.tasktracker.reduce.tasks.maximum",
|
||||
TTConfig.TT_REDUCE_SLOTS),
|
||||
new DeprecationDelta(
|
||||
"mapred.tasktracker.taskmemorymanager.monitoring-interval",
|
||||
TTConfig.TT_MEMORY_MANAGER_MONITORING_INTERVAL),
|
||||
new DeprecationDelta(
|
||||
"mapred.tasktracker.tasks.sleeptime-before-sigkill",
|
||||
TTConfig.TT_SLEEP_TIME_BEFORE_SIG_KILL),
|
||||
|
|
|
@ -45,7 +45,6 @@
|
|||
<property><!--Loaded from job.xml--><name>mapreduce.job.outputformat.class</name><value>org.apache.hadoop.mapreduce.lib.output.NullOutputFormat</value></property>
|
||||
<property><!--Loaded from job.xml--><name>yarn.log.server.url</name><value>http://localhost:19888/jobhistory/nmlogs</value></property>
|
||||
<property><!--Loaded from job.xml--><name>hadoop.http.authentication.kerberos.principal</name><value>HTTP/localhost@LOCALHOST</value></property>
|
||||
<property><!--Loaded from job.xml--><name>mapreduce.tasktracker.taskmemorymanager.monitoringinterval</name><value>5000</value></property>
|
||||
<property><!--Loaded from job.xml--><name>s3native.blocksize</name><value>67108864</value></property>
|
||||
<property><!--Loaded from job.xml--><name>dfs.namenode.edits.dir</name><value>${dfs.namenode.name.dir}</value></property>
|
||||
<property><!--Loaded from job.xml--><name>mapreduce.job.map.class</name><value>org.apache.hadoop.mapreduce.SleepJob$SleepMapper</value></property>
|
||||
|
|
|
@ -4580,7 +4580,6 @@
|
|||
"mapreduce.job.outputformat.class" : "org.apache.hadoop.examples.terasort.TeraOutputFormat",
|
||||
"hadoop.jetty.logs.serve.aliases" : "true",
|
||||
"hadoop.http.authentication.kerberos.principal" : "HTTP/_HOST@LOCALHOST",
|
||||
"mapreduce.tasktracker.taskmemorymanager.monitoringinterval" : "5000",
|
||||
"mapreduce.job.reduce.shuffle.consumer.plugin.class" : "org.apache.hadoop.mapreduce.task.reduce.Shuffle",
|
||||
"s3native.blocksize" : "67108864",
|
||||
"dfs.namenode.edits.dir" : "${dfs.namenode.name.dir}",
|
||||
|
@ -9690,7 +9689,6 @@
|
|||
"mapreduce.job.outputformat.class" : "org.apache.hadoop.examples.terasort.TeraOutputFormat",
|
||||
"hadoop.jetty.logs.serve.aliases" : "true",
|
||||
"hadoop.http.authentication.kerberos.principal" : "HTTP/_HOST@LOCALHOST",
|
||||
"mapreduce.tasktracker.taskmemorymanager.monitoringinterval" : "5000",
|
||||
"mapreduce.job.reduce.shuffle.consumer.plugin.class" : "org.apache.hadoop.mapreduce.task.reduce.Shuffle",
|
||||
"s3native.blocksize" : "67108864",
|
||||
"dfs.namenode.edits.dir" : "${dfs.namenode.name.dir}",
|
||||
|
|
Loading…
Reference in New Issue