mapred-default.xml 45 KB

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