mapred-default.xml 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  17. <!-- Do not modify this file directly. Instead, copy entries that you -->
  18. <!-- wish to modify from this file into mapred-site.xml and change them -->
  19. <!-- there. If mapred-site.xml does not already exist, create it. -->
  20. <configuration>
  21. <property>
  22. <name>mapreduce.jobtracker.jobhistory.location</name>
  23. <value></value>
  24. <description> If job tracker is static the history files are stored
  25. in this single well known place. If No value is set here, by default,
  26. it is in the local file system at ${hadoop.log.dir}/history.
  27. </description>
  28. </property>
  29. <property>
  30. <name>mapreduce.jobtracker.jobhistory.task.numberprogresssplits</name>
  31. <value>12</value>
  32. <description> Every task attempt progresses from 0.0 to 1.0 [unless
  33. it fails or is killed]. We record, for each task attempt, certain
  34. statistics over each twelfth of the progress range. You can change
  35. the number of intervals we divide the entire range of progress into
  36. by setting this property. Higher values give more precision to the
  37. recorded data, but costs more memory in the job tracker at runtime.
  38. Each increment in this attribute costs 16 bytes per running task.
  39. </description>
  40. </property>
  41. <property>
  42. <name>mapreduce.job.userhistorylocation</name>
  43. <value></value>
  44. <description> User can specify a location to store the history files of
  45. a particular job. If nothing is specified, the logs are stored in
  46. output directory. The files are stored in "_logs/history/" in the directory.
  47. User can stop logging by giving the value "none".
  48. </description>
  49. </property>
  50. <property>
  51. <name>mapreduce.jobtracker.jobhistory.completed.location</name>
  52. <value></value>
  53. <description> The completed job history files are stored at this single well
  54. known location. If nothing is specified, the files are stored at
  55. ${mapreduce.jobtracker.jobhistory.location}/done.
  56. </description>
  57. </property>
  58. <property>
  59. <name>mapreduce.job.committer.setup.cleanup.needed</name>
  60. <value>true</value>
  61. <description> true, if job needs job-setup and job-cleanup.
  62. false, otherwise
  63. </description>
  64. </property>
  65. <!-- i/o properties -->
  66. <property>
  67. <name>mapreduce.task.io.sort.factor</name>
  68. <value>10</value>
  69. <description>The number of streams to merge at once while sorting
  70. files. This determines the number of open file handles.</description>
  71. </property>
  72. <property>
  73. <name>mapreduce.task.io.sort.mb</name>
  74. <value>100</value>
  75. <description>The total amount of buffer memory to use while sorting
  76. files, in megabytes. By default, gives each merge stream 1MB, which
  77. should minimize seeks.</description>
  78. </property>
  79. <property>
  80. <name>mapreduce.map.sort.spill.percent</name>
  81. <value>0.80</value>
  82. <description>The soft limit in the serialization buffer. Once reached, a
  83. thread will begin to spill the contents to disk in the background. Note that
  84. collection will not block if this threshold is exceeded while a spill is
  85. already in progress, so spills may be larger than this threshold when it is
  86. set to less than .5</description>
  87. </property>
  88. <property>
  89. <name>mapreduce.jobtracker.address</name>
  90. <value>local</value>
  91. <description>The host and port that the MapReduce job tracker runs
  92. at. If "local", then jobs are run in-process as a single map
  93. and reduce task.
  94. </description>
  95. </property>
  96. <property>
  97. <name>mapreduce.local.clientfactory.class.name</name>
  98. <value>org.apache.hadoop.mapred.LocalClientFactory</value>
  99. <description>This the client factory that is responsible for
  100. creating local job runner client</description>
  101. </property>
  102. <property>
  103. <name>mapreduce.jobtracker.http.address</name>
  104. <value>0.0.0.0:50030</value>
  105. <description>
  106. The job tracker http server address and port the server will listen on.
  107. If the port is 0 then the server will start on a free port.
  108. </description>
  109. </property>
  110. <property>
  111. <name>mapreduce.jobtracker.handler.count</name>
  112. <value>10</value>
  113. <description>
  114. The number of server threads for the JobTracker. This should be roughly
  115. 4% of the number of tasktracker nodes.
  116. </description>
  117. </property>
  118. <property>
  119. <name>mapreduce.tasktracker.report.address</name>
  120. <value>127.0.0.1:0</value>
  121. <description>The interface and port that task tracker server listens on.
  122. Since it is only connected to by the tasks, it uses the local interface.
  123. EXPERT ONLY. Should only be changed if your host does not have the loopback
  124. interface.</description>
  125. </property>
  126. <property>
  127. <name>mapreduce.cluster.local.dir</name>
  128. <value>${hadoop.tmp.dir}/mapred/local</value>
  129. <description>The local directory where MapReduce stores intermediate
  130. data files. May be a comma-separated list of
  131. directories on different devices in order to spread disk i/o.
  132. Directories that do not exist are ignored.
  133. </description>
  134. </property>
  135. <property>
  136. <name>mapreduce.jobtracker.system.dir</name>
  137. <value>${hadoop.tmp.dir}/mapred/system</value>
  138. <description>The directory where MapReduce stores control files.
  139. </description>
  140. </property>
  141. <property>
  142. <name>mapreduce.jobtracker.staging.root.dir</name>
  143. <value>${hadoop.tmp.dir}/mapred/staging</value>
  144. <description>The root of the staging area for users' job files
  145. In practice, this should be the directory where users' home
  146. directories are located (usually /user)
  147. </description>
  148. </property>
  149. <property>
  150. <name>mapreduce.cluster.temp.dir</name>
  151. <value>${hadoop.tmp.dir}/mapred/temp</value>
  152. <description>A shared directory for temporary files.
  153. </description>
  154. </property>
  155. <property>
  156. <name>mapreduce.tasktracker.local.dir.minspacestart</name>
  157. <value>0</value>
  158. <description>If the space in mapreduce.cluster.local.dir drops under this,
  159. do not ask for more tasks.
  160. Value in bytes.
  161. </description>
  162. </property>
  163. <property>
  164. <name>mapreduce.tasktracker.local.dir.minspacekill</name>
  165. <value>0</value>
  166. <description>If the space in mapreduce.cluster.local.dir drops under this,
  167. do not ask more tasks until all the current ones have finished and
  168. cleaned up. Also, to save the rest of the tasks we have running,
  169. kill one of them, to clean up some space. Start with the reduce tasks,
  170. then go with the ones that have finished the least.
  171. Value in bytes.
  172. </description>
  173. </property>
  174. <property>
  175. <name>mapreduce.jobtracker.expire.trackers.interval</name>
  176. <value>600000</value>
  177. <description>Expert: The time-interval, in miliseconds, after which
  178. a tasktracker is declared 'lost' if it doesn't send heartbeats.
  179. </description>
  180. </property>
  181. <property>
  182. <name>mapreduce.tasktracker.instrumentation</name>
  183. <value>org.apache.hadoop.mapred.TaskTrackerMetricsInst</value>
  184. <description>Expert: The instrumentation class to associate with each TaskTracker.
  185. </description>
  186. </property>
  187. <property>
  188. <name>mapreduce.tasktracker.resourcecalculatorplugin</name>
  189. <value></value>
  190. <description>
  191. Name of the class whose instance will be used to query resource information
  192. on the tasktracker.
  193. The class must be an instance of
  194. org.apache.hadoop.util.ResourceCalculatorPlugin. If the value is null, the
  195. tasktracker attempts to use a class appropriate to the platform.
  196. Currently, the only platform supported is Linux.
  197. </description>
  198. </property>
  199. <property>
  200. <name>mapreduce.tasktracker.taskmemorymanager.monitoringinterval</name>
  201. <value>5000</value>
  202. <description>The interval, in milliseconds, for which the tasktracker waits
  203. between two cycles of monitoring its tasks' memory usage. Used only if
  204. tasks' memory management is enabled via mapred.tasktracker.tasks.maxmemory.
  205. </description>
  206. </property>
  207. <property>
  208. <name>mapreduce.tasktracker.tasks.sleeptimebeforesigkill</name>
  209. <value>5000</value>
  210. <description>The time, in milliseconds, the tasktracker waits for sending a
  211. SIGKILL to a task, after it has been sent a SIGTERM. This is currently
  212. not used on WINDOWS where tasks are just sent a SIGTERM.
  213. </description>
  214. </property>
  215. <property>
  216. <name>mapreduce.job.maps</name>
  217. <value>2</value>
  218. <description>The default number of map tasks per job.
  219. Ignored when mapreduce.jobtracker.address is "local".
  220. </description>
  221. </property>
  222. <property>
  223. <name>mapreduce.job.reduces</name>
  224. <value>1</value>
  225. <description>The default number of reduce tasks per job. Typically set to 99%
  226. of the cluster's reduce capacity, so that if a node fails the reduces can
  227. still be executed in a single wave.
  228. Ignored when mapreduce.jobtracker.address is "local".
  229. </description>
  230. </property>
  231. <property>
  232. <name>mapreduce.jobtracker.restart.recover</name>
  233. <value>false</value>
  234. <description>"true" to enable (job) recovery upon restart,
  235. "false" to start afresh
  236. </description>
  237. </property>
  238. <property>
  239. <name>mapreduce.jobtracker.jobhistory.block.size</name>
  240. <value>3145728</value>
  241. <description>The block size of the job history file. Since the job recovery
  242. uses job history, its important to dump job history to disk as
  243. soon as possible. Note that this is an expert level parameter.
  244. The default value is set to 3 MB.
  245. </description>
  246. </property>
  247. <property>
  248. <name>mapreduce.jobtracker.taskscheduler</name>
  249. <value>org.apache.hadoop.mapred.JobQueueTaskScheduler</value>
  250. <description>The class responsible for scheduling the tasks.</description>
  251. </property>
  252. <property>
  253. <name>mapreduce.job.split.metainfo.maxsize</name>
  254. <value>10000000</value>
  255. <description>The maximum permissible size of the split metainfo file.
  256. The JobTracker won't attempt to read split metainfo files bigger than
  257. the configured value.
  258. No limits if set to -1.
  259. </description>
  260. </property>
  261. <property>
  262. <name>mapreduce.jobtracker.taskscheduler.maxrunningtasks.perjob</name>
  263. <value></value>
  264. <description>The maximum number of running tasks for a job before
  265. it gets preempted. No limits if undefined.
  266. </description>
  267. </property>
  268. <property>
  269. <name>mapreduce.map.maxattempts</name>
  270. <value>4</value>
  271. <description>Expert: The maximum number of attempts per map task.
  272. In other words, framework will try to execute a map task these many number
  273. of times before giving up on it.
  274. </description>
  275. </property>
  276. <property>
  277. <name>mapreduce.reduce.maxattempts</name>
  278. <value>4</value>
  279. <description>Expert: The maximum number of attempts per reduce task.
  280. In other words, framework will try to execute a reduce task these many number
  281. of times before giving up on it.
  282. </description>
  283. </property>
  284. <property>
  285. <name>mapreduce.reduce.shuffle.parallelcopies</name>
  286. <value>5</value>
  287. <description>The default number of parallel transfers run by reduce
  288. during the copy(shuffle) phase.
  289. </description>
  290. </property>
  291. <property>
  292. <name>mapreduce.reduce.shuffle.connect.timeout</name>
  293. <value>180000</value>
  294. <description>Expert: The maximum amount of time (in milli seconds) reduce
  295. task spends in trying to connect to a tasktracker for getting map output.
  296. </description>
  297. </property>
  298. <property>
  299. <name>mapreduce.reduce.shuffle.read.timeout</name>
  300. <value>180000</value>
  301. <description>Expert: The maximum amount of time (in milli seconds) reduce
  302. task waits for map output data to be available for reading after obtaining
  303. connection.
  304. </description>
  305. </property>
  306. <property>
  307. <name>mapreduce.task.timeout</name>
  308. <value>600000</value>
  309. <description>The number of milliseconds before a task will be
  310. terminated if it neither reads an input, writes an output, nor
  311. updates its status string. A value of 0 disables the timeout.
  312. </description>
  313. </property>
  314. <property>
  315. <name>mapreduce.tasktracker.map.tasks.maximum</name>
  316. <value>2</value>
  317. <description>The maximum number of map tasks that will be run
  318. simultaneously by a task tracker.
  319. </description>
  320. </property>
  321. <property>
  322. <name>mapreduce.tasktracker.reduce.tasks.maximum</name>
  323. <value>2</value>
  324. <description>The maximum number of reduce tasks that will be run
  325. simultaneously by a task tracker.
  326. </description>
  327. </property>
  328. <property>
  329. <name>mapreduce.jobtracker.retiredjobs.cache.size</name>
  330. <value>1000</value>
  331. <description>The number of retired job status to keep in the cache.
  332. </description>
  333. </property>
  334. <property>
  335. <name>mapreduce.tasktracker.outofband.heartbeat</name>
  336. <value>false</value>
  337. <description>Expert: Set this to true to let the tasktracker send an
  338. out-of-band heartbeat on task-completion for better latency.
  339. </description>
  340. </property>
  341. <property>
  342. <name>mapreduce.jobtracker.jobhistory.lru.cache.size</name>
  343. <value>5</value>
  344. <description>The number of job history files loaded in memory. The jobs are
  345. loaded when they are first accessed. The cache is cleared based on LRU.
  346. </description>
  347. </property>
  348. <property>
  349. <name>mapreduce.jobtracker.instrumentation</name>
  350. <value>org.apache.hadoop.mapred.JobTrackerMetricsInst</value>
  351. <description>Expert: The instrumentation class to associate with each JobTracker.
  352. </description>
  353. </property>
  354. <property>
  355. <name>mapred.child.java.opts</name>
  356. <value>-Xmx200m</value>
  357. <description>Java opts for the task tracker child processes.
  358. The following symbol, if present, will be interpolated: @taskid@ is replaced
  359. by current TaskID. Any other occurrences of '@' will go unchanged.
  360. For example, to enable verbose gc logging to a file named for the taskid in
  361. /tmp and to set the heap maximum to be a gigabyte, pass a 'value' of:
  362. -Xmx1024m -verbose:gc -Xloggc:/tmp/@taskid@.gc
  363. Usage of -Djava.library.path can cause programs to no longer function if
  364. hadoop native libraries are used. These values should instead be set as part
  365. of LD_LIBRARY_PATH in the map / reduce JVM env using the mapreduce.map.env and
  366. mapreduce.reduce.env config settings.
  367. </description>
  368. </property>
  369. <property>
  370. <name>mapred.child.env</name>
  371. <value></value>
  372. <description>User added environment variables for the task tracker child
  373. processes. Example :
  374. 1) A=foo This will set the env variable A to foo
  375. 2) B=$B:c This is inherit tasktracker's B env variable.
  376. </description>
  377. </property>
  378. <property>
  379. <name>mapreduce.admin.user.env</name>
  380. <value>LD_LIBRARY_PATH=$HADOOP_COMMON_HOME/lib/native</value>
  381. <description>Expert: Additional execution environment entries for
  382. map and reduce task processes. This is not an additive property.
  383. You must preserve the original value if you want your map and
  384. reduce tasks to have access to native libraries (compression, etc).
  385. </description>
  386. </property>
  387. <property>
  388. <name>mapreduce.task.tmp.dir</name>
  389. <value>./tmp</value>
  390. <description> To set the value of tmp directory for map and reduce tasks.
  391. If the value is an absolute path, it is directly assigned. Otherwise, it is
  392. prepended with task's working directory. The java tasks are executed with
  393. option -Djava.io.tmpdir='the absolute path of the tmp dir'. Pipes and
  394. streaming are set with environment variable,
  395. TMPDIR='the absolute path of the tmp dir'
  396. </description>
  397. </property>
  398. <property>
  399. <name>mapreduce.map.log.level</name>
  400. <value>INFO</value>
  401. <description>The logging level for the map task. The allowed levels are:
  402. OFF, FATAL, ERROR, WARN, INFO, DEBUG, TRACE and ALL.
  403. </description>
  404. </property>
  405. <property>
  406. <name>mapreduce.reduce.log.level</name>
  407. <value>INFO</value>
  408. <description>The logging level for the reduce task. The allowed levels are:
  409. OFF, FATAL, ERROR, WARN, INFO, DEBUG, TRACE and ALL.
  410. </description>
  411. </property>
  412. <property>
  413. <name>mapreduce.reduce.merge.inmem.threshold</name>
  414. <value>1000</value>
  415. <description>The threshold, in terms of the number of files
  416. for the in-memory merge process. When we accumulate threshold number of files
  417. we initiate the in-memory merge and spill to disk. A value of 0 or less than
  418. 0 indicates we want to DON'T have any threshold and instead depend only on
  419. the ramfs's memory consumption to trigger the merge.
  420. </description>
  421. </property>
  422. <property>
  423. <name>mapreduce.reduce.shuffle.merge.percent</name>
  424. <value>0.66</value>
  425. <description>The usage threshold at which an in-memory merge will be
  426. initiated, expressed as a percentage of the total memory allocated to
  427. storing in-memory map outputs, as defined by
  428. mapreduce.reduce.shuffle.input.buffer.percent.
  429. </description>
  430. </property>
  431. <property>
  432. <name>mapreduce.reduce.shuffle.input.buffer.percent</name>
  433. <value>0.70</value>
  434. <description>The percentage of memory to be allocated from the maximum heap
  435. size to storing map outputs during the shuffle.
  436. </description>
  437. </property>
  438. <property>
  439. <name>mapreduce.reduce.input.buffer.percent</name>
  440. <value>0.0</value>
  441. <description>The percentage of memory- relative to the maximum heap size- to
  442. retain map outputs during the reduce. When the shuffle is concluded, any
  443. remaining map outputs in memory must consume less than this threshold before
  444. the reduce can begin.
  445. </description>
  446. </property>
  447. <property>
  448. <name>mapreduce.reduce.shuffle.memory.limit.percent</name>
  449. <value>0.25</value>
  450. <description>Expert: Maximum percentage of the in-memory limit that a
  451. single shuffle can consume</description>
  452. </property>
  453. <property>
  454. <name>mapreduce.reduce.markreset.buffer.percent</name>
  455. <value>0.0</value>
  456. <description>The percentage of memory -relative to the maximum heap size- to
  457. be used for caching values when using the mark-reset functionality.
  458. </description>
  459. </property>
  460. <property>
  461. <name>mapreduce.map.speculative</name>
  462. <value>true</value>
  463. <description>If true, then multiple instances of some map tasks
  464. may be executed in parallel.</description>
  465. </property>
  466. <property>
  467. <name>mapreduce.reduce.speculative</name>
  468. <value>true</value>
  469. <description>If true, then multiple instances of some reduce tasks
  470. may be executed in parallel.</description>
  471. </property>
  472. <property>
  473. <name>mapreduce.job.speculative.speculativecap</name>
  474. <value>0.1</value>
  475. <description>The max percent (0-1) of running tasks that
  476. can be speculatively re-executed at any time.</description>
  477. </property>
  478. <property>
  479. <name>mapreduce.job.speculative.slowtaskthreshold</name>
  480. <value>1.0</value>The number of standard deviations by which a task's
  481. ave progress-rates must be lower than the average of all running tasks'
  482. for the task to be considered too slow.
  483. <description>
  484. </description>
  485. </property>
  486. <property>
  487. <name>mapreduce.job.speculative.slownodethreshold</name>
  488. <value>1.0</value>
  489. <description>The number of standard deviations by which a Task
  490. Tracker's ave map and reduce progress-rates (finishTime-dispatchTime)
  491. must be lower than the average of all successful map/reduce task's for
  492. the TT to be considered too slow to give a speculative task to.
  493. </description>
  494. </property>
  495. <property>
  496. <name>mapreduce.job.jvm.numtasks</name>
  497. <value>1</value>
  498. <description>How many tasks to run per jvm. If set to -1, there is
  499. no limit.
  500. </description>
  501. </property>
  502. <property>
  503. <name>mapreduce.job.ubertask.enable</name>
  504. <value>false</value>
  505. <description>Whether to enable the small-jobs "ubertask" optimization,
  506. which runs "sufficiently small" jobs sequentially within a single JVM.
  507. "Small" is defined by the following maxmaps, maxreduces, and maxbytes
  508. settings. Users may override this value.
  509. </description>
  510. </property>
  511. <property>
  512. <name>mapreduce.job.ubertask.maxmaps</name>
  513. <value>9</value>
  514. <description>Threshold for number of maps, beyond which job is considered
  515. too big for the ubertasking optimization. Users may override this value,
  516. but only downward.
  517. </description>
  518. </property>
  519. <property>
  520. <name>mapreduce.job.ubertask.maxreduces</name>
  521. <value>1</value>
  522. <description>Threshold for number of reduces, beyond which job is considered
  523. too big for the ubertasking optimization. CURRENTLY THE CODE CANNOT SUPPORT
  524. MORE THAN ONE REDUCE and will ignore larger values. (Zero is a valid max,
  525. however.) Users may override this value, but only downward.
  526. </description>
  527. </property>
  528. <property>
  529. <name>mapreduce.job.ubertask.maxbytes</name>
  530. <value></value>
  531. <description>Threshold for number of input bytes, beyond which job is
  532. considered too big for the ubertasking optimization. If no value is
  533. specified, dfs.block.size is used as a default. Be sure to specify a
  534. default value in mapred-site.xml if the underlying filesystem is not HDFS.
  535. Users may override this value, but only downward.
  536. </description>
  537. </property>
  538. <property>
  539. <name>mapreduce.input.fileinputformat.split.minsize</name>
  540. <value>0</value>
  541. <description>The minimum size chunk that map input should be split
  542. into. Note that some file formats may have minimum split sizes that
  543. take priority over this setting.</description>
  544. </property>
  545. <property>
  546. <name>mapreduce.jobtracker.maxtasks.perjob</name>
  547. <value>-1</value>
  548. <description>The maximum number of tasks for a single job.
  549. A value of -1 indicates that there is no maximum. </description>
  550. </property>
  551. <property>
  552. <name>mapreduce.client.submit.file.replication</name>
  553. <value>10</value>
  554. <description>The replication level for submitted job files. This
  555. should be around the square root of the number of nodes.
  556. </description>
  557. </property>
  558. <property>
  559. <name>mapreduce.tasktracker.dns.interface</name>
  560. <value>default</value>
  561. <description>The name of the Network Interface from which a task
  562. tracker should report its IP address.
  563. </description>
  564. </property>
  565. <property>
  566. <name>mapreduce.tasktracker.dns.nameserver</name>
  567. <value>default</value>
  568. <description>The host name or IP address of the name server (DNS)
  569. which a TaskTracker should use to determine the host name used by
  570. the JobTracker for communication and display purposes.
  571. </description>
  572. </property>
  573. <property>
  574. <name>mapreduce.tasktracker.http.threads</name>
  575. <value>40</value>
  576. <description>The number of worker threads that for the http server. This is
  577. used for map output fetching
  578. </description>
  579. </property>
  580. <property>
  581. <name>mapreduce.tasktracker.http.address</name>
  582. <value>0.0.0.0:50060</value>
  583. <description>
  584. The task tracker http server address and port.
  585. If the port is 0 then the server will start on a free port.
  586. </description>
  587. </property>
  588. <property>
  589. <name>mapreduce.task.files.preserve.failedtasks</name>
  590. <value>false</value>
  591. <description>Should the files for failed tasks be kept. This should only be
  592. used on jobs that are failing, because the storage is never
  593. reclaimed. It also prevents the map outputs from being erased
  594. from the reduce directory as they are consumed.</description>
  595. </property>
  596. <!--
  597. <property>
  598. <name>mapreduce.task.files.preserve.filepattern</name>
  599. <value>.*_m_123456_0</value>
  600. <description>Keep all files from tasks whose task names match the given
  601. regular expression. Defaults to none.</description>
  602. </property>
  603. -->
  604. <property>
  605. <name>mapreduce.output.fileoutputformat.compress</name>
  606. <value>false</value>
  607. <description>Should the job outputs be compressed?
  608. </description>
  609. </property>
  610. <property>
  611. <name>mapreduce.output.fileoutputformat.compress.type</name>
  612. <value>RECORD</value>
  613. <description>If the job outputs are to compressed as SequenceFiles, how should
  614. they be compressed? Should be one of NONE, RECORD or BLOCK.
  615. </description>
  616. </property>
  617. <property>
  618. <name>mapreduce.output.fileoutputformat.compress.codec</name>
  619. <value>org.apache.hadoop.io.compress.DefaultCodec</value>
  620. <description>If the job outputs are compressed, how should they be compressed?
  621. </description>
  622. </property>
  623. <property>
  624. <name>mapreduce.map.output.compress</name>
  625. <value>false</value>
  626. <description>Should the outputs of the maps be compressed before being
  627. sent across the network. Uses SequenceFile compression.
  628. </description>
  629. </property>
  630. <property>
  631. <name>mapreduce.map.output.compress.codec</name>
  632. <value>org.apache.hadoop.io.compress.DefaultCodec</value>
  633. <description>If the map outputs are compressed, how should they be
  634. compressed?
  635. </description>
  636. </property>
  637. <property>
  638. <name>map.sort.class</name>
  639. <value>org.apache.hadoop.util.QuickSort</value>
  640. <description>The default sort class for sorting keys.
  641. </description>
  642. </property>
  643. <property>
  644. <name>mapreduce.task.userlog.limit.kb</name>
  645. <value>0</value>
  646. <description>The maximum size of user-logs of each task in KB. 0 disables the cap.
  647. </description>
  648. </property>
  649. <property>
  650. <name>mapreduce.job.userlog.retain.hours</name>
  651. <value>24</value>
  652. <description>The maximum time, in hours, for which the user-logs are to be
  653. retained after the job completion.
  654. </description>
  655. </property>
  656. <property>
  657. <name>mapreduce.jobtracker.hosts.filename</name>
  658. <value></value>
  659. <description>Names a file that contains the list of nodes that may
  660. connect to the jobtracker. If the value is empty, all hosts are
  661. permitted.</description>
  662. </property>
  663. <property>
  664. <name>mapreduce.jobtracker.hosts.exclude.filename</name>
  665. <value></value>
  666. <description>Names a file that contains the list of hosts that
  667. should be excluded by the jobtracker. If the value is empty, no
  668. hosts are excluded.</description>
  669. </property>
  670. <property>
  671. <name>mapreduce.jobtracker.heartbeats.in.second</name>
  672. <value>100</value>
  673. <description>Expert: Approximate number of heart-beats that could arrive
  674. at JobTracker in a second. Assuming each RPC can be processed
  675. in 10msec, the default value is made 100 RPCs in a second.
  676. </description>
  677. </property>
  678. <property>
  679. <name>mapreduce.jobtracker.tasktracker.maxblacklists</name>
  680. <value>4</value>
  681. <description>The number of blacklists for a taskTracker by various jobs
  682. after which the task tracker could be blacklisted across
  683. all jobs. The tracker will be given a tasks later
  684. (after a day). The tracker will become a healthy
  685. tracker after a restart.
  686. </description>
  687. </property>
  688. <property>
  689. <name>mapreduce.job.maxtaskfailures.per.tracker</name>
  690. <value>3</value>
  691. <description>The number of task-failures on a tasktracker of a given job
  692. after which new tasks of that job aren't assigned to it. It
  693. MUST be less than mapreduce.map.maxattempts and
  694. mapreduce.reduce.maxattempts otherwise the failed task will
  695. never be tried on a different node.
  696. </description>
  697. </property>
  698. <property>
  699. <name>mapreduce.client.output.filter</name>
  700. <value>FAILED</value>
  701. <description>The filter for controlling the output of the task's userlogs sent
  702. to the console of the JobClient.
  703. The permissible options are: NONE, KILLED, FAILED, SUCCEEDED and
  704. ALL.
  705. </description>
  706. </property>
  707. <property>
  708. <name>mapreduce.client.completion.pollinterval</name>
  709. <value>5000</value>
  710. <description>The interval (in milliseconds) between which the JobClient
  711. polls the JobTracker for updates about job status. You may want to set this
  712. to a lower value to make tests run faster on a single node system. Adjusting
  713. this value in production may lead to unwanted client-server traffic.
  714. </description>
  715. </property>
  716. <property>
  717. <name>mapreduce.client.progressmonitor.pollinterval</name>
  718. <value>1000</value>
  719. <description>The interval (in milliseconds) between which the JobClient
  720. reports status to the console and checks for job completion. You may want to set this
  721. to a lower value to make tests run faster on a single node system. Adjusting
  722. this value in production may lead to unwanted client-server traffic.
  723. </description>
  724. </property>
  725. <property>
  726. <name>mapreduce.jobtracker.persist.jobstatus.active</name>
  727. <value>true</value>
  728. <description>Indicates if persistency of job status information is
  729. active or not.
  730. </description>
  731. </property>
  732. <property>
  733. <name>mapreduce.jobtracker.persist.jobstatus.hours</name>
  734. <value>1</value>
  735. <description>The number of hours job status information is persisted in DFS.
  736. The job status information will be available after it drops of the memory
  737. queue and between jobtracker restarts. With a zero value the job status
  738. information is not persisted at all in DFS.
  739. </description>
  740. </property>
  741. <property>
  742. <name>mapreduce.jobtracker.persist.jobstatus.dir</name>
  743. <value>/jobtracker/jobsInfo</value>
  744. <description>The directory where the job status information is persisted
  745. in a file system to be available after it drops of the memory queue and
  746. between jobtracker restarts.
  747. </description>
  748. </property>
  749. <property>
  750. <name>mapreduce.task.profile</name>
  751. <value>false</value>
  752. <description>To set whether the system should collect profiler
  753. information for some of the tasks in this job? The information is stored
  754. in the user log directory. The value is "true" if task profiling
  755. is enabled.</description>
  756. </property>
  757. <property>
  758. <name>mapreduce.task.profile.maps</name>
  759. <value>0-2</value>
  760. <description> To set the ranges of map tasks to profile.
  761. mapreduce.task.profile has to be set to true for the value to be accounted.
  762. </description>
  763. </property>
  764. <property>
  765. <name>mapreduce.task.profile.reduces</name>
  766. <value>0-2</value>
  767. <description> To set the ranges of reduce tasks to profile.
  768. mapreduce.task.profile has to be set to true for the value to be accounted.
  769. </description>
  770. </property>
  771. <property>
  772. <name>mapreduce.task.skip.start.attempts</name>
  773. <value>2</value>
  774. <description> The number of Task attempts AFTER which skip mode
  775. will be kicked off. When skip mode is kicked off, the
  776. tasks reports the range of records which it will process
  777. next, to the TaskTracker. So that on failures, TT knows which
  778. ones are possibly the bad records. On further executions,
  779. those are skipped.
  780. </description>
  781. </property>
  782. <property>
  783. <name>mapreduce.map.skip.proc.count.autoincr</name>
  784. <value>true</value>
  785. <description> The flag which if set to true,
  786. SkipBadRecords.COUNTER_MAP_PROCESSED_RECORDS is incremented
  787. by MapRunner after invoking the map function. This value must be set to
  788. false for applications which process the records asynchronously
  789. or buffer the input records. For example streaming.
  790. In such cases applications should increment this counter on their own.
  791. </description>
  792. </property>
  793. <property>
  794. <name>mapreduce.reduce.skip.proc.count.autoincr</name>
  795. <value>true</value>
  796. <description> The flag which if set to true,
  797. SkipBadRecords.COUNTER_REDUCE_PROCESSED_GROUPS is incremented
  798. by framework after invoking the reduce function. This value must be set to
  799. false for applications which process the records asynchronously
  800. or buffer the input records. For example streaming.
  801. In such cases applications should increment this counter on their own.
  802. </description>
  803. </property>
  804. <property>
  805. <name>mapreduce.job.skip.outdir</name>
  806. <value></value>
  807. <description> If no value is specified here, the skipped records are
  808. written to the output directory at _logs/skip.
  809. User can stop writing skipped records by giving the value "none".
  810. </description>
  811. </property>
  812. <property>
  813. <name>mapreduce.map.skip.maxrecords</name>
  814. <value>0</value>
  815. <description> The number of acceptable skip records surrounding the bad
  816. record PER bad record in mapper. The number includes the bad record as well.
  817. To turn the feature of detection/skipping of bad records off, set the
  818. value to 0.
  819. The framework tries to narrow down the skipped range by retrying
  820. until this threshold is met OR all attempts get exhausted for this task.
  821. Set the value to Long.MAX_VALUE to indicate that framework need not try to
  822. narrow down. Whatever records(depends on application) get skipped are
  823. acceptable.
  824. </description>
  825. </property>
  826. <property>
  827. <name>mapreduce.reduce.skip.maxgroups</name>
  828. <value>0</value>
  829. <description> The number of acceptable skip groups surrounding the bad
  830. group PER bad group in reducer. The number includes the bad group as well.
  831. To turn the feature of detection/skipping of bad groups off, set the
  832. value to 0.
  833. The framework tries to narrow down the skipped range by retrying
  834. until this threshold is met OR all attempts get exhausted for this task.
  835. Set the value to Long.MAX_VALUE to indicate that framework need not try to
  836. narrow down. Whatever groups(depends on application) get skipped are
  837. acceptable.
  838. </description>
  839. </property>
  840. <!-- Job Notification Configuration -->
  841. <!--
  842. <property>
  843. <name>mapreduce.job.end-notification.url</name>
  844. <value>http://localhost:8080/jobstatus.php?jobId=$jobId&amp;jobStatus=$jobStatus</value>
  845. <description>Indicates url which will be called on completion of job to inform
  846. end status of job.
  847. User can give at most 2 variables with URI : $jobId and $jobStatus.
  848. If they are present in URI, then they will be replaced by their
  849. respective values.
  850. </description>
  851. </property>
  852. -->
  853. <property>
  854. <name>mapreduce.job.end-notification.retry.attempts</name>
  855. <value>0</value>
  856. <description>Indicates how many times hadoop should attempt to contact the
  857. notification URL </description>
  858. </property>
  859. <property>
  860. <name>mapreduce.job.end-notification.retry.interval</name>
  861. <value>30000</value>
  862. <description>Indicates time in milliseconds between notification URL retry
  863. calls</description>
  864. </property>
  865. <!-- Proxy Configuration -->
  866. <property>
  867. <name>mapreduce.jobtracker.taskcache.levels</name>
  868. <value>2</value>
  869. <description> This is the max level of the task cache. For example, if
  870. the level is 2, the tasks cached are at the host level and at the rack
  871. level.
  872. </description>
  873. </property>
  874. <property>
  875. <name>mapreduce.job.queuename</name>
  876. <value>default</value>
  877. <description> Queue to which a job is submitted. This must match one of the
  878. queues defined in mapred-queues.xml for the system. Also, the ACL setup
  879. for the queue must allow the current user to submit a job to the queue.
  880. Before specifying a queue, ensure that the system is configured with
  881. the queue, and access is allowed for submitting jobs to the queue.
  882. </description>
  883. </property>
  884. <property>
  885. <name>mapreduce.cluster.acls.enabled</name>
  886. <value>false</value>
  887. <description> Specifies whether ACLs should be checked
  888. for authorization of users for doing various queue and job level operations.
  889. ACLs are disabled by default. If enabled, access control checks are made by
  890. JobTracker and TaskTracker when requests are made by users for queue
  891. operations like submit job to a queue and kill a job in the queue and job
  892. operations like viewing the job-details (See mapreduce.job.acl-view-job)
  893. or for modifying the job (See mapreduce.job.acl-modify-job) using
  894. Map/Reduce APIs, RPCs or via the console and web user interfaces.
  895. For enabling this flag(mapreduce.cluster.acls.enabled), this is to be set
  896. to true in mapred-site.xml on JobTracker node and on all TaskTracker nodes.
  897. </description>
  898. </property>
  899. <property>
  900. <name>mapreduce.job.acl-modify-job</name>
  901. <value> </value>
  902. <description> Job specific access-control list for 'modifying' the job. It
  903. is only used if authorization is enabled in Map/Reduce by setting the
  904. configuration property mapreduce.cluster.acls.enabled to true.
  905. This specifies the list of users and/or groups who can do modification
  906. operations on the job. For specifying a list of users and groups the
  907. format to use is "user1,user2 group1,group". If set to '*', it allows all
  908. users/groups to modify this job. If set to ' '(i.e. space), it allows
  909. none. This configuration is used to guard all the modifications with respect
  910. to this job and takes care of all the following operations:
  911. o killing this job
  912. o killing a task of this job, failing a task of this job
  913. o setting the priority of this job
  914. Each of these operations are also protected by the per-queue level ACL
  915. "acl-administer-jobs" configured via mapred-queues.xml. So a caller should
  916. have the authorization to satisfy either the queue-level ACL or the
  917. job-level ACL.
  918. Irrespective of this ACL configuration, (a) job-owner, (b) the user who
  919. started the cluster, (c) members of an admin configured supergroup
  920. configured via mapreduce.cluster.permissions.supergroup and (d) queue
  921. administrators of the queue to which this job was submitted to configured
  922. via acl-administer-jobs for the specific queue in mapred-queues.xml can
  923. do all the modification operations on a job.
  924. By default, nobody else besides job-owner, the user who started the cluster,
  925. members of supergroup and queue administrators can perform modification
  926. operations on a job.
  927. </description>
  928. </property>
  929. <property>
  930. <name>mapreduce.job.acl-view-job</name>
  931. <value> </value>
  932. <description> Job specific access-control list for 'viewing' the job. It is
  933. only used if authorization is enabled in Map/Reduce by setting the
  934. configuration property mapreduce.cluster.acls.enabled to true.
  935. This specifies the list of users and/or groups who can view private details
  936. about the job. For specifying a list of users and groups the
  937. format to use is "user1,user2 group1,group". If set to '*', it allows all
  938. users/groups to modify this job. If set to ' '(i.e. space), it allows
  939. none. This configuration is used to guard some of the job-views and at
  940. present only protects APIs that can return possibly sensitive information
  941. of the job-owner like
  942. o job-level counters
  943. o task-level counters
  944. o tasks' diagnostic information
  945. o task-logs displayed on the TaskTracker web-UI and
  946. o job.xml showed by the JobTracker's web-UI
  947. Every other piece of information of jobs is still accessible by any other
  948. user, for e.g., JobStatus, JobProfile, list of jobs in the queue, etc.
  949. Irrespective of this ACL configuration, (a) job-owner, (b) the user who
  950. started the cluster, (c) members of an admin configured supergroup
  951. configured via mapreduce.cluster.permissions.supergroup and (d) queue
  952. administrators of the queue to which this job was submitted to configured
  953. via acl-administer-jobs for the specific queue in mapred-queues.xml can
  954. do all the view operations on a job.
  955. By default, nobody else besides job-owner, the user who started the
  956. cluster, memebers of supergroup and queue administrators can perform
  957. view operations on a job.
  958. </description>
  959. </property>
  960. <property>
  961. <name>mapreduce.tasktracker.indexcache.mb</name>
  962. <value>10</value>
  963. <description> The maximum memory that a task tracker allows for the
  964. index cache that is used when serving map outputs to reducers.
  965. </description>
  966. </property>
  967. <property>
  968. <name>mapreduce.task.merge.progress.records</name>
  969. <value>10000</value>
  970. <description> The number of records to process during merge before
  971. sending a progress notification to the TaskTracker.
  972. </description>
  973. </property>
  974. <property>
  975. <name>mapreduce.job.reduce.slowstart.completedmaps</name>
  976. <value>0.05</value>
  977. <description>Fraction of the number of maps in the job which should be
  978. complete before reduces are scheduled for the job.
  979. </description>
  980. </property>
  981. <property>
  982. <name>mapreduce.job.complete.cancel.delegation.tokens</name>
  983. <value>true</value>
  984. <description> if false - do not unregister/cancel delegation tokens from
  985. renewal, because same tokens may be used by spawned jobs
  986. </description>
  987. </property>
  988. <property>
  989. <name>mapreduce.tasktracker.taskcontroller</name>
  990. <value>org.apache.hadoop.mapred.DefaultTaskController</value>
  991. <description>TaskController which is used to launch and manage task execution
  992. </description>
  993. </property>
  994. <property>
  995. <name>mapreduce.tasktracker.group</name>
  996. <value></value>
  997. <description>Expert: Group to which TaskTracker belongs. If
  998. LinuxTaskController is configured via mapreduce.tasktracker.taskcontroller,
  999. the group owner of the task-controller binary should be same as this group.
  1000. </description>
  1001. </property>
  1002. <!-- Node health script variables -->
  1003. <property>
  1004. <name>mapreduce.tasktracker.healthchecker.script.path</name>
  1005. <value></value>
  1006. <description>Absolute path to the script which is
  1007. periodicallyrun by the node health monitoring service to determine if
  1008. the node is healthy or not. If the value of this key is empty or the
  1009. file does not exist in the location configured here, the node health
  1010. monitoring service is not started.</description>
  1011. </property>
  1012. <property>
  1013. <name>mapreduce.tasktracker.healthchecker.interval</name>
  1014. <value>60000</value>
  1015. <description>Frequency of the node health script to be run,
  1016. in milliseconds</description>
  1017. </property>
  1018. <property>
  1019. <name>mapreduce.tasktracker.healthchecker.script.timeout</name>
  1020. <value>600000</value>
  1021. <description>Time after node health script should be killed if
  1022. unresponsive and considered that the script has failed.</description>
  1023. </property>
  1024. <property>
  1025. <name>mapreduce.tasktracker.healthchecker.script.args</name>
  1026. <value></value>
  1027. <description>List of arguments which are to be passed to
  1028. node health script when it is being launched comma seperated.
  1029. </description>
  1030. </property>
  1031. <!-- end of node health script variables -->
  1032. <property>
  1033. <name>mapreduce.job.counters.limit</name>
  1034. <value>120</value>
  1035. <description>Limit on the number of user counters allowed per job.
  1036. </description>
  1037. </property>
  1038. <property>
  1039. <name>mapreduce.framework.name</name>
  1040. <value>local</value>
  1041. <description>The runtime framework for executing MapReduce jobs.
  1042. Can be one of local, classic or yarn.
  1043. </description>
  1044. </property>
  1045. <property>
  1046. <name>yarn.app.mapreduce.am.staging-dir</name>
  1047. <value>/tmp/hadoop-yarn/staging</value>
  1048. <description>The staging dir used while submitting jobs.
  1049. </description>
  1050. </property>
  1051. <property>
  1052. <name>mapreduce.job.end-notification.max.attempts</name>
  1053. <value>5</value>
  1054. <final>true</final>
  1055. <description>The maximum number of times a URL will be read for providing job
  1056. end notification. Cluster administrators can set this to limit how long
  1057. after end of a job, the Application Master waits before exiting. Must be
  1058. marked as final to prevent users from overriding this.
  1059. </description>
  1060. </property>
  1061. <property>
  1062. <name>mapreduce.job.end-notification.max.retry.interval</name>
  1063. <value>5</value>
  1064. <final>true</final>
  1065. <description>The maximum amount of time (in seconds) to wait before retrying
  1066. job end notification. Cluster administrators can set this to limit how long
  1067. the Application Master waits before exiting. Must be marked as final to
  1068. prevent users from overriding this.</description>
  1069. </property>
  1070. <property>
  1071. <name>mapreduce.job.end-notification.url</name>
  1072. <value></value>
  1073. <description>The URL to send job end notification. It may contain sentinels
  1074. $jobId and $jobStatus which will be replaced with jobId and jobStatus.
  1075. </description>
  1076. </property>
  1077. <property>
  1078. <name>mapreduce.job.end-notification.retry.attempts</name>
  1079. <value>5</value>
  1080. <description>The number of times the submitter of the job wants to retry job
  1081. end notification if it fails. This is capped by
  1082. mapreduce.job.end-notification.max.attempts</description>
  1083. </property>
  1084. <property>
  1085. <name>mapreduce.job.end-notification.retry.interval</name>
  1086. <value>1</value>
  1087. <description>The number of seconds the submitter of the job wants to wait
  1088. before job end notification is retried if it fails. This is capped by
  1089. mapreduce.job.end-notification.max.retry.interval</description>
  1090. </property>
  1091. <property>
  1092. <name>yarn.app.mapreduce.am.job.task.listener.thread-count</name>
  1093. <value>30</value>
  1094. <description>The number of threads used to handle RPC calls in the
  1095. MR AppMaster from remote tasks</description>
  1096. </property>
  1097. <property>
  1098. <name>yarn.app.mapreduce.am.job.client.port-range</name>
  1099. <value></value>
  1100. <description>Range of ports that the MapReduce AM can use when binding.
  1101. Leave blank if you want all possible ports.
  1102. For example 50000-50050,50100-50200</description>
  1103. </property>
  1104. <property>
  1105. <name>yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms</name>
  1106. <value>1000</value>
  1107. <description>The interval in ms at which the MR AppMaster should send
  1108. heartbeats to the ResourceManager</description>
  1109. </property>
  1110. <property>
  1111. <name>yarn.app.mapreduce.client-am.ipc.max-retries</name>
  1112. <value>1</value>
  1113. <description>The number of client retries to the AM - before reconnecting
  1114. to the RM to fetch Application Status.</description>
  1115. </property>
  1116. <property>
  1117. <name>yarn.app.mapreduce.client.max-retries</name>
  1118. <value>3</value>
  1119. <description>The number of client retries to the RM/HS/AM before
  1120. throwing exception. This is a layer above the ipc.</description>
  1121. </property>
  1122. <property>
  1123. <name>yarn.app.mapreduce.am.resource.mb</name>
  1124. <value>1536</value>
  1125. <description>The amount of memory the MR AppMaster needs.</description>
  1126. </property>
  1127. <!-- jobhistory properties -->
  1128. <property>
  1129. <name>mapreduce.jobhistory.address</name>
  1130. <value>0.0.0.0:10020</value>
  1131. <description>MapReduce JobHistory Server IPC host:port</description>
  1132. </property>
  1133. <property>
  1134. <name>mapreduce.jobhistory.webapp.address</name>
  1135. <value>0.0.0.0:19888</value>
  1136. <description>MapReduce JobHistory Server Web UI host:port</description>
  1137. </property>
  1138. <property>
  1139. <name>mapreduce.jobhistory.keytab</name>
  1140. <description>
  1141. Location of the kerberos keytab file for the MapReduce
  1142. JobHistory Server.
  1143. </description>
  1144. <value>/etc/security/keytab/jhs.service.keytab</value>
  1145. </property>
  1146. <property>
  1147. <name>mapreduce.jobhistory.principal</name>
  1148. <description>
  1149. Kerberos principal name for the MapReduce JobHistory Server.
  1150. </description>
  1151. <value>jhs/_HOST@REALM.TLD</value>
  1152. </property>
  1153. </configuration>