releasenotes.html 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>Hadoop 0.20.204.0 Release Notes</title>
  6. <STYLE type="text/css">
  7. H1 {font-family: sans-serif}
  8. H2 {font-family: sans-serif; margin-left: 7mm}
  9. TABLE {margin-left: 7mm}
  10. </STYLE>
  11. </head>
  12. <body>
  13. <h1>Hadoop 0.20.204.0 Release Notes</h1>
  14. These release notes include new developer and user-facing incompatibilities, features, and major improvements.
  15. <a name="changes"/>
  16. <h2>Changes since Hadoop 0.20.203.0</h2>
  17. <table border=0 cellpadding=2 cellspacing=0 style='border-collapse:
  18. collapse;table-layout:fixed'>
  19. <col class=xl24 width=150>
  20. <col class=xl24 width=400>
  21. <col class=xl24 width=125>
  22. <tr height=16>
  23. <td height=16 class=xl25 width=101>Key</td>
  24. <td class=xl25 width=300>Summary</td>
  25. <td class=xl25 width=125>Component/s</td>
  26. </tr>
  27. <tr height=16>
  28. <td height=16 class=xl27 width=101><a
  29. href="https://issues.apache.org/jira/browse/MAPREDUCE-2558">MAPREDUCE-2558</a></td>
  30. <td class=xl26 width=300>Add queue-level metrics 0.20-security branch</td>
  31. <td class=xl26 width=125>jobtracker</td>
  32. </tr>
  33. <tr height=16>
  34. <td height=16 class=xl27 width=101><a
  35. href="https://issues.apache.org/jira/browse/MAPREDUCE-2555">MAPREDUCE-2555</a></td>
  36. <td class=xl26 width=300>JvmInvalidate errors in the gridmix TT logs</td>
  37. <td class=xl26 width=125>tasktracker</td>
  38. </tr>
  39. <tr height=16>
  40. <td height=16 class=xl27 width=101><a
  41. href="https://issues.apache.org/jira/browse/MAPREDUCE-2529">MAPREDUCE-2529</a></td>
  42. <td class=xl26 width=300>Recognize Jetty bug 1342 and handle it</td>
  43. <td class=xl26 width=125>tasktracker</td>
  44. </tr>
  45. <tr height=24>
  46. <td height=24 class=xl27 width=101><a
  47. href="https://issues.apache.org/jira/browse/MAPREDUCE-2524">MAPREDUCE-2524</a></td>
  48. <td class=xl26 width=300>Backport trunk heuristics for failing maps when we
  49. get fetch failures retrieving map output during shuffle</td>
  50. <td class=xl26 width=125>tasktracker</td>
  51. </tr>
  52. <tr height=24>
  53. <td height=24 class=xl27 width=101><a
  54. href="https://issues.apache.org/jira/browse/MAPREDUCE-2514">MAPREDUCE-2514</a></td>
  55. <td class=xl26 width=300>ReinitTrackerAction class name misspelled
  56. RenitTrackerAction in task tracker log</td>
  57. <td class=xl26 width=125>tasktracker</td>
  58. </tr>
  59. <tr height=24>
  60. <td height=24 class=xl27 width=101><a
  61. href="https://issues.apache.org/jira/browse/MAPREDUCE-2495">MAPREDUCE-2495</a></td>
  62. <td class=xl26 width=300>The distributed cache cleanup thread has no
  63. monitoring to check to see if it has died for some reason</td>
  64. <td class=xl26 width=125>distributed-cache</td>
  65. </tr>
  66. <tr height=16>
  67. <td height=16 class=xl27 width=101><a
  68. href="https://issues.apache.org/jira/browse/MAPREDUCE-2490">MAPREDUCE-2490</a></td>
  69. <td class=xl26 width=300>Log blacklist debug count</td>
  70. <td class=xl26 width=125>jobtracker</td>
  71. </tr>
  72. <tr height=16>
  73. <td height=16 class=xl27 width=101><a
  74. href="https://issues.apache.org/jira/browse/MAPREDUCE-2479">MAPREDUCE-2479</a></td>
  75. <td class=xl26 width=300>Backport MAPREDUCE-1568 to hadoop security branch</td>
  76. <td class=xl26 width=125>tasktracker</td>
  77. </tr>
  78. <tr height=24>
  79. <td height=24 class=xl27 width=101><a
  80. href="https://issues.apache.org/jira/browse/MAPREDUCE-2456">MAPREDUCE-2456</a></td>
  81. <td class=xl26 width=300>Show the reducer taskid and map/reduce tasktrackers
  82. for &quot;Failed fetch notification #_ for task attempt...&quot; log messages</td>
  83. <td class=xl26 width=125>jobtracker</td>
  84. </tr>
  85. <tr height=16>
  86. <td height=16 class=xl27 width=101><a
  87. href="https://issues.apache.org/jira/browse/MAPREDUCE-2451">MAPREDUCE-2451</a></td>
  88. <td class=xl26 width=300>Log the reason string of healthcheck script</td>
  89. <td class=xl26 width=125>jobtracker</td>
  90. </tr>
  91. <tr height=16>
  92. <td height=16 class=xl27 width=101><a
  93. href="https://issues.apache.org/jira/browse/MAPREDUCE-2447">MAPREDUCE-2447</a></td>
  94. <td class=xl26 width=300>Set JvmContext sooner for a task - MR2429</td>
  95. <td class=xl26 width=125>&nbsp;</td>
  96. </tr>
  97. <tr height=16>
  98. <td height=16 class=xl27 width=101><a
  99. href="https://issues.apache.org/jira/browse/MAPREDUCE-2443">MAPREDUCE-2443</a></td>
  100. <td class=xl26 width=300>Fix FI build - broken after MR-2429</td>
  101. <td class=xl26 width=125>test</td>
  102. </tr>
  103. <tr height=16>
  104. <td height=16 class=xl27 width=101><a
  105. href="https://issues.apache.org/jira/browse/MAPREDUCE-2429">MAPREDUCE-2429</a></td>
  106. <td class=xl26 width=300>Check jvmid during task status report</td>
  107. <td class=xl26 width=125>tasktracker</td>
  108. </tr>
  109. <tr height=24>
  110. <td height=24 class=xl27 width=101><a
  111. href="https://issues.apache.org/jira/browse/MAPREDUCE-2418">MAPREDUCE-2418</a></td>
  112. <td class=xl26 width=300>Errors not shown in the JobHistory servlet
  113. (specifically Counter Limit Exceeded)</td>
  114. <td class=xl26 width=125>&nbsp;</td>
  115. </tr>
  116. <tr height=16>
  117. <td height=16 class=xl27 width=101><a
  118. href="https://issues.apache.org/jira/browse/MAPREDUCE-2415">MAPREDUCE-2415</a></td>
  119. <td class=xl26 width=300>Distribute TaskTracker userlogs onto multiple disks</td>
  120. <td class=xl26 width=125>task-controller, tasktracker</td>
  121. </tr>
  122. <tr height=24>
  123. <td height=24 class=xl27 width=101><a
  124. href="https://issues.apache.org/jira/browse/MAPREDUCE-2413">MAPREDUCE-2413</a></td>
  125. <td class=xl26 width=300>TaskTracker should handle disk failures at both
  126. startup and runtime</td>
  127. <td class=xl26 width=125>task-controller, tasktracker</td>
  128. </tr>
  129. <tr height=24>
  130. <td height=24 class=xl27 width=101><a
  131. href="https://issues.apache.org/jira/browse/MAPREDUCE-2411">MAPREDUCE-2411</a></td>
  132. <td class=xl26 width=300>When you submit a job to a queue with no ACLs you
  133. get an inscrutible NPE</td>
  134. <td class=xl26 width=125>&nbsp;</td>
  135. </tr>
  136. <tr height=24>
  137. <td height=24 class=xl27 width=101><a
  138. href="https://issues.apache.org/jira/browse/MAPREDUCE-2409">MAPREDUCE-2409</a></td>
  139. <td class=xl26 width=300>Distributed Cache does not differentiate between
  140. file /archive for files with the same path</td>
  141. <td class=xl26 width=125>distributed-cache</td>
  142. </tr>
  143. <tr height=16>
  144. <td height=16 class=xl27 width=101><a
  145. href="https://issues.apache.org/jira/browse/MAPREDUCE-118">MAPREDUCE-118</a></td>
  146. <td class=xl26 width=300>Job.getJobID() will always return null</td>
  147. <td class=xl26 width=125>client</td>
  148. </tr>
  149. <tr height=24>
  150. <td height=24 class=xl27 width=101><a
  151. href="https://issues.apache.org/jira/browse/HDFS-2057">HDFS-2057</a></td>
  152. <td class=xl26 width=300>Wait time to terminate the threads causing unit
  153. tests to take longer time</td>
  154. <td class=xl26 width=125>data-node</td>
  155. </tr>
  156. <tr height=24>
  157. <td height=24 class=xl27 width=101><a
  158. href="https://issues.apache.org/jira/browse/HDFS-2044">HDFS-2044</a></td>
  159. <td class=xl26 width=300>TestQueueProcessingStatistics failing automatic test
  160. due to timing issues</td>
  161. <td class=xl26 width=125>test</td>
  162. </tr>
  163. <tr height=16>
  164. <td height=16 class=xl27 width=101><a
  165. href="https://issues.apache.org/jira/browse/HDFS-2023">HDFS-2023</a></td>
  166. <td class=xl26 width=300>Backport of NPE for File.list and File.listFiles</td>
  167. <td class=xl26 width=125>data-node</td>
  168. </tr>
  169. <tr height=36>
  170. <td height=36 class=xl27 width=101><a
  171. href="https://issues.apache.org/jira/browse/HDFS-1878">HDFS-1878</a></td>
  172. <td class=xl26 width=300>TestHDFSServerPorts unit test failure - race
  173. condition in FSNamesystem.close() causes NullPointerException without serious
  174. consequence</td>
  175. <td class=xl26 width=125>name-node</td>
  176. </tr>
  177. <tr height=16>
  178. <td height=16 class=xl27 width=101><a
  179. href="https://issues.apache.org/jira/browse/HDFS-1836">HDFS-1836</a></td>
  180. <td class=xl26 width=300>Thousand of CLOSE_WAIT socket</td>
  181. <td class=xl26 width=125>hdfs client</td>
  182. </tr>
  183. <tr height=16>
  184. <td height=16 class=xl27 width=101><a
  185. href="https://issues.apache.org/jira/browse/HDFS-1822">HDFS-1822</a></td>
  186. <td class=xl26 width=300>Editlog opcodes overlap between 20 security and
  187. later releases</td>
  188. <td class=xl26 width=125>name-node</td>
  189. </tr>
  190. <tr height=24>
  191. <td height=24 class=xl27 width=101><a
  192. href="https://issues.apache.org/jira/browse/HDFS-1773">HDFS-1773</a></td>
  193. <td class=xl26 width=300>Remove a datanode from cluster if include list is
  194. not empty and this datanode is removed from both include and exclude lists</td>
  195. <td class=xl26 width=125>name-node</td>
  196. </tr>
  197. <tr height=24>
  198. <td height=24 class=xl27 width=101><a
  199. href="https://issues.apache.org/jira/browse/HDFS-1767">HDFS-1767</a></td>
  200. <td class=xl26 width=300>Namenode should ignore non-initial block reports
  201. from datanodes when in safemode during startup</td>
  202. <td class=xl26 width=125>data-node</td>
  203. </tr>
  204. <tr height=16>
  205. <td height=16 class=xl27 width=101><a
  206. href="https://issues.apache.org/jira/browse/HDFS-1758">HDFS-1758</a></td>
  207. <td class=xl26 width=300>Web UI JSP pages thread safety issue</td>
  208. <td class=xl26 width=125>tools</td>
  209. </tr>
  210. <tr height=16>
  211. <td height=16 class=xl27 width=101><a
  212. href="https://issues.apache.org/jira/browse/HDFS-1750">HDFS-1750</a></td>
  213. <td class=xl26 width=300>fs -ls hftp://file not working</td>
  214. <td class=xl26 width=125>&nbsp;</td>
  215. </tr>
  216. <tr height=16>
  217. <td height=16 class=xl27 width=101><a
  218. href="https://issues.apache.org/jira/browse/HDFS-1692">HDFS-1692</a></td>
  219. <td class=xl26 width=300>In secure mode, Datanode process doesn't exit when
  220. disks fail.</td>
  221. <td class=xl26 width=125>data-node</td>
  222. </tr>
  223. <tr height=16>
  224. <td height=16 class=xl27 width=101><a
  225. href="https://issues.apache.org/jira/browse/HDFS-1592">HDFS-1592</a></td>
  226. <td class=xl26 width=300>Datanode startup doesn't honor volumes.tolerated</td>
  227. <td class=xl26 width=125>&nbsp;</td>
  228. </tr>
  229. <tr height=16>
  230. <td height=16 class=xl27 width=101><a
  231. href="https://issues.apache.org/jira/browse/HDFS-1541">HDFS-1541</a></td>
  232. <td class=xl26 width=300>Not marking datanodes dead When namenode in safemode</td>
  233. <td class=xl26 width=125>name-node</td>
  234. </tr>
  235. <tr height=36>
  236. <td height=36 class=xl27 width=101><a
  237. href="https://issues.apache.org/jira/browse/HDFS-1445">HDFS-1445</a></td>
  238. <td class=xl26 width=300>HDFS-1443 Batch the calls in DataStorage to
  239. FileUtil.createHardLink(), so we call it once per directory instead of once
  240. per file</td>
  241. <td class=xl26 width=125>data-node</td>
  242. </tr>
  243. <tr height=16>
  244. <td height=16 class=xl27 width=101><a
  245. href="https://issues.apache.org/jira/browse/HDFS-1377">HDFS-1377</a></td>
  246. <td class=xl26 width=300>Quota bug for partial blocks allows quotas to be
  247. violated</td>
  248. <td class=xl26 width=125>name-node</td>
  249. </tr>
  250. <tr height=16>
  251. <td height=16 class=xl27 width=101><a
  252. href="https://issues.apache.org/jira/browse/HDFS-1258">HDFS-1258</a></td>
  253. <td class=xl26 width=300>Clearing namespace quota on &quot;/&quot; corrupts
  254. FS image</td>
  255. <td class=xl26 width=125>name-node</td>
  256. </tr>
  257. <tr height=16>
  258. <td height=16 class=xl27 width=101><a
  259. href="https://issues.apache.org/jira/browse/HDFS-1189">HDFS-1189</a></td>
  260. <td class=xl26 width=300>Quota counts missed between clear quota and set
  261. quota</td>
  262. <td class=xl26 width=125>name-node</td>
  263. </tr>
  264. <tr height=24>
  265. <td height=24 class=xl27 width=101><a
  266. href="https://issues.apache.org/jira/browse/HADOOP-7398">HADOOP-7398</a></td>
  267. <td class=xl26 width=300>create a mechanism to suppress the HADOOP_HOME
  268. deprecated warning</td>
  269. <td class=xl26 width=125>&nbsp;</td>
  270. </tr>
  271. <tr height=16>
  272. <td height=16 class=xl27 width=101><a
  273. href="https://issues.apache.org/jira/browse/HADOOP-7373">HADOOP-7373</a></td>
  274. <td class=xl26 width=300>Tarball deployment doesn't work with
  275. {start,stop}-{dfs,mapred}</td>
  276. <td class=xl26 width=125>&nbsp;</td>
  277. </tr>
  278. <tr height=24>
  279. <td height=24 class=xl27 width=101><a
  280. href="https://issues.apache.org/jira/browse/HADOOP-7364">HADOOP-7364</a></td>
  281. <td class=xl26 width=300>TestMiniMRDFSCaching fails if test.build.dir is set
  282. to something other than build/test</td>
  283. <td class=xl26 width=125>test</td>
  284. </tr>
  285. <tr height=16>
  286. <td height=16 class=xl27 width=101><a
  287. href="https://issues.apache.org/jira/browse/HADOOP-7356">HADOOP-7356</a></td>
  288. <td class=xl26 width=300>RPM packages broke bin/hadoop script for hadoop
  289. 0.20.205</td>
  290. <td class=xl26 width=125>&nbsp;</td>
  291. </tr>
  292. <tr height=24>
  293. <td height=24 class=xl27 width=101><a
  294. href="https://issues.apache.org/jira/browse/HADOOP-7330">HADOOP-7330</a></td>
  295. <td class=xl26 width=300>The metrics source mbean implementation should
  296. return the attribute value instead of the object</td>
  297. <td class=xl26 width=125>metrics</td>
  298. </tr>
  299. <tr height=16>
  300. <td height=16 class=xl27 width=101><a
  301. href="https://issues.apache.org/jira/browse/HADOOP-7277">HADOOP-7277</a></td>
  302. <td class=xl26 width=300>Add Eclipse launch tasks for the 0.20-security
  303. branch</td>
  304. <td class=xl26 width=125>build</td>
  305. </tr>
  306. <tr height=24>
  307. <td height=24 class=xl27 width=101><a
  308. href="https://issues.apache.org/jira/browse/HADOOP-7274">HADOOP-7274</a></td>
  309. <td class=xl26 width=300>CLONE - IOUtils.readFully and IOUtils.skipFully have
  310. typo in exception creation's message</td>
  311. <td class=xl26 width=125>util</td>
  312. </tr>
  313. <tr height=36>
  314. <td height=36 class=xl27 width=101><a
  315. href="https://issues.apache.org/jira/browse/HADOOP-7248">HADOOP-7248</a></td>
  316. <td class=xl26 width=300>Have a way to automatically update Eclipse
  317. .classpath file when new libs are added to the classpath through Ivy for
  318. 0.20-* based sources</td>
  319. <td class=xl26 width=125>build</td>
  320. </tr>
  321. <tr height=16>
  322. <td height=16 class=xl27 width=101><a
  323. href="https://issues.apache.org/jira/browse/HADOOP-7232">HADOOP-7232</a></td>
  324. <td class=xl26 width=300>Fix javadoc warnings</td>
  325. <td class=xl26 width=125>documentation</td>
  326. </tr>
  327. <tr height=16>
  328. <td height=16 class=xl27 width=101><a
  329. href="https://issues.apache.org/jira/browse/HADOOP-7144">HADOOP-7144</a></td>
  330. <td class=xl26 width=300>Expose JMX with something like JMXProxyServlet</td>
  331. <td class=xl26 width=125>&nbsp;</td>
  332. </tr>
  333. <tr height=16>
  334. <td height=16 class=xl27 width=101><a
  335. href="https://issues.apache.org/jira/browse/HADOOP-6255">HADOOP-6255</a></td>
  336. <td class=xl26 width=300>Create an rpm integration project</td>
  337. <td class=xl26 width=125>&nbsp;</td>
  338. </tr>
  339. </table>
  340. <h2>Changes Since Hadoop 0.20.2</h2>
  341. <ul>
  342. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-7190">HADOOP-7190</a>. Add metrics v1 back for backwards compatibility. (omalley)
  343. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2360">MAPREDUCE-2360</a>. Remove stripping of scheme, authority from submit dir in
  344. support of viewfs. (cdouglas)
  345. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2359">MAPREDUCE-2359</a> Use correct file system to access distributed cache objects.
  346. (Krishna Ramachandran)
  347. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2361">MAPREDUCE-2361</a>. "Fix Distributed Cache is not adding files to class paths
  348. correctly" - Drop the host/scheme/fragment from URI (cdouglas)
  349. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2362">MAPREDUCE-2362</a>. Fix unit-test failures: TestBadRecords (NPE due to
  350. rearranged MapTask code) and TestTaskTrackerMemoryManager
  351. (need hostname in output-string pattern). (Greg Roelofs, Krishna
  352. Ramachandran)
  353. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1729">HDFS-1729</a>. Add statistics logging for better visibility into
  354. startup time costs. (Matt Foley)
  355. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2363">MAPREDUCE-2363</a>. When a queue is built without any access rights we
  356. explain the problem. (Richard King)
  357. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1563">MAPREDUCE-1563</a>. TaskDiagnosticInfo may be missed sometime. (Krishna
  358. Ramachandran)
  359. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2364">MAPREDUCE-2364</a>. Don't hold the rjob lock while localizing resources. (ddas
  360. via omalley)
  361. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1598">HDFS-1598</a>. Directory listing on hftp:// does not show
  362. .*.crc files. (szetszwo)
  363. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2365">MAPREDUCE-2365</a>. New counters for FileInputFormat (BYTES_READ) and
  364. FileOutputFormat (BYTES_WRITTEN).
  365. New counter MAP_OUTPUT_MATERIALIZED_BYTES for compressed MapOutputSize.
  366. (Siddharth Seth)
  367. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-7040">HADOOP-7040</a>. Change DiskErrorException to IOException (boryas)
  368. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-7104">HADOOP-7104</a>. Remove unnecessary DNS reverse lookups from RPC layer
  369. (kzhang)
  370. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2366">MAPREDUCE-2366</a>. Fix a problem where the task browser UI can't retrieve the
  371. stdxxx printouts of streaming jobs that abend in the unix code, in
  372. the common case where the containing job doesn't reuse JVM's.
  373. (Richard King)
  374. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6977">HADOOP-6977</a>. Herriot daemon clients should vend statistics (cos)
  375. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6971">HADOOP-6971</a>. Clover build doesn't generate per-test coverage (cos)
  376. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6879">HADOOP-6879</a>. Provide SSH based (Jsch) remote execution API for system
  377. tests. (cos)
  378. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2355">MAPREDUCE-2355</a>. Add a configuration knob
  379. mapreduce.tasktracker.outofband.heartbeat.damper that limits out of band
  380. heartbeats (acmurthy)
  381. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2356">MAPREDUCE-2356</a>. Fix a race-condition that corrupted a task's state on the
  382. JobTracker. (Luke Lu)
  383. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2357">MAPREDUCE-2357</a>. Always propagate IOExceptions that are thrown by
  384. non-FileInputFormat. (Luke Lu)
  385. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-7163">HADOOP-7163</a>. RPC handles SocketTimeOutException during SASL negotiation.
  386. (ddas)
  387. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2358">MAPREDUCE-2358</a>. MapReduce assumes the default FileSystem is HDFS.
  388. (Krishna Ramachandran)
  389. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1904">MAPREDUCE-1904</a>. Reducing locking contention in TaskTracker's
  390. MapOutputServlet LocalDirAllocator. (Rajesh Balamohan via acmurthy)
  391. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1626">HDFS-1626</a>. Make BLOCK_INVALIDATE_LIMIT configurable. (szetszwo)
  392. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1584">HDFS-1584</a>. Adds a check for whether relogin is needed to
  393. getDelegationToken in HftpFileSystem. (Kan Zhang via ddas)
  394. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-7115">HADOOP-7115</a>. Reduces the number of calls to getpwuid_r and
  395. getpwgid_r, by implementing a cache in NativeIO. (ddas)
  396. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6882">HADOOP-6882</a>. An XSS security exploit in jetty-6.1.14. jetty upgraded to
  397. 6.1.26. (ddas)
  398. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2278">MAPREDUCE-2278</a>. Fixes a memory leak in the TaskTracker. (cdouglas)
  399. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1353 redux">HDFS-1353 redux</a>. Modulate original 1353 to not bump RPC version.
  400. (jhoman)
  401. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2082">MAPREDUCE-2082</a> Race condition in writing the jobtoken password file when
  402. launching pipes jobs (jitendra and ddas)
  403. <a href="https://issues.apache.org/jira/browse/HADOOP-6978">HADOOP-6978</a>. Fixes task log servlet vulnerabilities via symlinks.
  404. (Todd Lipcon and Devaraj Das)
  405. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2178">MAPREDUCE-2178</a>. Write task initialization to avoid race
  406. conditions leading to privilege escalation and resource leakage by
  407. performing more actiions as the user. (Owen O'Malley, Devaraj Das,
  408. Chris Douglas via cdouglas)
  409. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1364">HDFS-1364</a>. HFTP client should support relogin from keytab
  410. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6907">HADOOP-6907</a>. Make RPC client to use per-proxy configuration.
  411. (Kan Zhang via ddas)
  412. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2055">MAPREDUCE-2055</a>. Fix JobTracker to decouple job retirement from copy of
  413. job-history file to HDFS and enhance RetiredJobInfo to carry aggregated
  414. job-counters to prevent a disk roundtrip on job-completion to fetch
  415. counters for the JobClient. (Krishna Ramachandran via acmurthy)
  416. <a href="https://issues.apache.org/jira/browse/HDFS-1353">HDFS-1353</a>. Remove most of getBlockLocation optimization (jghoman)
  417. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2023">MAPREDUCE-2023</a>. TestDFSIO read test may not read specified bytes. (htang)
  418. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1340">HDFS-1340</a>. A null delegation token is appended to the url if security is
  419. disabled when browsing filesystem.(boryas)
  420. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1352">HDFS-1352</a>. Fix jsvc.location. (jghoman)
  421. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6860">HADOOP-6860</a>. 'compile-fault-inject' should never be called directly. (cos)
  422. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2005">MAPREDUCE-2005</a>. TestDelegationTokenRenewal fails (boryas)
  423. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-2000">MAPREDUCE-2000</a>. Rumen is not able to extract counters for Job history logs
  424. from Hadoop 0.20. (htang)
  425. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1961">MAPREDUCE-1961</a>. ConcurrentModificationException when shutting down Gridmix.
  426. (htang)
  427. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6899">HADOOP-6899</a>. RawLocalFileSystem set working directory does
  428. not work for relative names. (suresh)
  429. <li> <a href="https://issues.apache.org/jira/browse/HDFS-495">HDFS-495</a>. New clients should be able to take over files lease if the old
  430. client died. (shv)
  431. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6728">HADOOP-6728</a>. Re-design and overhaul of the Metrics framework. (Luke Lu via
  432. acmurthy)
  433. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1966">MAPREDUCE-1966</a>. Change blacklisting of tasktrackers on task failures to be
  434. a simple graylist to fingerpoint bad tasktrackers. (Greg Roelofs via
  435. acmurthy)
  436. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6864">HADOOP-6864</a>. Add ability to get netgroups (as returned by getent
  437. netgroup command) using native code (JNI) instead of forking. (Erik Steffl)
  438. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1318">HDFS-1318</a>. HDFS Namenode and Datanode WebUI information needs to be
  439. accessible programmatically for scripts. (Tanping Wang via suresh)
  440. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1315">HDFS-1315</a>. Add fsck event to audit log and remove other audit log events
  441. corresponding to FSCK listStatus and open calls. (suresh)
  442. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1941">MAPREDUCE-1941</a>. Provides access to JobHistory file (raw) with job user/acl
  443. permission. (Srikanth Sundarrajan via ddas)
  444. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-291.">MAPREDUCE-291.</a> Optionally a separate daemon should serve JobHistory.
  445. (Srikanth Sundarrajan via ddas)
  446. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1936">MAPREDUCE-1936</a>. Make Gridmix3 more customizable (sync changes from trunk).
  447. (htang)
  448. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5981">HADOOP-5981</a>. Fix variable substitution during parsing of child environment
  449. variables. (Krishna Ramachandran via acmurthy)
  450. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-339.">MAPREDUCE-339.</a> Greedily schedule failed tasks to cause early job failure.
  451. (cdouglas)
  452. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1872">MAPREDUCE-1872</a>. Hardened CapacityScheduler to have comprehensive, coherent
  453. limits on tasks/jobs for jobs/users/queues. Also, added the ability to
  454. refresh queue definitions without the need to restart the JobTracker.
  455. (acmurthy)
  456. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1161">HDFS-1161</a>. Make DN minimum valid volumes configurable. (shv)
  457. <li> <a href="https://issues.apache.org/jira/browse/HDFS-457">HDFS-457</a>. Reintroduce volume failure tolerance for DataNodes. (shv)
  458. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1307 Add start time, end time and total time taken for FSCK
  459. to FSCK report">HDFS-1307 Add start time, end time and total time taken for FSCK
  460. to FSCK report</a>. (suresh)
  461. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1207">MAPREDUCE-1207</a>. Sanitize user environment of map/reduce tasks and allow
  462. admins to set environment and java options. (Krishna Ramachandran via
  463. acmurthy)
  464. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1298 - Add support in HDFS for new statistics added in FileSystem
  465. to track the file system operations (suresh)
  466. <li> HDFS-1301">HDFS-1298 - Add support in HDFS for new statistics added in FileSystem
  467. to track the file system operations (suresh)
  468. <li> HDFS-1301</a>. TestHDFSProxy need to use server side conf for ProxyUser
  469. stuff.(boryas)
  470. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6859">HADOOP-6859</a> - Introduce additional statistics to FileSystem to track
  471. file system operations (suresh)
  472. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6818">HADOOP-6818</a>. Provides a JNI implementation of Unix Group resolution. The
  473. config hadoop.security.group.mapping should be set to
  474. org.apache.hadoop.security.JniBasedUnixGroupsMapping to enable this
  475. implementation. (ddas)
  476. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1938">MAPREDUCE-1938</a>. Introduces a configuration for putting user classes before
  477. the system classes during job submission and in task launches. Two things
  478. need to be done in order to use this feature -
  479. (1) mapreduce.user.classpath.first : this should be set to true in the
  480. jobconf, and, (2) HADOOP_USER_CLASSPATH_FIRST : this is relevant for job
  481. submissions done using bin/hadoop shell script. HADOOP_USER_CLASSPATH_FIRST
  482. should be defined in the environment with some non-empty value
  483. (like "true"), and then bin/hadoop should be executed. (ddas)
  484. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6669">HADOOP-6669</a>. Respect compression configuration when creating DefaultCodec
  485. compressors. (Koji Noguchi via cdouglas)
  486. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6855">HADOOP-6855</a>. Add support for netgroups, as returned by command
  487. getent netgroup. (Erik Steffl)
  488. <li> <a href="https://issues.apache.org/jira/browse/HDFS-599">HDFS-599</a>. Allow NameNode to have a seprate port for service requests from
  489. client requests. (Dmytro Molkov via hairong)
  490. <li> <a href="https://issues.apache.org/jira/browse/HDFS-132">HDFS-132</a>. Fix namenode to not report files deleted metrics for deletions
  491. done while replaying edits during startup. (shv)
  492. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1521">MAPREDUCE-1521</a>. Protection against incorrectly configured reduces
  493. (mahadev)
  494. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1936">MAPREDUCE-1936</a>. Make Gridmix3 more customizable. (htang)
  495. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-517.">MAPREDUCE-517.</a> Enhance the CapacityScheduler to assign multiple tasks
  496. per-heartbeat. (acmurthy)
  497. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-323.">MAPREDUCE-323.</a> Re-factor layout of JobHistory files on HDFS to improve
  498. operability. (Dick King via acmurthy)
  499. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1921">MAPREDUCE-1921</a>. Ensure exceptions during reading of input data in map
  500. tasks are augmented by information about actual input file which caused
  501. the exception. (Krishna Ramachandran via acmurthy)
  502. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1118">MAPREDUCE-1118</a>. Enhance the JobTracker web-ui to ensure tabular columns
  503. are sortable, also added a /scheduler servlet to CapacityScheduler for
  504. enhanced UI for queue information. (Krishna Ramachandran via acmurthy)
  505. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5913">HADOOP-5913</a>. Add support for starting/stopping queues. (cdouglas)
  506. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6835">HADOOP-6835</a>. Add decode support for concatenated gzip files. (Greg Roelofs)
  507. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1158">HDFS-1158</a>. Revert <a href="https://issues.apache.org/jira/browse/HDFS-457">HDFS-457</a>. (shv)
  508. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1699">MAPREDUCE-1699</a>. Ensure JobHistory isn't disabled for any reason. (Krishna
  509. Ramachandran via acmurthy)
  510. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1682">MAPREDUCE-1682</a>. Fix speculative execution to ensure tasks are not
  511. scheduled after job failure. (acmurthy)
  512. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1914">MAPREDUCE-1914</a>. Ensure unique sub-directories for artifacts in the
  513. DistributedCache are cleaned up. (Dick King via acmurthy)
  514. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6713">HADOOP-6713</a>. Multiple RPC Reader Threads (Bharathm)
  515. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1250">HDFS-1250</a>. Namenode should reject block reports and block received
  516. requests from dead datanodes (suresh)
  517. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1863">MAPREDUCE-1863</a>. [Rumen] Null failedMapAttemptCDFs in job traces generated
  518. by Rumen. (htang)
  519. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1309">MAPREDUCE-1309</a>. Rumen refactory. (htang)
  520. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1114">HDFS-1114</a>. Implement LightWeightGSet for BlocksMap in order to reduce
  521. NameNode memory footprint. (szetszwo)
  522. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-572.">MAPREDUCE-572.</a> Fixes DistributedCache.checkURIs to throw error if link is
  523. missing for uri in cache archives. (amareshwari)
  524. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-787.">MAPREDUCE-787.</a> Fix JobSubmitter to honor user given symlink in the path.
  525. (amareshwari)
  526. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6815">HADOOP-6815</a>. refreshSuperUserGroupsConfiguration should use
  527. server side configuration for the refresh( boryas)
  528. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1868">MAPREDUCE-1868</a>. Add a read and connection timeout to JobClient while
  529. pulling tasklogs. (Krishna Ramachandran via acmurthy)
  530. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1119">HDFS-1119</a>. Introduce a GSet interface to BlocksMap. (szetszwo)
  531. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1778">MAPREDUCE-1778</a>. Ensure failure to setup CompletedJobStatusStore is not
  532. silently ignored by the JobTracker. (Krishna Ramachandran via acmurthy)
  533. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1538">MAPREDUCE-1538</a>. Add a limit on the number of artifacts in the
  534. DistributedCache to ensure we cleanup aggressively. (Dick King via
  535. acmurthy)
  536. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1850">MAPREDUCE-1850</a>. Add information about the host from which a job is
  537. submitted. (Krishna Ramachandran via acmurthy)
  538. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1110">HDFS-1110</a>. Reuses objects for commonly used file names in namenode to
  539. reduce the heap usage. (suresh)
  540. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6810">HADOOP-6810</a>. Extract a subset of tests for smoke (DOA) validation. (cos)
  541. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6642">HADOOP-6642</a>. Remove debug stmt left from original patch. (cdouglas)
  542. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6808">HADOOP-6808</a>. Add comments on how to setup File/Ganglia Context for
  543. kerberos metrics (Erik Steffl)
  544. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1061">HDFS-1061</a>. INodeFile memory optimization. (bharathm)
  545. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1109">HDFS-1109</a>. HFTP supports filenames that contains the character "+".
  546. (Dmytro Molkov via dhruba, backported by szetszwo)
  547. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1085">HDFS-1085</a>. Check file length and bytes read when reading a file through
  548. hftp in order to detect failure. (szetszwo)
  549. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1311">HDFS-1311</a>. Running tests with 'testcase' cause triple execution of the
  550. same test case (cos)
  551. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1150">HDFS-1150</a>.FIX. Verify datanodes' identities to clients in secure clusters.
  552. Update to patch to improve handling of jsvc source in build.xml (jghoman)
  553. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6752">HADOOP-6752</a>. Remote cluster control functionality needs JavaDocs
  554. improvement. (Balaji Rajagopalan via cos)
  555. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1288">MAPREDUCE-1288</a>. Fixes TrackerDistributedCacheManager to take into account
  556. the owner of the localized file in the mapping from cache URIs to
  557. CacheStatus objects. (ddas)
  558. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1682">MAPREDUCE-1682</a>. Fix speculative execution to ensure tasks are not
  559. scheduled after job failure. (acmurthy)
  560. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1914">MAPREDUCE-1914</a>. Ensure unique sub-directories for artifacts in the
  561. DistributedCache are cleaned up. (Dick King via acmurthy)
  562. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1538">MAPREDUCE-1538</a>. Add a limit on the number of artifacts in the
  563. DistributedCache to ensure we cleanup aggressively. (Dick King via
  564. acmurthy)
  565. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1900">MAPREDUCE-1900</a>. Fixes a FS leak that i missed in the earlier patch.
  566. (ddas)
  567. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1900">MAPREDUCE-1900</a>. Makes JobTracker/TaskTracker close filesystems, created
  568. on behalf of users, when they are no longer needed. (ddas)
  569. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6832">HADOOP-6832</a>. Add a static user plugin for web auth for external users.
  570. (omalley)
  571. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1007">HDFS-1007</a>. Fixes a bug in SecurityUtil.buildDTServiceName to do
  572. with handling of null hostname. (omalley)
  573. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1007">HDFS-1007</a>. makes long running servers using hftp work. Also has some
  574. refactoring in the MR code to do with handling of delegation tokens.
  575. (omalley & ddas)
  576. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1178">HDFS-1178</a>. The NameNode servlets should not use RPC to connect to the
  577. NameNode. (omalley)
  578. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1807">MAPREDUCE-1807</a>. Re-factor TestQueueManager. (Richard King via acmurthy)
  579. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1150">HDFS-1150</a>. Fixes the earlier patch to do logging in the right directory
  580. and also adds facility for monitoring processes (via -Dprocname in the
  581. command line). (Jakob Homan via ddas)
  582. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6781">HADOOP-6781</a>. security audit log shouldn't have exception in it. (boryas)
  583. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6776">HADOOP-6776</a>. Fixes the javadoc in UGI.createProxyUser. (ddas)
  584. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1150">HDFS-1150</a>. building jsvc from source tar. source tar is also checked in.
  585. (jitendra)
  586. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1150">HDFS-1150</a>. Bugfix in the hadoop shell script. (ddas)
  587. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1153">HDFS-1153</a>. The navigation to /dfsnodelist.jsp with invalid input
  588. parameters produces NPE and HTTP 500 error (rphulari)
  589. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1664">MAPREDUCE-1664</a>. Bugfix to enable queue administrators of a queue to
  590. view job details of jobs submitted to that queue even though they
  591. are not part of acl-view-job.
  592. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1150">HDFS-1150</a>. Bugfix to add more knobs to secure datanode starter.
  593. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1157">HDFS-1157</a>. Modifications introduced by <a href="https://issues.apache.org/jira/browse/HDFS-1150 are breaking aspect's
  594. bindings (cos)
  595. <li> HDFS-1130">HDFS-1150 are breaking aspect's
  596. bindings (cos)
  597. <li> HDFS-1130</a>. Adds a configuration dfs.cluster.administrators for
  598. controlling access to the default servlets in hdfs. (ddas)
  599. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6706">HADOOP-6706</a>.FIX. Relogin behavior for RPC clients could be improved
  600. (boryas)
  601. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1150">HDFS-1150</a>. Verify datanodes' identities to clients in secure clusters.
  602. (jghoman)
  603. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1442">MAPREDUCE-1442</a>. Fixed regex in job-history related to parsing Counter
  604. values. (Luke Lu via acmurthy)
  605. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6760">HADOOP-6760</a>. WebServer shouldn't increase port number in case of negative
  606. port setting caused by Jetty's race. (cos)
  607. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1146">HDFS-1146</a>. Javadoc for getDelegationTokenSecretManager in FSNamesystem.
  608. (jitendra)
  609. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6706">HADOOP-6706</a>. Fix on top of the earlier patch. Closes the connection
  610. on a SASL connection failure, and retries again with a new
  611. connection. (ddas)
  612. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1716">MAPREDUCE-1716</a>. Fix on top of earlier patch for logs truncation a.k.a
  613. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1100">MAPREDUCE-1100</a>. Addresses log truncation issues when binary data is
  614. written to log files and adds a header to a truncated log file to
  615. inform users of the done trucation.
  616. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1383">HDFS-1383</a>. Improve the error messages when using hftp://.
  617. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1744">MAPREDUCE-1744</a>. Fixed DistributedCache apis to take a user-supplied
  618. FileSystem to allow for better proxy behaviour for Oozie. (Richard King)
  619. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1733">MAPREDUCE-1733</a>. Authentication between pipes processes and java
  620. counterparts. (jitendra)
  621. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1664">MAPREDUCE-1664</a>. Bugfix on top of the previous patch. (ddas)
  622. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1136">HDFS-1136</a>. FileChecksumServlets.RedirectServlet doesn't carry forward
  623. the delegation token (boryas)
  624. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6756">HADOOP-6756</a>. Change value of FS_DEFAULT_NAME_KEY from fs.defaultFS
  625. to fs.default.name which is a correct name for 0.20 (steffl)
  626. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6756">HADOOP-6756</a>. Document (javadoc comments) and cleanup configuration
  627. keys in CommonConfigurationKeys.java (steffl)
  628. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1759">MAPREDUCE-1759</a>. Exception message for unauthorized user doing killJob,
  629. killTask, setJobPriority needs to be improved. (gravi via vinodkv)
  630. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6715">HADOOP-6715</a>. AccessControlList.toString() returns empty string when
  631. we set acl to "*". (gravi via vinodkv)
  632. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6757">HADOOP-6757</a>. NullPointerException for hadoop clients launched from
  633. streaming tasks. (amarrk via vinodkv)
  634. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6631">HADOOP-6631</a>. FileUtil.fullyDelete() should continue to delete other files
  635. despite failure at any level. (vinodkv)
  636. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1317">MAPREDUCE-1317</a>. NPE in setHostName in Rumen. (rksingh)
  637. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1754">MAPREDUCE-1754</a>. Replace mapred.persmissions.supergroup with an acl :
  638. mapreduce.cluster.administrators and <a href="https://issues.apache.org/jira/browse/HADOOP-6748">HADOOP-6748</a>.: Remove
  639. hadoop.cluster.administrators. Contributed by Amareshwari Sriramadasu.
  640. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6701">HADOOP-6701</a>. Incorrect exit codes for "dfs -chown", "dfs -chgrp"
  641. (rphulari)
  642. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6640">HADOOP-6640</a>. FileSystem.get() does RPC retires within a static
  643. synchronized block. (hairong)
  644. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1006">HDFS-1006</a>. Removes unnecessary logins from the previous patch. (ddas)
  645. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6745">HADOOP-6745</a>. adding some java doc to Server.RpcMetrics, UGI (boryas)
  646. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1707">MAPREDUCE-1707</a>. TaskRunner can get NPE in getting ugi from TaskTracker.
  647. (vinodkv)
  648. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1104">HDFS-1104</a>. Fsck triggers full GC on NameNode. (hairong)
  649. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6332">HADOOP-6332</a>. Large-scale Automated Test Framework (sharad, Sreekanth
  650. Ramakrishnan, at all via cos)
  651. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6526">HADOOP-6526</a>. Additional fix for test context on top of existing one. (cos)
  652. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6710">HADOOP-6710</a>. Symbolic umask for file creation is not conformant with posix.
  653. (suresh)
  654. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6693">HADOOP-6693</a>. Added metrics to track kerberos login success and failure.
  655. (suresh)
  656. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1711">MAPREDUCE-1711</a>. Gridmix should provide an option to submit jobs to the same
  657. queues as specified in the trace. (rksing via htang)
  658. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1687">MAPREDUCE-1687</a>. Stress submission policy does not always stress the
  659. cluster. (htang)
  660. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1641">MAPREDUCE-1641</a>. Bug-fix to ensure command line options such as
  661. -files/-archives are checked for duplicate artifacts in the
  662. DistributedCache. (Amareshwari Sreeramadasu via acmurthy)
  663. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1641">MAPREDUCE-1641</a>. Fix DistributedCache to ensure same files cannot be put in
  664. both the archives and files sections. (Richard King via acmurthy)
  665. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6670">HADOOP-6670</a>. Fixes a testcase issue introduced by the earlier commit
  666. of the <a href="https://issues.apache.org/jira/browse/HADOOP-6670">HADOOP-6670</a> patch. (ddas)
  667. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1718">MAPREDUCE-1718</a>. Fixes a problem to do with correctly constructing
  668. service name for the delegation token lookup in HftpFileSystem
  669. (borya via ddas)
  670. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6674">HADOOP-6674</a>. Fixes the earlier patch to handle pings correctly (ddas).
  671. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1664">MAPREDUCE-1664</a>. Job Acls affect when Queue Acls are set.
  672. (Ravi Gummadi via vinodkv)
  673. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6718">HADOOP-6718</a>. Fixes a problem to do with clients not closing RPC
  674. connections on a SASL failure. (ddas)
  675. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1397">MAPREDUCE-1397</a>. NullPointerException observed during task failures.
  676. (Amareshwari Sriramadasu via vinodkv)
  677. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6670">HADOOP-6670</a>. Use the UserGroupInformation's Subject as the criteria for
  678. equals and hashCode. (omalley)
  679. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6716">HADOOP-6716</a>. System won't start in non-secure mode when kerb5.conf
  680. (edu.mit.kerberos on Mac) is not present. (boryas)
  681. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1607">MAPREDUCE-1607</a>. Task controller may not set permissions for a
  682. task cleanup attempt's log directory. (Amareshwari Sreeramadasu via
  683. vinodkv)
  684. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1533">MAPREDUCE-1533</a>. JobTracker performance enhancements. (Amar Kamat via
  685. vinodkv)
  686. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1701">MAPREDUCE-1701</a>. AccessControlException while renewing a delegation token
  687. in not correctly handled in the JobTracker. (boryas)
  688. <li> <a href="https://issues.apache.org/jira/browse/HDFS-481">HDFS-481</a>. Incremental patch to fix broken unit test in contrib/hdfsproxy
  689. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6706">HADOOP-6706</a>. Fixes a bug in the earlier version of the same patch (ddas)
  690. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1096">HDFS-1096</a>. allow dfsadmin/mradmin refresh of superuser proxy group
  691. mappings(boryas).
  692. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1012">HDFS-1012</a>. Support for cluster specific path entries in ldap for hdfsproxy
  693. (Srikanth Sundarrajan via Nicholas)
  694. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1011">HDFS-1011</a>. Improve Logging in HDFSProxy to include cluster name associated
  695. with the request (Srikanth Sundarrajan via Nicholas)
  696. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1010">HDFS-1010</a>. Retrieve group information from UnixUserGroupInformation
  697. instead of LdapEntry (Srikanth Sundarrajan via Nicholas)
  698. <li> <a href="https://issues.apache.org/jira/browse/HDFS-481">HDFS-481</a>. Bug fix - hdfsproxy: Stack overflow + Race conditions
  699. (Srikanth Sundarrajan via Nicholas)
  700. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1657">MAPREDUCE-1657</a>. After task logs directory is deleted, tasklog servlet
  701. displays wrong error message about job ACLs. (Ravi Gummadi via vinodkv)
  702. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1692">MAPREDUCE-1692</a>. Remove TestStreamedMerge from the streaming tests.
  703. (Amareshwari Sriramadasu and Sreekanth Ramakrishnan via vinodkv)
  704. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1081">HDFS-1081</a>. Performance regression in
  705. DistributedFileSystem::getFileBlockLocations in secure systems (jhoman)
  706. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1656">MAPREDUCE-1656</a>. JobStory should provide queue info. (htang)
  707. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1317">MAPREDUCE-1317</a>. Reducing memory consumption of rumen objects. (htang)
  708. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1317">MAPREDUCE-1317</a>. Reverting the patch since it caused build failures. (htang)
  709. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1683">MAPREDUCE-1683</a>. Fixed jobtracker web-ui to correctly display heap-usage.
  710. (acmurthy)
  711. <a href="https://issues.apache.org/jira/browse/HADOOP-6706">HADOOP-6706</a>. Fixes exception handling for saslConnect. The ideal
  712. solution is to the Refreshable interface but as Owen noted in
  713. <a href="https://issues.apache.org/jira/browse/HADOOP-6656">HADOOP-6656</a>, it doesn't seem to work as expected. (ddas)
  714. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1617">MAPREDUCE-1617</a>. TestBadRecords failed once in our test runs. (Amar
  715. Kamat via vinodkv).
  716. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-587.">MAPREDUCE-587.</a> Stream test TestStreamingExitStatus fails with Out of
  717. Memory. (Amar Kamat via vinodkv).
  718. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1096">HDFS-1096</a>. Reverting the patch since it caused build failures. (ddas)
  719. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1317">MAPREDUCE-1317</a>. Reducing memory consumption of rumen objects. (htang)
  720. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1680">MAPREDUCE-1680</a>. Add a metric to track number of heartbeats processed by the
  721. JobTracker. (Richard King via acmurthy)
  722. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1683">MAPREDUCE-1683</a>. Removes JNI calls to get jvm current/max heap usage in
  723. ClusterStatus by default. (acmurthy)
  724. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6687">HADOOP-6687</a>. user object in the subject in UGI should be reused in case
  725. of a relogin. (jitendra)
  726. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5647">HADOOP-5647</a>. TestJobHistory fails if /tmp/_logs is not writable to.
  727. Testcase should not depend on /tmp. (Ravi Gummadi via vinodkv)
  728. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-181.">MAPREDUCE-181.</a> Bug fix for Secure job submission. (Ravi Gummadi via
  729. vinodkv)
  730. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1635">MAPREDUCE-1635</a>. ResourceEstimator does not work after <a href="https://issues.apache.org/jira/browse/MAPREDUCE-842.">MAPREDUCE-842.</a>
  731. (Amareshwari Sriramadasu via vinodkv)
  732. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1526">MAPREDUCE-1526</a>. Cache the job related information while submitting the
  733. job. (rksingh)
  734. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6674">HADOOP-6674</a>. Turn off SASL checksums for RPCs. (jitendra via omalley)
  735. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5958">HADOOP-5958</a>. Replace fork of DF with library call. (cdouglas via omalley)
  736. <li> <a href="https://issues.apache.org/jira/browse/HDFS-999">HDFS-999</a>. Secondary namenode should login using kerberos if security
  737. is configured. Bugfix to original patch. (jhoman)
  738. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1594">MAPREDUCE-1594</a>. Support for SleepJobs in Gridmix (rksingh)
  739. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1007">HDFS-1007</a>. Fix. ServiceName for delegation token for Hftp has hftp
  740. port and not RPC port.
  741. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1376">MAPREDUCE-1376</a>. Support for varied user submissions in Gridmix (rksingh)
  742. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1080">HDFS-1080</a>. SecondaryNameNode image transfer should use the defined
  743. http address rather than local ip address (jhoman)
  744. <a href="https://issues.apache.org/jira/browse/HADOOP-6661">HADOOP-6661</a>. User document for UserGroupInformation.doAs for secure
  745. impersonation. (jitendra)
  746. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1624">MAPREDUCE-1624</a>. Documents the job credentials and associated details
  747. to do with delegation tokens (ddas)
  748. <a href="https://issues.apache.org/jira/browse/HDFS-1036">HDFS-1036</a>. Documentation for fetchdt for forrest (boryas)
  749. <a href="https://issues.apache.org/jira/browse/HDFS-1039">HDFS-1039</a>. New patch on top of previous patch. Gets namenode address
  750. from conf. (jitendra)
  751. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6656">HADOOP-6656</a>. Renew Kerberos TGT when 80% of the renew lifetime has been
  752. used up. (omalley)
  753. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6653">HADOOP-6653</a>. Protect against NPE in setupSaslConnection when real user is
  754. null. (omalley)
  755. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6649">HADOOP-6649</a>. An error in the previous committed patch. (jitendra)
  756. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6652">HADOOP-6652</a>. ShellBasedUnixGroupsMapping shouldn't have a cache.
  757. (ddas)
  758. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6649">HADOOP-6649</a>. login object in UGI should be inside the subject
  759. (jitendra)
  760. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6637">HADOOP-6637</a>. Benchmark overhead of RPC session establishment
  761. (shv via jitendra)
  762. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6648">HADOOP-6648</a>. Credentials must ignore null tokens that can be generated
  763. when using HFTP to talk to insecure clusters. (omalley)
  764. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6632">HADOOP-6632</a>. Fix on JobTracker to reuse filesystem handles if possible.
  765. (ddas)
  766. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6647">HADOOP-6647</a>. balancer fails with "is not authorized for protocol
  767. interface NamenodeProtocol" in secure environment (boryas)
  768. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1612">MAPREDUCE-1612</a>. job conf file is not accessible from job history
  769. web page. (Ravi Gummadi via vinodkv)
  770. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1611">MAPREDUCE-1611</a>. Refresh nodes and refresh queues doesnt work with
  771. service authorization enabled. (Amar Kamat via vinodkv)
  772. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6644">HADOOP-6644</a>. util.Shell getGROUPS_FOR_USER_COMMAND method
  773. name - should use common naming convention (boryas)
  774. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1609">MAPREDUCE-1609</a>. Fixes a problem with localization of job log
  775. directories when tasktracker is re-initialized that can result
  776. in failed tasks. (Amareshwari Sriramadasu via yhemanth)
  777. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1610">MAPREDUCE-1610</a>. Update forrest documentation for directory
  778. structure of localized files. (Ravi Gummadi via yhemanth)
  779. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1532">MAPREDUCE-1532</a>. Fixes a javadoc and an exception message in JobInProgress
  780. when the authenticated user is different from the user in conf. (ddas)
  781. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1417">MAPREDUCE-1417</a>. Update forrest documentation for private
  782. and public distributed cache files. (Ravi Gummadi via yhemanth)
  783. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6634">HADOOP-6634</a>. AccessControlList uses full-principal names to verify acls
  784. causing queue-acls to fail (vinodkv)
  785. <a href="https://issues.apache.org/jira/browse/HADOOP-6642">HADOOP-6642</a>. Fix javac, javadoc, findbugs warnings. (chrisdo via acmurthy)
  786. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1044">HDFS-1044</a>. Cannot submit mapreduce job from secure client to
  787. unsecure sever. (boryas)
  788. <a href="https://issues.apache.org/jira/browse/HADOOP-6638">HADOOP-6638</a>. try to relogin in a case of failed RPC connection
  789. (expired tgt) only in case the subject is loginUser or
  790. proxyUgi.realUser. (boryas)
  791. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6632">HADOOP-6632</a>. Support for using different Kerberos keys for different
  792. instances of Hadoop services. (jitendra)
  793. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6526">HADOOP-6526</a>. Need mapping from long principal names to local OS
  794. user names. (jitendra)
  795. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1604">MAPREDUCE-1604</a>. Update Forrest documentation for job authorization
  796. ACLs. (Amareshwari Sriramadasu via yhemanth)
  797. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1045">HDFS-1045</a>. In secure clusters, re-login is necessary for https
  798. clients before opening connections (jhoman)
  799. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6603">HADOOP-6603</a>. Addition to original patch to be explicit
  800. about new method not being for general use. (jhoman)
  801. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1543">MAPREDUCE-1543</a>. Add audit log messages for job and queue
  802. access control checks. (Amar Kamat via yhemanth)
  803. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1606">MAPREDUCE-1606</a>. Fixed occassinal timeout in TestJobACL. (Ravi Gummadi via
  804. acmurthy)
  805. <li><a href="https://issues.apache.org/jira/browse/HADOOP-6633">HADOOP-6633</a>. normalize property names for JT/NN kerberos principal
  806. names in configuration. (boryas)
  807. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6613">HADOOP-6613</a>. Changes the RPC server so that version is checked first
  808. on an incoming connection. (Kan Zhang via ddas)
  809. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5592">HADOOP-5592</a>. Fix typo in Streaming doc in reference to GzipCodec.
  810. (Corinne Chandel via tomwhite)
  811. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-813.">MAPREDUCE-813.</a> Updates Streaming and M/R tutorial documents.
  812. (Corinne Chandel via ddas)
  813. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-927.">MAPREDUCE-927.</a> Cleanup of task-logs should happen in TaskTracker instead
  814. of the Child. (Amareshwari Sriramadasu via vinodkv)
  815. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1039">HDFS-1039</a>. Service should be set in the token in JspHelper.getUGI.
  816. (jitendra)
  817. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1599">MAPREDUCE-1599</a>. MRBench reuses jobConf and credentials there in.
  818. (jitendra)
  819. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1522">MAPREDUCE-1522</a>. FileInputFormat may use the default FileSystem for the
  820. input path. (Tsz Wo (Nicholas), SZE via cdouglas)
  821. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1036">HDFS-1036</a>. In DelegationTokenFetch pass Configuration object so
  822. getDefaultUri will work correctly.
  823. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1038">HDFS-1038</a>. In nn_browsedfscontent.jsp fetch delegation token only if
  824. security is enabled. (jitendra)
  825. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1036">HDFS-1036</a>. in DelegationTokenFetch dfs.getURI returns no port (boryas)
  826. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6598">HADOOP-6598</a>. Verbose logging from the Group class (one more case)
  827. (boryas)
  828. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6627">HADOOP-6627</a>. Bad Connection to FS" message in FSShell should print
  829. message from the exception (boryas)
  830. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1033">HDFS-1033</a>. In secure clusters, NN and SNN should verify that the remote
  831. principal during image and edits transfer (jhoman)
  832. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1005">HDFS-1005</a>. Fixes a bug to do with calling the cross-realm API in Fsck
  833. client. (ddas)
  834. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1422">MAPREDUCE-1422</a>. Fix cleanup of localized job directory to work if files
  835. with non-deletable permissions are created within it.
  836. (Amar Kamat via yhemanth)
  837. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1007">HDFS-1007</a>. Fixes bugs to do with 20S cluster talking to 20 over
  838. hftp (borya)
  839. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1566">MAPREDUCE-1566</a>. Fixes bugs in the earlier patch. (ddas)
  840. <li> <a href="https://issues.apache.org/jira/browse/HDFS-992">HDFS-992</a>. A bug in backport for <a href="https://issues.apache.org/jira/browse/HDFS-992">HDFS-992</a>. (jitendra)
  841. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6598">HADOOP-6598</a>. Remove verbose logging from the Groups class. (borya)
  842. <a href="https://issues.apache.org/jira/browse/HADOOP-6620">HADOOP-6620</a>. NPE if renewer is passed as null in getDelegationToken.
  843. (jitendra)
  844. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1023">HDFS-1023</a>. Second Update to original patch to fix username (jhoman)
  845. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1435">MAPREDUCE-1435</a>. Add test cases to already committed patch for this
  846. jira, synchronizing changes with trunk. (yhemanth)
  847. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6612">HADOOP-6612</a>. Protocols RefreshUserToGroupMappingsProtocol and
  848. RefreshAuthorizationPolicyProtocol authorization settings thru
  849. KerberosInfo (boryas)
  850. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1566">MAPREDUCE-1566</a>. Bugfix for tests on top of the earlier patch. (ddas)
  851. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1566">MAPREDUCE-1566</a>. Mechanism to import tokens and secrets from a file in to
  852. the submitted job. (omalley)
  853. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6603">HADOOP-6603</a>. Provide workaround for issue with Kerberos not
  854. resolving corss-realm principal. (kan via jhoman)
  855. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1023">HDFS-1023</a>. Update to original patch to fix username (jhoman)
  856. <li> <a href="https://issues.apache.org/jira/browse/HDFS-814">HDFS-814</a>. Add an api to get the visible length of a
  857. DFSDataInputStream. (hairong)
  858. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1023">HDFS-1023</a>. Allow http server to start as regular user if https
  859. principal is not defined. (jhoman)
  860. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1022">HDFS-1022</a>. Merge all three test specs files (common, hdfs, mapred)
  861. into one. (steffl)
  862. <li> <a href="https://issues.apache.org/jira/browse/HDFS-101">HDFS-101</a>. DFS write pipeline: DFSClient sometimes does not detect
  863. second datanode failure. (hairong)
  864. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1015">HDFS-1015</a>. Intermittent failure in TestSecurityTokenEditLog. (jitendra)
  865. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1550">MAPREDUCE-1550</a>. A bugfix on top of what was committed earlier (ddas).
  866. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1155">MAPREDUCE-1155</a>. DISABLING THE TestStreamingExitStatus temporarily. (ddas)
  867. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1020">HDFS-1020</a>. Changes the check for renewer from short name to long name
  868. in the cancel/renew delegation token methods. (jitendra via ddas)
  869. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1019">HDFS-1019</a>. Fixes values of delegation token parameters in
  870. hdfs-default.xml. (jitendra via ddas)
  871. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1430">MAPREDUCE-1430</a>. Fixes a backport issue with the earlier patch. (ddas)
  872. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1559">MAPREDUCE-1559</a>. Fixes a problem in DelegationTokenRenewal class to
  873. do with using the right credentials when talking to the NameNode.(ddas)
  874. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1550">MAPREDUCE-1550</a>. Fixes a problem to do with creating a filesystem using
  875. the user's UGI in the JobHistory browsing. (ddas)
  876. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6609">HADOOP-6609</a>. Fix UTF8 to use a thread local DataOutputBuffer instead of
  877. a static that was causing a deadlock in RPC. (omalley)
  878. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6584">HADOOP-6584</a>. Fix javadoc warnings introduced by original <a href="https://issues.apache.org/jira/browse/HADOOP-6584">HADOOP-6584</a>
  879. patch (jhoman)
  880. <a href="https://issues.apache.org/jira/browse/HDFS-1017">HDFS-1017</a>. browsedfs jsp should call JspHelper.getUGI rather than using
  881. createRemoteUser(). (jhoman)
  882. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-899.">MAPREDUCE-899.</a> Modified LinuxTaskController to check that task-controller
  883. has right permissions and ownership before performing any actions.
  884. (Amareshwari Sriramadasu via yhemanth)
  885. <li> <a href="https://issues.apache.org/jira/browse/HDFS-204">HDFS-204</a>. Revive number of files listed metrics. (hairong)
  886. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6569">HADOOP-6569</a>. FsShell#cat should avoid calling uneccessary getFileStatus
  887. before opening a file to read. (hairong)
  888. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1014">HDFS-1014</a>. Error in reading delegation tokens from edit logs. (jitendra)
  889. <li> <a href="https://issues.apache.org/jira/browse/HDFS-458">HDFS-458</a>. Add under-10-min tests from 0.22 to 0.20.1xx, only the tests
  890. that already exist in 0.20.1xx (steffl)
  891. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1155">MAPREDUCE-1155</a>. Just pulls out the TestStreamingExitStatus part of the
  892. patch from jira (that went to 0.22). (ddas)
  893. <a href="https://issues.apache.org/jira/browse/HADOOP-6600">HADOOP-6600</a>. Fix for branch backport only. Comparing of user should use
  894. equals. (boryas).
  895. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1006">HDFS-1006</a>. Fixes NameNode and SecondaryNameNode to use kerberizedSSL for
  896. the http communication. (Jakob Homan via ddas)
  897. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1007">HDFS-1007</a>. Fixes a bug on top of the earlier patch. (ddas)
  898. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1005">HDFS-1005</a>. Fsck security. Makes it work over kerberized SSL (boryas and
  899. jhoman)
  900. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1007">HDFS-1007</a>. Makes HFTP and Distcp use kerberized SSL. (ddas)
  901. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1455">MAPREDUCE-1455</a>. Fixes a testcase in the earlier patch.
  902. (Ravi Gummadi via ddas)
  903. <li> <a href="https://issues.apache.org/jira/browse/HDFS-992">HDFS-992</a>. Refactors block access token implementation to conform to the
  904. generic Token interface. (Kan Zhang via ddas)
  905. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6584">HADOOP-6584</a>. Adds KrbSSL connector for jetty. (Jakob Homan via ddas)
  906. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6589">HADOOP-6589</a>. Add a framework for better error messages when rpc connections
  907. fail to authenticate. (Kan Zhang via omalley)
  908. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6600">HADOOP-6600</a>,<a href="https://issues.apache.org/jira/browse/HDFS-1003,<a href="https://issues">HDFS-1003,<a href="https://issues</a>.apache.org/jira/browse/MAPREDUCE-1539">MAPREDUCE-1539</a>. mechanism for authorization check
  909. for inter-server protocols(boryas)
  910. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6580">HADOOP-6580</a>,<a href="https://issues.apache.org/jira/browse/HDFS-993,<a href="https://issues">HDFS-993,<a href="https://issues</a>.apache.org/jira/browse/MAPREDUCE-1516">MAPREDUCE-1516</a>. UGI should contain authentication
  911. method.
  912. <li> Namenode and JT should issue a delegation token only for kerberos
  913. authenticated clients. (jitendra)
  914. <li> <a href="https://issues.apache.org/jira/browse/HDFS-984,<a href="https://issues">HDFS-984,<a href="https://issues</a>.apache.org/jira/browse/HADOOP-6573">HADOOP-6573</a>,<a href="https://issues.apache.org/jira/browse/MAPREDUCE-1537">MAPREDUCE-1537</a>. Delegation Tokens should be persisted
  915. in Namenode, and corresponding changes in common and mr. (jitendra)
  916. <li> <a href="https://issues.apache.org/jira/browse/HDFS-994">HDFS-994</a>. Provide methods for obtaining delegation token from Namenode for
  917. hftp and other uses. Incorporates <a href="https://issues.apache.org/jira/browse/HADOOP-6594">HADOOP-6594</a>: Update hdfs script to
  918. provide fetchdt tool. (jitendra)
  919. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6586">HADOOP-6586</a>. Log authentication and authorization failures and successes
  920. (boryas)
  921. <li> <a href="https://issues.apache.org/jira/browse/HDFS-991">HDFS-991</a>. Allow use of delegation tokens to authenticate to the
  922. HDFS servlets. (omalley)
  923. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-1849">HADOOP-1849</a>. Add undocumented configuration parameter for per handler
  924. call queue size in IPC Server. (shv)
  925. <a href="https://issues.apache.org/jira/browse/HADOOP-6599">HADOOP-6599</a>. Split existing RpcMetrics with summary in RpcMetrics and
  926. details information in RpcDetailedMetrics. (suresh)
  927. <li> <a href="https://issues.apache.org/jira/browse/HDFS-985">HDFS-985</a>. HDFS should issue multiple RPCs for listing a large directory.
  928. (hairong)
  929. <li> <a href="https://issues.apache.org/jira/browse/HDFS-1000">HDFS-1000</a>. Updates libhdfs to use the new UGI. (ddas)
  930. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1532">MAPREDUCE-1532</a>. Ensures all filesystem operations at the client is done
  931. as the job submitter. Also, changes the renewal to maintain list of tokens
  932. to renew. (ddas)
  933. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6596">HADOOP-6596</a>. Add a version field to the seialization of the
  934. AbstractDelegationTokenIdentifier. (omalley)
  935. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5561">HADOOP-5561</a>. Add javadoc.maxmemory to build.xml to allow larger memory.
  936. (jkhoman via omalley)
  937. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6579">HADOOP-6579</a>. Add a mechanism for encoding and decoding Tokens in to
  938. url-safe strings. (omalley)
  939. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1354">MAPREDUCE-1354</a>. Make incremental changes in jobtracker for
  940. improving scalability (acmurthy)
  941. <li> <a href="https://issues.apache.org/jira/browse/HDFS-999">HDFS-999</a>.Secondary namenode should login using kerberos if security
  942. is configured(boryas)
  943. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1466">MAPREDUCE-1466</a>. Added a private configuration variable
  944. mapreduce.input.num.files, to store number of input files
  945. being processed by M/R job. (Arun Murthy via yhemanth)
  946. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1403">MAPREDUCE-1403</a>. Save file-sizes of each of the artifacts in
  947. DistributedCache in the JobConf (Arun Murthy via yhemanth)
  948. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6543">HADOOP-6543</a>. Fixes a compilation problem in the original commit. (ddas)
  949. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1520">MAPREDUCE-1520</a>. Moves a call to setWorkingDirectory in Child to within
  950. a doAs block. (Amareshwari Sriramadasu via ddas)
  951. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6543">HADOOP-6543</a>. Allows secure clients to talk to unsecure clusters.
  952. (Kan Zhang via ddas)
  953. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1505">MAPREDUCE-1505</a>. Delays construction of the job client until it is really
  954. required. (Arun C Murthy via ddas)
  955. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6549">HADOOP-6549</a>. TestDoAsEffectiveUser should use ip address of the host
  956. for superuser ip check. (jitendra)
  957. <li> <a href="https://issues.apache.org/jira/browse/HDFS-464">HDFS-464</a>. Fix memory leaks in libhdfs. (Christian Kunz via suresh)
  958. <li> <a href="https://issues.apache.org/jira/browse/HDFS-946">HDFS-946</a>. NameNode should not return full path name when lisitng a
  959. diretory or getting the status of a file. (hairong)
  960. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1398">MAPREDUCE-1398</a>. Fix TaskLauncher to stop waiting for slots on a TIP
  961. that is killed / failed. (Amareshwari Sriramadasu via yhemanth)
  962. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1476">MAPREDUCE-1476</a>. Fix the M/R framework to not call commit for special
  963. tasks like job setup/cleanup and task cleanup.
  964. (Amareshwari Sriramadasu via yhemanth)
  965. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6467">HADOOP-6467</a>. Performance improvement for liststatus on directories in
  966. hadoop archives. (mahadev)
  967. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6558">HADOOP-6558</a>. archive does not work with distcp -update. (nicholas via
  968. mahadev)
  969. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6583">HADOOP-6583</a>. Captures authentication and authorization metrics. (ddas)
  970. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1316">MAPREDUCE-1316</a>. Fixes a memory leak of TaskInProgress instances in
  971. the jobtracker. (Amar Kamat via yhemanth)
  972. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-670.">MAPREDUCE-670.</a> Creates ant target for 10 mins patch test build.
  973. (Jothi Padmanabhan via gkesavan)
  974. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1430">MAPREDUCE-1430</a>. JobTracker should be able to renew delegation tokens
  975. for the jobs(boryas)
  976. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6551">HADOOP-6551</a>, <a href="https://issues.apache.org/jira/browse/HDFS-986, <a href="https://issues">HDFS-986, <a href="https://issues</a>.apache.org/jira/browse/MAPREDUCE-1503">MAPREDUCE-1503</a>. Change API for tokens to throw
  977. exceptions instead of returning booleans. (omalley)
  978. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6545">HADOOP-6545</a>. Changes the Key for the FileSystem to be UGI. (ddas)
  979. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6572">HADOOP-6572</a>. Makes sure that SASL encryption and push to responder queue
  980. for the RPC response happens atomically. (Kan Zhang via ddas)
  981. <li> <a href="https://issues.apache.org/jira/browse/HDFS-965">HDFS-965</a>. Split the HDFS TestDelegationToken into two tests, of which
  982. one proxy users and the other normal users. (jitendra via omalley)
  983. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6560">HADOOP-6560</a>. HarFileSystem throws NPE for har://hdfs-/foo (nicholas via
  984. mahadev)
  985. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-686.">MAPREDUCE-686.</a> Move TestSpeculativeExecution.Fake* into a separate class
  986. so that it can be used by other tests. (Jothi Padmanabhan via sharad)
  987. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-181.">MAPREDUCE-181.</a> Fixes an issue in the use of the right config. (ddas)
  988. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1026">MAPREDUCE-1026</a>. Fixes a bug in the backport. (ddas)
  989. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6559">HADOOP-6559</a>. Makes the RPC client automatically re-login when the SASL
  990. connection setup fails. This is applicable to only keytab based logins.
  991. (ddas)
  992. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-2141">HADOOP-2141</a>. Backport changes made in the original JIRA to aid
  993. fast unit tests in Map/Reduce. (Amar Kamat via yhemanth)
  994. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6382">HADOOP-6382</a>. Import the mavenizable pom file structure and adjust
  995. the build targets and bin scripts. (gkesvan via ltucker)
  996. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1425">MAPREDUCE-1425</a>. archive throws OutOfMemoryError (mahadev)
  997. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1399">MAPREDUCE-1399</a>. The archive command shows a null error message. (nicholas)
  998. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6552">HADOOP-6552</a>. Puts renewTGT=true and useTicketCache=true for the keytab
  999. kerberos options. (ddas)
  1000. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1433">MAPREDUCE-1433</a>. Adds delegation token for MapReduce (ddas)
  1001. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4359">HADOOP-4359</a>. Fixes a bug in the earlier backport. (ddas)
  1002. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6547">HADOOP-6547</a>, <a href="https://issues.apache.org/jira/browse/HDFS-949, <a href="https://issues">HDFS-949, <a href="https://issues</a>.apache.org/jira/browse/MAPREDUCE-1470">MAPREDUCE-1470</a>. Move Delegation token into Common
  1003. so that we can use it for MapReduce also. It is a combined patch for
  1004. common, hdfs and mr. (jitendra)
  1005. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6510">HADOOP-6510</a>,<a href="https://issues.apache.org/jira/browse/HDFS-935,<a href="https://issues">HDFS-935,<a href="https://issues</a>.apache.org/jira/browse/MAPREDUCE-1464">MAPREDUCE-1464</a>. Support for doAs to allow
  1006. authenticated superuser to impersonate proxy users. It is a combined
  1007. patch with compatible fixes in HDFS and MR. (jitendra)
  1008. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1435">MAPREDUCE-1435</a>. Fixes the way symlinks are handled when cleaning up
  1009. work directory files. (Ravi Gummadi via yhemanth)
  1010. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-6419">MAPREDUCE-6419</a>. Fixes a bug in the backported patch. (ddas)
  1011. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1457">MAPREDUCE-1457</a>. Fixes JobTracker to get the FileSystem object within
  1012. getStagingAreaDir within a privileged block. Fixes Child.java to use the
  1013. appropriate UGIs while getting the TaskUmbilicalProtocol proxy and while
  1014. executing the task. Contributed by Jakob Homan. (ddas)
  1015. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1440">MAPREDUCE-1440</a>. Replace the long user name in MapReduce with the local
  1016. name. (ddas)
  1017. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6419">HADOOP-6419</a>. Adds SASL based authentication to RPC. Also includes the
  1018. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1335">MAPREDUCE-1335</a> and <a href="https://issues.apache.org/jira/browse/HDFS-933 patches">HDFS-933 patches</a>. Contributed by Kan Zhang.
  1019. (ddas)
  1020. <a href="https://issues.apache.org/jira/browse/HADOOP-6538">HADOOP-6538</a>. Sets hadoop.security.authentication to simple by default.
  1021. (ddas)
  1022. <li> <a href="https://issues.apache.org/jira/browse/HDFS-938">HDFS-938</a>. Replace calls to UGI.getUserName() with
  1023. UGI.getShortUserName()(boryas)
  1024. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6544">HADOOP-6544</a>. fix ivy settings to include JSON jackson.codehause.org
  1025. libs for .20 (boryas)
  1026. <a href="https://issues.apache.org/jira/browse/HDFS-907">HDFS-907</a>. Add tests for getBlockLocations and totalLoad metrics. (rphulari)
  1027. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6204">HADOOP-6204</a>. Implementing aspects development and fault injeciton
  1028. framework for Hadoop (cos)
  1029. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1432">MAPREDUCE-1432</a>. Adds hooks in the jobtracker and tasktracker
  1030. for loading the tokens in the user's ugi. This is required for
  1031. the copying of files from the hdfs. (Devaraj Das vi boryas)
  1032. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1383">MAPREDUCE-1383</a>. Automates fetching of delegation tokens in File*Formats
  1033. Distributed Cache and Distcp. Also, provides a config
  1034. mapreduce.job.hdfs-servers that the jobs can populate with a comma
  1035. separated list of namenodes. The job client automatically fetches
  1036. delegation tokens from those namenodes.
  1037. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6337">HADOOP-6337</a>. Update FilterInitializer class to be more visible
  1038. and take a conf for further development. (jhoman)
  1039. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6520">HADOOP-6520</a>. UGI should load tokens from the environment. (jitendra)
  1040. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6517">HADOOP-6517</a>, <a href="https://issues.apache.org/jira/browse/HADOOP-6518">HADOOP-6518</a>. Ability to add/get tokens from
  1041. UserGroupInformation & Kerberos login in UGI should honor KRB5CCNAME
  1042. (jitendra)
  1043. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6299">HADOOP-6299</a>. Reimplement the UserGroupInformation to use the OS
  1044. specific and Kerberos JAAS login. (jhoman, ddas, oom)
  1045. <a href="https://issues.apache.org/jira/browse/HADOOP-6524">HADOOP-6524</a>. Contrib tests are failing Clover'ed build. (cos)
  1046. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-842.">MAPREDUCE-842.</a> Fixing a bug in the earlier version of the patch
  1047. related to improper localization of the job token file.
  1048. (Ravi Gummadi via yhemanth)
  1049. <li> <a href="https://issues.apache.org/jira/browse/HDFS-919">HDFS-919</a>. Create test to validate the BlocksVerified metric (Gary Murry
  1050. via cos)
  1051. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1186">MAPREDUCE-1186</a>. Modified code in distributed cache to set
  1052. permissions only on required set of localized paths.
  1053. (Amareshwari Sriramadasu via yhemanth)
  1054. <li> <a href="https://issues.apache.org/jira/browse/HDFS-899">HDFS-899</a>. Delegation Token Implementation. (Jitendra Nath Pandey)
  1055. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-896.">MAPREDUCE-896.</a> Enhance tasktracker to cleanup files that might have
  1056. been created by user tasks with non-writable permissions.
  1057. (Ravi Gummadi via yhemanth)
  1058. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5879">HADOOP-5879</a>. Read compression level and strategy from Configuration for
  1059. gzip compression. (He Yongqiang via cdouglas)
  1060. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6161">HADOOP-6161</a>. Add get/setEnum methods to Configuration. (cdouglas)
  1061. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6382">HADOOP-6382</a> Mavenize the build.xml targets and update the bin scripts
  1062. in preparation for publishing POM files (giri kesavan via ltucker)
  1063. <li> <a href="https://issues.apache.org/jira/browse/HDFS-737">HDFS-737</a>. Add full path name of the file to the block information and
  1064. summary of total number of files, blocks, live and deadnodes to
  1065. metasave output. (Jitendra Nath Pandey via suresh)
  1066. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6577">HADOOP-6577</a>. Add hidden configuration option "ipc.server.max.response.size"
  1067. to change the default 1 MB, the maximum size when large IPC handler
  1068. response buffer is reset. (suresh)
  1069. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6521">HADOOP-6521</a>. Fix backward compatiblity issue with umask when applications
  1070. use deprecated param dfs.umask in configuration or use
  1071. FsPermission.setUMask(). (suresh)
  1072. <li> <a href="https://issues.apache.org/jira/browse/HDFS-737">HDFS-737</a>. Add full path name of the file to the block information and
  1073. summary of total number of files, blocks, live and deadnodes to
  1074. metasave output. (Jitendra Nath Pandey via suresh)
  1075. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6521">HADOOP-6521</a>. Fix backward compatiblity issue with umask when applications
  1076. use deprecated param dfs.umask in configuration or use
  1077. FsPermission.setUMask(). (suresh)
  1078. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-433.">MAPREDUCE-433.</a> Use more reliable counters in TestReduceFetch.
  1079. (Christopher Douglas via ddas)
  1080. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-744.">MAPREDUCE-744.</a> Introduces the notion of a public distributed cache.
  1081. (ddas)
  1082. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1140">MAPREDUCE-1140</a>. Fix DistributedCache to not decrement reference counts
  1083. for unreferenced files in error conditions.
  1084. (Amareshwari Sriramadasu via yhemanth)
  1085. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1284">MAPREDUCE-1284</a>. Fix fts_open() call in task-controller that was failing
  1086. LinuxTaskController unit tests. (Ravi Gummadi via yhemanth)
  1087. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1098">MAPREDUCE-1098</a>. Fixed the distributed-cache to not do i/o while
  1088. holding a global lock.
  1089. (Amareshwari Sriramadasu via acmurthy)
  1090. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1338">MAPREDUCE-1338</a>. Introduces the notion of token cache using which
  1091. tokens and secrets can be sent by the Job client to the JobTracker.
  1092. (Boris Shkolnik)
  1093. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6495">HADOOP-6495</a>. Identifier should be serialized after the password is created
  1094. In Token constructor. (Jitendra Nath Pandey)
  1095. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6506">HADOOP-6506</a>. Failing tests prevent the rest of test targets from
  1096. execution. (cos)
  1097. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5457">HADOOP-5457</a>. Fix to continue to run builds even if contrib test fails.
  1098. (gkesavan)
  1099. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-856.">MAPREDUCE-856.</a> Setup secure permissions for distributed cache files.
  1100. (Vinod Kumar Vavilapalli via yhemanth)
  1101. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-871.">MAPREDUCE-871.</a> Fix ownership of Job/Task local files to have correct
  1102. group ownership according to the egid of the tasktracker.
  1103. (Vinod Kumar Vavilapalli via yhemanth)
  1104. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-476.">MAPREDUCE-476.</a> Extend DistributedCache to work locally (LocalJobRunner).
  1105. (Philip Zeyliger via tomwhite)
  1106. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-711.">MAPREDUCE-711.</a> Removed Distributed Cache from Common, to move it under
  1107. Map/Reduce. (Vinod Kumar Vavilapalli via yhemanth)
  1108. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-478.">MAPREDUCE-478.</a> Allow map and reduce jvm parameters, environment
  1109. variables and ulimit to be set separately. (acmurthy)
  1110. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-842.">MAPREDUCE-842.</a> Setup secure permissions for localized job files,
  1111. intermediate outputs and log files on tasktrackers.
  1112. (Vinod Kumar Vavilapalli via yhemanth)
  1113. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-408.">MAPREDUCE-408.</a> Fixes an assertion problem in TestKillSubProcesses.
  1114. (Ravi Gummadi via ddas)
  1115. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4041">HADOOP-4041</a>. IsolationRunner does not work as documented.
  1116. (Philip Zeyliger via tomwhite)
  1117. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-181.">MAPREDUCE-181.</a> Changes the job submission process to be secure.
  1118. (Devaraj Das)
  1119. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5737">HADOOP-5737</a>. Fixes a problem in the way the JobTracker used to talk to
  1120. other daemons like the NameNode to get the job's files. Also adds APIs
  1121. in the JobTracker to get the FileSystem objects as per the JobTracker's
  1122. configuration. (Amar Kamat via ddas)
  1123. <a href="https://issues.apache.org/jira/browse/HADOOP-5771">HADOOP-5771</a>. Implements unit tests for LinuxTaskController.
  1124. (Sreekanth Ramakrishnan and Vinod Kumar Vavilapalli via yhemanth)
  1125. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4656">HADOOP-4656</a>, <a href="https://issues.apache.org/jira/browse/HDFS-685, <a href="https://issues">HDFS-685, <a href="https://issues</a>.apache.org/jira/browse/MAPREDUCE-1083">MAPREDUCE-1083</a>. Use the user-to-groups mapping
  1126. service in the NameNode and JobTracker. Combined patch for these 3 jiras
  1127. otherwise tests fail. (Jitendra Nath Pandey)
  1128. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1250">MAPREDUCE-1250</a>. Refactor job token to use a common token interface.
  1129. (Jitendra Nath Pandey)
  1130. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1026">MAPREDUCE-1026</a>. Shuffle should be secure. (Jitendra Nath Pandey)
  1131. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4268">HADOOP-4268</a>. Permission checking in fsck. (Jitendra Nath Pandey)
  1132. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6415">HADOOP-6415</a>. Adding a common token interface for both job token and
  1133. delegation token. (Jitendra Nath Pandey)
  1134. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6367">HADOOP-6367</a>, <a href="https://issues.apache.org/jira/browse/HDFS-764">HDFS-764</a>. Moving Access Token implementation from Common to
  1135. HDFS. These two jiras must be committed together otherwise build will
  1136. fail. (Jitendra Nath Pandey)
  1137. <li> <a href="https://issues.apache.org/jira/browse/HDFS-409">HDFS-409</a>. Add more access token tests
  1138. (Jitendra Nath Pandey)
  1139. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6132">HADOOP-6132</a>. RPC client opens an extra connection for VersionedProtocol.
  1140. (Jitendra Nath Pandey)
  1141. <li> <a href="https://issues.apache.org/jira/browse/HDFS-445">HDFS-445</a>. pread() fails when cached block locations are no longer valid.
  1142. (Jitendra Nath Pandey)
  1143. <li> <a href="https://issues.apache.org/jira/browse/HDFS-195">HDFS-195</a>. Need to handle access token expiration when re-establishing the
  1144. pipeline for dfs write. (Jitendra Nath Pandey)
  1145. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6176">HADOOP-6176</a>. Adding a couple private methods to AccessTokenHandler
  1146. for testing purposes. (Jitendra Nath Pandey)
  1147. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5824">HADOOP-5824</a>. remove OP_READ_METADATA functionality from Datanode.
  1148. (Jitendra Nath Pandey)
  1149. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4359">HADOOP-4359</a>. Access Token: Support for data access authorization
  1150. checking on DataNodes. (Jitendra Nath Pandey)
  1151. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1372">MAPREDUCE-1372</a>. Fixed a ConcurrentModificationException in jobtracker.
  1152. (Arun C Murthy via yhemanth)
  1153. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1316">MAPREDUCE-1316</a>. Fix jobs' retirement from the JobTracker to prevent memory
  1154. leaks via stale references. (Amar Kamat via acmurthy)
  1155. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1342">MAPREDUCE-1342</a>. Fixed deadlock in global blacklisting of tasktrackers.
  1156. (Amareshwari Sriramadasu via acmurthy)
  1157. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6460">HADOOP-6460</a>. Reinitializes buffers used for serializing responses in ipc
  1158. server on exceeding maximum response size to free up Java heap. (suresh)
  1159. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1100">MAPREDUCE-1100</a>. Truncate user logs to prevent TaskTrackers' disks from
  1160. filling up. (Vinod Kumar Vavilapalli via acmurthy)
  1161. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1143">MAPREDUCE-1143</a>. Fix running task counters to be updated correctly
  1162. when speculative attempts are running for a TIP.
  1163. (Rahul Kumar Singh via yhemanth)
  1164. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6151">HADOOP-6151</a>, 6281, 6285, 6441. Add HTML quoting of the parameters to all
  1165. of the servlets to prevent XSS attacks. (omalley)
  1166. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-896.">MAPREDUCE-896.</a> Fix bug in earlier implementation to prevent
  1167. spurious logging in tasktracker logs for absent file paths.
  1168. (Ravi Gummadi via yhemanth)
  1169. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-676.">MAPREDUCE-676.</a> Fix Hadoop Vaidya to ensure it works for map-only jobs.
  1170. (Suhas Gogate via acmurthy)
  1171. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5582">HADOOP-5582</a>. Fix Hadoop Vaidya to use new Counters in
  1172. org.apache.hadoop.mapreduce package. (Suhas Gogate via acmurthy)
  1173. <li> <a href="https://issues.apache.org/jira/browse/HDFS-595">HDFS-595</a>. umask settings in configuration may now use octal or
  1174. symbolic instead of decimal. Update HDFS tests as such. (jghoman)
  1175. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1068">MAPREDUCE-1068</a>. Added a verbose error message when user specifies an
  1176. incorrect -file parameter. (Amareshwari Sriramadasu via acmurthy)
  1177. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1171">MAPREDUCE-1171</a>. Allow the read-error notification in shuffle to be
  1178. configurable. (Amareshwari Sriramadasu via acmurthy)
  1179. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-353.">MAPREDUCE-353.</a> Allow shuffle read and connection timeouts to be
  1180. configurable. (Amareshwari Sriramadasu via acmurthy)
  1181. <li> <a href="https://issues.apache.org/jira/browse/HDFS-781">HDFS-781</a>. Namenode metrics PendingDeletionBlocks is not decremented.
  1182. (suresh)
  1183. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1185">MAPREDUCE-1185</a>. Redirect running job url to history url if job is already
  1184. retired. (Amareshwari Sriramadasu and Sharad Agarwal via sharad)
  1185. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-754.">MAPREDUCE-754.</a> Fix NPE in expiry thread when a TT is lost. (Amar Kamat
  1186. via sharad)
  1187. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-896.">MAPREDUCE-896.</a> Modify permissions for local files on tasktracker before
  1188. deletion so they can be deleted cleanly. (Ravi Gummadi via yhemanth)
  1189. <a href="https://issues.apache.org/jira/browse/HADOOP-5771">HADOOP-5771</a>. Implements unit tests for LinuxTaskController.
  1190. (Sreekanth Ramakrishnan and Vinod Kumar Vavilapalli via yhemanth)
  1191. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1124">MAPREDUCE-1124</a>. Import Gridmix3 and Rumen. (cdouglas)
  1192. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1063">MAPREDUCE-1063</a>. Document gridmix benchmark. (cdouglas)
  1193. <li> <a href="https://issues.apache.org/jira/browse/HDFS-758">HDFS-758</a>. Changes to report status of decommissioining on the namenode web
  1194. UI. (jitendra)
  1195. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6234">HADOOP-6234</a>. Add new option dfs.umaskmode to set umask in configuration
  1196. to use octal or symbolic instead of decimal. (Jakob Homan via suresh)
  1197. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1147">MAPREDUCE-1147</a>. Add map output counters to new API. (Amar Kamat via
  1198. cdouglas)
  1199. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1182">MAPREDUCE-1182</a>. Fix overflow in reduce causing allocations to exceed the
  1200. configured threshold. (cdouglas)
  1201. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4933">HADOOP-4933</a>. Fixes a ConcurrentModificationException problem that shows up
  1202. when the history viewer is accessed concurrently.
  1203. (Amar Kamat via ddas)
  1204. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1140">MAPREDUCE-1140</a>. Fix DistributedCache to not decrement reference counts for
  1205. unreferenced files in error conditions.
  1206. (Amareshwari Sriramadasu via yhemanth)
  1207. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6203">HADOOP-6203</a>. FsShell rm/rmr error message indicates exceeding Trash quota
  1208. and suggests using -skpTrash, when moving to trash fails.
  1209. (Boris Shkolnik via suresh)
  1210. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5675">HADOOP-5675</a>. Do not launch a job if DistCp has no work to do. (Tsz Wo
  1211. (Nicholas), SZE via cdouglas)
  1212. <li> <a href="https://issues.apache.org/jira/browse/HDFS-457">HDFS-457</a>. Better handling of volume failure in Data Node storage,
  1213. This fix is a port from hdfs-0.22 to common-0.20 by Boris Shkolnik.
  1214. Contributed by Erik Steffl
  1215. <li> <a href="https://issues.apache.org/jira/browse/HDFS-625">HDFS-625</a>. Fix NullPointerException thrown from ListPathServlet.
  1216. Contributed by Suresh Srinivas.
  1217. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6343">HADOOP-6343</a>. Log unexpected throwable object caught in RPC.
  1218. Contributed by Jitendra Nath Pandey
  1219. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1186">MAPREDUCE-1186</a>. Fixed DistributedCache to do a recursive chmod on just the
  1220. per-cache directory, not all of mapred.local.dir.
  1221. (Amareshwari Sriramadasu via acmurthy)
  1222. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1231">MAPREDUCE-1231</a>. Add an option to distcp to ignore checksums when used with
  1223. the upgrade option.
  1224. (Jothi Padmanabhan via yhemanth)
  1225. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1219">MAPREDUCE-1219</a>. Fixed JobTracker to not collect per-job metrics, thus
  1226. easing load on it. (Amareshwari Sriramadasu via acmurthy)
  1227. <li> <a href="https://issues.apache.org/jira/browse/HDFS-761">HDFS-761</a>. Fix failure to process rename operation from edits log due to
  1228. quota verification. (suresh)
  1229. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1196">MAPREDUCE-1196</a>. Fix FileOutputCommitter to use the deprecated cleanupJob
  1230. api correctly. (acmurthy)
  1231. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6344">HADOOP-6344</a>. rm and rmr immediately delete files rather than sending
  1232. to trash, despite trash being enabled, if a user is over-quota. (jhoman)
  1233. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1160">MAPREDUCE-1160</a>. Reduce verbosity of log lines in some Map/Reduce classes
  1234. to avoid filling up jobtracker logs on a busy cluster.
  1235. (Ravi Gummadi and Hong Tang via yhemanth)
  1236. <li> <a href="https://issues.apache.org/jira/browse/HDFS-587">HDFS-587</a>. Add ability to run HDFS with MR test on non-default queue,
  1237. also updated junit dependendcy from junit-3.8.1 to junit-4.5 (to make
  1238. it possible to use Configured and Tool to process command line to
  1239. be able to specify a queue). Contributed by Erik Steffl.
  1240. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1158">MAPREDUCE-1158</a>. Fix JT running maps and running reduces metrics.
  1241. (sharad)
  1242. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-947.">MAPREDUCE-947.</a> Fix bug in earlier implementation that was
  1243. causing unit tests to fail.
  1244. (Ravi Gummadi via yhemanth)
  1245. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1062">MAPREDUCE-1062</a>. Fix MRReliabilityTest to work with retired jobs
  1246. (Contributed by Sreekanth Ramakrishnan)
  1247. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1090">MAPREDUCE-1090</a>. Modified log statement in TaskMemoryManagerThread to
  1248. include task attempt id. (yhemanth)
  1249. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1098">MAPREDUCE-1098</a>. Fixed the distributed-cache to not do i/o while
  1250. holding a global lock. (Amareshwari Sriramadasu via acmurthy)
  1251. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1048">MAPREDUCE-1048</a>. Add occupied/reserved slot usage summary on
  1252. jobtracker UI. (Amareshwari Sriramadasu via sharad)
  1253. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1103">MAPREDUCE-1103</a>. Added more metrics to Jobtracker. (sharad)
  1254. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-947.">MAPREDUCE-947.</a> Added commitJob and abortJob apis to OutputCommitter.
  1255. Enhanced FileOutputCommitter to create a _SUCCESS file for successful
  1256. jobs. (Amar Kamat & Jothi Padmanabhan via acmurthy)
  1257. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1105">MAPREDUCE-1105</a>. Remove max limit configuration in capacity scheduler in
  1258. favor of max capacity percentage thus allowing the limit to go over
  1259. queue capacity. (Rahul Kumar Singh via yhemanth)
  1260. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1086">MAPREDUCE-1086</a>. Setup Hadoop logging environment for tasks to point to
  1261. task related parameters. (Ravi Gummadi via yhemanth)
  1262. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-739.">MAPREDUCE-739.</a> Allow relative paths to be created inside archives.
  1263. (mahadev)
  1264. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6097">HADOOP-6097</a>. Multiple bugs w/ Hadoop archives (mahadev)
  1265. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6231">HADOOP-6231</a>. Allow caching of filesystem instances to be disabled on a
  1266. per-instance basis (ben slusky via mahadev)
  1267. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-826.">MAPREDUCE-826.</a> harchive doesn't use ToolRunner / harchive returns 0 even
  1268. if the job fails with exception (koji via mahadev)
  1269. <li> <a href="https://issues.apache.org/jira/browse/HDFS-686">HDFS-686</a>. NullPointerException is thrown while merging edit log and
  1270. image. (hairong)
  1271. <li> <a href="https://issues.apache.org/jira/browse/HDFS-709">HDFS-709</a>. Fix TestDFSShell failure due to rename bug introduced by
  1272. <a href="https://issues.apache.org/jira/browse/HDFS-677">HDFS-677</a>. (suresh)
  1273. <li> <a href="https://issues.apache.org/jira/browse/HDFS-677">HDFS-677</a>. Rename failure when both source and destination quota exceeds
  1274. results in deletion of source. (suresh)
  1275. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6284">HADOOP-6284</a>. Add a new parameter, HADOOP_JAVA_PLATFORM_OPTS, to
  1276. hadoop-config.sh so that it allows setting java command options for
  1277. JAVA_PLATFORM. (Koji Noguchi via szetszwo)
  1278. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-732.">MAPREDUCE-732.</a> Removed spurious log statements in the node
  1279. blacklisting logic. (Sreekanth Ramakrishnan via yhemanth)
  1280. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-144.">MAPREDUCE-144.</a> Includes dump of the process tree in task diagnostics when
  1281. a task is killed due to exceeding memory limits.
  1282. (Vinod Kumar Vavilapalli via yhemanth)
  1283. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-979.">MAPREDUCE-979.</a> Fixed JobConf APIs related to memory parameters to
  1284. return values of new configuration variables when deprecated
  1285. variables are disabled. (Sreekanth Ramakrishnan via yhemanth)
  1286. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-277.">MAPREDUCE-277.</a> Makes job history counters available on the job history
  1287. viewers. (Jothi Padmanabhan via ddas)
  1288. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5625">HADOOP-5625</a>. Add operation duration to clienttrace. (Lei Xu
  1289. via cdouglas)
  1290. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5222">HADOOP-5222</a>. Add offset to datanode clienttrace. (Lei Xu via cdouglas)
  1291. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6218">HADOOP-6218</a>. Adds a feature where TFile can be split by Record
  1292. Sequence number. Contributed by Hong Tang and Raghu Angadi.
  1293. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1088">MAPREDUCE-1088</a>. Changed permissions on JobHistory files on local disk to
  1294. 0744. Contributed by Arun C. Murthy.
  1295. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6304">HADOOP-6304</a>. Use java.io.File.set{Readable|Writable|Executable} where
  1296. possible in RawLocalFileSystem. Contributed by Arun C. Murthy.
  1297. <a href="https://issues.apache.org/jira/browse/MAPREDUCE-270.">MAPREDUCE-270.</a> Fix the tasktracker to optionally send an out-of-band
  1298. heartbeat on task-completion for better job-latency. Contributed by
  1299. Arun C. Murthy
  1300. Configuration changes:
  1301. add mapreduce.tasktracker.outofband.heartbeat
  1302. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1030">MAPREDUCE-1030</a>. Fix capacity-scheduler to assign a map and a reduce task
  1303. per-heartbeat. Contributed by Rahuk K Singh.
  1304. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-1028">MAPREDUCE-1028</a>. Fixed number of slots occupied by cleanup tasks to one
  1305. irrespective of slot size for the job. Contributed by Ravi Gummadi.
  1306. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-964.">MAPREDUCE-964.</a> Fixed start and finish times of TaskStatus to be
  1307. consistent, thereby fixing inconsistencies in metering tasks.
  1308. Contributed by Sreekanth Ramakrishnan.
  1309. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5976">HADOOP-5976</a>. Add a new command, classpath, to the hadoop
  1310. script. Contributed by Owen O'Malley and Gary Murry
  1311. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5784">HADOOP-5784</a>. Makes the number of heartbeats that should arrive
  1312. a second at the JobTracker configurable. Contributed by
  1313. Amareshwari Sriramadasu.
  1314. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-945.">MAPREDUCE-945.</a> Modifies MRBench and TestMapRed to use
  1315. ToolRunner so that options such as queue name can be
  1316. passed via command line. Contributed by Sreekanth Ramakrishnan.
  1317. <li> HADOOP:5420 Correct bug in earlier implementation
  1318. by Arun C. Murthy
  1319. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5363">HADOOP-5363</a> Add support for proxying connections to multiple
  1320. clusters with different versions to hdfsproxy. Contributed
  1321. by Zhiyong Zhang
  1322. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5780">HADOOP-5780</a>. Improve per block message prited by -metaSave
  1323. in HDFS. (Raghu Angadi)
  1324. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6227">HADOOP-6227</a>. Fix Configuration to allow final parameters to be set
  1325. to null and prevent them from being overridden. Contributed by
  1326. Amareshwari Sriramadasu.
  1327. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-430 ">MAPREDUCE-430 </a> Added patch supplied by Amar Kamat to allow roll forward
  1328. on branch to includ externally committed patch.
  1329. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-768.">MAPREDUCE-768.</a> Provide an option to dump jobtracker configuration in
  1330. JSON format to standard output. Contributed by V.V.Chaitanya
  1331. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-834 ">MAPREDUCE-834 </a>Correct an issue created by merging this issue with
  1332. patch attached to external Jira.
  1333. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-6184">HADOOP-6184</a> Provide an API to dump Configuration in a JSON format.
  1334. Contributed by V.V.Chaitanya Krishna.
  1335. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-745 ">MAPREDUCE-745 </a> Patch added for this issue to allow branch-0.20 to
  1336. merge cleanly.
  1337. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-478 ">MAPREDUCE-478 </a>Allow map and reduce jvm parameters, environment
  1338. variables and ulimit to be set separately.
  1339. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-682 ">MAPREDUCE-682 </a>Removes reservations on tasktrackers which are blacklisted.
  1340. Contributed by Sreekanth Ramakrishnan.
  1341. <li> HADOOP:5420 Support killing of process groups in LinuxTaskController
  1342. binary
  1343. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5488">HADOOP-5488</a> Removes the pidfile management for the Task JVM from the
  1344. framework and instead passes the PID back and forth between the
  1345. TaskTracker and the Task processes. Contributed by Ravi Gummadi.
  1346. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-467 ">MAPREDUCE-467 </a>Provide ability to collect statistics about total tasks and
  1347. succeeded tasks in different time windows.
  1348. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-817.">MAPREDUCE-817.</a> Add a cache for retired jobs with minimal job
  1349. info and provide a way to access history file url
  1350. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-814.">MAPREDUCE-814.</a> Provide a way to configure completed job history
  1351. files to be on HDFS.
  1352. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-838 ">MAPREDUCE-838 </a>Fixes a problem in the way commit of task outputs
  1353. happens. The bug was that even if commit failed, the task would be
  1354. declared as successful. Contributed by Amareshwari Sriramadasu.
  1355. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-809 ">MAPREDUCE-809 </a>Fix job-summary logs to correctly record final status of
  1356. FAILED and KILLED jobs.
  1357. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-740 ">MAPREDUCE-740 </a>Log a job-summary at the end of a job, while
  1358. allowing it to be configured to use a custom appender if desired.
  1359. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-771 ">MAPREDUCE-771 </a>Fixes a bug which delays normal jobs in favor of
  1360. high-ram jobs.
  1361. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5420">HADOOP-5420</a> Support setsid based kill in LinuxTaskController.
  1362. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-733 ">MAPREDUCE-733 </a>Fixes a bug that when a task tracker is killed ,
  1363. it throws exception. Instead it should catch it and process it and
  1364. allow the rest of the flow to go through
  1365. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-734 ">MAPREDUCE-734 </a>Fixes a bug which prevented hi ram jobs from being
  1366. removed from the scheduler queue.
  1367. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-693 ">MAPREDUCE-693 </a> Fixes a bug that when a job is submitted and the
  1368. JT is restarted (before job files have been written) and the job
  1369. is killed after recovery, the conf files fail to be moved to the
  1370. "done" subdirectory.
  1371. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-722 ">MAPREDUCE-722 </a>Fixes a bug where more slots are getting reserved
  1372. for HiRAM job tasks than required.
  1373. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-683 ">MAPREDUCE-683 </a>TestJobTrackerRestart failed because of stale
  1374. filemanager cache (which was created once per jvm). This patch makes
  1375. sure that the filemanager is inited upon every JobHistory.init()
  1376. and hence upon every restart. Note that this wont happen in production
  1377. as upon a restart the new jobtracker will start in a new jvm and
  1378. hence a new cache will be created.
  1379. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-709 ">MAPREDUCE-709 </a>Fixes a bug where node health check script does
  1380. not display the correct message on timeout.
  1381. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-708 ">MAPREDUCE-708 </a>Fixes a bug where node health check script does
  1382. not refresh the "reason for blacklisting".
  1383. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-522 ">MAPREDUCE-522 </a>Rewrote TestQueueCapacities to make it simpler
  1384. and avoid timeout errors.
  1385. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-532 ">MAPREDUCE-532 </a>Provided ability in the capacity scheduler to
  1386. limit the number of slots that can be concurrently used per queue
  1387. at any given time.
  1388. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-211 ">MAPREDUCE-211 </a>Provides ability to run a health check script on
  1389. the tasktracker nodes and blacklist nodes if they are unhealthy.
  1390. Contributed by Sreekanth Ramakrishnan.
  1391. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-516 ">MAPREDUCE-516 </a>Remove .orig file included by mistake.
  1392. <li> <a href="https://issues.apache.org/jira/browse/MAPREDUCE-416 ">MAPREDUCE-416 </a>Moves the history file to a "done" folder whenever
  1393. a job completes.
  1394. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5980">HADOOP-5980</a> Previously, task spawned off by LinuxTaskController
  1395. didn't get LD_LIBRARY_PATH in their environment. The tasks will now
  1396. get same LD_LIBRARY_PATH value as when spawned off by
  1397. DefaultTaskController.
  1398. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5981">HADOOP-5981</a> This issue completes the feature mentioned in
  1399. <a href="https://issues.apache.org/jira/browse/HADOOP-2838">HADOOP-2838</a>. <a href="https://issues.apache.org/jira/browse/HADOOP-2838">HADOOP-2838</a> provided a way to set env variables in
  1400. child process. This issue provides a way to inherit tt's env variables
  1401. and append or reset it. So now X=$X:y will inherit X (if there) and
  1402. append y to it.
  1403. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5419">HADOOP-5419</a> This issue is to provide an improvement on the
  1404. existing M/R framework to let users know which queues they have
  1405. access to, and for what operations. One use case for this would
  1406. that currently there is no easy way to know if the user has access
  1407. to submit jobs to a queue, until it fails with an access control
  1408. exception.
  1409. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5420">HADOOP-5420</a> Support setsid based kill in LinuxTaskController.
  1410. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5643">HADOOP-5643</a> Added the functionality to refresh jobtrackers node
  1411. list via command line (bin/hadoop mradmin -refreshNodes). The command
  1412. should be run as the jobtracker owner (jobtracker process owner)
  1413. or from a super group (mapred.permissions.supergroup).
  1414. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-2838">HADOOP-2838</a> Now the users can set environment variables using
  1415. mapred.child.env. They can do the following X=Y : set X to Y X=$X:Y
  1416. : Append Y to X (which should be taken from the tasktracker)
  1417. <a href="https://issues.apache.org/jira/browse/HADOOP-5818">HADOOP-5818</a>. Revert the renaming from FSNamesystem.checkSuperuserPrivilege
  1418. to checkAccess by <a href="https://issues.apache.org/jira/browse/HADOOP-5643">HADOOP-5643</a>. (Amar Kamat via szetszwo)
  1419. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5801">HADOOP-5801</a>. Fixes the problem: If the hosts file is changed across restart
  1420. then it should be refreshed upon recovery so that the excluded hosts are
  1421. lost and the maps are re-executed. (Amar Kamat via ddas)
  1422. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5643">HADOOP-5643</a>. <a href="https://issues.apache.org/jira/browse/HADOOP-5643">HADOOP-5643</a>. Adds a way to decommission TaskTrackers
  1423. while the JobTracker is running. (Amar Kamat via ddas)
  1424. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5419">HADOOP-5419</a>. Provide a facility to query the Queue ACLs for the
  1425. current user. (Rahul Kumar Singh via yhemanth)
  1426. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5733">HADOOP-5733</a>. Add map/reduce slot capacity and blacklisted capacity to
  1427. JobTracker metrics. (Sreekanth Ramakrishnan via cdouglas)
  1428. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5738">HADOOP-5738</a>. Split "waiting_tasks" JobTracker metric into waiting maps and
  1429. waiting reduces. (Sreekanth Ramakrishnan via cdouglas)
  1430. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4842">HADOOP-4842</a>. Streaming now allows specifiying a command for the combiner.
  1431. (Amareshwari Sriramadasu via ddas)
  1432. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4490">HADOOP-4490</a>. Provide ability to run tasks as job owners.
  1433. (Sreekanth Ramakrishnan via yhemanth)
  1434. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5442">HADOOP-5442</a>. Paginate jobhistory display and added some search
  1435. capabilities. (Amar Kamat via acmurthy)
  1436. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-3327">HADOOP-3327</a>. Improves handling of READ_TIMEOUT during map output copying.
  1437. (Amareshwari Sriramadasu via ddas)
  1438. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-5113">HADOOP-5113</a>. Fixed logcondense to remove files for usernames
  1439. beginning with characters specified in the -l option.
  1440. (Peeyush Bishnoi via yhemanth)
  1441. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-2898">HADOOP-2898</a>. Provide an option to specify a port range for
  1442. Hadoop services provisioned by HOD.
  1443. (Peeyush Bishnoi via yhemanth)
  1444. <li> <a href="https://issues.apache.org/jira/browse/HADOOP-4930">HADOOP-4930</a>. Implement a Linux native executable that can be used to
  1445. launch tasks as users. (Sreekanth Ramakrishnan via yhemanth)
  1446. </ul>
  1447. </body>
  1448. </html>