CHANGES.txt 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026
  1. Hadoop MapReduce Change Log
  2. MAPREDUCE-3291. App fail to launch due to delegation token not
  3. found in cache (Robert Evans via mahadev)
  4. MAPREDUCE-3392. Fixed Cluster's getDelegationToken's API to return null
  5. when there isn't a supported token. (John George via vinodkv)
  6. Release 0.23.0 - 2011-11-01
  7. INCOMPATIBLE CHANGES
  8. MAPREDUCE-2455. Remove deprecated JobTracker.State in favour of
  9. JobTrackerStatus. (tomwhite)
  10. MAPREDUCE-2430. Remove mrunit contrib. (nigel via eli)
  11. MAPREDUCE-2606. Remove IsolationRunner. (Alejandro Abdelnur via eli)
  12. NEW FEATURES
  13. MAPREDUCE-2682. Add "mapred classpath" command to print classpath
  14. for MR applications. (vinodkv via acmurthy)
  15. MAPREDUCE-2107. [Gridmix] Total heap usage emulation in Gridmix.
  16. (Amar Kamat and Ravi Gummadi via amarrk)
  17. MAPREDUCE-2106. [Gridmix] Cumulative CPU usage emulation in Gridmix.
  18. (amarrk)
  19. MAPREDUCE-2543. [Gridmix] High-Ram feature emulation in Gridmix. (amarrk)
  20. MAPREDUCE-2408. [Gridmix] Compression emulation in Gridmix. (amarrk)
  21. MAPREDUCE-2473. Add "mapred groups" command to query the server-side groups
  22. resolved for a user. (Aaron T. Myers via todd)
  23. MAPREDUCE-461. Enable ServicePlugins for the JobTracker.
  24. (Fredrik Hedberg via tomwhite)
  25. MAPREDUCE-2521. Create RPM and Debian packages for MapReduce. Changes
  26. deployment layout to be consistent across the binary tgz, rpm, and deb.
  27. (Eric Yang via omalley)
  28. MAPREDUCE-2323. Add metrics to the fair scheduler. (todd)
  29. MAPREDUCE-2037. Capture intermediate progress, CPU and memory usage for
  30. tasks. (Dick King via acmurthy)
  31. MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by
  32. Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey
  33. Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev
  34. Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod
  35. Kumar Vavilapalli.
  36. MAPREDUCE-2930. Added the ability to be able to generate graphs from the
  37. state-machine definitions. (Binglin Chang via vinodkv)
  38. MAPREDUCE-2719. Add a simple, DistributedShell, application to illustrate
  39. alternate frameworks on YARN. (Hitesh Shah via acmurthy)
  40. MAPREDUCE-3104. Implemented Application-acls. (vinodkv)
  41. MAPREDUCE-2708. Designed and implemented MR Application Master recovery to
  42. make MR AMs resume their progress after restart. (Sharad Agarwal via vinodkv)
  43. MAPREDUCE-2858. Added a WebApp Proxy for applications. (Robert Evans via
  44. acmurthy)
  45. IMPROVEMENTS
  46. MAPREDUCE-2187. Reporter sends progress during sort/merge. (Anupam Seth via
  47. acmurthy)
  48. MAPREDUCE-2365. Add counters to track bytes (read,written) via
  49. File(Input,Output)Format. (Siddharth Seth via acmurthy)
  50. MAPREDUCE-2680. Display queue name in job client CLI. (acmurthy)
  51. MAPREDUCE-2679. Minor changes to sync trunk with MR-279 branch. (acmurthy)
  52. MAPREDUCE-2400. Remove Cluster's dependency on JobTracker via a
  53. ServiceProvider for the actual implementation. (tomwhite via acmurthy)
  54. MAPREDUCE-2596. [Gridmix] Summarize Gridmix runs. (amarrk)
  55. MAPREDUCE-2563. [Gridmix] Add High-Ram emulation system tests to
  56. Gridmix. (Vinay Kumar Thota via amarrk)
  57. MAPREDUCE-2104. [Rumen] Add Cpu, Memory and Heap usages to
  58. TraceBuilder's output. (amarrk)
  59. MAPREDUCE-2554. [Gridmix] Add distributed cache emulation system tests
  60. to Gridmix. (Vinay Kumar Thota via amarrk)
  61. MAPREDUCE-2543. [Gridmix] High-Ram feature emulation testcase. (amarrk)
  62. MAPREDUCE-2469. Task counters should also report the total heap usage of
  63. the task. (Ravi Gummadi and Amar Ramesh Kamat via amarrk)
  64. MAPREDUCE-2544. [Gridmix] Add compression emulation system tests to
  65. Gridmix. (Vinay Kumar Thota via amarrk)
  66. MAPREDUCE-2517. [Gridmix] Add system tests to Gridmix.
  67. (Vinay Kumar Thota via amarrk)
  68. MAPREDUCE-2492. The new MapReduce API should make available task's
  69. progress to the task. (amarrk)
  70. MAPREDUCE-2153. Bring in more job configuration properties in to the trace
  71. file. (Rajesh Balamohan via amarrk)
  72. MAPREDUCE-1461. Feature to instruct rumen-folder utility to skip jobs worth
  73. of specific duration. (Rajesh Balamohan via amarrk)
  74. MAPREDUCE-2172. Added test-patch.properties required by test-patch.sh
  75. (nigel)
  76. MAPREDUCE-2156. Raid-aware FSCK. (Patrick Kling via dhruba)
  77. MAPREDUCE-2215. A more elegant FileSystem#listCorruptFileBlocks API
  78. (RAID changes) (Patrick Kling via hairong)
  79. MAPREDUCE-1831. BlockPlacement policy for HDFS-RAID.
  80. (Scott Chen via dhruba)
  81. MAPREDUCE-1906. Lower minimum heartbeat interval for TaskTracker
  82. (Scott Carey and Todd Lipcon via todd)
  83. MAPREDUCE-1382. MRAsyncDiscService should tolerate missing local.dir.
  84. (Zheng Shao and tomwhite via tomwhite)
  85. MAPREDUCE-2263. MapReduce side of HADOOP-6904: RPC compatibility.
  86. (hairong)
  87. MAPREDUCE-1706. Log RAID recoveries on HDFS. (schen)
  88. MAPREDUCE-2334. Update BlockPlacementPolicyRaid for the new method
  89. in BlockPlacementPolicy. (szetszwo)
  90. MAPREDUCE-2254. Allow setting of end-of-record delimiter for
  91. TextInputFormat (Ahmed Radwan via todd)
  92. MAPREDUCE-1927. Unit test for HADOOP-6835 (concatenated gzip support).
  93. (Greg Roelofs via tomwhite)
  94. MAPREDUCE-2206. The task-cleanup tasks should be optional. (schen)
  95. MAPREDUCE-2225. MultipleOutputs should not require the use of 'Writable'.
  96. (Harsh J Chouraria via tomwhite)
  97. MAPREDUCE-1811. Job.monitorAndPrintJob() should print status of the job
  98. at completion. (Harsh J Chouraria via tomwhite)
  99. MAPREDUCE-993. bin/hadoop job -events <jobid> <from-event-#> <#-of-events>
  100. help message is confusing. (Harsh J Chouraria via tomwhite)
  101. MAPREDUCE-2302. Add static factory methods in GaloisField. (schen)
  102. MAPREDUCE-2351. mapred.job.tracker.history.completed.location should
  103. support an arbitrary filesystem URI. (tomwhite)
  104. MAPREDUCE-2239. BlockPlacementPolicyRaid should call getBlockLocations
  105. only when necessary. (schen)
  106. MAPREDUCE-2331. Add coverage of task graph servlet to fair scheduler system
  107. test. (todd)
  108. MAPREDUCE-2367. Allow using a file to exclude certain tests from build.
  109. (todd)
  110. MAPREDUCE-2202. Generalize CLITest structure and interfaces to faciliate
  111. upstream adoption (e.g. for web or system testing). (cos)
  112. MAPREDUCE-2420. JobTracker should be able to renew delegation token over
  113. HTTP (Boris Shkolnik via jitendra)
  114. MAPREDUCE-2474. Add docs to the new API Partitioner on how to access the
  115. Job Configuration. (Harsh J Chouraria via todd)
  116. MAPREDUCE-2475. Disable IPV6 for junit tests. (suresh srinivas via mahadev)
  117. MAPREDUCE-2422. Removed unused internal methods from DistributedCache.
  118. (tomwhite)
  119. MAPREDUCE-2456. Log the reduce taskID and associated TaskTrackers with
  120. failed fetch notifications in the JobTracker log.
  121. (Jeffrey Naisbitt via cdouglas)
  122. MAPREDUCE-869. Documentation for config to set map/reduce task environment
  123. (Alejandro Abdelnur via todd)
  124. MAPREDUCE-2410. Add entry to streaming FAQ about how streaming reducers
  125. receive keys. (Harsh J Chouraria via todd)
  126. MAPREDUCE-2499. MR part of HADOOP-7291. (eli)
  127. MAPREDUCE-2497. Missing spaces in error messages. (eli)
  128. MAPREDUCE-2502. JobSubmitter should use mapreduce.job.maps instead of
  129. its deprecated equivalent. (eli via todd)
  130. MAPREDUCE-2381. JobTracker instrumentation not consistent about error
  131. handling. (Philip Zeyliger via tomwhite)
  132. MAPREDUCE-2449. Allow for command line arguments when performing
  133. "Run on Hadoop" action in Eclipse plugin. (Jeff Zemerick via todd)
  134. MAPREDUCE-2483. Remove duplication of jars between Hadoop subprojects
  135. from build artifacts. (Eric Yang via omalley)
  136. MAPREDUCE-2372. TaskLogAppender mechanism shouldn't be set up in
  137. log4j.properties (todd)
  138. MAPREDUCE-2516. Rename webinterface.private.actions to
  139. mapreduce.jobtracker.webinterface.trusted (Ari Rabkin via todd)
  140. MAPREDUCE-2459. Cache HAR filesystem metadata. (Mac Yang via mahadev)
  141. HADOOP-7259. Contrib modules should include the build.properties from
  142. the enclosing hadoop directory. (omalley)
  143. MAPREDUCE-2494. Order distributed cache deletions by LRU. (Robert Joseph
  144. Evans via cdouglas)
  145. MAPREDUCE-2452. Makes the cancellation of delegation tokens happen in a
  146. separate thread. (ddas)
  147. HADOOP-7106. Reorganize project SVN layout to "unsplit" the projects.
  148. (todd, nigel)
  149. MAPREDUCE-2249. Check the reflexive property of Counters objects when
  150. comparing equality. (Devaraj K via todd)
  151. MAPREDUCE-2623. Update ClusterMapReduceTestCase to use
  152. MiniDFSCluster.Builder (Harsh J Chouraria via eli)
  153. MAPREDUCE-2602. Allow setting of end-of-record delimiter for
  154. TextInputFormat for the old API. (Ahmed Radwan via todd)
  155. MAPREDUCE-2705. Permits parallel multiple task launches.
  156. (Thomas Graves via ddas)
  157. MAPREDUCE-2489. Jobsplits with random hostnames can make the queue
  158. unusable (jeffrey naisbit via mahadev)
  159. MAPREDUCE-2854. update INSTALL with config necessary run mapred on yarn.
  160. (thomas graves via mahadev)
  161. MAPREDUCE-2701. app/Job.java needs UGI for the user that launched it.
  162. (Robert Evans via mahadev)
  163. MAPREDUCE-2652. Enabled multiple NMs to be runnable on a single node by
  164. making shuffle service port to be truely configurable. (Robert Evans via
  165. vinodkv)
  166. MAPREDUCE-2735. Add an applications summary log to ResourceManager.
  167. (Thomas Graves via acmurthy)
  168. MAPREDUCE-2697. Enhance CapacityScheduler to cap concurrently running
  169. applications per-queue & per-user. (acmurthy)
  170. Configuration changes:
  171. add yarn.capacity-scheduler.maximum-am-resource-percent
  172. MAPREDUCE-2774. Add startup message to ResourceManager & NodeManager on
  173. startup. (Venu Gopala Rao via acmurthy)
  174. MAPREDUCE-2655. Add audit logs to ResourceManager and NodeManager. (Thomas
  175. Graves via acmurthy)
  176. MAPREDUCE-2864. Normalize configuration variable names for YARN. (Robert
  177. Evans via acmurthy)
  178. MAPREDUCE-2690. Web-page for FifoScheduler. (Eric Payne via acmurthy)
  179. MAPREDUCE-2711. Update TestBlockPlacementPolicyRaid for the new namesystem
  180. and block management APIs. (szetszwo)
  181. MAPREDUCE-2933. Change allocate call to return ContainerStatus for
  182. completed containers rather than Container. (acmurthy)
  183. MAPREDUCE-2675. Reformat JobHistory Server main page to be more
  184. useful. (Robert Joseph Evans via vinodkv).
  185. MAPREDUCE-2896. Simplify all apis to in
  186. org.apache.hadoop.yarn.api.records.* to be get/set only. Added javadocs to
  187. all public records. (acmurthy)
  188. MAPREDUCE-2676. MR-279: JobHistory Job page needs reformatted. (Robert Evans via
  189. mahadev)
  190. MAPREDUCE-2899. Replace major parts of ApplicationSubmissionContext with a
  191. ContainerLaunchContext (Arun Murthy via mahadev)
  192. MAPREDUCE-2966. Added ShutDown hooks for MRV2 processes so that they can
  193. gracefully exit. (Abhijit Suresh Shingate via vinodkv)
  194. MAPREDUCE-2672. MR-279: JobHistory Server needs Analysis this job.
  195. (Robert Evans via mahadev)
  196. MAPREDUCE-2965. Streamlined the methods hashCode(), equals(), compareTo()
  197. and toString() for all IDs. (Siddharth Seth via vinodkv)
  198. MAPREDUCE-2726. Added job-file to the AM and JobHistoryServer web
  199. interfaces. (Jeffrey Naisbitt via vinodkv)
  200. MAPREDUCE-2880. Improve classpath-construction for mapreduce AM and
  201. containers. (Arun C Murthy via vinodkv)
  202. MAPREDUCE-3055. Simplified ApplicationAttemptId passing to
  203. ApplicationMaster via environment variable. (vinodkv)
  204. MAPREDUCE-3092. Removed a special comparator for JobIDs in JobHistory as
  205. JobIDs are already comparable. (Devaraj K via vinodkv)
  206. MAPREDUCE-3099. Add docs for setting up a single node MRv2 cluster.
  207. (mahadev)
  208. MAPREDUCE-3001. Added task-specific counters to AppMaster and JobHistory
  209. web-UIs. (Robert Joseph Evans via vinodkv)
  210. MAPREDUCE-3098. Fixed RM and MR AM to report YarnApplicationState and
  211. application's FinalStatus separately. (Hitesh Shah via vinodkv)
  212. MAPREDUCE-2889. Added documentation for writing new YARN applications.
  213. (Hitesh Shah via acmurthy)
  214. MAPREDUCE-3134. Added documentation the CapacityScheduler. (acmurthy)
  215. MAPREDUCE-3013. Removed YarnConfiguration.YARN_SECURITY_INFO and its usage
  216. as it doesn't affect security any more. (vinodkv)
  217. MAPREDUCE-2907. Changed log level for various messages in ResourceManager
  218. from INFO to DEBUG. (Ravi Prakash via vinodkv)
  219. MAPREDUCE-2702. Added a new API in OutputCommitter for recovering
  220. the outputs of tasks from a crashed job so as to support MR Application
  221. Master recovery. (Sharad Agarwal and Arun C Murthy via vinodkv)
  222. MAPREDUCE-2738. Added the missing cluster level statistics on the RM web
  223. UI. (Robert Joseph Evans via vinodkv)
  224. MAPREDUCE-2988. Reenabled TestLinuxContainerExecutor reflecting the
  225. current NodeManager code. (Robert Joseph Evans via vinodkv)
  226. MAPREDUCE-3161. Improved some javadocs and fixed some typos in
  227. YARN. (Todd Lipcon via vinodkv)
  228. MAPREDUCE-3148. Ported MAPREDUCE-2702 to old mapred api for aiding task
  229. recovery. (acmurthy)
  230. MAPREDUCE-3133. Running a set of methods in a Single Test Class.
  231. (Jonathan Eagles via mahadev)
  232. MAPREDUCE-3059. QueueMetrics do not have metrics for aggregate
  233. containers-allocated and aggregate containers-released.
  234. (Devaraj K via mahadev)
  235. MAPREDUCE-3187. Add names for various unnamed threads in MR2.
  236. (Todd Lipcon and Siddharth Seth via mahadev)
  237. MAPREDUCE-3136. Added documentation for setting up Hadoop clusters in both
  238. non-secure and secure mode for both HDFS & YARN. (acmurthy)
  239. MAPREDUCE-3068. Added a whitelist of environment variables for containers
  240. from the NodeManager and set MALLOC_ARENA_MAX for all daemons and
  241. containers. (Chris Riccomini via acmurthy)
  242. MAPREDUCE-3144. Augmented JobHistory with the information needed for
  243. serving aggregated logs. (Siddharth Seth via vinodkv)
  244. MAPREDUCE-3163. JobClient spews errors when killing MR2 job.
  245. (mahadev)
  246. MAPREDUCE-3239. Use new createSocketAddr API in MRv2 to give better
  247. error messages on misconfig (Todd Lipcon via mahadev)
  248. MAPREDUCE-2747. Cleaned up LinuxContainerExecutor binary sources and changed
  249. the configuration to use yarn names. (Robert Joseph Evans via vinodkv)
  250. MAPREDUCE-3205. Fix memory specifications to be physical rather than
  251. virtual, allowing for a ratio between the two to be configurable. (todd
  252. via acmurthy)
  253. MAPREDUCE-2986. Fixed MiniYARNCluster to support multiple NodeManagers.
  254. (Anupam Seth via vinodkv)
  255. MAPREDUCE-2736. Remove unused contrib components dependent on MR1. (eli)
  256. MAPREDUCE-2989. Modified JobHistory to link to task and AM logs from the
  257. JobHistoryServer. (Siddharth Seth via vinodkv)
  258. MAPREDUCE-3014. Rename and invert logic of '-cbuild' profile to 'native' and off
  259. by default. (tucu)
  260. MAPREDUCE-3171. normalize nodemanager native code compilation with common/hdfs
  261. native. (tucu)
  262. MAPREDUCE-3146. Added a MR specific command line to dump logs for a
  263. given TaskAttemptID. (Siddharth Seth via vinodkv)
  264. MAPREDUCE-3275. Added documentation for AM WebApp Proxy. (Robert Evans via
  265. acmurthy)
  266. MAPREDUCE-3322. Added a better index.html and an brief overview of YARN
  267. architecture. (acmurthy)
  268. OPTIMIZATIONS
  269. MAPREDUCE-2026. Make JobTracker.getJobCounters() and
  270. JobInProgress.getCounters() aquire locks in a shorter time period.
  271. (Joydeep Sen Sarma via schen)
  272. MAPREDUCE-2740. MultipleOutputs in new API creates needless
  273. TaskAttemptContexts. (todd)
  274. MAPREDUCE-901. Efficient framework counters. (llu via acmurthy)
  275. MAPREDUCE-2629. Workaround a JVM class loading quirk which prevents
  276. JIT compilation of inner classes methods in ReduceContextImpl.
  277. BUG FIXES
  278. MAPREDUCE-2603. Disable High-Ram emulation in system tests.
  279. (Vinay Kumar Thota via amarrk)
  280. MAPREDUCE-2539. Fixed NPE in getMapTaskReports in JobClient. (Robert Evans via
  281. acmurthy)
  282. MAPREDUCE-1978. Rumen TraceBuilder should provide recursive
  283. input folder scanning.
  284. MAPREDUCE-2416. Remove the restriction of specifying group names in
  285. users-list file for Gridmix in RoundRobinUserResolver mode.
  286. MAPREDUCE-2417. Fix Gridmix in RoundRobinUserResolver mode to
  287. map testing/proxy users to unique users in a trace.
  288. MAPREDUCE-2307. Exception thrown in Jobtracker logs, when the Scheduler
  289. configured is FairScheduler. (Devaraj K via matei)
  290. MAPREDUCE-2199. build is broken 0.22 branch creation. (cos)
  291. MAPREDUCE-1752. Implement getFileBlockLocations in HarFilesystem.
  292. (Patrick Kling via dhruba)
  293. MAPREDUCE-2155. RaidNode should optionally use the mapreduce jobs to
  294. fix missing blocks. (Patrick Kling via dhruba)
  295. MAPREDUCE-1334. Fix TestIndexUpdater by ignoring _SUCCESS file in HDFS.
  296. (Kay Kay via yhemanth)
  297. MAPREDUCE-2232. Add missing methods to TestMapredGroupMappingServiceRefresh.
  298. (Todd Lipcon via eli)
  299. MAPREDUCE-2271. Fix TestSetupTaskScheduling failure on trunk.
  300. (Liyin Liang via todd)
  301. MAPREDUCE-2290. Fix compilation error in TestTaskCommit. (eli)
  302. MAPREDUCE-2294. Fix compilation error in mumak. (todd)
  303. MAPREDUCE-2300. Fix TestUmbilicalProtocolWithJobToken on trunk after
  304. HADOOP-6904. (todd)
  305. MAPREDUCE-2296. Fix references to misspelled method name
  306. getProtocolSigature (todd)
  307. MAPREDUCE-2311. Fix TestFairScheduler failure (schen)
  308. MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement.
  309. (Harsh J Chouraria via tomwhite)
  310. MAPREDUCE-2203. Wrong javadoc for TaskRunner's appendJobJarClasspaths
  311. method. (Jingguo Yao via tomwhite)
  312. MAPREDUCE-2074. Task should fail when symlink creation fails.
  313. (Priyo Mustafi via tomwhite)
  314. MAPREDUCE-1242. Chain APIs error misleading.
  315. (Harsh J Chouraria via tomwhite)
  316. MAPREDUCE-2379. Adds missing DistributedCache configurations in
  317. mapred-default.xml (Todd Lipcon via amareshwari)
  318. MAPREDUCE-2348. Disable mumak tests on trunk since they currently time out
  319. (todd)
  320. MAPREDUCE-2395. TestBlockFixer timing out on trunk. (Ramkumar Vadali via
  321. todd)
  322. MAPREDUCE-2426. Make TestFairSchedulerSystem fail with more verbose output
  323. (todd)
  324. MAPREDUCE-2448. NoSuchMethodError:
  325. org.apache.hadoop.hdfs.TestDatanodeBlockScanner.corruptReplica(..) (eli)
  326. MAPREDUCE-2460. Fix flaky test TestFairSchedulerSystem. (todd)
  327. MAPREDUCE-2451. Log the details from health check script at the
  328. JobTracker. (Thomas Graves via cdouglas)
  329. MAPREDUCE-2467. HDFS-1052 changes break the raid contrib module in
  330. MapReduce. (suresh srinivas via mahadev)
  331. MAPREDUCE-2258. IFile reader closes stream and compressor in wrong order.
  332. (todd via tomwhite)
  333. MAPREDUCE-2518. The t flag is missing in distcp help message. (Wei Yongjun
  334. via szetszwo)
  335. MAPREDUCE-2514. Fix typo in TaskTracker ReinitTrackerAction log message.
  336. (Jonathan Eagles via cdouglas)
  337. MAPREDUCE-2490. Add logging to graylist and blacklist activity to aid
  338. diagnosis of related issues. (Jonathan Eagles via cdouglas)
  339. MAPREDUCE-2495. exit() the TaskTracker when the distributed cache cleanup
  340. thread dies. (Robert Joseph Evans via cdouglas)
  341. MAPREDUCE-2470. Fix NPE in RunningJobs::getCounters. (Robert Joseph Evans
  342. via cdouglas)
  343. MAPREDUCE-2536. Update FsShell -mv command usage in TestMRCLI. (Daryn
  344. Sharp via szetszwo)
  345. MAPREDUCE-2529. Add support for regex-based shuffle metric counting
  346. exceptions. (Thomas Graves via cdouglas)
  347. MAPREDUCE-2559. ant binary fails due to missing c++ lib dir. (eli)
  348. MAPREDUCE-2573. Fix new findbugs warning introduced by MAPREDUCE-2494.
  349. (Robert Joseph Evans via todd)
  350. MAPREDUCE-2581. Spelling errors in log messages. (Tim Sell via eli)
  351. MAPREDUCE-2588. Change raid to the new DataTransferProtocol API. (szetszwo)
  352. MAPREDUCE-2576. Typo in comment in SimulatorLaunchTaskAction.java.
  353. (Tim Sell via jghoman)
  354. MAPREDUCE-2550. Fix bin/mapred to work properly from within a source
  355. checkout (Eric Yang via todd)
  356. MAPREDUCE-2620. Update RAID for HDFS-2087. (szetszwo)
  357. MAPREDUCE-2624. Update RAID for HDFS-2107. (szetszwo)
  358. MAPREDUCE-2670. Fixing spelling mistake in FairSchedulerServlet.java. (eli)
  359. MAPREDUCE-2710. Update JobSubmitter.printTokens(..) for HDFS-2161.
  360. (szetszwo)
  361. MAPREDUCE-2409. DistributedCache maps files and archives to the same path,
  362. despite semantic incompatibility. (Siddharth Seth via cdouglas)
  363. MAPREDUCE-2575. TestMiniMRDFSCaching fails if test.build.dir is set
  364. to something other than build/test (Thomas Graves via mahadev)
  365. MAPREDUCE-2622. Remove the last remaining reference to the deprecated
  366. configuration "io.sort.mb". (Harsh J Chouraria via todd)
  367. MAPREDUCE-2732. Remove directly accessing FSNamesystem.LOG from
  368. TestCopyFiles and TestDistCh. (szetszwo)
  369. MAPREDUCE-2463. Job history files are not moved to done folder when job
  370. history location is hdfs. (Devaraj K via szetszwo)
  371. MAPREDUCE-2243. Close streams propely in a finally-block to avoid leakage
  372. in CompletedJobStatusStore, TaskLog, EventWriter and TotalOrderPartitioner.
  373. (Devaraj K via szetszwo)
  374. MAPREDUCE-2741. Make ant build system work with hadoop-common JAR
  375. generated by Maven. (Alejandro Abdelnur via tomwhite)
  376. MAPREDUCE-2760. mapreduce.jobtracker.split.metainfo.maxsize typoed
  377. in mapred-default.xml. (todd via eli)
  378. MAPREDUCE-2797. Update mapreduce tests and RAID for HDFS-2239. (szetszwo)
  379. MAPREDUCE-2805. Update RAID for HDFS-2241. (szetszwo)
  380. MAPREDUCE-2837. Ported bug fixes from y-merge to prepare for MAPREDUCE-279
  381. merge. (acmurthy)
  382. MAPREDUCE-2541. Fixed a race condition in IndexCache.removeMap. (Binglin
  383. Chang via acmurthy)
  384. MAPREDUCE-2458. Rename sanitized pom.xml in build directory to work around IDE
  385. bug (Luke Lu via mahadev)
  386. MAPREDUCE-279. Fix in MR-279 branch. Clear application notification if sent once
  387. to NodeManager (mahadev)
  388. MAPREDUCE-2433. YARNApplicationConstants hard code app master jar version (Luke
  389. Lu via mahadev)
  390. MAPREDUCE-279. Fix in MR-279 branch. Implement restart for resource manager
  391. phase 1 - Helper classes to store and restore the data structures. (mahadev)
  392. MAPREDUCE-2414. Change MRv2 to use generic interfaces. (Siddharth Seth via
  393. acmurthy)
  394. MAPREDUCE-279. Fix in MR-279 branch. Implement health-checks for the node -
  395. server side(ResourceManager) changes. (vinodkv)
  396. MAPREDUCE-2405: Implement uber-AppMaster (in-cluster LocalJobRunner for MRv2)
  397. (Greg Roelofs via mahadev)
  398. MAPREDUCE-279. Fix in MR-279 branch. Implementing Containers' memory monitoring.
  399. (vinodkv)
  400. MAPREDUCE-2440. Name clashes in TypeConverter (luke via mahadev)
  401. MAPREDUCE-279. Fix in MR-279 branch. Add fail count to the command line of the
  402. application master. (mahadev)
  403. MAPREDUCE-2424. Polish uber-AppMaster: add uber-AM counters and GUI indicators.
  404. (Greg Roelofs via mahadev)
  405. MAPREDUCE-2405. Implement uber-AppMaster (in-cluster LocalJobRunner for MRv2).
  406. (Greg Roelofs and Sharad Agarwal via mahadev)
  407. MAPREDUCE-279. Fix in MR-279 branch. Fix YarnRemoteException to give more
  408. details. (Siddharth Seth via mahadev)
  409. MAPREDUCE-279. Fix in MR-279 branch. WebApp for Job History (Krishna
  410. Ramachandran via mahadev)
  411. MAPREDUCE-279. Fix in MR-279 branch. Install sanitized poms for downstream
  412. sanity (Luke Lu via mahadev)
  413. MAPREDUCE-279. Fix in MR-279 branch. Add HistoryCleanerService to Job History
  414. server. (Krishna Ramachandran via sharad)
  415. MAPREDUCE-279. Fix in MR-279 branch. Implement 'bin/mapred job -list' and
  416. 'bin/mapred job -list-active-trackers'. (acmurthy)
  417. MAPREDUCE-279. Fix in MR-279 branch. Implement 'bin/mapred queue [-info
  418. [-showJobs]] [-list] and enhanced 'bin/mapred job -list' to show queue and
  419. ApplicationMaster information. (acmurthy)
  420. MAPREDUCE-279. Fix in MR-279 branch. Fixed computation of user-limits at
  421. runtime. (acmurthy)
  422. MAPREDUCE-279. Fix in MR-279 branch. Added functionality to refresh queues at
  423. runtime via the 'bin/yarn rmadmin' command. (acmurthy)
  424. MAPREDUCE-279. Fix in MR-279 branch. Added functionality to stop/start queues.
  425. (acmurthy)
  426. MAPREDUCE-279. Fix in MR-279 branch. Introducing web-UI for NodeManager and
  427. linking it from RM UI. (vinodkv)
  428. MAPREDUCE-279. Fix in MR-279 branch. Fix race condition in TestJobHistoryEvents
  429. and TestJobHistoryParsing. (sharad)
  430. MAPREDUCE-279. Fix in MR-279 branch. Add Containers' logs' view to NM UI and
  431. link it from AM UI. (vinodkv)
  432. MAPREDUCE-279. Fix in MR-279 branch. Add ACLs for queues and command-line
  433. utilities for viewing them. (acmurthy)
  434. MAPREDUCE-279. Fix in MR-279 branch. Recovery of MR Application Master from
  435. failures. (sharad)
  436. MAPREDUCE-279. Fix in MR-279 branch. Added support High-RAM applications in
  437. CapacityScheduler. (acmurthy)
  438. MAPREDUCE-279. Fix in MR-279 branch. Completing the ZooKeeper Store for
  439. ResourceManager state. (mahadev)
  440. MAPREDUCE-279. Fix in MR-279 branch. Reorient container localization to be
  441. per-container rather than per-application. (cdouglas)
  442. MAPREDUCE-279. Fix in MR-279 branch. Fix file creation in
  443. JobHistoryEventHandler. (sharad)
  444. MAPREDUCE-279. Fix in MR-279 branch. Disable ContainerMonitoring for non-linux
  445. systems. (vinodkv)
  446. MAPREDUCE-279. Fix in MR-279 branch. Fix container launch w/ inconsistent
  447. credential file naming. (cdouglas)
  448. MAPREDUCE-2434. Metrics for ResourceManager. (Luke Lu via acmurthy)
  449. MAPREDUCE-279. Fix in MR-279 branch. RM Restart Phase 2 - Completed the recovery
  450. of components in the RM (mahadev)
  451. MAPREDUCE-279. Fix in MR-279 branch. Fix to send finish application event only
  452. when the application is finished (mahadev)
  453. MAPREDUCE-2462. Write job conf along with JobHistory, other minor improvements.
  454. (Siddharth Seth via sharad)
  455. MAPREDUCE-279. Fix in MR-279 branch. Implement 'delay scheduling' for better
  456. locality in CapacityScheduler and improved high-ram applications. (acmurthy)
  457. MAPREDUCE-279. Fix in MR-279 branch. Implement Job Acls in MR Application
  458. Master. (sharad)
  459. MAPREDUCE-279. Fix in MR-279 branch. Moving userlogs out of container work-dir
  460. into a separate directory structure. (vinodkv)
  461. MAPREDUCE-279. Fix in MR-279 branch. Completing RM Restart. Completed Phase 3 of
  462. making sure events are logged and restored (mahadev)
  463. MAPREDUCE-2468. Add metrics for NM Shuffle. (Luke Lu via cdouglas)
  464. MAPREDUCE-279. Fix in MR-279 branch. Adding user log handling for YARN. Making
  465. NM put the user-logs on DFS and providing log-dump tools. (vinodkv)
  466. MAPREDUCE-279. Fix in MR-279 branch. Fixing three tight-loops in RM that are
  467. causing high cpu-usage. (vinodkv)
  468. MAPREDUCE-279. Fix in MR-279 branch. Replacing FileContext usage with FileSystem
  469. to work around security authentication issues with FileContext against a secure
  470. DFS. (vinodkv)
  471. MAPREDUCE-279. Fix in MR-279 branch. Client reconnect to restarted AM. (sharad)
  472. MAPREDUCE-279. Fix in MR-279 branch. Fix refreshProxy in ClientServiceDelegate.
  473. (sharad)
  474. MAPREDUCE-279. Fix in MR-279 branch. Fix Null Pointer in TestUberAM. (sharad)
  475. MAPREDUCE-2478. Improve history server. (Siddharth Seth via sharad)
  476. MAPREDUCE-279. Fix in MR-279 branch. Improved TestJobHistoryEvents and
  477. TestJobHistoryParsing. (sharad)
  478. MAPREDUCE-279. Fix in MR-279 branch. Fix NM to use multiple disks for local
  479. files and the userlogs. (vinodkv)
  480. MAPREDUCE-2480: MR App should not depend on hard coded version of shuffle (luke
  481. lu via mahadev)
  482. MAPREDUCE-279. Fix in MR-279 branch. Propagate error back to client in case of a
  483. job submission failure (mahadev)
  484. MAPREDUCE-279. Fix in MR-279 branch. Fix assembly to add mapreduce shell scripts
  485. to the assembly package. (mahadev)
  486. MAPREDUCE-279. Fix in MR-279 branch. Fix TestQueueMetrics. (Luke Lu via sharad)
  487. MAPREDUCE-279. Fix in MR-279 branch. Removal of stale application-log dirs from
  488. NM local disks. (vinodkv)
  489. MAPREDUCE-279. Fix in MR-279 branch. Add license header and minor cleanup in
  490. history server. (Siddharth Seth via sharad)
  491. MAPREDUCE-279. Fix in MR-279 branch. Minor fix for install instructions.
  492. (mahadev)
  493. MAPREDUCE-279. Fix in MR-279 branch. Fix a race in MR task that was causing MR
  494. containers to overwrite each other's job.xml. Also fix leaking attempt-dirs in
  495. app-local-dir. (vinodkv)
  496. MAPREDUCE-279. Fix in MR-279 branch. Adding valid state to ASM on a finish when
  497. its already completed and also disble UberAM. (mahadev)
  498. MAPREDUCE-279. Fix in MR-279 branch. Fixed CS user limits. (acmurthy)
  499. MAPREDUCE-279. Fix in MR-279 branch. Fixed reservation's bad interaction with
  500. delay scheduling in CS. (acmurthy)
  501. MAPREDUCE-279. Fix in MR-279 branch. Support mapreduce old (0.20) APIs. (sharad)
  502. MAPREDUCE-279. Fix in MR-279 branch. Support fail-fast for MR jobs. (ddas)
  503. MAPREDUCE-279. Fix in MR-279 branch. Fix for clearing container requests on an
  504. AM failure and add tostring methods to taskids and taskattemptids for better
  505. grep support. (mahadev)
  506. MAPREDUCE-279. Fix in MR-279 branch. Speed up communication between MR AM and RM
  507. by relying on a new config rather than AM_EXPIRY_INTERVAL which is too large.
  508. (acmurthy)
  509. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of maximum capacity to use
  510. parent's absolute-capacity rather than the leaf queue's absolute-capacity.
  511. (acmurthy)
  512. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug in JobIDPbImpl that's causing
  513. AM to crash randomly. (vinodkv)
  514. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of maximum capacity in
  515. ParentQueue to use its parent's absolute-capacity rather than its own
  516. absolute-capacity. (acmurthy)
  517. MAPREDUCE-279. Fix in MR-279 branch. Launching bin/yarn and bin/mapred only
  518. *once* in AM for constructing classpaths to avoid multiple forks and huge vmem
  519. usage by AM. (vinodkv)
  520. MAPREDUCE-279. Fix in MR-279 branch. Fix CapacityScheduler to release unused
  521. reservations on application completion. (acmurthy)
  522. MAPREDUCE-279. Fix in MR-279 branch. Fix CapacityScheduler (LeafQueue) to not
  523. allocate DATA_LOCAL containers when they are not required on the rack.
  524. (acmurthy)
  525. MAPREDUCE-279. Fix in MR-279 branch. Makes uber-task disabled by default (ddas)
  526. MAPREDUCE-279. Fix in MR-279 branch. Make logging and memory for AM configurable
  527. for the user via command line (mahadev)
  528. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug in previous patch (r1103657).
  529. Now bin/yarn truly shouldn't be launched multiple times in a single AM.
  530. (vinodkv)
  531. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug to do with setting the staging
  532. dir. (ddas)
  533. MAPREDUCE-279. Fix in MR-279 branch. Fixed Composite Service to shutdown
  534. services if an error occurs on starting any one of those (mahadev & chris)
  535. MAPREDUCE-279. Fix in MR-279 branch. Fix the tests to use jvm fork mode to avoid
  536. errors in shutting down services (sidharth seth)
  537. MAPREDUCE-2500. PB factories are not thread safe (Siddharth Seth via mahadev)
  538. MAPREDUCE-2504. race in JobHistoryEventHandler stop (Siddharth Seth via mahadev)
  539. MAPREDUCE-279. Fix in MR-279 branch. Fix job hang if the AM launch fails.
  540. (mahadev)
  541. MAPREDUCE-2509. Fix NPE in UI for pending attempts. (Luke Lu via mahadev)
  542. MAPREDUCE-279. Fix in MR-279 branch. Add junit jar to lib in assembly (mahadev
  543. and luke)
  544. MAPREDUCE-279. Fix in MR-279 branch. Distributed cache bug fix to pass Terasort.
  545. (vinodkv)
  546. MAPREDUCE-279. Fix in MR-279 branch. Fix null pointer exception in kill task
  547. attempt (mahadev)
  548. MAPREDUCE-279. Fix in MR-279 branch. Refactored RMContainerAllocator to release
  549. unused containers. (sharad)
  550. MAPREDUCE-279. Fix in MR-279 branch. Changed Scheduler to return available limit
  551. to AM in the allocate api. (acmurthy)
  552. MAPREDUCE-279. Fix in MR-279 branch. Fix nodemanager expiry to not throw OOM.
  553. (mahadev)
  554. MAPREDUCE-279. Fix in MR-279 branch. Use DefaultContainerExecutor for
  555. integration tests. (cdouglas)
  556. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in test case (mahadev)
  557. MAPREDUCE-279. Fix in MR-279 branch. Fix for regression on the scheduling of
  558. reduces before maps are done (ddas)
  559. MAPREDUCE-279. Fix in MR-279 branch. Fix distributed-cache related bugs.
  560. (vinodkv)
  561. MAPREDUCE-279. Fix in MR-279 branch. Ensure unused containers released by AM are
  562. correctly counted for queue-capacity. (acmurthy)
  563. MAPREDUCE-279. Fix in MR-279 branch. Fix TestRuntimeEstimators (Siddharth Seth
  564. via ddas)
  565. MAPREDUCE-279. Fix in MR-279 branch. Fix queue refresh to correctly record newly
  566. added queues in CapacityScheduler. (acmurthy)
  567. MAPREDUCE-279. Fix in MR-279 branch. Added metrics for tracking reservations in
  568. CapacityScheduler. (Luke Lu via acmurthy)
  569. MAPREDUCE-2522. Security for JobHistory service. (Siddharth Seth via mahadev)
  570. MAPREDUCE-2534. Fix CI breaking hard coded version in jobclient pom. (Luke Lu
  571. via mahadev)
  572. MAPREDUCE-279. Fix in MR-279 branch. Add public cache. (cdouglas)
  573. MAPREDUCE-279. Fix in MR-279 branch. Made number of RPC server threads
  574. configurable. (acmurthy)
  575. MAPREDUCE-279. Fix in MR-279 branch. Added acl check for RMAdmin. (acmurthy)
  576. MAPREDUCE-279. Fix in MR-279 branch. Adding job kill for any state that the job
  577. is in with access control. (mahadev)
  578. MAPREDUCE-279. Fix in MR-279 branch. Add debug statements for AM not launching
  579. (mahadev)
  580. MAPREDUCE-279. Fix in MR-279 branch. Fixing race condition leader to hung jobs
  581. in scheduler negotiator (mahadev)
  582. MAPREDUCE-279. Fix in MR-279 branch. Add debug config for delaying delete of
  583. local files. (cdouglas)
  584. MAPREDUCE-2527. Metrics for MRAppMaster (Luke lu via mahadev)
  585. MAPREDUCE-2532. Metrics for NodeManager (Luke Lu via mahadev)
  586. MAPREDUCE-279. Fix in MR-279 branch. Fixed an NPE during handling of unnecessary
  587. reservations in CS. (acmurthy)
  588. MAPREDUCE-279. Fix in MR-279 branch. Fix for public dist cache to work with non
  589. default hdfs (mahadev &ddas)
  590. MAPREDUCE-279. Fix in MR-279 branch. Making streaming -file option work. Also
  591. minor fixes for successful compilation of contrib tests. (vinodkv)
  592. MAPREDUCE-2536. Backporting changes to MR-279.
  593. MAPREDUCE-279. Fix in MR-279 branch. Bugfix for using user staging directory for
  594. history files (Siddharth Seth via mahadev)
  595. MAPREDUCE-279. Fix in MR-279 branch. First fix for making basic speculative
  596. execution work (ddas)
  597. MAPREDUCE-279. Fix in MR-279 branch. Fixes for TestFail/Kill (ddas)
  598. MAPREDUCE-279. Fix in MR-279 branch. Set correct version of avro-maven-plugin
  599. that is available in apache maven repositories. (vinodkv)
  600. MAPREDUCE-279. Fix in MR-279 branch. Fixing and reneabling
  601. TestContainerTokenSecretManager. (vinodkv)
  602. MAPREDUCE-279. Fix in MR-279 branch. Cleaning up configuration constants in
  603. mapreduce modules. (vinodkv)
  604. MAPREDUCE-279. Fix in MR-279 branch. Fixing NPE on speculator in MRAppMaster and
  605. making job-history optional in tests to make test goal succeed. (vinodk and
  606. sharadag).
  607. MAPREDUCE-279. Fix in MR-279 branch. Fixed NPE in CS by checking Application
  608. state before scheduling and fixing synchronization in CS. (acmurthy)
  609. MAPREDUCE-279. Fix in MR-279 branch. Making pipes work with YARN. Changed pipes
  610. to get log-locations from an environmental variable. (vinodkv)
  611. MAPREDUCE-279. Fix in MR-279 branch. Ensure 'lost' NodeManagers are dealt
  612. appropriately, the containers are released correctly. (acmurthy)
  613. MAPREDUCE-279. Fix in MR-279 branch. Adding some more logging for AM expiry logs
  614. (mahadev)
  615. MAPREDUCE-279. Fix in MR-279 branch. Reduce ramp up and zero maps support.
  616. (sharad)
  617. MAPREDUCE-279. Fix in MR-279 branch. Allowing hdfs calls from streaming/pipes
  618. tasks. (vinodkv)
  619. MAPREDUCE-279. Fix in MR-279 branch. Added ability to decommission nodes and
  620. completed RM administration tools to achieve parity with JobTracker. (acmurthy)
  621. MAPREDUCE-2551. Added JobSummaryLog. (Siddharth Seth via acmurthy)
  622. MAPREDUCE-2552. Fixed NPE in CompletedJob in JobHistoryServer. (Siddharth Seth
  623. via acmurthy)
  624. MAPREDUCE-279. Fix in MR-279 branch. Fix reduce slow start. (sharad)
  625. MAPREDUCE-279. Fix in MR-279 branch. Fixed TestFifoScheduler. (acmurthy)
  626. MAPREDUCE-279. Fix in MR-279 branch. Fix build issue for using yarn.version
  627. instead of hadoop-mapred.version (mahadev and giri)
  628. MAPREDUCE-279. Fix in MR-279 branch. Fixes in the handling of KILL events in the
  629. SUCCEEDED state for tasks in the application master (ddas)
  630. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in TestRMNMRPCResponseId.
  631. (mahadev)
  632. MAPREDUCE-279. Fix in MR-279 branch. Fix a deadlock in the resourcemanager.
  633. (mahadev)
  634. MAPREDUCE-279. Fix in MR-279 branch. NodeStatus.getNodeHealthStatus().setBlah
  635. broken (Siddharth Seth)
  636. MAPREDUCE-279. Fix in MR-279 branch. Fix another NPE in TestRMNMRPCResponseId.
  637. (mahadev)
  638. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in TestNMExpiry (siddharth
  639. seth)
  640. MAPREDUCE-279. Fix in MR-279 branch. Making each node aggregate all its
  641. user-logs to a separate hdfs file. (vinodkv)
  642. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of max-capacity for a
  643. queue, also fixed a bug in registration of NodeManagers. (acmurthy)
  644. MAPREDUCE-279. Fix in MR-279 branch. More cleaning up constants, removing stale
  645. code, and making conspicuous the envs that apps depend on to be provided by
  646. YARN. (vinodkv)
  647. MAPREDUCE-279. Fix in MR-279 branch. Fix container size rounding in AM and
  648. headroom in RM. (acmurthy and sharad)
  649. MAPREDUCE-279. Fix in MR-279 branch. Disable Job acls until fixed (mahadev)
  650. MAPREDUCE-279. Fix in MR-279 branch. Fix to report job status if the application
  651. is KILLED/FAILED. (mahadev)
  652. MAPREDUCE-279. Fix in MR-279 branch. Fix a corner case in headroom computation -
  653. now reservations are taken into account and headroom is computed much later to
  654. account for allocations/reservations. (acmurthy)
  655. MAPREDUCE-2537. The RM writes its log to
  656. yarn-mapred-resourcemanager-<RM_Host>.out (Robert Evans via mahadev)
  657. MAPREDUCE-279. Fix in MR-279 branch. Fix logging for showing the state of job
  658. (FAILED/KILLED/SUCCEEDED) when it completes (mahadev)
  659. MAPREDUCE-279. Fix in MR-279 branch. Re-enabled TestCapacityScheduler.
  660. (acmurthy)
  661. MAPREDUCE-279. Fix in MR-279 branch. Support for min and max container capacity.
  662. (acmurthy and sharad)
  663. MAPREDUCE-2531. Fixed jobcontrol to downgrade JobID. (Robert Evans via acmurthy)
  664. MAPREDUCE-2539. Fixed NPE in getMapTaskReports in JobClient. (Robert Evans via
  665. acmurthy)
  666. MAPREDUCE-279. Fix in MR-279 branch. Fixing the wrong config key used in
  667. JobHistory that prevented configuring move-thread interval. (vinodkv)
  668. MAPREDUCE-279. Fix in MR-279 branch. Fixed inconsistency in QueueACL enums.
  669. (acmurthy)
  670. MAPREDUCE-279. Fix in MR-279 branch. Fix various issues with Web UI's. (Luke Lu)
  671. MAPREDUCE-279. Fix in MR-279 branch. Fix class cast exception in Task abort for
  672. old mapreduce apis. (sharad)
  673. MAPREDUCE-279. Fix in MR-279 branch. Add deletion of distributed cache
  674. resources. (cdouglas)
  675. MAPREDUCE-279. Fix in MR-279 branch. Disable aggregation of logs onto DFS till
  676. JobHistoryServer starts serving logs. (vinodkv)
  677. MAPREDUCE-279. Fix in MR-279 branch. Cleanup redundant code in TaskAttemptImpl.
  678. (sharad)
  679. MAPREDUCE-279. Fix in MR-279 branch. Work around broken signaling in public
  680. cache. (cdouglas)
  681. MAPREDUCE-2566. YarnConfiguration should reloadConfiguration if instantiated
  682. with a non YarnConfiguration object. (Siddharth Seth)
  683. MAPREDUCE-279. Fix in MR-279 branch. Fully resolve paths when launching
  684. containers. (Siddharth Seth)
  685. MAPREDUCE-279. Fix in MR-279 branch. Re-enabling Uber-AM feature. (vinodkv)
  686. MAPREDUCE-279. Fix in MR-279 branch. Fixed deadlock during expiring NMs.
  687. (acmurthy)
  688. MAPREDUCE-279. Fix in MR-279 branch. Solving NPEs during
  689. ContainerManager#StopContainer. Also removing the unused
  690. ContainerManager#CleanupContainer api. (vinodkv)
  691. MAPREDUCE-279. Fix in MR-279 branch. Remove retries in dist cache so that NM's
  692. do not shutdown (mahadev)
  693. MAPREDUCE-279. Fix in MR-279 branch. Fix classpath construction for Task.
  694. (vinodkv via sharad)
  695. MAPREDUCE-279. Fix in MR-279 branch. Sending Job diagnostics from AM to RM and
  696. redirect to history-url on job completion. (vinodkv and sharadag)
  697. MAPREDUCE-279. Fix in MR-279 branch. Added clover in pom dependency. (sharad)
  698. MAPREDUCE-279. Fix in MR-279 branch. Intermittent TestMRApp failures on faster
  699. Linux desktop. (Luke lu via mahadev)
  700. MAPREDUCE-279. Fix in MR-279 branch. Including source files in release
  701. distribution (Luke Lu via mahadev)
  702. MAPREDUCE-279. Fix in MR-279 branch. Intermittent TestMRApp failures on faster
  703. Linux desktop (part 2) (Luke lu via mahadev)
  704. MAPREDUCE-279. Fix in MR-279 branch. Disable Uber AM. (mahadev)
  705. MAPREDUCE-279. Fix in MR-279 branch. Added few job diagnostic messages. (sharad)
  706. MAPREDUCE-279. Fix in MR-279 branch. Add ability to includes src files in
  707. assembly target for maven (Luke Lu via mahadev)
  708. MAPREDUCE-2582. Cleanup JobHistory event generation.(Siddharth Seth via sharad)
  709. MAPREDUCE-279. Fix in MR-279 branch. Fix rounding off problem in reduce ramp up.
  710. (sharad)
  711. MAPREDUCE-279. Fix in MR-279 branch. Fix more rounding off problems in reduce
  712. ramp up. Also fix a bug preventing the application of the cap on reduce ramp-up.
  713. (Sharad Agarwal via vinodkv)
  714. MAPREDUCE-279. Fix in MR-279 branch. Fix to exclude images dir into the tar
  715. distribution (Luke Lu via gkesavan)
  716. MAPREDUCE-279. Fix in MR-279 branch. Changes a couple of usages of FileContext
  717. to FileSystem in YarnRunner to handle distributed cache path resolutions on
  718. non-default filesystems. (ddas)
  719. MAPREDUCE-279. Fix in MR-279 branch. Display failed/killed attempts of the task
  720. on MR AM UI separately. (vinodkv)
  721. MAPREDUCE-279. Fix in MR-279 branch. Miscellaneous UI fixes + source code
  722. formatting for MR JobHistoryEventHandler. (vinodkv)
  723. MAPREDUCE-279. Fix in MR-279 branch. Fixing broken link to logs for container on
  724. NM web UI. (vinodkv)
  725. MAPREDUCE-279. Fix in MR-279 branch. Fixing the bug which was causing FAILED
  726. jobs to be displayed as COMPLETED on the RM UI. (vinodkv)
  727. MAPREDUCE-279. Fix in MR-279 branch. Job level node blacklisting. (sharad)
  728. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in history event handling
  729. (Siddharth Seth via mahadev)
  730. MAPREDUCE-2569. Ensure root queue allocated 100% capacity. (Jonathan Eagles via
  731. cdouglas)
  732. MAPREDUCE-279. Fix in MR-279 branch. Fix ClassCastException in JobHistoryServer
  733. for certain jobs. (Siddharth Seth via llu)
  734. MAPREDUCE-279. Fix in MR-279 branch. Changes for invoking rack resolution in the
  735. RM and in the AM (ddas)
  736. MAPREDUCE-279. Fix in MR-279 branch. Fix concurrent modification exception in
  737. the Capacity Scheduler (mahadev)
  738. MAPREDUCE-279. Fix in MR-279 branch. Fix stopContainer for setsid challenged
  739. platforms. (llu)
  740. MAPREDUCE-2587. Generate yarn version for UI. (Thomas Graves via lluts page to
  741. the history server UI. (vinodkv)
  742. MAPREDUCE-279. Fix in MR-279 branch. Bug fix to set correct state on containers
  743. so as to avoid duplicate containers from RM to AM. (vinodkv)
  744. MAPREDUCE-279. Fix in MR-279 branch. Hack until MAPREDUCE-2365 is fixed to make
  745. PIG work with MRV2. (mahadev)
  746. MAPREDUCE-279. Fix in MR-279 branch. Changes a couple of usages of FileContext
  747. to FileSystem in TaskAttemptImpl to handle distributed cache path resolutions on
  748. non-default filesystems. (ddas)
  749. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE when requesting attempts for
  750. completed jobs. (Siddharth Seth via llu)
  751. MAPREDUCE-279. Fix in MR-279 branch. Improve logging for AM when requesting
  752. containers to show the right ask and release fields (mahadev)
  753. MAPREDUCE-279. Fix in MR-279 branch. Fix race condition between multiple
  754. localizers on a single node. (cdouglas via mahadev)
  755. MAPREDUCE-279. Fix in MR-279 branch. Fix RM app start/finish time and
  756. diagnostics. (llu)
  757. MAPREDUCE-279. Fix in MR-279 branch. Fix to schedule reduces irrespective of the
  758. headroom when all maps are done so as to avoid stall in reduce-scheduling when
  759. slow-start is disabled. (Sharad Agarwal via vinodkv).
  760. MAPREDUCE-279. Fix in MR-279 branch. Disabling locality-wait in
  761. CapacityScheduler for now to prevent uber-slow scheduling for apps with no
  762. data-locality constraints (sleep-job like). (vinodkv)
  763. MAPREDUCE-279. Fix in MR-279 branch. Fixing scheduling deadlock in AM because of
  764. incorrect headRoom values from RM. The bug happens when AM releases containers
  765. and RM decrements current memory usage twice for all those containers. (vinodkv)
  766. MAPREDUCE-2611. Fix counters, finish times etc. in job history. (Siddharth Seth
  767. via llu)
  768. MAPREDUCE-279. Fix in MR-279 branch. Fix for ConcurrentModification exception
  769. while iterating through tokens in a UGI in ContainerLauncherImpl. (ddas)
  770. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in YarnChild that was causing
  771. lots of tasks to fail. (vinodkv)
  772. MAPREDUCE-2615. Make killJob go through AM and fix JobSummaryLog. (Siddharth
  773. Seth via llu)
  774. MAPREDUCE-279. Fix in MR-279 branch. Fix class cast exception in release
  775. reserved containers in capacity scheduler (mahadev)
  776. MAPREDUCE-279. Fix in MR-279 branch. Fix diagnostics display for more than 100
  777. apps in RM. (llu)
  778. MAPREDUCE-279. Fix in MR-279 branch. Fix some invalid transitions in the RM.
  779. (vinodkv via ddas)
  780. MAPREDUCE-2618. Fix NPE in 0 map 0 reduce jobs. (Jeffrey Naisbitt via llu)
  781. MAPREDUCE-2625. Add version info to nodemanager info page. (Jonathan Eagles via
  782. llu)
  783. MAPREDUCE-279. Fix in MR-279 branch. (1) Faster retries from AM to HistoryServer
  784. (2) Correct diagnostics for containers. (vinodkv)
  785. MAPREDUCE-279. Fix in MR-279 branch. Major ASM cleanup. Streamlining classes,
  786. interface and events. (vinodkv)
  787. MAPREDUCE-279. Fix in MR-279 branch. Reinstate resolve path fixes for viewfs.
  788. (Siddharth Seth via llu)
  789. MAPREDUCE-2633. Add a getCounter(Enum) method to the Counters record. (Josh
  790. Wills via sharad)
  791. MAPREDUCE-2645. Updates to MRv2 INSTALL and README documentation. (Josh Wills
  792. via vinodkv)
  793. MAPREDUCE-2628. Add compiled on date to NM and RM info/about page.
  794. MAPREDUCE-2400. Remove Cluster's dependency on JobTracker via a ServiceProvider
  795. for the actual implementation. (tomwhite via acmurthy)
  796. MAPREDUCE-2663. Refactoring StateMachineFactory inner classes. (ahmed radwan via
  797. mahadev)
  798. MAPREDUCE-2678. minimum-user-limit-percent no longer honored. (naisbitt via
  799. mahadev)
  800. MAPREDUCE-2630. refreshQueues leads to NPEs when used w/FifoScheduler. (Josh
  801. Wills via mahadev)
  802. MAPREDUCE-2644. NodeManager fails to create containers when NM_LOG_DIR is not
  803. explicitly set in the Configuration. (Josh Wills via vinodkv)
  804. MAPREDUCE-2661. Fix TaskImpl to not access MapTaskImpl. (Ahmed Radwan via
  805. sharad)
  806. HADOOP-6929. Backport changes to MR-279 (mahadev and owen)
  807. HADOOP-6929. Making Security Info abstract and not an interface (mahadev)
  808. MAPREDUCE-2667. mapred job -kill leaves application in RUNNING state (thomas
  809. graves via mahadev)
  810. MAPREDUCE-2664. Implement JobCounters for Mtions as asynchronous. (vinodkv,
  811. sharad and acmurthy)
  812. MAPREDUCE-2773. server.api.records.NodeHealthStatus renamed but not updated in
  813. client NodeHealthStatus.java (Thomas Graves via mahadev)
  814. MAPREDUCE-2772. Fix MR-279 build after common mavenization. (Robert Joseph Evans
  815. via llu)
  816. MAPREDUCE-2772. Fix MR-279 build after common mavenization, part 2. (Thomas
  817. Graves via llu)
  818. MAPREDUCE-279. Fix in MR-279 branch. Harmonize slf4j versions. (llu)
  819. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in FifoScheduler. (mahadev)
  820. MAPREDUCE-2776. Fix some of the yarn findbug warnings. (Siddharth Seth via
  821. mahadev)
  822. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules,
  823. part 1 (mahadev)
  824. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules
  825. part 2 (mahadev)
  826. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules
  827. part 3 (mahadev)
  828. MAPREDUCE-279. Fix in MR-279 branch. Fix the poms to enable 0.23 snapshots for
  829. hdfs/common from apache nightly builds (gkesavan)
  830. MAPREDUCE-279. Fix in MR-279 branch. Fix ivy conf to work with the hadoop common
  831. trunk maven build changes. (Giridharan Kesavan)
  832. MAPREDUCE-279. Fix in MR-279 branch. Patch for findbugs warnings in Resource
  833. Manager (Siddharth Seth via mahadev)
  834. MAPREDUCE-279. Fix in MR-279 branch. Fix for running ant targets to use the
  835. right set of common/test jars (gkesavan via mahadev)
  836. MAPREDUCE-2782. Unit tests for CapacityScheduler. (acmurthy)
  837. MAPREDUCE-2706. Log job submission failures. (Jeffrey Naisbitt via acmurthy)
  838. MAPREDUCE-2781. mr279 RM application finishtime not set (Thomas Graves via
  839. mahadev)
  840. MAPREDUCE-279. Fix in MR-279 branch. Fixed CS locality wait factor. (acmurthy)
  841. MAPREDUCE-2808. pull MAPREDUCE-2797 into mr279 branch (Thomas Graves via
  842. mahadev)
  843. MAPREDUCE-2639. Bug fixes in speculate.DataStatistics. (Josh Wills via acmurthy)
  844. MAPREDUCE-2839. Fixed TokenCache to get delegation tokens using both new and old
  845. apis. (Siddharth Seth via acmurthy)
  846. MAPREDUCE-2727. Fix divide-by-zero error in SleepJob for sleepCount equals 0.
  847. (Jeffrey Naisbitt via acmurthy)
  848. MAPREDUCE-2839. Fixed TokenCache to get delegation tokens using both new
  849. and old apis. (Siddharth Seth via acmurthy)
  850. MAPREDUCE-2727. Fix divide-by-zero error in SleepJob for sleepCount equals
  851. 0. (Jeffrey Naisbitt via acmurthy)
  852. MAPREDUCE-2860. Fix log4j logging in the maven test cases. (mahadev)
  853. MAPREDUCE-2867. Remove Unused TestApplicaitonCleanup in resourcemanager/applicationsmanager.
  854. (mahadev)
  855. MAPREDUCE-2868. ant build broken in hadoop-mapreduce dir (mahadev, giri and arun via mahadev)
  856. MAPREDUCE-2649. Handling of finished applications in RM. (Thomas Graves
  857. via acmurthy)
  858. MAPREDUCE-2838. Fix MapReduce builds to use new hadoop-common test jars.
  859. (gkesavan via acmurthy)
  860. MAPREDUCE-2859. Fix eclipse plugin contrib module compilation (gkesavan)
  861. MAPREDUCE-2846. Fix missing synchronization in the task log management.
  862. (omalley)
  863. MAPREDUCE-2807. Fix AM restart and client redirection. (sharad)
  864. MAPREDUCE-2877. Add missing Apache license header in some files in MR
  865. and also add the rat plugin to the poms. (mahadev)
  866. MAPREDUCE-2796. Set start times for MR applications for clients to see.
  867. (Devaraj K via acmurthy)
  868. MAPREDUCE-2879. Fix version for MR-279 to 0.23.0. (acmurthy)
  869. MAPREDUCE-2881. Fix to include log4j 1.2.16 depenency (gkesavan)
  870. MAPREDUCE-2885. Fix mapred-config.sh to look for hadoop-config.sh in
  871. HADOOP_COMMON_HOME/libexec. (acmurthy)
  872. MAPREDUCE-2893. Remove duplicate entry of YarnClientProtocolProvider in
  873. ClientProtocolProvider services file. (Liang-Chi Hsieh via acmurthy)
  874. MAPREDUCE-2891. Javadoc for AMRMProtocol and related records. (acmurthy)
  875. MAPREDUCE-2898. Javadoc for ContainerManager protocol and related records.
  876. (acmurthy)
  877. MAPREDUCE-2904. Fixed bin/yarn to correctly include HDFS jars and
  878. clean up of stale refs to pre-mavenized Hadoop Common and HDFS.
  879. (Sharad Agarwal and Arun C. Murthy via acmurthy)
  880. MAPREDUCE-2737. Update the progress of jobs on client side. (Siddharth Seth
  881. and Mahadev Konar via mahadev)
  882. MAPREDUCE-2886. Fix Javadoc warnings in MapReduce. (mahadev)
  883. MAPREDUCE-2897. Javadoc for ClientRMProtocol protocol and related records.
  884. (acmurthy)
  885. MAPREDUCE-2916. Ivy build for MRv1 fails with bad organization for
  886. common daemon. (mahadev)
  887. MAPREDUCE-2917. Fixed corner case in container reservation which led to
  888. starvation and hung jobs. (acmurthy)
  889. MAPREDUCE-2756. Better error handling in JobControl for failed jobs.
  890. (Robert Evans via acmurthy)
  891. MAPREDUCE-2716. MRReliabilityTest job fails because of missing
  892. job-file. (Jeffrey Naisbitt via vinodkv)
  893. MAPREDUCE-2882. TestLineRecordReader depends on ant jars. (todd)
  894. MAPREDUCE-2687. Fix NodeManager to use the right version of
  895. LocalDirAllocator.getLocalPathToWrite. (mahadev & acmurthy)
  896. MAPREDUCE-2800. Set final progress for tasks to ensure all task information
  897. is correctly logged to JobHistory. (Siddharth Seth via acmurthy)
  898. MAPREDUCE-2938. Log application submission failure in CapacityScheduler.
  899. (acmurthy)
  900. MAPREDUCE-2948. Hadoop streaming test failure, post MR-2767 (mahadev)
  901. MAPREDUCE-2908. Fix all findbugs warnings. (vinodkv via acmurthy)
  902. MAPREDUCE-2947. Fixed race condition in AuxiliaryServices. (vinodkv via
  903. acmurthy)
  904. MAPREDUCE-2844. Fixed display of nodes in UI. (Ravi Teja Ch N V via
  905. acmurthy)
  906. MAPREDUCE-2677. Fixed 404 for some links from HistoryServer. (Robert Evans
  907. via acmurthy)
  908. MAPREDUCE-2937. Ensure reason for application failure is displayed to the
  909. user. (mahadev via acmurthy)
  910. MAPREDUCE-2953. Fix a race condition on submission which caused client to
  911. incorrectly assume application was gone by making submission synchronous
  912. for RMAppManager. (Thomas Graves via acmurthy)
  913. MAPREDUCE-2963. Fix hang in TestMRJobs. (Siddharth Seth via acmurthy)
  914. MAPREDUCE-2954. Fixed a deadlock in NM caused due to wrong synchronization
  915. in protocol buffer records. (Siddharth Seth via vinodkv)
  916. MAPREDUCE-2975. Fixed YARNRunner to use YarnConfiguration rather than
  917. Configuration. (mahadev via acmurthy)
  918. MAPREDUCE-2971. ant build mapreduce fails protected access jc.displayJobList
  919. (jobs) (Thomas Graves via mahadev)
  920. MAPREDUCE-2691. Finishing up the cleanup of distributed cache file resources
  921. and related tests. (Siddharth Seth via vinodkv)
  922. MAPREDUCE-2749. Ensure NM registers with RM after starting all its services
  923. correctly. (Thomas Graves via acmurthy)
  924. MAPREDUCE-2979. Removed the needless ClientProtocolProvider configuration
  925. from the hadoop-mapreduce-client-core module. (Siddharth Seth via vinodkv)
  926. MAPREDUCE-2985. Fixed findbugs warnings in ResourceLocalizationService.
  927. (Thomas Graves via acmurthy)
  928. MAPREDUCE-2874. Fix formatting of ApplicationId in web-ui. (Eric Payne via
  929. acmurthy)
  930. MAPREDUCE-2995. Better handling of expired containers in MapReduce
  931. ApplicationMaster. (vinodkv via acmurthy)
  932. MAPREDUCE-2995. Fixed race condition in ContainerLauncher. (vinodkv via
  933. acmurthy)
  934. MAPREDUCE-2949. Fixed NodeManager to shut-down correctly if a service
  935. startup fails. (Ravi Teja via vinodkv)
  936. MAPREDUCE-3005. Fix both FifoScheduler and CapacityScheduler to correctly
  937. enforce locality constraints. (acmurthy)
  938. MAPREDUCE-3007. Fixed Yarn Mapreduce client to be able to connect to
  939. JobHistoryServer in secure mode. (vinodkv)
  940. MAPREDUCE-2987. Fixed display of logged user on RM Web-UI. (Thomas Graves
  941. via acmurthy)
  942. MAPREDUCE-3006. Fixed MapReduce AM to exit only after properly writing out
  943. history file. (vinodkv)
  944. MAPREDUCE-2925. Fixed Yarn+MR client code to behave saner with completed
  945. jobs. (Devaraj K via vinodkv)
  946. MAPREDUCE-3030. Fixed a bug in NodeId.equals() that was causing RM to
  947. reject all NMs. (Devaraj K via vinodkv)
  948. MAPREDUCE-3042. Fixed default ResourceTracker address. (Chris Riccomini
  949. via acmurthy)
  950. MAPREDUCE-3038. job history server not starting because conf() missing
  951. HsController (Jeffrey Naisbitt via mahadev)
  952. MAPREDUCE-3004. Fix ReduceTask to not assume 'local' mode in YARN. (Hitesh
  953. Shah via acmurthy)
  954. MAPREDUCE-3017. The Web UI shows FINISHED for killed/successful/failed jobs.
  955. (mahadev)
  956. MAPREDUCE-3040. Fixed extra copy of Configuration in
  957. YarnClientProtocolProvider and ensured MiniMRYarnCluster sets JobHistory
  958. configuration for tests. (acmurthy)
  959. MAPREDUCE-3018. Fixed -file option for streaming. (mahadev via acmurthy)
  960. MAPREDUCE-3036. Fixed metrics for reserved resources in CS. (Robert Evans
  961. via acmurthy)
  962. MAPREDUCE-2998. Fixed a bug in TaskAttemptImpl which caused it to fork
  963. bin/mapred too many times. (vinodkv via acmurthy)
  964. MAPREDUCE-3023. Fixed clients to display queue state correctly. (Ravi
  965. Prakash via acmurthy)
  966. MAPREDUCE-2970. Fixed NPEs in corner cases with different configurations
  967. for mapreduce.framework.name. (Venu Gopala Rao via vinodkv)
  968. MAPREDUCE-3062. Fixed default RMAdmin address. (Chris Riccomini
  969. via acmurthy)
  970. MAPREDUCE-3066. Fixed default ResourceTracker address for the NodeManager.
  971. (Chris Riccomini via acmurthy)
  972. MAPREDUCE-3044. Pipes jobs stuck without making progress. (mahadev)
  973. MAPREDUCE-2754. Fixed MR AM stdout, stderr and syslog to redirect to
  974. correct log-files. (Ravi Teja Ch N V via vinodkv)
  975. MAPREDUCE-3073. Fixed build issues in MR1. (mahadev via acmurthy)
  976. MAPREDUCE-2691. Increase threadpool size for launching containers in
  977. MapReduce ApplicationMaster. (vinodkv via acmurthy)
  978. MAPREDUCE-2990. Fixed display of NodeHealthStatus. (Subroto Sanyal via
  979. acmurthy)
  980. MAPREDUCE-3053. Better diagnostic message for unknown methods in ProtoBuf
  981. RPCs. (vinodkv via acmurthy)
  982. MAPREDUCE-2952. Fixed ResourceManager/MR-client to consume diagnostics
  983. for AM failures in a couple of corner cases. (Arun C Murthy via vinodkv)
  984. MAPREDUCE-3064. 27 unit test failures with Invalid
  985. "mapreduce.jobtracker.address" configuration value for
  986. JobTracker: "local" (Venu Gopala Rao via mahadev)
  987. MAPREDUCE-3090. Fix MR AM to use ApplicationAttemptId rather than
  988. (ApplicationId, startCount) consistently. (acmurthy)
  989. MAPREDUCE-2646. Fixed AMRMProtocol to return containers based on
  990. priority. (Sharad Agarwal and Arun C Murthy via vinodkv)
  991. MAPREDUCE-3031. Proper handling of killed containers to prevent stuck
  992. containers/AMs on an external kill signal. (Siddharth Seth via vinodkv)
  993. MAPREDUCE-2984. Better error message for displaying completed containers.
  994. (Devaraj K via acmurthy)
  995. MAPREDUCE-3071. app master configuration web UI link under the Job menu
  996. opens up application menu. (thomas graves via mahadev)
  997. MAPREDUCE-3067. Ensure exit-code is set correctly for containers. (Hitesh
  998. Shah via acmurthy)
  999. MAPREDUCE-2999. Fix YARN webapp framework to properly filter servlet
  1000. paths. (Thomas Graves via vinodkv)
  1001. MAPREDUCE-3095. fairscheduler ivy including wrong version for hdfs.
  1002. (John George via mahadev)
  1003. MAPREDUCE-3054. Unable to kill submitted jobs. (mahadev)
  1004. MAPREDUCE-3021. Change base urls for RM web-ui. (Thomas Graves via
  1005. acmurthy)
  1006. MAPREDUCE-3041. Fixed ClientRMProtocol to provide min/max resource
  1007. capabilities along-with new ApplicationId for application submission.
  1008. (Hitesh Shah via acmurthy)
  1009. MAPREDUCE-2843. Fixed the node-table to be completely displayed and making
  1010. node entries on RM UI to be sortable. (Abhijit Suresh Shingate via vinodkv)
  1011. MAPREDUCE-3110. Fixed TestRPC failure. (vinodkv)
  1012. MAPREDUCE-3078. Ensure MapReduce AM reports progress correctly for
  1013. displaying on the RM Web-UI. (vinodkv via acmurthy)
  1014. MAPREDUCE-3114. Fixed invalid ApplicationURL on RM WebUI. (Subroto Sanyal
  1015. via vinodkv)
  1016. MAPREDUCE-2791. Added missing info on 'job -status' output. (Devaraj K via
  1017. acmurthy)
  1018. MAPREDUCE-2996. Add uber-ness information to JobHistory. (Jonathan Eagles
  1019. via acmurthy)
  1020. MAPREDUCE-3050. Add ability to get resource usage information for
  1021. applications and nodes. (Robert Evans via acmurthy)
  1022. MAPREDUCE-3113. Ensure bin/yarn and bin/yarn-daemon.sh identify the root
  1023. of the install properly. (Xie Xianshan via acmurthy)
  1024. MAPREDUCE-3137. Fix broken merge of MAPREDUCE-2179. (Hitesh Shah via
  1025. acmurthy)
  1026. MAPREDUCE-2792. Replace usage of node ip-addresses with hostnames.
  1027. (vinodkv via acmurthy)
  1028. MAPREDUCE-3112. Fixed recursive sourcing of HADOOP_OPTS environment
  1029. variable. (Eric Yang)
  1030. MAPREDUCE-3056. Changed the default staging directory to not include
  1031. user.name to prevent issues with non-secure mode. (Devaraj K via vinodkv)
  1032. MAPREDUCE-2913. Fixed TestMRJobs.testFailingMapper to assert the correct
  1033. TaskCompletionEventStatus. (Jonathan Eagles via vinodkv)
  1034. MAPREDUCE-2794. [MR-279] Incorrect metrics value for AvailableGB per
  1035. queue per user. (John George via mahadev)
  1036. MAPREDUCE-2783. Fixing RM web-UI to show no tracking-URL when AM
  1037. crashes. (Eric Payne via vinodkv)
  1038. MAPREDUCE-3141. Fix the broken MRAppMaster to work over YARN in security
  1039. mode.(vinodkv)
  1040. MAPREDUCE-2751. Modified NodeManager to stop leaving around local files
  1041. after application finishes. (Siddharth Seth via vinodkv)
  1042. MAPREDUCE-3033. Ensure Master interface pays attention to classic v/s yarn
  1043. frameworks. (Hitesh Shah via acmurthy)
  1044. MAPREDUCE-2802. Ensure JobHistory filenames have jobId. (Jonathan Eagles
  1045. via acmurthy)
  1046. MAPREDUCE-2876. Use a different config for ContainerAllocationExpirer.
  1047. (Anupam Seth via acmurthy)
  1048. MAPREDUCE-3153. Fix TestFileOutputCommitter which was broken by
  1049. MAPREDUCE-2702. (mahadev via acmurthy)
  1050. MAPREDUCE-3123. Fix NM to quote symlink names to escape special
  1051. characters. (Hitesh Shah via acmurthy)
  1052. MAPREDUCE-3154. Fix JobSubmitter to check for output specs before copying
  1053. job submission files to fail fast. (Abhijit Suresh Shingate via acmurthy)
  1054. MAPREDUCE-3158. Fix test failures in MRv1 due to default framework being
  1055. set to yarn. (Hitesh Shah via acmurthy)
  1056. MAPREDUCE-3167. container-executor is not being packaged with the assembly
  1057. target. (mahadev)
  1058. MAPREDUCE-3020. Fixed TaskAttemptImpl to log the correct node-address for
  1059. a finished Reduce task. (Chackaravarthy via vinodkv)
  1060. MAPREDUCE-2668. Fixed AuxServices to send a signal on application-finish
  1061. to all the services. (Thomas Graves via vinodkv)
  1062. MAPREDUCE-3126. Fixed a corner case in CapacityScheduler where headroom
  1063. wasn't updated on changes to cluster size. (acmurthy)
  1064. MAPREDUCE-3140. Fixed the invalid JobHistory URL for failed
  1065. applications. (Subroto Sanyal via vinodkv)
  1066. MAPREDUCE-3125. Modified TaskImpl to consider only non-failed, non-killed
  1067. task-attempts for obtaining task's progress. (Hitesh Shah via vinodkv)
  1068. MAPREDUCE-2666. Retrieve shuffle port number from JobHistory on MR AM
  1069. restart. (Jonathan Eagles via acmurthy)
  1070. MAPREDUCE-2789. Complete schedulingInfo on CLI. (Eric Payne via acmurthy)
  1071. MAPREDUCE-3170. Fixed job output commit for deep hierarchies. (Hitesh Shah
  1072. via acmurthy)
  1073. MAPREDUCE-3124. Fixed location of native libs i.e. libhadoop.so for
  1074. containers. (John George via acmurthy)
  1075. MAPREDUCE-3057. Job History Server goes of OutOfMemory with 1200 Jobs
  1076. and Heap Size set to 10 GB. (Eric Payne via mahadev)
  1077. MAPREDUCE-2840. mr279 TestUberAM.testSleepJob test fails. (jonathan eagles
  1078. via mahadev)
  1079. MAPREDUCE-3190. Ensure bin/yarn fails early with a clear error message
  1080. when HADOOP_COMMON_HOME or HADOOP_HDFS_HOME are not set. (todd & acmurthy
  1081. via acmurthy)
  1082. MAPREDUCE-3189. Add link decoration back to MR2's CSS. (Todd Lipcon via
  1083. mahadev)
  1084. MAPREDUCE-3127. Changed default value of yarn.resourcemanager.acl.enable
  1085. to true and added some more documentation. (acmurthy)
  1086. MAPREDUCE-3032. Fixed TaskAttemptImpl so that JobHistory can have error
  1087. information about failed tasks. (Devaraj K via vinodkv)
  1088. MAPREDUCE-3196. TestLinuxContainerExecutorWithMocks fails on Mac OSX.
  1089. (Arun Murthy via mahadev)
  1090. MAPREDUCE-3197. TestMRClientService failing on building clean checkout of
  1091. branch 0.23 (mahadev)
  1092. MAPREDUCE-2762. Cleanup MR staging directory on completion. (mahadev via
  1093. acmurthy)
  1094. MAPREDUCE-3165. Ensure logging options are set correctly for MR AM and
  1095. tasks. (todd via acmurthy)
  1096. MAPREDUCE-3203. Fix some javac warnings in MRAppMaster. (mahadev)
  1097. MAPREDUCE-3162. Separated application-init and container-init event types
  1098. in NodeManager's Application state machine. (Todd Lipcon via vinodkv)
  1099. MAPREDUCE-3176. Fixed ant mapreduce tests that are timing out because
  1100. of wrong framework name. (Hitesh Shah via vinodkv)
  1101. MAPREDUCE-3181. Fixed MapReduce runtime to load yarn-default.xml and
  1102. yarn-site.xml. (acmurthy)
  1103. MAPREDUCE-2788. Normalize resource requests in FifoScheduler
  1104. appropriately. (Ahmed Radwan via acmurthy)
  1105. MAPREDUCE-2693. Fix NPE in job-blacklisting. (Hitesh Shah via acmurthy)
  1106. MAPREDUCE-3208. Fix NPE task/container log appenders. (liangzhwa via
  1107. acmurthy)
  1108. MAPREDUCE-3212. Fix usage/help message for bin/yarn. (Bhallamudi Venkata
  1109. Siva Kamesh via acmurthy)
  1110. MAPREDUCE-3179. Ensure failed tests exit with right error code. (Jonathan
  1111. Eagles via acmurthy)
  1112. MAPREDUCE-3188. Ensure correct shutdown in services. (todd via acmurthy)
  1113. MAPREDUCE-3226. Fix shutdown of fetcher threads. (vinodkv via acmurthy)
  1114. MAPREDUCE-3070. Fix NodeManager to use ephemeral ports by default.
  1115. (Devaraj K via acmurthy)
  1116. MAPREDUCE-3242. Trunk compilation broken with bad interaction from
  1117. MAPREDUCE-3070 and MAPREDUCE-3239. (mahadev)
  1118. MAPREDUCE-3058. Fixed MR YarnChild to report failure when task throws an
  1119. error and thus prevent a hanging task and job. (vinodkv)
  1120. MAPREDUCE-3087. Fixed the mapreduce classpath to correctly include the
  1121. generated-classpath file needed for tests. (Ravi Prakash via vinodkv)
  1122. MAPREDUCE-3233. Fixed a bug in MR Job so as to be able to restart the
  1123. application on AM crash. (Mahadev Konar via vinodkv)
  1124. MAPREDUCE-3028. Added job-end notification support. (Ravi Prakash via
  1125. acmurthy)
  1126. MAPREDUCE-3249. Ensure shuffle-port is correctly used duringMR AM recovery.
  1127. (vinodkv via acmurthy)
  1128. MAPREDUCE-3252. Fix map tasks to not rewrite data an extra time when
  1129. map output fits in spill buffer. (todd)
  1130. MAPREDUCE-3159. Ensure DefaultContainerExecutor doesn't delete application
  1131. directories during app-init. (todd via acmurthy)
  1132. MAPREDUCE-2746. Yarn servers can't communicate with each other with
  1133. hadoop.security.authorization set to true (acmurthy via mahadev)
  1134. MAPREDUCE-2821. Added missing fields (resourcePerMap & resourcePerReduce)
  1135. to JobSummary logs. (mahadev via acmurthy)
  1136. MAPREDUCE-3253. Fixed ContextFactory to clone JobContext correctly.
  1137. (acmurthy)
  1138. MAPREDUCE-3263. Fixed the MAPREDUCE-3028 commit which broke MR1. (Hitesh
  1139. Shah via acmurthy)
  1140. MAPREDUCE-3269. Fixed log4j properties to correctly set logging options
  1141. for JobHistoryServer vis-a-vis JobSummary logs. (mahadev via acmurthy)
  1142. MAPREDUCE-3250. When AM restarts, client keeps reconnecting to the new AM
  1143. and prints a lots of logs. (vinodkv via mahadev)
  1144. MAPREDUCE-3254. Fixed streaming to set the job.jar by using the right
  1145. JobConf ctor. (acmurthy)
  1146. MAPREDUCE-3264. mapreduce.job.user.name needs to be set automatically.
  1147. (acmurthy via mahadev)
  1148. MAPREDUCE-3175. Add authorization to admin web-pages such as /stacks, /jmx
  1149. etc. (Jonathan Eagles via acmurthy)
  1150. MAPREDUCE-3257. Added authorization checks for the protocol between
  1151. ResourceManager and ApplicationMaster. (vinodkv via acmurthy)
  1152. MAPREDUCE-3259. Added java.library.path of NodeManager to
  1153. ContainerLocalizer in LinuxContainerExecutor. (Kihwal Lee via acmurthy)
  1154. MAPREDUCE-3279. Fixed TestJobHistoryParsing which assumed user name to be
  1155. mapred all the time. (Siddharth Seth via acmurthy)
  1156. MAPREDUCE-3240. Fixed NodeManager to be able to forcefully cleanup its
  1157. containers (process-trees) irrespective of whether the container succeeded,
  1158. or killed. Contributed by Hitesh Shah.
  1159. MAPREDUCE-3281. Fixed a bug in TestLinuxContainerExecutorWithMocks. (vinodkv)
  1160. MAPREDUCE-3228. Fixed MR AM to timeout RPCs to bad NodeManagers. (vinodkv
  1161. via acmurthy)
  1162. MAPREDUCE-3284. Moved JobQueueClient to hadoop-mapreduce-client-core.
  1163. (acmurthy)
  1164. MAPREDUCE-3282. bin/mapred job -list throws exception. (acmurthy via
  1165. mahadev)
  1166. MAPREDUCE-3186. User jobs are getting hanged if the Resource manager
  1167. process goes down and comes up while job is getting executed.
  1168. (Eric Payne via mahadev)
  1169. MAPREDUCE-3285. Tests on branch-0.23 failing (Siddharth Seth via mahadev)
  1170. MAPREDUCE-3258. Fixed AM & JobHistory web-ui to display counters properly.
  1171. (Siddharth Seth via acmurthy)
  1172. MAPREDUCE-3290. Fixed a NPE in ClientRMService. (acmurthy)
  1173. MAPREDUCE-3185. RM Web UI does not sort the columns in some cases.
  1174. (Jonathan Eagles via mahadev)
  1175. MAPREDUCE-3292. In secure mode job submission fails with Provider
  1176. org.apache.hadoop.mapreduce.security.token.JobTokenIndentifier$Renewer
  1177. not found. (mahadev)
  1178. MAPREDUCE-3296. Fixed the remaining nine FindBugs warnings. (vinodkv)
  1179. MAPREDUCE-2775. Fixed ResourceManager and NodeManager to force a
  1180. decommissioned node to shutdown. (Devaraj K via vinodkv)
  1181. MAPREDUCE-3304. Fixed intermittent test failure due to a race in
  1182. TestRMContainerAllocator#testBlackListedNodes. (Ravi Prakash via acmurthy)
  1183. MAPREDUCE-3306. Fixed a bug in NodeManager ApplicationImpl that was causing
  1184. NodeManager to crash. (vinodkv)
  1185. MAPREDUCE-3295. TestAMAuthorization failing on branch 0.23. (vinodkv via mahadev)
  1186. MAPREDUCE-3183. hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
  1187. missing license header. (Hitesh Shah via tucu).
  1188. MAPREDUCE-3003. Publish MR JARs to Maven snapshot repository. (tucu)
  1189. MAPREDUCE-3199. Fixed pom files to include correct log4j configuration for
  1190. tests. (vinodkv)
  1191. MAPREDUCE-3204. mvn site:site fails on MapReduce. (tucu)
  1192. MAPREDUCE-3248. Fixed log4j properties. (vinodkv via acmurthy)
  1193. MAPREDUCE-3256. Added authorization checks for the protocol between
  1194. NodeManager and ApplicationMaster. (vinodkv via acmurthy)
  1195. MAPREDUCE-3274. Fixed a race condition in MRAppMaster that was causing a
  1196. task-scheduling deadlock. (Robert Joseph Evans via vinodkv)
  1197. MAPREDUCE-3171 merge from trunk reverted changes from MAPREDUCE-2747 MAPREDUCE-3240.
  1198. MAPREDUCE-3313. Fixed initialization of ClusterMetrics which was failing
  1199. TestResourceTrackerService sometimes. (Hitesh Shah via vinodkv)
  1200. MAPREDUCE-2766. Fixed NM to set secure permissions for files and directories
  1201. in distributed-cache. (Hitesh Shah via vinodkv)
  1202. MAPREDUCE-2696. Fixed NodeManager to cleanup logs in a thread when logs'
  1203. aggregation is not enabled. (Siddharth Seth via vinodkv)
  1204. MAPREDUCE-3262. Fixed Container's state-machine in NodeManager to handle
  1205. a couple of events in failure states correctly. (Hitesh Shah and Siddharth
  1206. Seth via vinodkv)
  1207. MAPREDUCE-3035. Fixed MR JobHistory to ensure rack information is present.
  1208. (chakravarthy via acmurthy)
  1209. MAPREDUCE-3321. Disabled a few MR tests for 0.23. (Hitesh Shah via
  1210. acmurthy)
  1211. MAPREDUCE-3220. Fixed TestCombineOutputCollector. (Devaraj K via acmurthy)
  1212. MAPREDUCE-3103. Implement Job ACLs for MRAppMaster.
  1213. (mahadev)
  1214. MAPREDUCE-3241. [Rumen] Fix Rumen to ignore the AMStartedEvent. (amarrk)
  1215. MAPREDUCE-3166. [Rumen] Make Rumen use job history api instead of relying
  1216. on current history file name format. (Ravi Gummadi via amarrk)
  1217. MAPREDUCE-3157. [Rumen] Fix TraceBuilder to handle 0.20 history file
  1218. names also. (Ravi Gummadi via amarrk)
  1219. MAPREDUCE-3081. Fix vaidya startup script. (gkesavan via suhas).
  1220. MAPREDUCE-2764. Fix renewal of dfs delegation tokens. (Owen via jitendra)
  1221. MAPREDUCE-3192. Fix Javadoc warning in JobClient.java and Cluster.java.
  1222. (jitendra)
  1223. MAPREDUCE-3237. Move LocalJobRunner to hadoop-mapreduce-client-core.
  1224. (tomwhite via acmurthy)
  1225. MAPREDUCE-3316. Rebooted link is not working properly.
  1226. (Bhallamudi Venkata Siva Kamesh via mahadev)
  1227. MAPREDUCE-3317. Rumen TraceBuilder is emiting null as hostname.
  1228. (Ravi Gummadi via mahadev)
  1229. MAPREDUCE-3332. contrib/raid compile breaks due to changes in hdfs/protocol/datatransfer/
  1230. Sender#writeBlock related to checksum handling (Hitesh Shah via mahadev)
  1231. MAPREDUCE-3337. Added missing license headers. (acmurthy)
  1232. Release 0.22.0 - Unreleased
  1233. INCOMPATIBLE CHANGES
  1234. MAPREDUCE-1866. Removes deprecated class
  1235. org.apache.hadoop.streaming.UTF8ByteArrayUtils. (amareshwari)
  1236. MAPREDUCE-1664. Changes the behaviour of the combination of job-acls
  1237. when they function together with queue-acls. (Ravi Gummadi via vinodkv)
  1238. MAPREDUCE-2994. Fixed a bug in ApplicationID parsing that affects RM
  1239. UI. (Devaraj K via vinodkv)
  1240. MAPREDUCE-1788. o.a.h.mapreduce.Job shouldn't make a copy of the JobConf.
  1241. (Arun Murthy via mahadev)
  1242. NEW FEATURES
  1243. MAPREDUCE-1804. Stress-test tool for HDFS introduced in HDFS-708.
  1244. (Joshua Harlow via shv)
  1245. MAPREDUCE-220. Collect cpu and memory statistics per task. (Scott Chen via
  1246. acmurthy)
  1247. MAPREDUCE-1970. Reed-Solomon code implementation for HDFS RAID.
  1248. (Scott Chen via dhruba)
  1249. MAPREDUCE-2169. Integrated Reed-Solomon code with RaidNode. (Ramkumar
  1250. Vadali via schen)
  1251. MAPREDUCE-2936. Contrib Raid compilation broken after HDFS-1620. (vinodkv)
  1252. IMPROVEMENTS
  1253. MAPREDUCE-2141. Add an "extra data" field to Task for use by Mesos. (matei)
  1254. MAPREDUCE-2140. Regenerate fair scheduler design doc PDF. (matei)
  1255. MAPREDUCE-1546. Redirect all job pages to corresponding history page
  1256. if job is not in JT memory. (Scott Chen via sharad)
  1257. MAPREDUCE-1092. Enable assertions for unit tests. (Eli Collins via
  1258. cdouglas)
  1259. MAPREDUCE-1680. Add a metric recording JobTracker heartbeats processed.
  1260. (Dick King via cdouglas)
  1261. MAPREDUCE-1761. FairScheduler allows separate configuration of node
  1262. and rack locality wait time (Scott Chen via dhruba)
  1263. MAPREDUCE-1539. authorization checks for inter-server protocol
  1264. (based on HADOOP-6600) (Boris Shkolnik via shv)
  1265. MAPREDUCE-1798. Names the configuration keys for the Kerberos
  1266. principals better. (Boris Shkolnik via ddas)
  1267. MAPREDUCE-1773. streaming doesn't support jobclient.output.filter.
  1268. (Amareshwari Sriramadasu via vinodkv)
  1269. MAPREDUCE-1785. Add streaming config option for not emitting the key.
  1270. (Eli Collins via sharad)
  1271. MAPREDUCE-572. If #link is missing from uri format of -cacheArchive
  1272. then streaming does not throw error. (Amareshwari Sriramadasu via
  1273. vinodkv)
  1274. MAPREDUCE-1545. Add timestamps for first task type launched in job summary.
  1275. (Luke Lu via cdouglas)
  1276. MAPREDUCE-1543. Add an audit log for authentication events. (Amar Kamat and
  1277. Luke Lu via cdouglas)
  1278. MAPREDUCE-1762. Add ability to set values of task counters. (Scott Chen via
  1279. cdouglas)
  1280. MAPREDUCE-1533. Reduce overhead of logging and string manipulation during
  1281. heartbeat processing. (Amar Kamat and Dick King via cdouglas)
  1282. MAPREDUCE-1516. JobTracker issues delegation tokens only if the user's
  1283. authentication is Kerberos. (Jitendra Pandey via ddas)
  1284. MAPREDUCE-647. Update distcp forrest documentation to reflect the changes
  1285. of HADOOP-5472, MAPREDUCE-642 and HADOOP-5620. (Rodrigo Schmidt via
  1286. szetszwo)
  1287. MAPREDUCE-1851. Documents configuration parameters in streaming.
  1288. (amareshwari)
  1289. MAPREDUCE-1868. Add a read and connection timeout to JobClient while
  1290. pulling tasklogs. (Krishna Ramachandran via acmurthy)
  1291. MAPREDUCE-1778. Ensure failure to setup CompletedJobStatusStore is not
  1292. silently ignored by the JobTracker. (Krishna Ramachandran via acmurthy)
  1293. MAPREDUCE-1850. Includes job submit host information (name and ip) in
  1294. jobconf and jobdetails display (Krishna Ramachandran via amareshwari)
  1295. MAPREDUCE-1893. Slive with multiple reducers. (shv)
  1296. MAPREDUCE-1248. Fixes redudant memory copying in StreamKeyValUtil.
  1297. (Ruibang He via amareshwari)
  1298. MAPREDUCE-1840. Enhancements to Gridmix benchmark simulating user
  1299. diversity, queue replay, and task duration for JobTracker load testing.
  1300. Also includes compatibility with security enhancements, and scalability
  1301. improvements. (Amar Kamat, Rahul Singh, Hong Tang, and cdouglas)
  1302. MAPREDUCE-1848. Put number of speculative, data local, rack local
  1303. tasks in JobTracker metrics. (Scott Chen via dhruba)
  1304. MAPREDUCE-1935. Makes the Distcp to work in a secure environment.
  1305. (Boris Shkolnik via ddas)
  1306. MAPREDUCE-1945. The MapReduce component for HADOOP-6632.
  1307. (Kan Zhang & Jitendra Pandey via ddas)
  1308. MAPREDUCE-1936. Modify Gridmix3 to support more tunable parameters for
  1309. stress submission and sleep jobs. (Hong Tang via cdouglas)
  1310. MAPREDUCE-1733. Makes pipes applications secure. (Jitendra Pandey via ddas)
  1311. MAPREDUCE-1566. Adds a configuration attribute using which job clients can
  1312. specify a credentials file. The tokens from there will be passed to the job.
  1313. (Jitendra Pandey and Owen O'Malley via ddas)
  1314. MAPREDUCE-1624. Documents the job credentials and associated details to do
  1315. with delegation tokens (on the client side).
  1316. (Jitendra Pandey and Devaraj Das via ddas)
  1317. MAPREDUCE-1834. TestSimulatorDeterministicReplay timesout on trunk.
  1318. (Hong Tang via mahadev)
  1319. MAPREDUCE-1993. Fixes test failure
  1320. TestTrackerDistributedCacheManagerWithLinuxTaskController. (Devaraj Das
  1321. via amareshwari)
  1322. MAPREDUCE-1523. Making Mumak work with Capacity-Scheduler (Anirban Das
  1323. via mahadev)
  1324. MAPREDUCE-1920. Enables completed jobstatus store by default. (Tom White
  1325. via amareshwari)
  1326. MAPREDUCE-1881. Improve TaskTrackerInstrumentation to enable collection of
  1327. advanced metrics. (Matei Zaharia via acmurthy)
  1328. MAPREDUCE-1548. Hadoop archives preserve times and other properties from
  1329. original files. (Rodrigo Schmidt via dhruba)
  1330. MAPREDUCE-1517. Supports streaming job to run in the background. (Bochun Bai
  1331. via amareshwari)
  1332. MAPREDUCE-1819. RaidNode is now smarter in submitting Raid jobs. (Ramkumar
  1333. Vadali via schen)
  1334. MAPREDUCE-2132. A command line option in RaidShell to fix blocks using raid
  1335. MAPREDUCE-2147. Remove redundant lines in JobInProgress ctor.
  1336. (Harsh J Chouraria via cutting)
  1337. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  1338. latest test-patch.sh script (gkesavan)
  1339. MAPREDUCE-1818. RaidNode can specify scheduling parameters. (Ramkumar
  1340. Vadali via schen)
  1341. MAPREDUCE-2051. Contribute a fair scheduler preemption system test.
  1342. (Todd Lipcon via tomwhite)
  1343. MAPREDUCE-1892. RaidNode can allow layered policies more efficiently.
  1344. (Ramkumar Vadali via schen)
  1345. MAPREDUCE-1592. Generate Eclipse's .classpath file from Ivy config.
  1346. (tomwhite via nigel)
  1347. MAPREDUCE-2073. TestTrackerDistributedCacheManager should be up-front
  1348. about requirements on build environment. (Todd Lipcon via tomwhite)
  1349. MAPREDUCE-2093. Herriot JT and TT clients should vend statistics. (cos)
  1350. MAPREDUCE-2167. Faster directory traversal for raid node. (Ramkumar Vadali
  1351. via schen)
  1352. MAPREDUCE-1931. Gridmix forrest documentation . (Ranjit Mathew via vinodkv).
  1353. MAPREDUCE-2184. Port DistRaid.java to new mapreduce API. (Ramkumar Vadali
  1354. via schen)
  1355. MAPREDUCE-1878. Add MRUnit documentation. (Aaron Kimball via tomwhite)
  1356. MAPREDUCE-2180. Add coverage of fair scheduler servlet to system test (todd)
  1357. MAPREDUCE-2250. Fix logging in raid code. (Ramkumar Vadali via schen)
  1358. MAPREDUCE-2260. Remove auto-generated native build files. (rvs via eli)
  1359. MAPREDUCE-2314. configure files that are generated as part of the released
  1360. tarball need to have executable bit set (rvs via cos)
  1361. MAPREDUCE-1159. Limit Job name in web UI to be 80 char long. (Harsh J
  1362. Chouraria via szetszwo)
  1363. MAPREDUCE-2337. Remove dependence of public MapReduce API on classes in
  1364. server package. (tomwhite)
  1365. MAPREDUCE-2383. Improve documentation of DistributedCache methods (Harsh J
  1366. Chouraria via todd)
  1367. MAPREDUCE-2222. Ivy resolve force mode should be turned off by default.
  1368. (Luke Lu via tomwhite)
  1369. MAPREDUCE-2103. task-controller shouldn't require o-r permissions.
  1370. (todd via eli)
  1371. MAPREDUCE-2505. Explain how to use ACLs in the fair scheduler.
  1372. (matei via eli)
  1373. MAPREDUCE-3138. Add a utility to help applications bridge changes in
  1374. Context Objects APIs due to MAPREDUCE-954. (omalley via acmurthy)
  1375. OPTIMIZATIONS
  1376. MAPREDUCE-1354. Enhancements to JobTracker for better performance and
  1377. scalability. (Arun C. Murthy & Richard King via acmurthy)
  1378. MAPREDUCE-1829. JobInProgress.findSpeculativeTask should use min() to
  1379. find the candidate instead of sort(). (Scott Chen via vinodkv)
  1380. BUG FIXES
  1381. MAPREDUCE-1845. FairScheduler.tasksToPreempt() can return negative number.
  1382. (Scott Chen via matei)
  1383. MAPREDUCE-1707. TaskRunner can get NPE in getting ugi from TaskTracker.
  1384. (Vinod Kumar Vavilapalli)
  1385. MAPREDUCE-1532. Ensures that delegation tokens is obtained as the
  1386. actual user when the proxy-user is used for submitting jobs. Also
  1387. refactors the DelegationTokenToRenew class. (ddas)
  1388. MAPREDUCE-1558. Fixes MRAdmin to look up the principal of the
  1389. JobTracker and use that in the RefreshUserToGroupsMapping protocol and
  1390. RefreshAuthorizationPolicyProtocol. (Boris Shkolnik via ddas)
  1391. MAPREDUCE-1662. Remove unused methods from TaskRunner. (Amareshwari
  1392. Sriramadasu via cdouglas)
  1393. MAPREDUCE-1617. Use IPv4 stack for unit tests. (Amar Kamat and Luke Lu via
  1394. cdouglas)
  1395. MAPREDUCE-1599. Fixes MRBench so that it reuses tokens across jobs
  1396. correctly. (Jitendra Nath Pandey via ddas)
  1397. MAPREDUCE-1836. Refresh for proxy superuser config (mr part for HDFS-1096).
  1398. (Boris Shkolnik via shv)
  1399. MAPREDUCE-1505. Create RPC client on job submission, not in cstr of Job
  1400. instance. (Dick King via cdouglas)
  1401. MAPREDUCE-1813. NPE in PipeMapred.MRErrorThread. (Ravi Gummadi via vinodkv)
  1402. MAPREDUCE-1225. Fixes DistributedCache to check if the file is fresh or not,
  1403. for the first localization also. (Zhong Wang via amareshwari)
  1404. MAPREDUCE-1559. Fixes the token renewer to use the JobTracker's
  1405. credentials for talking to the NameNode. (ddas)
  1406. MAPREDUCE-1492. Delete obsolete har files used on the parity files
  1407. of hdfs raid. (Rodrigo Schmidt via dhruba)
  1408. MAPREDUCE-1857. Removes unused configuration parameters in streaming.
  1409. (amareshwari)
  1410. MAPREDUCE-1887. MRAsyncDiskService now properly absolutizes volume root
  1411. paths. (Aaron Kimball via zshao)
  1412. MAPREDUCE-1863. Fix NPE in Rumen when processing null CDF for failed task
  1413. attempts. (Amar Kamat via cdouglas)
  1414. MAPREDUCE-1864. Removes uninitialized/unused variables in
  1415. org.apache.hadoop.streaming.PipeMapRed. (amareshwari)
  1416. MAPREDUCE-1888. Fixes Streaming to override output key and value types,
  1417. only if mapper/reducer is a command. (Ravi Gummadi via amareshwari)
  1418. MAPREDUCE-577. Fixes duplicate records in StreamXmlRecordReader.
  1419. (Ravi Gummadi via amareshwari)
  1420. MAPREDUCE-1894. Fixed a bug in DistributedRaidFileSystem.readFully()
  1421. that was causing it to loop infinitely. (Ramkumar Vadali via dhruba)
  1422. MAPREDUCE-1838. Reduce the time needed for raiding a bunch of files
  1423. by randomly assigning files to map tasks. (Ramkumar Vadali via dhruba)
  1424. MAPREDUCE-1820. Fix InputSampler to clone sampled keys. (Alex Kozlov via
  1425. cdouglas)
  1426. MAPREDUCE-1528. Incorporates the changes to the credentials API done in
  1427. HADOOP-6845. Also, introduces Credentials in JobConf, and in JobContext.
  1428. (Jitendra Pandey and Arun Murthy via ddas)
  1429. MAPREDUCE-1865. Rumen should also support jobhistory files generated using
  1430. trunk. (Amar Kamat via amareshwari)
  1431. MAPREDUCE-1621. Fixes NPE in TextOutputReader.getLastOutput if it has never
  1432. read any output. (amareshwari)
  1433. MAPREDUCE-1911. Fixes errors in -info message in streaming. (amareshwari)
  1434. MAPREDUCE-1772. Corrects errors in streaming documentation in forrest.
  1435. (amareshwari)
  1436. MAPREDUCE-1925. Fix failing TestRumenJobTraces. (Ravi Gummadi via cdouglas)
  1437. MAPREDUCE-1718. Fixes a bug in the construction of jobconf key for the
  1438. mapping that the tasks use at runtime for looking up delegation tokens.
  1439. (Boris Shkolnik via ddas)
  1440. MAPREDUCE-1701. Fixes a problem to do with exception handling in
  1441. delegation-token renewals. (Boris Shkolnik via ddas)
  1442. MAPREDUCE-1686. Fixes StreamUtil.goodClassOrNull to find classes without
  1443. package names. (Paul Burkhardt via amareshwari)
  1444. MAPREDUCE-1288. Fixes TrackerDistributedCacheManager to take into account
  1445. the owner of the localized file in the mapping from cache URIs to
  1446. CacheStatus objects. (ddas)
  1447. MAPREDUCE-1982. Fixes Rumen's TraceBuilder to extract job name from either
  1448. of configuration properties "mapreduce.job.name" and "mapred.job.name".
  1449. (Ravi Gummadi via amareshwari)
  1450. MAPREDUCE-1958. The MapReduce part corresponding to the HADOOP-6873.
  1451. (Boris Shkolnik & Owen O'Malley via ddas)
  1452. MAPREDUCE-1900. TaskTracker and JobTracker closes FileSystems, opened on
  1453. behalf of users that it no longer requires. (Kan Zhang and ddas via ddas)
  1454. MAPREDUCE-1992. Fixes a problem to do with bringing up the JobTracker in
  1455. unsecure mode. (Kan Zhang via ddas)
  1456. MAPREDUCE-1999. Fixes ClientProtocol to use the correct
  1457. DelegationTokenSelector. (Jitendra Pandey via ddas)
  1458. MAPREDUCE-1780. AccessControlList.toString() is used for serialization of
  1459. ACL in JobStatus.java. (Ravi Gummadi via vinodkv)
  1460. MAPREDUCE-1961. Fix ConcurrentModificationException in Gridmix during
  1461. shutdown. (Hong Tang via cdouglas)
  1462. MAPREDUCE-2000. Fix parsing of JobHistory lines in Rumen when quotes are
  1463. escaped. (Hong Tang via cdouglas)
  1464. MAPREDUCE-2022. Fixes compilation errors in TestSubmitJob. (amareshwari)
  1465. MAPREDUCE-1670. RAID policies should not scan their own destination path.
  1466. (Ramkumar Vadali via dhruba)
  1467. MAPREDUCE-1668. RaidNode Hars a directory only if all its parity files
  1468. have been created. (Ramkumar Vadali via dhruba)
  1469. MAPREDUCE-2021. Fixes duplicate hostnames in CombineFileInputFormat's
  1470. split locations. (amareshwari)
  1471. MAPREDUCE-1375. Fixes flaky test TestFileArgs. (Todd Lipcon via
  1472. amareshwari)
  1473. MAPREDUCE-2023. TestDFSIO should not stop reading if curSize != bufferSize.
  1474. (Hong Tang via szetszwo)
  1475. MAPREDUCE-2031. Fixes test failures TestTaskLauncher and
  1476. TestTaskTrackerLocalization. (Ravi Gummadi via amareshwari)
  1477. MAPREDUCE-2046. Fixes CombineFileInputFormat to allow splits with size
  1478. less than DFS block size. (dhruba borthakur via amareshwari)
  1479. MAPREDUCE-1975. Fixes unnecessary InterruptedException log in gridmix.
  1480. (Ravi Gummadi via amareshwari)
  1481. MAPREDUCE-1597. Fixes CombineFileInputFormat to work with non-splittable
  1482. files. (amareshwari)
  1483. MAPREDUCE-2032. Fixes TestJobCleanup to cleanup test directory in
  1484. tearDown. (Dick King via amareshwari)
  1485. MAPREDUCE-1979. Fixes "Output directory already exists" error in gridmix
  1486. when gridmix.output.directory is not defined. (Ravi Gummadi via
  1487. amareshwari)
  1488. MAPREDUCE-1918. Adds documentation to Rumen. (Amar Kamat via amareshwari)
  1489. MAPREDUCE-2078. Fixes TraceBuilder to generate traces when a globbed job
  1490. history path is given. (Amar Kamat via amareshwari)
  1491. MAPREDUCE-1989. Fixes error message in gridmix when user resolver is set
  1492. and no user list is given. (Ravi Gummadi via amareshwari)
  1493. MAPREDUCE-2067. Distinct minicluster services (e.g. NN and JT) overwrite
  1494. each other's service policies. (Aaron T. Myers via tomwhite)
  1495. MAPREDUCE-2029. DistributedRaidFileSystem removes itself from FileSystem
  1496. cache when it is closed. (Ramkumar Vadali via dhruba)
  1497. MAPREDUCE-1816. HAR files used for RAID parity-bite have configurable
  1498. partfile size. (Ramkumar Vadali via dhruba)
  1499. MAPREDUCE-2082. Fixes Pipes to create the jobtoken file in the right
  1500. place. (Jitendra Pandey via ddas)
  1501. MAPREDUCE-2095. Fixes Gridmix to run from compressed traces. (Ranjit
  1502. Mathew via amareshwari)
  1503. MAPREDUCE-1908. DistributedRaidFileSystem now handles ChecksumException
  1504. correctly. (Ramkumar Vadali via schen)
  1505. MAPREDUCE-2126. JobQueueJobInProgressListener's javadoc is inconsistent
  1506. with source code. (Jingguo Yao via tomwhite)
  1507. MAPREDUCE-2143. HarFileSystem is able to handle spaces in pathnames.
  1508. (Ramkumar Vadali via dhruba)
  1509. MAPREDUCE-1867. Remove unused methods in
  1510. org.apache.hadoop.streaming.StreamUtil. (amareshwari via tomwhite)
  1511. MAPREDUCE-2146. Raid does not affect access time of a source file.
  1512. (Ramkumar Vadali via dhruba)
  1513. MAPREDUCE-2150. RaidNode periodically fixes corrupt blocks. (Ramkumar Vadali via
  1514. schen)
  1515. MAPREDUCE-2099. RaidNode recreates outdated parity HARs. (Ramkumar Vadali
  1516. via schen)
  1517. MAPREDUCE-2173. Fix race condition in TestBlockFixer that was
  1518. causing intermittent failure (Patrick Kling via dhruba)
  1519. MAPREDUCE-2142. Refactor RaidNode so that the map-reduce component is
  1520. clearly separated out. (Patrick Kling via dhruba)
  1521. MAPREDUCE-2179. Fix RaidBlockSender compilation failure. (Ramkumar Vadali
  1522. via schen)
  1523. MAPREDUCE-2034. TestSubmitJob triggers NPE instead of permissions error.
  1524. (Todd Lipcon via tomwhite)
  1525. MAPREDUCE-2195. New property for local conf directory in
  1526. system-test-mapreduce.xml file. (cos)
  1527. MAPREDUCE-1783. FairScheduler initializes tasks only when the job can be
  1528. run. (Ramkumar Vadali via schen)
  1529. MAPREDUCE-2224. Fix synchronization bugs in JvmManager. (todd)
  1530. MAPREDUCE-714. JobConf.findContainingJar unescapes unnecessarily on linux (todd)
  1531. MAPREDUCE-2096. Secure local filesystem IO from symlink vulnerabilities (todd)
  1532. MAPREDUCE-2234. If Localizer can't create task log directory, it should fail
  1533. on the spot. (todd)
  1534. MAPREDUCE-2219. JobTracker should not try to remove mapred.system.dir
  1535. during startup. (todd)
  1536. MAPREDUCE-2207. Task-cleanup task should not be scheduled on the node that
  1537. the task just failed. (Liyin Liang via schen)
  1538. MAPREDUCE-2084. Remove deprecate annotation for package file. The package
  1539. classes themselves are already deprecated. This removes an Eclipse error.
  1540. (tomwhite via nigel)
  1541. MAPREDUCE-2248. DistributedRaidFileSystem should unraid only the corrupt
  1542. block (Ramkumar Vadali via schen)
  1543. MAPREDUCE-1085. For tasks, "ulimit -v -1" is being run when user doesn't
  1544. specify a ulimit (todd)
  1545. MAPREDUCE-2282. Fix TestMRServerPorts for the changes in
  1546. TestHDFSServerPorts. (shv via szetszwo)
  1547. MAPREDUCE-2238. Fix permissions handling to avoid leaving undeletable
  1548. directories in local dirs. (todd)
  1549. MAPREDUCE-2277. TestCapacitySchedulerWithJobTracker needs to wait for jobs
  1550. to complete before testing status. (todd)
  1551. MAPREDUCE-2253. Servlets should specify content type (todd)
  1552. MAPREDUCE-2283. Add timeout for Raid Tests (Ramkumar Vadali via schen)
  1553. MAPREDUCE-1754. Replace mapred.persmissions.supergroup with an
  1554. acl : mapreduce.cluster.administrators (Amareshwari Sriramadasu via shv)
  1555. MAPREDUCE-2256. FairScheduler fairshare preemption from multiple pools may
  1556. preempt all tasks from one pool causing that pool to go below fairshare.
  1557. (Priyo Mustafi via shv)
  1558. MAPREDUCE-2281. MR part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  1559. MAPREDUCE-2200. TestUmbilicalProtocolWithJobToken is failing without Krb
  1560. evironment: needs to be conditional. (cos)
  1561. MAPREDUCE-2077. Resolve name clash in the deprecated
  1562. o.a.h.util.MemoryCalculatorPlugin (Luke Lu via shv)
  1563. MAPREDUCE-2188. The new API MultithreadedMapper doesn't initialize
  1564. RecordReader. (Owen O'Malley via shv)
  1565. MAPREDUCE-1915. Fix IndexOutOfBoundsException in IndexCache.
  1566. (Priyo Mustafi via shv)
  1567. MAPREDUCE-1974. Fix multiple preemtions of the same task in FairScheduler.
  1568. (Scott Chen via shv)
  1569. MAPREDUCE-2304. Fix TestMRCLI to allow hostname with a hyphen (-).
  1570. (Priyo Mustafi via shv)
  1571. MAPREDUCE-1825. jobqueue_details.jsp and FairSchedulerServelet should not
  1572. call finishedMaps and finishedReduces when job is not initialized.
  1573. (Scott Chen via shv)
  1574. MAPREDUCE-2285. MiniMRCluster does not start after ant test-patch
  1575. (todd)
  1576. MAPREDUCE-2315. javadoc is failing in nightly build (todd)
  1577. MAPREDUCE-2054. Hierarchical queue implementation broke dynamic queue
  1578. addition in Dynamic Scheduler. (Thomas Sandholm via tomwhite)
  1579. MAPREDUCE-2272. Job ACL file should not be executable
  1580. (Harsh J Chouraria via todd)
  1581. MAPREDUCE-2241. ClusterWithLinuxTaskController should accept relative path
  1582. on the command line. (todd)
  1583. MAPREDUCE-2251. Remove unused mapreduce.job.userhistorylocation config.
  1584. (Harsh J Chouraria via todd)
  1585. MAPREDUCE-2284. TestLocalRunner.testMultiMaps times out (todd)
  1586. MAPREDUCE-2336. Tool-related packages should be in the Tool javadoc group.
  1587. (tomwhite)
  1588. MAPREDUCE-2394. JUnit output format doesn't propagate into raid contrib
  1589. build. (todd)
  1590. MAPREDUCE-2392. TaskTracker shutdown in the tests sometimes take 60s.
  1591. (tomwhite)
  1592. MAPREDUCE-2437. SLive uses only part* files to generating the final report.
  1593. (shv)
  1594. MAPREDUCE-2428. start-mapred.sh script fails if HADOOP_HOME is not set.
  1595. (tomwhite via eli)
  1596. MAPREDUCE-2445. Fix TestMiniMRWithDFSWithDistinctUsers to be a valid test.
  1597. (todd)
  1598. MAPREDUCE-2457. Job submission should inject group.name on the JobTracker
  1599. (Alejandro Abdelnur via todd)
  1600. MAPREDUCE-2472. Extra whitespace in mapred.child.java.opts breaks JVM
  1601. initialization. (Aaron T. Myers via todd)
  1602. MAPREDUCE-2222. Ivy resolve force mode should be turned off by default.
  1603. (Luke Lu via tomwhite)
  1604. MAPREDUCE-2486. Incorrect snapshot dependency published in .pom files
  1605. (todd)
  1606. MAPREDUCE-2327. MapTask doesn't need to put username information in
  1607. SpillRecord. (todd via tomwhite)
  1608. MAPREDUCE-2515. MapReduce code references some deprecated options
  1609. (Ari Rabkin via todd)
  1610. MAPREDUCE-2487. ChainReducer uses MAPPER_BY_VALUE instead of
  1611. REDUCER_BY_VALUE. (Devaraj K via todd)
  1612. MAPREDUCE-2185. Fix infinite loop at creating splits using
  1613. CombineFileInputFormat. (Ramkumar Vadali via schen)
  1614. MAPREDUCE-2571. CombineFileInputFormat.getSplits throws a
  1615. java.lang.ArrayStoreException. (Bochun Bai via todd)
  1616. MAPREDUCE-2767. Remove Linux task-controller. (Milind Bhandarkar via shv)
  1617. MAPREDUCE-2991. queueinfo.jsp fails to show queue status for Capacity
  1618. scheduler if queue names contain special symbols. (Priyo Mustafi via shv)
  1619. MAPREDUCE-2531. Fixed jobcontrol to downgrade JobID. (Robert Evans via
  1620. acmurthy)
  1621. Release 0.21.1 - Unreleased
  1622. NEW FEATURES
  1623. MAPREDUCE-2040. Forrest Documentation for Dynamic Priority Scheduler.
  1624. (Thomas Sandholm via tomwhite)
  1625. BUG FIXES
  1626. MAPREDUCE-1897. trunk build broken on compile-mapred-test (cos)
  1627. MAPREDUCE-1280. Update Eclipse plugin to the new eclipse.jdt API.
  1628. (Alex Kozlov via szetszwo)
  1629. MAPREDUCE-1984. herriot TestCluster fails because exclusion is not there
  1630. (Balaji Rajagopalan via cos)
  1631. MAPREDUCE-2090. Clover build doesn't generate per-test coverage. (cos)
  1632. MAPREDUCE-2134. ant binary-system is broken in mapreduce project. (cos)
  1633. MAPREDUCE-1905. Fixes Context.setStatus() and progress() apis.
  1634. (amareshwari)
  1635. MAPREDUCE-1809. Ant build changes for Streaming system tests in contrib
  1636. projects. (Vinay Kumar Thota via amareshwari)
  1637. MAPREDUCE-2223. TestMRCLI might fail on Ubuntu with default /etc/hosts
  1638. (cos)
  1639. MAPREDUCE-2228. Remove java5 dependencies from build. (cos)
  1640. MAPREDUCE-1929. Allow artifacts to be published to the staging Apache Nexus
  1641. Maven Repository. (tomwhite)
  1642. MAPREDUCE-2317. Fix a NPE in HadoopArchives. (Devaraj K via szetszwo)
  1643. MAPREDUCE-2127. mapreduce trunk builds are filing on hudson.
  1644. (Bruno Mahé via eli)
  1645. MAPREDUCE-2779. JobSplitWriter.java can't handle large job.split file.
  1646. (Ming Ma via shv)
  1647. Release 0.21.0 - 2010-08-13
  1648. INCOMPATIBLE CHANGES
  1649. MAPREDUCE-516. Fix the starvation problem in the Capacity Scheduler
  1650. when running High RAM Jobs. (Arun Murthy via yhemanth)
  1651. MAPREDUCE-358. Change org.apache.hadoop.examples. AggregateWordCount
  1652. and org.apache.hadoop.examples.AggregateWordHistogram to use new
  1653. mapreduce api. (Amareshwari Sriramadasu via sharad)
  1654. MAPREDUCE-245. Change Job and jobcontrol classes to use the List interface
  1655. rather than ArrayList in APIs. (Tom White via cdouglas)
  1656. MAPREDUCE-766. Enhanced list-blacklisted-trackers to display reasons
  1657. for blacklisting a node. (Sreekanth Ramakrishnan via yhemanth)
  1658. MAPREDUCE-817. Add a cache for retired jobs with minimal job info and
  1659. provide a way to access history file url. (sharad)
  1660. MAPREDUCE-711. Moved Distributed Cache from Common to Map/Reduce
  1661. project. (Vinod Kumar Vavilapalli via yhemanth)
  1662. MAPREDUCE-895. Per the contract elucidated in HADOOP-6201, throw
  1663. FileNotFoundException from FileSystem::listStatus rather than returning
  1664. null. (Jakob Homan via cdouglas)
  1665. MAPREDUCE-479. Provide full task id to map output servlet rather than the
  1666. reduce id, only. (Jiaqi Tan via cdouglas)
  1667. MAPREDUCE-873. Simplify job recovery. Incomplete jobs are resubmitted on
  1668. jobtracker restart. Removes a public constructor in JobInProgress. (sharad)
  1669. HADOOP-6230. Moved process tree and memory calculator related classes from
  1670. Common to Map/Reduce. (Vinod Kumar Vavilapalli via yhemanth)
  1671. MAPREDUCE-157. Refactor job history APIs and change the history format to
  1672. JSON. (Jothi Padmanabhan via sharad)
  1673. MAPREDUCE-849. Rename configuration properties. (Amareshwari Sriramadasu
  1674. via sharad)
  1675. MAPREDUCE-1287. Only call the partitioner with more than one reducer.
  1676. (cdouglas)
  1677. MAPREDUCE-1385. Use the new UserGroupInformation from HADOOP-6299.
  1678. (ddas via omalley)
  1679. MAPREDUCE-1493. Authorization for job-history pages. (vinodkv)
  1680. MAPREDUCE-1607. Task controller may not set permissions for a
  1681. task cleanup attempt's log directory (Amareshwari Sriramadasu via vinodkv)
  1682. MAPREDUCE-1683. Remove JNI calls from ClusterStatus cstr. (Arun Murthy and
  1683. Luke Lu via cdouglas)
  1684. MAPREDUCE-1855. Makes the refresh methods (for groups and proxy users)
  1685. independent of the client side configuration. (Boris Shkolnik via ddas)
  1686. NEW FEATURES
  1687. MAPREDUCE-1774. Large-scale Automated Framework (Sharad Agarwal, Sreekanth
  1688. Ramakrishnan, Konstantin Boudnik, at all via cos)
  1689. MAPREDUCE-706. Support for FIFO pools in the fair scheduler.
  1690. (Matei Zaharia)
  1691. MAPREDUCE-546. Provide sample fair scheduler config file in conf/ and use
  1692. it by default if no other config file is specified. (Matei Zaharia)
  1693. MAPREDUCE-551. Preemption support in the Fair Scheduler. (Matei Zaharia)
  1694. MAPREDUCE-567. Add a new example MR that always fails. (Philip Zeyliger
  1695. via tomwhite)
  1696. MAPREDUCE-211. Provides ability to run a health check script on the
  1697. tasktracker nodes and blacklist nodes if they are unhealthy.
  1698. (Sreekanth Ramakrishnan via yhemanth)
  1699. MAPREDUCE-637. Add an example, distbbp, which able to compute the n th bit
  1700. of Pi for some large n. (szetszwo)
  1701. MAPREDUCE-532. Provide a way to limit the number of used slots
  1702. per queue in the capacity scheduler.
  1703. (Rahul Kumar Singh via yhemanth)
  1704. MAPREDUCE-467. Provide ability to collect statistics about total tasks
  1705. and succeeded tasks in different time windows. (sharad)
  1706. MAPREDUCE-740. Log a job-summary at the end of a job, while allowing it
  1707. to be configured to use a custom appender if desired. (acmurthy)
  1708. MAPREDUCE-814. Provide a way to configure completed job history files
  1709. to be on HDFS. (sharad)
  1710. MAPREDUCE-800. MRUnit should support the new API. (Aaron Kimball via
  1711. tomwhite)
  1712. MAPREDUCE-798. MRUnit should be able to test a succession of MapReduce
  1713. passes. (Aaron Kimball via tomwhite)
  1714. MAPREDUCE-768. Provide an option to dump jobtracker configuration in JSON
  1715. format to standard output. (V.V.Chaitanya Krishna via yhemanth)
  1716. MAPREDUCE-824. Add support for a hierarchy of queues in the capacity
  1717. scheduler. (Rahul Kumar Singh via yhemanth)
  1718. MAPREDUCE-751. Add Rumen, a tool for extracting statistics from job tracker
  1719. logs and generating job traces for simulation and analysis. (Dick King via
  1720. cdouglas)
  1721. MAPREDUCE-830. Add support for splittable compression to TextInputFormats.
  1722. (Abdul Qadeer via cdouglas)
  1723. MAPREDUCE-861. Add support for hierarchical queues in the Map/Reduce
  1724. framework. (Rahul Kumar Singh via yhemanth)
  1725. MAPREDUCE-776. Add Gridmix, a benchmark processing Rumen traces to simulate
  1726. a measured mix of jobs on a cluster. (cdouglas)
  1727. MAPREDUCE-862. Enhance JobTracker UI to display hierarchical queues.
  1728. (V.V.Chaitanya Krishna via yhemanth)
  1729. MAPREDUCE-777. Brand new apis to track and query jobs as a
  1730. replacement for JobClient. (Amareshwari Sriramadasu via acmurthy)
  1731. MAPREDUCE-775. Add native and streaming support for Vertica as an input
  1732. or output format taking advantage of parallel read and write properties of
  1733. the DBMS. (Omer Trajman via ddas)
  1734. MAPREDUCE-679. XML-based metrics as JSP servlet for JobTracker.
  1735. (Aaron Kimball via tomwhite)
  1736. MAPREDUCE-980. Modify JobHistory to use Avro for serialization. (cutting)
  1737. MAPREDUCE-728. Add Mumak, a Hadoop map/reduce simulator. (Arun C Murthy,
  1738. Tamas Sarlos, Anirban Dasgupta, Guanying Wang, and Hong Tang via cdouglas)
  1739. MAPREDUCE-1383. Automates fetching of delegation tokens in File*Formats
  1740. Distributed Cache and Distcp. Also, provides a config
  1741. mapreduce.job.hdfs-servers that the jobs can populate with a comma
  1742. separated list of namenodes. The job client automatically fetches
  1743. delegation tokens from those namenodes. (Boris Shkolnik via ddas)
  1744. MAPREDUCE-698. Per-pool task limits for the fair scheduler.
  1745. (Kevin Peterson via matei)
  1746. MAPREDUCE-1026. Does mutual authentication of the shuffle
  1747. transfers using a shared JobTracker generated key.
  1748. (Boris Shkolnik via ddas)
  1749. MAPREDUCE-744. Introduces the notion of a public distributed cache.
  1750. (Devaraj Das)
  1751. MAPREDUCE-1338. Introduces the notion of token cache using which
  1752. tokens and secrets can be sent by the Job client to the JobTracker.
  1753. (Boris Shkolnik via ddas)
  1754. HDFS-503. This patch implements an optional layer over HDFS that
  1755. implements offline erasure-coding. It can be used to reduce the
  1756. total storage requirements of HDFS. (dhruba)
  1757. MAPREDUCE-1432. Adds hooks in the jobtracker and tasktracker
  1758. for loading the tokens in the user's ugi. This is required
  1759. for the copying of files from the hdfs. (ddas)
  1760. MAPREDUCE-1335. Adds SASL Kerberos/Digest authentication in MapReduce.
  1761. (Kan Zhang via ddas)
  1762. MAPREDUCE-1464. Makes a compatible change in JobTokenIdentifier to
  1763. account for HADOOP-6510. (Jitendra Nath Pandey via ddas)
  1764. MAPREDUCE-1433. Add a delegation token for MapReduce. (omalley)
  1765. MAPREDUCE-1307. Introduces the Job level ACLs feature.
  1766. (Vinod Kumar Vavilapalli via ddas)
  1767. MAPREDUCE-1430. JobTracker automatically renews delegation tokens for jobs.
  1768. (Boris Shkolnik via ddas)
  1769. MAPREDUCE-1455. Introduces job-level authorization for mapreduce servlets.
  1770. (Ravi Gummadi via vinodkv)
  1771. IMPROVEMENTS
  1772. MAPREDUCE-463. Makes job setup and cleanup tasks as optional.
  1773. (Amareshwari Sriramadasu via sharad)
  1774. MAPREDUCE-502. Allow jobtracker to be configured with zero completed jobs
  1775. in memory. (Amar Kamat via sharad)
  1776. MAPREDUCE-416. Moves the history file to a "done" folder whenever a job
  1777. completes. (Amar Kamat via ddas)
  1778. MAPREDUCE-646. Increase srcfilelist replication number in dictcp job.
  1779. (Ravi Gummadi via szetszwo)
  1780. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  1781. build #12. (Giridharan Kesavan)
  1782. MAPREDUCE-642. A option to distcp that allows preserving the full
  1783. source path of a file in the specified destination directory.
  1784. (Rodrigo Schmidt via dhruba)
  1785. MAPREDUCE-686. Move TestSpeculativeExecution.Fake* into a separate class
  1786. so that it can be used by other tests. (Jothi Padmanabhan via sharad)
  1787. MAPREDUCE-625. Modify TestTaskLimits to improve execution time.
  1788. (Jothi Padmanabhan via sharad)
  1789. MAPREDUCE-465. Deprecate o.a.h.mapred.lib.MultithreadedMapRunner and add
  1790. test for o.a.h.mapreduce.lib.MultithreadedMapper.
  1791. (Amareshwari Sriramadasu via sharad)
  1792. MAPREDUCE-701. Improves the runtime of the TestRackAwareTaskPlacement
  1793. by making it a unit test. (Jothi Padmanabhan via ddas)
  1794. MAPREDUCE-371. Change KeyFieldBasedComparator and KeyFieldBasedPartitioner
  1795. to use new api. (Amareshwari Sriramadasu via sharad)
  1796. MAPREDUCE-623. Resolve javac warnings in mapreduce. (Jothi Padmanabhan
  1797. via sharad)
  1798. MAPREDUCE-655. Change KeyValueLineRecordReader and KeyValueTextInputFormat
  1799. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  1800. MAPREDUCE-632. Merge TestCustomOutputCommitter with
  1801. TestCommandLineJobSubmission. (Jothi Padmanabhan via sharad)
  1802. MAPREDUCE-627. Improves execution time of TestTrackerBlacklistAcrossJobs.
  1803. (Jothi Padmanabhan via ddas)
  1804. MAPREDUCE-630. Improves execution time of TestKillCompletedJob.
  1805. (Jothi Padmanabhan via ddas)
  1806. MAPREDUCE-626. Improves the execution time of TestLostTracker.
  1807. (Jothi Padmanabhan via ddas)
  1808. MAPREDUCE-353. Makes the shuffle read and connection timeouts
  1809. configurable. (Ravi Gummadi via ddas)
  1810. MAPREDUCE-739. Allow relative paths to be created in archives. (Mahadev
  1811. Konar via cdouglas)
  1812. MAPREDUCE-772. Merge HADOOP-4010 changes to LineRecordReader into mapreduce
  1813. package. (Abdul Qadeer via cdouglas)
  1814. MAPREDUCE-785. Separate sub-test of TestReduceFetch to be included in
  1815. MR-670. (Jothi Padmanabhan via cdouglas)
  1816. MAPREDUCE-784. Modify TestUserDefinedCounters to use LocalJobRunner
  1817. instead of MiniMR. (Jothi Padmanabhan via sharad)
  1818. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  1819. (gkesavan)
  1820. MAPREDUCE-782. Use PureJavaCrc32 in SpillRecord. (Todd Lipcon via
  1821. szetszwo)
  1822. MAPREDUCE-369. Change org.apache.hadoop.mapred.lib.MultipleInputs to
  1823. use new api. (Amareshwari Sriramadasu via sharad)
  1824. MAPREDUCE-373. Change org.apache.hadoop.mapred.lib.FieldSelectionMapReduce
  1825. to use new api. (Amareshwari Sriramadasu via sharad)
  1826. MAPREDUCE-628. Improves the execution time of TestJobInProgress.
  1827. (Jothi Padmanabhan via ddas)
  1828. MAPREDUCE-793. Creates a new test that consolidates a few tests to
  1829. include in the commit-test list. (Jothi Padmanabhan via ddas)
  1830. MAPREDUCE-797. Adds combiner support to MRUnit MapReduceDriver.
  1831. (Aaron Kimball via johan)
  1832. MAPREDUCE-656. Change org.apache.hadoop.mapred.SequenceFile* classes
  1833. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  1834. MAPREDUCE-670. Creates ant target for 10 mins patch test build.
  1835. (Jothi Padmanabhan via gkesavan)
  1836. MAPREDUCE-375. Change org.apache.hadoop.mapred.lib.NLineInputFormat
  1837. and org.apache.hadoop.mapred.MapFileOutputFormat to use new api.
  1838. (Amareshwari Sriramadasu via ddas)
  1839. MAPREDUCE-779. Added node health failure counts into
  1840. JobTrackerStatistics. (Sreekanth Ramakrishnan via yhemanth)
  1841. MAPREDUCE-842. Setup secure permissions for localized job files,
  1842. intermediate outputs and log files on tasktrackers.
  1843. (Vinod Kumar Vavilapalli via yhemanth)
  1844. MAPREDUCE-478. Allow map and reduce jvm parameters, environment variables
  1845. and ulimit to be set separately.
  1846. Configuration changes:
  1847. add mapred.map.child.java.opts
  1848. add mapred.reduce.child.java.opts
  1849. add mapred.map.child.env
  1850. add mapred.reduce.child.ulimit
  1851. add mapred.map.child.env
  1852. add mapred.reduce.child.ulimit
  1853. deprecated mapred.child.java.opts
  1854. deprecated mapred.child.env
  1855. deprecated mapred.child.ulimit
  1856. (acmurthy)
  1857. MAPREDUCE-767. Remove the dependence on the CLI 2.0 snapshot.
  1858. (Amar Kamat via omalley)
  1859. MAPREDUCE-712. Minor efficiency tweaks to RandomTextWriter. (cdouglas)
  1860. MAPREDUCE-870. Remove the job retire thread and the associated
  1861. config parameters. (sharad)
  1862. MAPREDUCE-874. Rename the PiEstimator example to QuasiMonteCarlo.
  1863. (szetszwo)
  1864. MAPREDUCE-336. Allow logging level of map/reduce tasks to be configurable.
  1865. Configuration changes:
  1866. add mapred.map.child.log.level
  1867. add mapred.reduce.child.log.level
  1868. (acmurthy)
  1869. MAPREDUCE-355. Update mapred.join package to use the new API. (Amareshwari
  1870. Sriramadasu via cdouglas)
  1871. HADOOP-6184. Updated hadoop common and test jars to get the new API
  1872. in Configuration for dumping in JSON format from Hudson trunk build #68.
  1873. (yhemanth)
  1874. MAPREDUCE-476. Extend DistributedCache to work locally (LocalJobRunner).
  1875. (Philip Zeyliger via tomwhite)
  1876. MAPREDUCE-825. JobClient completion poll interval of 5s causes slow tests
  1877. in local mode. (Aaron Kimball via tomwhite)
  1878. MAPREDUCE-910. Support counters in MRUnit. (Aaron Kimball via cdouglas)
  1879. MAPREDUCE-788. Update gridmix2 to use the new API (Amareshwari Sriramadasu
  1880. via cdouglas)
  1881. MAPREDUCE-875. Make DBRecordReader execute queries lazily. (Aaron Kimball
  1882. via enis)
  1883. MAPREDUCE-318. Modularizes the shuffle code. (Jothi Padmanabhan and
  1884. Arun Murthy via ddas)
  1885. MAPREDUCE-936. Allow a load difference for fairshare scheduler.
  1886. (Zheng Shao via dhruba)
  1887. MAPREDUCE-370. Update MultipleOutputs to use the API, merge funcitonality
  1888. of MultipleOutputFormat. (Amareshwari Sriramadasu via cdouglas)
  1889. MAPREDUCE-898. Changes DistributedCache to use the new API.
  1890. (Amareshwari Sriramadasu via ddas)
  1891. MAPREDUCE-144. Includes dump of the process tree in task diagnostics when
  1892. a task is killed due to exceeding memory limits.
  1893. (Vinod Kumar Vavilapalli via yhemanth)
  1894. MAPREDUCE-945. Modifies MRBench and TestMapRed to use ToolRunner so that
  1895. options such as queue name can be passed via command line.
  1896. (Sreekanth Ramakrishnan via yhemanth)
  1897. MAPREDUCE-963. Deprecate o.a.h.mapred.FileAlreadyExistsException and
  1898. replace it with o.a.h.fs.FileAlreadyExistsException. (Boris Shkolnik
  1899. via szetszwo)
  1900. MAPREDUCE-960. Remove an unnecessary intermediate copy and obsolete API
  1901. from KeyValueLineRecordReader. (cdouglas)
  1902. MAPREDUCE-930. Modify Rumen to resolve paths in the canonical way, rather
  1903. than defaulting to the local filesystem. (cdouglas)
  1904. MAPREDUCE-944. Extend the LoadManager API of the fair-share scheduler
  1905. to support regulating tasks for a job based on resources currently in use
  1906. by that job. (dhruba)
  1907. MAPREDUCE-973. Move FailJob and SleepJob from examples to test. (cdouglas
  1908. via omalley)
  1909. MAPREDUCE-966. Modify Rumen to clean up interfaces and simplify integration
  1910. with other tools. (Hong Tang via cdouglas)
  1911. MAPREDUCE-856. Setup secure permissions for distributed cache files.
  1912. (Vinod Kumar Vavilapalli via yhemanth)
  1913. MAPREDUCE-885. More efficient SQL queries for DBInputFormat. (Aaron Kimball
  1914. via enis)
  1915. MAPREDUCE-284. Enables ipc.client.tcpnodelay in Tasktracker's Child.
  1916. (Ravi Gummadi via sharad)
  1917. MAPREDUCE-916. Split the documentation to match the project split.
  1918. (Corinne Chandel via omalley)
  1919. MAPREDUCE-649. Validate a copy by comparing the source and destination
  1920. checksums in distcp. Also adds an intra-task retry mechanism for errors
  1921. detected during the copy. (Ravi Gummadi via cdouglas)
  1922. MAPREDUCE-654. Add a -dryrun option to distcp printing a summary of the
  1923. file data to be copied, without actually performing the copy. (Ravi Gummadi
  1924. via cdouglas)
  1925. MAPREDUCE-664. Display the number of files deleted by distcp when the
  1926. -delete option is specified. (Ravi Gummadi via cdouglas)
  1927. MAPREDUCE-781. Let the name of distcp jobs be configurable. (Venkatesh S
  1928. via cdouglas)
  1929. MAPREDUCE-975. Add an API in job client to get the history file url for
  1930. a given job id. (sharad)
  1931. MAPREDUCE-905. Add Eclipse launch tasks for MapReduce. (Philip Zeyliger
  1932. via tomwhite)
  1933. MAPREDUCE-277. Makes job history counters available on the job history
  1934. viewers. (Jothi Padmanabhan via ddas)
  1935. MAPREDUCE-893. Provides an ability to refresh queue configuration
  1936. without restarting the JobTracker.
  1937. (Vinod Kumar Vavilapalli and Rahul Kumar Singh via yhemanth)
  1938. MAPREDUCE-1011. Add build.properties to svn and git ignore. (omalley)
  1939. MAPREDUCE-954. Change Map-Reduce context objects to be interfaces.
  1940. (acmurthy)
  1941. MAPREDUCE-639. Change Terasort example to reflect the 2009 updates.
  1942. (omalley)
  1943. MAPREDUCE-1063. Document gridmix benchmark. (cdouglas)
  1944. MAPREDUCE-931. Use built-in interpolation classes for making up task
  1945. runtimes in Rumen. (Dick King via cdouglas)
  1946. MAPREDUCE-1012. Mark Context interfaces as public evolving. (Tom White via
  1947. cdouglas)
  1948. MAPREDUCE-971. Document use of distcp when copying to s3, managing timeouts
  1949. in particular. (Aaron Kimball via cdouglas)
  1950. HDFS-663. DFSIO for append. (shv)
  1951. HDFS-641. Move all of the components that depend on map/reduce to
  1952. map/reduce. (omalley)
  1953. HADOOP-5107. Use Maven ant tasks to publish artifacts. (Giridharan Kesavan
  1954. via omalley)
  1955. MAPREDUCE-1229. Allow customization of job submission policy in Mumak.
  1956. (Hong Tang via cdouglas)
  1957. MAPREDUCE-1317. Reduce the memory footprint of Rumen objects by interning
  1958. host Strings. (Hong Tang via cdouglas)
  1959. MAPREDUCE-1097. Add support for Vertica 3.5 to its contrib module. (Omer
  1960. Trajman via cdouglas)
  1961. MAPREDUCE-1627. HadoopArchives should not uses a method in DistCp.
  1962. (szetszwo)
  1963. MAPREDUCE-1198. Alternatively schedule different types of tasks in
  1964. fair share scheduler. (Scott Chen via matei)
  1965. MAPREDUCE-707. Provide a jobconf property for explicitly assigning a job to
  1966. a pool in the Fair Scheduler. (Alan Heirich via matei)
  1967. MAPREDUCE-947. Added commitJob and abortJob apis to OutputCommitter.
  1968. Enhanced FileOutputCommitter to create a _SUCCESS file for successful
  1969. jobs. (Amar Kamat & Jothi Padmanabhan via acmurthy)
  1970. MAPREDUCE-1103. Added more metrics to Jobtracker. (sharad)
  1971. MAPREDUCE-1048. Add occupied/reserved slot usage summary on jobtracker UI.
  1972. (Amareshwari Sriramadasu and Hemanth Yamijala via sharad)
  1973. MAPREDUCE-1090. Modified log statement in TaskMemoryManagerThread to
  1974. include task attempt id. (yhemanth)
  1975. MAPREDUCE-1189. Reduce ivy console output to ovservable level (cos)
  1976. MAPREDUCE-1167. ProcfsBasedProcessTree collects rss memory information.
  1977. (Scott Chen via dhruba)
  1978. MAPREDUCE-1231. Added a new DistCp option, -skipcrccheck, so that the CRC
  1979. check during setup can be skipped. (Jothi Padmanabhan via szetszwo)
  1980. MAPREDUCE-1190. Add package documentation for BBP example.
  1981. (Tsz Wo (Nicholas) Sze via cdouglas)
  1982. MAPREDUCE-1119. When tasks fail to report status, show tasks's stack dump
  1983. before killing. (Aaron Kimball via tomwhite)
  1984. MAPREDUCE-1185. Redirect running job url to history url if job is already
  1985. retired. (Amareshwari Sriramadasu and Sharad Agarwal via sharad)
  1986. MAPREDUCE-1050. Introduce a mock object testing framework. (tomwhite)
  1987. MAPREDUCE-1084. Implementing aspects development and fault injeciton
  1988. framework for MapReduce. (Sreekanth Ramakrishnan via cos)
  1989. MAPREDUCE-1209. Move common specific part of the test TestReflectionUtils
  1990. out of mapred into common. (Todd Lipcon via tomwhite)
  1991. MAPREDUCE-967. TaskTracker does not need to fully unjar job jars.
  1992. (Todd Lipcon via tomwhite)
  1993. MAPREDUCE-1083. Changes in MapReduce so that group information of users
  1994. can be refreshed in the JobTracker via command line.
  1995. (Boris Shkolnik via ddas)
  1996. MAPREDUCE-181. Changes the job submission process to be secure.
  1997. (Devaraj Das)
  1998. MAPREDUCE-1250. Refactors the JobToken to use Common's Token interface.
  1999. (Kan Zhang via ddas)
  2000. MAPREDUCE-896. Enhance tasktracker to cleanup files that might have
  2001. been created by user tasks with non-writable permissions.
  2002. (Ravi Gummadi via yhemanth)
  2003. MAPREDUCE-372. Change org.apache.hadoop.mapred.lib.ChainMapper/Reducer
  2004. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  2005. MAPREDUCE-1295. Add a tool in Rumen for folding and manipulating job
  2006. traces. (Dick King via cdouglas)
  2007. MAPREDUCE-1302. TrackerDistributedCacheManager deletes file
  2008. asynchronously, thus reducing task initialization delays.
  2009. (Zheng Shao via dhruba)
  2010. MAPREDUCE-1218. TaskTrackers send cpu and memory usage of
  2011. node to JobTracker. (Scott Chen via dhruba)
  2012. MAPREDUCE-847. Fix Releaseaudit warning count to zero
  2013. (Giridharan Kesavan)
  2014. MAPREDUCE-1337. Use generics in StreamJob to improve readability of that
  2015. class. (Kay Kay via cdouglas)
  2016. MAPREDUCE-361. Port terasort example to the new mapreduce API. (Amareshwari
  2017. Sriramadasu via cdouglas)
  2018. MAPREDUCE-1367. LocalJobRunner should support parallel mapper execution.
  2019. (Aaron Kimball via tomwhite)
  2020. MAPREDUCE-64. Eliminate io.sort.record.percent from MapTask configuration.
  2021. (cdouglas)
  2022. MAPREDUCE-1440. Replace the long user name in MapReduce with the local
  2023. name. (omalley)
  2024. MAPREDUCE-1470. Move delegation tokens from HDFS to Common so that
  2025. MapReduce can use them too. (omalley)
  2026. MAPREDUCE-1425. Reduce memory usage by archive. (mahadev via szetszwo)
  2027. MAPREDUCE-1441. Trim whitespace from directory lists pulled from the
  2028. configuration. (Todd Lipcon via cdouglas)
  2029. MAPREDUCE-1309. Refactor Rumen trace generator to improve code structure
  2030. and add extensible support for log formats. (Dick King via cdouglas)
  2031. MAPREDUCE-1503. Delegation token renewing and cancelling should provide
  2032. meaningful exceptions when there are failures instead of returning
  2033. false. (omalley)
  2034. HADOOP-6579. Upgrade commons-codec library to 1.4. (omalley)
  2035. MAPREDUCE-1423. Improve performance of CombineFileInputFormat when multiple
  2036. pools are configured. (Dhruba Borthakur via zshao)
  2037. MAPREDUCE-1454. Quote user supplied strings in Tracker servlets. (cdouglas)
  2038. MAPREDUCE-1408. Add customizable job submission policies to Gridmix. (Rahul
  2039. Singh via cdouglas)
  2040. MAPREDUCE-1527. Better warning logged when mapred.queue.names is
  2041. overshadowed by mapred-queues.xml. (Hong Tang via acmurthy)
  2042. MAPREDUCE-1403. Save the size and number of distributed cache artifacts in
  2043. the configuration. (Arun Murthy via cdouglas)
  2044. MAPREDUCE-1482. Truncate state string and diagnostic information in
  2045. TaskStatus. (Amar Kamat via szetszwo)
  2046. MAPREDUCE-1593. [Rumen] Improvements to random seed generation (tamas via
  2047. mahadev)
  2048. MAPREDUCE-1460. Oracle support in DataDrivenDBInputFormat.
  2049. (Aaron Kimball via tomwhite)
  2050. MAPREDUCE-1569. Pass configuration through mocked contexts in MRUnit.
  2051. (Chris White via cdouglas)
  2052. MAPREDUCE-1590. Move HarFileSystem from Hadoop Common to Mapreduce tools.
  2053. (mahadev)
  2054. MAPREDUCE-1629. Get rid of fakeBlockLocations() on HarFileSystem, since
  2055. it's not used (mahadev)
  2056. MAPREDUCE-1489. DataDrivenDBInputFormat should not query the database
  2057. when generating only one split. (Aaron Kimball via tomwhite)
  2058. MAPREDUCE-1514. Add documentation on replication, permissions, new options,
  2059. limitations and internals of har. (mahadev via szetszwo)
  2060. MAPREDUCE-1428. Make block size and the size of archive created files
  2061. configurable. (mahadev via szetszwo)
  2062. MAPREDUCE-1656. JobStory should provide queue info. (hong via mahadev)
  2063. MAPREDUCE-1466. Record number of files processed in FileInputFormat in the
  2064. Configuration for offline analysis. (Luke Lu and Arun Murthy via cdouglas)
  2065. MAPREDUCE-1538. TrackerDistributedCacheManager manages the
  2066. number of files. (Scott Chen via dhruba)
  2067. MAPREDUCE-1673. Scripts to start and stop RaidNode.
  2068. (Rodrigo Schmidt via dhruba)
  2069. MAPREDUCE-1659. RaidNode writes temp files on configured tmp directory and
  2070. add random numbers to their names to avoid conflicts
  2071. (Rodrigo Schmidt via dhruba)
  2072. MAPREDUCE-1221. Allow admins to control physical memory limits per-task
  2073. and per-node. (Scott Chen via acmurthy)
  2074. MAPREDUCE-1065. Update mapred tutorial to use the new API. (Aaron Kimball
  2075. via cdouglas)
  2076. MAPREDUCE-1304. Add a task counter tracking time spent in GC. (Aaron
  2077. Kimball via cdouglas)
  2078. MAPREDUCE-1570. Add grouping comparators to MRUnit. (Chris White via
  2079. cdouglas)
  2080. MAPREDUCE-1650. Exclude Private elements from generated MapReduce
  2081. Javadoc. (tomwhite)
  2082. MAPREDUCE-1625. Improve grouping of packages in Javadoc. (tomwhite)
  2083. MAPREDUCE-1417. Forrest documentation should be updated to reflect
  2084. the changes in MAPREDUCE-744. (Ravi Gummadi via vinodkv)
  2085. MAPREDUCE-1568. TrackerDistributedCacheManager should clean up cache
  2086. in a background thread. (Scott Chen via zshao)
  2087. MAPREDUCE-1749. Move configuration strings out of JobContext so that it
  2088. can be made public stable. (omalley)
  2089. MAPREDUCE-1623. Apply audience and stability notations to Hadoop
  2090. Map-Reduce. (tomwhite via acmurthy)
  2091. MAPREDUCE-1751. Change MapReduce to depend on Hadoop 'common' artifacts
  2092. instead of 'core'. (tomwhite)
  2093. MAPREDUCE-1535. Replace usage of FileStatus#isDir(). (Eli Collins via
  2094. tomwhite)
  2095. MAPREDUCE-1832. Allow file sizes less than 1MB in DFSIO benchmark. (shv)
  2096. MAPREDUCE-1404. Move Cluster-Setup and Single-Node-Setup Docs from
  2097. MapReduce to Common. (tomwhite)
  2098. MAPREDUCE-1697. Document the behavior of -file option and deprecate it
  2099. in favour of -files option in streaming. (Amareshwari Sriramadasu
  2100. via vinodkv)
  2101. MAPREDUCE-1033. Resolve location of scripts and configuration files after
  2102. project split. (tomwhite)
  2103. MAPREDUCE-1018. Document changes to the memory management and scheduling
  2104. model. (Hemanth Yamijala via vinodkv)
  2105. MAPREDUCE-1896. [Herriot] New property for multi user list. (Vinay Thota
  2106. via cos)
  2107. MAPREDUCE-1812. New properties for suspend and resume process. (Vinay
  2108. Thota via cos)
  2109. OPTIMIZATIONS
  2110. MAPREDUCE-270. Fix the tasktracker to optionally send an out-of-band
  2111. heartbeat on task-completion for better job-latency. (acmurthy)
  2112. Configuration changes:
  2113. add mapreduce.tasktracker.outofband.heartbeat
  2114. MAPREDUCE-1186. Modified code in distributed cache to set permissions
  2115. only on required set of localized paths.
  2116. (Amareshwari Sriramadasu via yhemanth)
  2117. MAPREDUCE-1501. FileInputFormat supports multi-level, recursive
  2118. directory listing. (Zheng Shao via dhruba)
  2119. MAPREDUCE-1556. upgrade to Avro 1.3.0. (cutting via tomwhite)
  2120. MAPREDUCE-1613. Install/deploy source jars to Maven repo
  2121. (Patrick Angeles via ddas)
  2122. MAPREDUCE-1610. Forrest documentation should be updated to reflect
  2123. the changes in MAPREDUCE-856. (Ravi Gummadi via vinodkv)
  2124. MAPREDUCE-1853. Adds caching for TaskAttemptContext in MultipleOutputs.
  2125. (Torsten Curdt via amareshwari)
  2126. BUG FIXES
  2127. MAPREDUCE-878. Rename fair scheduler design doc to
  2128. fair-scheduler-design-doc.tex and add Apache license header (matei)
  2129. HADOOP-4687. MapReduce is split from Hadoop Core. It is a subproject under
  2130. Hadoop (Owen O'Malley)
  2131. HADOOP-6096. Fix Eclipse project and classpath files following project
  2132. split. (tomwhite)
  2133. MAPREDUCE-419. Reconcile mapred.userlog.limit.kb defaults in configuration
  2134. and code. (Philip Zeyliger via cdouglas)
  2135. MAPREDUCE-2. Fixes a bug in KeyFieldBasedPartitioner in handling empty
  2136. keys. (Amar Kamat via sharad)
  2137. MAPREDUCE-130. Delete the jobconf copy from the log directory of the
  2138. JobTracker when the job is retired. (Amar Kamat via sharad)
  2139. MAPREDUCE-657. Fix hardcoded filesystem problem in CompletedJobStatusStore.
  2140. (Amar Kamat via sharad)
  2141. MAPREDUCE-179. Update progress in new RecordReaders. (cdouglas)
  2142. MAPREDUCE-658. Replace NPE in distcp with a meaningful error message when
  2143. the source path does not exist. (Ravi Gummadi via cdouglas)
  2144. MAPREDUCE-671. Update ignore list to include untracked, generated
  2145. build artifacts and config files. (cdouglas)
  2146. MAPREDUCE-433. Use more reliable counters in TestReduceFetch. (cdouglas)
  2147. MAPREDUCE-124. Fix a bug in failure handling of abort task of
  2148. OutputCommiter. (Amareshwari Sriramadasu via sharad)
  2149. MAPREDUCE-694. Fix to add jsp-api jars to capacity-scheduler classpath.
  2150. (Giridharan Kesavan)
  2151. MAPREDUCE-702. Fix eclipse-plugin jar target (Giridharan Kesavan)
  2152. MAPREDUCE-522. Replace TestQueueCapacities with simpler test case to
  2153. test integration between capacity scheduler and MR framework.
  2154. (Sreekanth Ramakrishnan via yhemanth)
  2155. MAPREDUCE-683. Fixes an initialization problem in the JobHistory.
  2156. The initialization of JobHistoryFilesManager is now done in the
  2157. JobHistory.init call. (Amar Kamat via ddas)
  2158. MAPREDUCE-708. Fixes a bug to allow updating the reason for
  2159. blacklisting a node on the JobTracker UI.
  2160. (Sreekanth Ramakrishnan via yhemanth)
  2161. MAPREDUCE-709. Fixes message displayed for a blacklisted node where
  2162. the reason for blacklisting is due to the health check script
  2163. timing out. (Sreekanth Ramakrishnan via yhemanth)
  2164. MAPREDUCE-676. Existing diagnostic rules fail for MAP ONLY jobs.
  2165. (Suhas Gogate via tomwhite)
  2166. MAPREDUCE-722. Fixes a bug with tasktracker reservations for
  2167. high memory jobs in capacity scheduler.
  2168. (Vinod Kumar Vavilapalli via yhemanth)
  2169. HADOOP-6090. Updates gridmix script to use new mapreduce api output
  2170. format. (Amareshwari Sriramadasu via sharad)
  2171. MAPREDUCE-732. Removed spurious log statements in the node
  2172. blacklisting logic. (Sreekanth Ramakrishnan via yhemanth)
  2173. MAPREDUCE-734. Fix a ConcurrentModificationException in unreserving
  2174. unused reservations for a job when it completes.
  2175. (Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
  2176. MAPREDUCE-733. Fix a RuntimeException while unreserving trackers
  2177. that are blacklisted for a job.
  2178. (Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
  2179. MAPREDUCE-677. Fix timeout in TestNodeRefresh. (Amar Kamat via
  2180. sharad)
  2181. MAPREDUCE-153. Fix timeout in TestJobInProgressListener. (Amar
  2182. Kamat via sharad)
  2183. MAPREDUCE-742. Fix output messages and java comments in the Pi related
  2184. examples. (szetszwo)
  2185. MAPREDUCE-565. Fix partitioner to work with new API. (Owen O'Malley via
  2186. cdouglas)
  2187. MAPREDUCE-680. Fix so MRUnit can handle reuse of Writable objects.
  2188. (Aaron Kimball via johan)
  2189. MAPREDUCE-18. Puts some checks for cross checking whether a reduce
  2190. task gets the correct shuffle data. (Ravi Gummadi via ddas)
  2191. MAPREDUCE-771. Fix scheduling of setup and cleanup tasks to use
  2192. free slots instead of tasks for scheduling. (yhemanth)
  2193. MAPREDUCE-717. Fixes some corner case issues in speculative
  2194. execution heuristics. (Devaraj Das)
  2195. MAPREDUCE-716. Make DBInputFormat work with Oracle. (Aaron Kimball
  2196. via tomwhite)
  2197. MAPREDUCE-735. Fixes a problem in the KeyFieldHelper to do with
  2198. the end index for some inputs (Amar Kamat via ddas)
  2199. MAPREDUCE-682. Removes reservations on tasktrackers which are
  2200. blacklisted. (Sreekanth Ramakrishnan via yhemanth)
  2201. MAPREDUCE-743. Fixes a problem to do with progress reporting
  2202. in the map phase. (Ravi Gummadi via ddas)
  2203. MAPREDUCE-765. Eliminate the deprecated warnings introduced by H-5438.
  2204. (He Yongqiang via szetszwo)
  2205. MAPREDUCE-383. Fix a bug in Pipes combiner due to bytes count not
  2206. getting reset after the spill. (Christian Kunz via sharad)
  2207. MAPREDUCE-809. Fix job-summary logs to correctly record status of FAILED
  2208. and KILLED jobs. (acmurthy)
  2209. MAPREDUCE-792. Fix unchecked warnings in DBInputFormat. (Aaron Kimball
  2210. via szetszwo)
  2211. MAPREDUCE-760. Fix a timing issue in TestNodeRefresh. (Amar Kamat via
  2212. sharad)
  2213. MAPREDUCE-40. Keep memory management backwards compatible for job
  2214. configuration parameters and limits. (Rahul Kumar Singh via yhemanth)
  2215. MAPREDUCE-587. Fixes a OOM issue in TestStreamingExitStatus.
  2216. (Amar Kamat via ddas)
  2217. MAPREDUCE-408. Fixes an assertion problem in TestKillSubProcesses
  2218. (Ravi Gummadi via ddas)
  2219. MAPREDUCE-659. Fix gridmix2 compilation. (Giridharan Kesavan)
  2220. MAPREDUCE-796. Fixes a ClassCastException in an exception log in
  2221. MultiThreadedMapRunner. (Amar Kamat via ddas)
  2222. MAPREDUCE-808. Fixes a serialization problem in TypedBytes.
  2223. (Klaas Bosteels via ddas)
  2224. MAPREDUCE-845. Fix a findbugs heap size problem in build.xml and add
  2225. a new property findbugs.heap.size. (Lee Tucker via szetszwo)
  2226. MAPREDUCE-838. Fixes a problem in the way commit of task outputs
  2227. happens. The bug was that even if commit failed, the task would
  2228. be declared as successful. (Amareshwari Sriramadasu via ddas)
  2229. MAPREDUCE-813. Updates Streaming and M/R tutorial documents.
  2230. (Corinne Chandel via ddas)
  2231. MAPREDUCE-805. Fixes some deadlocks in the JobTracker due to the fact
  2232. the JobTracker lock hierarchy wasn't maintained in some JobInProgress
  2233. method calls. (Amar Kamat via ddas)
  2234. MAPREDUCE-799. Fixes so all of the MRUnit self-tests run.
  2235. (Aaron Kimball via johan)
  2236. MAPREDUCE-848. Fixes a problem to do with TestCapacityScheduler
  2237. failing (Amar Kamat via ddas)
  2238. MAPREDUCE-840. DBInputFormat leaves open transaction.
  2239. (Aaron Kimball via tomwhite)
  2240. MAPREDUCE-859. Adds Avro and its dependencies required by Hadoop
  2241. common. (Ravi Gummadi via sharad)
  2242. MAPREDUCE-867. Fix ivy conf to look for avro jar from maven repo.
  2243. (Giridharan Kesavan)
  2244. MAPREDUCE-877. Added avro as a dependency to contrib ivy settings.
  2245. (Tsz Wo (Nicholas) Sze via yhemanth)
  2246. MAPREDUCE-852. In build.xml, remove the Main-Class, which is incorrectly
  2247. set in tools, and rename the target "tools-jar" to "tools". (szetszwo)
  2248. MAPREDUCE-773. Sends progress reports for compressed gzip inputs in maps.
  2249. Fixes a native direct buffer leak in LineRecordReader classes.
  2250. (Hong Tang and ddas)
  2251. MAPREDUCE-832. Reduce number of warning messages printed when
  2252. deprecated memory variables are used. (Rahul Kumar Singh via yhemanth)
  2253. MAPREDUCE-745. Fixes a testcase problem to do with generation of JobTracker
  2254. IDs. (Amar Kamat via ddas)
  2255. MAPREDUCE-834. Enables memory management on tasktrackers when old
  2256. memory management parameters are used in configuration.
  2257. (Sreekanth Ramakrishnan via yhemanth)
  2258. MAPREDUCE-818. Fixes Counters#getGroup API. (Amareshwari Sriramadasu
  2259. via sharad)
  2260. MAPREDUCE-807. Handles the AccessControlException during the deletion of
  2261. mapred.system.dir in the JobTracker. The JobTracker will bail out if it
  2262. encounters such an exception. (Amar Kamat via ddas)
  2263. MAPREDUCE-430. Fix a bug related to task getting stuck in case of
  2264. OOM error. (Amar Kamat via ddas)
  2265. MAPREDUCE-871. Fix ownership of Job/Task local files to have correct
  2266. group ownership according to the egid of the tasktracker.
  2267. (Vinod Kumar Vavilapalli via yhemanth)
  2268. MAPREDUCE-911. Fix a bug in TestTaskFail related to speculative
  2269. execution. (Amareshwari Sriramadasu via sharad)
  2270. MAPREDUCE-687. Fix an assertion in TestMiniMRMapRedDebugScript.
  2271. (Amareshwari Sriramadasu via sharad)
  2272. MAPREDUCE-924. Fixes the TestPipes testcase to use Tool.
  2273. (Amareshwari Sriramadasu via sharad)
  2274. MAPREDUCE-903. Add Avro jar to eclipse classpath.
  2275. (Philip Zeyliger via tomwhite)
  2276. MAPREDUCE-943. Removes a testcase in TestNodeRefresh that doesn't make
  2277. sense in the new Job recovery model. (Amar Kamat via ddas)
  2278. MAPREDUCE-764. TypedBytesInput's readRaw() does not preserve custom type
  2279. codes. (Klaas Bosteels via tomwhite)
  2280. HADOOP-6243. Fixes a NullPointerException in handling deprecated keys.
  2281. (Sreekanth Ramakrishnan via yhemanth)
  2282. MAPREDUCE-968. NPE in distcp encountered when placing _logs directory on
  2283. S3FileSystem. (Aaron Kimball via tomwhite)
  2284. MAPREDUCE-826. harchive doesn't use ToolRunner / harchive returns 0 even
  2285. if the job fails with exception (koji Noguchi via mahadev)
  2286. MAPREDUCE-839. unit test TestMiniMRChildTask fails on mac os-x (hong tang
  2287. via mahadev)
  2288. MAPREDUCE-112. Add counters for reduce input, output records to the new API.
  2289. (Jothi Padmanabhan via cdouglas)
  2290. MAPREDUCE-648. Fix two distcp bugs: (1) it should not launch a job if all
  2291. src paths are directories, and (2) it does not skip copying when updating
  2292. a single file. (Ravi Gummadi via szetszwo)
  2293. MAPREDUCE-946. Fix a regression in LineRecordReader where the
  2294. maxBytesToConsume parameter is not set correctly. (cdouglas)
  2295. MAPREDUCE-977. Missing jackson jars from Eclipse template. (tomwhite)
  2296. MAPREDUCE-988. Fix a packaging issue in the contrib modules. (Hong Tang via
  2297. cdouglas)
  2298. MAPREDUCE-971. distcp does not always remove distcp.tmp.dir. (Aaron Kimball
  2299. via tomwhite)
  2300. MAPREDUCE-995. Fix a bug in JobHistory where tasks completing after the job
  2301. is closed cause a NPE. (Jothi Padmanabhan via cdouglas)
  2302. MAPREDUCE-953. Fix QueueManager to dump queue configuration in JSON format.
  2303. (V.V. Chaitanya Krishna via yhemanth)
  2304. MAPREDUCE-645. Prevent distcp from running a job when the destination is a
  2305. file, but the source is not. (Ravi Gummadi via cdouglas)
  2306. MAPREDUCE-1002. Flushed writer in JobQueueClient so queue information is
  2307. printed correctly. (V.V. Chaitanya Krishna via yhemanth)
  2308. MAPREDUCE-1003. Fix compilation problem in eclipse plugin when
  2309. eclipse.home is set. (Ravi Gummadi via yhemanth)
  2310. MAPREDUCE-941. Vaidya script fails on Solaris. (Chad Metcalf
  2311. via tomwhite)
  2312. MAPREDUCE-912. Add and standardize Apache license headers. (Chad Metcalf
  2313. via cdouglas)
  2314. MAPREDUCE-1022. Fix compilation of vertica testcases. (Vinod Kumar
  2315. Vavilapalli via acmurthy)
  2316. MAPREDUCE-1000. Handle corrupt history files in JobHistory.initDone().
  2317. (Jothi Padmanabhan via sharad)
  2318. MAPREDUCE-1028. Fixed number of slots occupied by cleanup tasks to one
  2319. irrespective of slot size for the job.
  2320. (Ravi Gummadi via yhemanth)
  2321. MAPREDUCE-964. Fixed start and finish times of TaskStatus to be
  2322. consistent, thereby fixing inconsistencies in metering tasks.
  2323. (Sreekanth Ramakrishnan via yhemanth)
  2324. MAPREDUCE-1076. Deprecate ClusterStatus and add javadoc in ClusterMetrics.
  2325. (Amareshwari Sriramadasu via sharad)
  2326. MAPREDUCE-979. Fixed JobConf APIs related to memory parameters to return
  2327. values of new configuration variables when deprecated variables are
  2328. disabled. (Sreekanth Ramakrishnan via yhemanth)
  2329. MAPREDUCE-1030. Modified scheduling algorithm to return a map and reduce
  2330. task per heartbeat in the capacity scheduler.
  2331. (Rahul Kumar Singh via yhemanth)
  2332. MAPREDUCE-1071. Use DataInputStream rather than FSDataInputStream in the
  2333. JobHistory EventReader. (Hong Tang via cdouglas)
  2334. MAPREDUCE-986. Fix Rumen to work with truncated task lines. (Dick King via
  2335. cdouglas)
  2336. MAPREDUCE-1029. Fix failing TestCopyFiles by restoring the unzipping of
  2337. HDFS webapps from the hdfs jar. (Aaron Kimball and Jothi Padmanabhan via
  2338. cdouglas)
  2339. MAPREDUCE-769. Make findbugs and javac warnings to zero.
  2340. (Amareshwari Sriramadasu via sharad)
  2341. MAPREDUCE-1104. Initialize RecoveryManager in JobTracker cstr called by
  2342. Mumak. (Hong Tang via cdouglas)
  2343. MAPREDUCE-1061. Add unit test validating byte specifications for gridmix
  2344. jobs. (cdouglas)
  2345. MAPREDUCE-1077. Fix Rumen so that truncated tasks do not mark the job as
  2346. successful. (Dick King via cdouglas)
  2347. MAPREDUCE-1041. Make TaskInProgress::taskStatuses map package-private.
  2348. (Jothi Padmanabhan via cdouglas)
  2349. MAPREDUCE-1070. Prevent a deadlock in the fair scheduler servlet.
  2350. (Todd Lipcon via cdouglas)
  2351. MAPREDUCE-1086. Setup Hadoop logging environment for tasks to point to
  2352. task related parameters. (Ravi Gummadi via yhemanth)
  2353. MAPREDUCE-1105. Remove max limit configuration in capacity scheduler in
  2354. favor of max capacity percentage thus allowing the limit to go over
  2355. queue capacity. (Rahul Kumar Singh via yhemanth)
  2356. MAPREDUCE-1016. Make the job history log format JSON. (cutting)
  2357. MAPREDUCE-1038. Weave Mumak aspects only if related files have changed.
  2358. (Aaron Kimball via cdouglas)
  2359. MAPREDUCE-1163. Remove unused, hard-coded paths from libhdfs. (Allen
  2360. Wittenauer via cdouglas)
  2361. MAPREDUCE-962. Fix a NullPointerException while killing task process
  2362. trees. (Ravi Gummadi via yhemanth)
  2363. MAPREDUCE-1177. Correct setup/cleanup inversion in
  2364. JobTracker::getTaskReports. (Vinod Kumar Vavilapalli via cdouglas)
  2365. MAPREDUCE-1178. Fix ClassCastException in MultipleInputs by adding
  2366. a DelegatingRecordReader. (Amareshwari Sriramadasu and Jay Booth
  2367. via sharad)
  2368. MAPREDUCE-1068. Fix streaming job to show proper message if file is
  2369. is not present. (Amareshwari Sriramadasu via sharad)
  2370. MAPREDUCE-1147. Add map output counters to new API. (Amar Kamat via
  2371. cdouglas)
  2372. MAPREDUCE-915. The debug scripts are run as the job user. (ddas)
  2373. MAPREDUCE-1007. Fix NPE in CapacityTaskScheduler.getJobs().
  2374. (V.V.Chaitanya Krishna via sharad)
  2375. MAPREDUCE-28. Refactor TestQueueManager and fix default ACLs.
  2376. (V.V.Chaitanya Krishna and Rahul K Singh via sharad)
  2377. MAPREDUCE-1182. Fix overflow in reduce causing allocations to exceed the
  2378. configured threshold. (cdouglas)
  2379. MAPREDUCE-1239. Fix contrib components build dependencies.
  2380. (Giridharan Kesavan and omalley)
  2381. MAPREDUCE-787. Fix JobSubmitter to honor user given symlink path.
  2382. (Amareshwari Sriramadasu via sharad)
  2383. MAPREDUCE-1249. Update config default value for socket read timeout to
  2384. match code default. (Amareshwari Sriramadasu via cdouglas)
  2385. MAPREDUCE-1161. Remove ineffective synchronization in NotificationTestCase.
  2386. (Owen O'Malley via cdouglas)
  2387. MAPREDUCE-1244. Fix eclipse-plugin's build dependencies. (gkesavan)
  2388. MAPREDUCE-1075. Fix JobTracker to not throw an NPE for a non-existent
  2389. queue. (V.V.Chaitanya Krishna via yhemanth)
  2390. MAPREDUCE-754. Fix NPE in expiry thread when a TT is lost. (Amar Kamat
  2391. via sharad)
  2392. MAPREDUCE-1074. Document Reducer mark/reset functionality. (Jothi
  2393. Padmanabhan via cdouglas)
  2394. MAPREDUCE-1267. Fix typo in mapred-default.xml. (Todd Lipcon via cdouglas)
  2395. MAPREDUCE-952. Remove inadvertently reintroduced Task.Counter enum. (Jothi
  2396. Padmanabhan via cdouglas)
  2397. MAPREDUCE-1230. Fix handling of null records in VerticaInputFormat. (Omer
  2398. Trajman via cdouglas)
  2399. MAPREDUCE-1171. Allow shuffle retries and read-error reporting to be
  2400. configurable. (Amareshwari Sriramadasu via acmurthy)
  2401. MAPREDUCE-879. Fix broken unit test TestTaskTrackerLocalization on MacOS.
  2402. (Sreekanth Ramakrishnan via yhemanth)
  2403. MAPREDUCE-1124. Fix imprecise byte counts in Gridmix. (cdouglas)
  2404. MAPREDUCE-1222. Add an option to exclude numeric IP addresses in topologies
  2405. processed by Mumak. (Hong Tang via cdouglas)
  2406. MAPREDUCE-1284. Fix fts_open() call in task-controller that was failing
  2407. LinuxTaskController unit tests. (Ravi Gummadi via yhemanth)
  2408. MAPREDUCE-1143. Fix running task counters to be updated correctly
  2409. when speculative attempts are running for a TIP.
  2410. (Rahul Kumar Singh via yhemanth)
  2411. MAPREDUCE-1241. Use a default queue configuration in JobTracker when
  2412. mapred-queues.xml is unavailable. (Todd Lipcon via cdouglas)
  2413. MAPREDUCE-1301. Fix set up of permission checking script used in
  2414. localization tests. (Amareshwari Sriramadasu via yhemanth)
  2415. MAPREDUCE-1286. Remove quoting from client opts in TaskRunner. (Yuri
  2416. Pradkin via cdouglas)
  2417. MAPREDUCE-1059. Use distcp.bytes.per.map when adding sync markers in
  2418. distcp. (Aaron Kimball via cdouglas)
  2419. MAPREDUCE-1009. Update forrest documentation describing hierarchical
  2420. queues. (Vinod Kumar Vavilapalli via yhemanth)
  2421. MAPREDUCE-1342. Fixed deadlock in global blacklisting of tasktrackers.
  2422. (Amareshwari Sriramadasu via acmurthy)
  2423. MAPREDUCE-1316. Fixes a memory leak of TaskInProgress instances in
  2424. the jobtracker. (Amar Kamat via yhemanth)
  2425. MAPREDUCE-1359. TypedBytes TestIO doesn't mkdir its test dir first.
  2426. (Anatoli Fomenko via cos)
  2427. MAPREDUCE-1314. Correct errant mapreduce.x.mapreduce.x replacements from
  2428. bulk change. (Amareshwari Sriramadasu via cdouglas)
  2429. MAPREDUCE-1365. Restore accidentally renamed test in
  2430. TestTaskTrackerBloacklisting. (Amareshwari Sriramadasu via cdouglas)
  2431. MAPREDUCE-1406. Fix spelling of JobContext.MAP_COMBINE_MIN_SPILLS.
  2432. (cdouglas)
  2433. MAPREDUCE-1369. JUnit tests should never depend on anything in conf
  2434. (Anatoli Fomenko via cos)
  2435. MAPREDUCE-1412. Fix timer granularity issue causing failures in
  2436. TestTaskTrackerBlacklisting. (cdouglas)
  2437. MAPREDUCE-1448. Respect --config option in Mumak script. (Hong Tang via
  2438. cdouglas)
  2439. MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via tomwhite)
  2440. MAPREDUCE-1522. FileInputFormat may use the default FileSystem for the
  2441. input path. (Tsz Wo (Nicholas), SZE via cdouglas)
  2442. MAPREDUCE-1407. Update javadoc in mapreduce.{Mapper,Reducer} to match
  2443. actual usage. (Benoit Sigoure via cdouglas)
  2444. MAPREDUCE-1258. Fix fair scheduler event log not logging job info.
  2445. (matei)
  2446. MAPREDUCE-1089. Fix NPE in fair scheduler preemption when tasks are
  2447. scheduled but not running. (Todd Lipcon via matei)
  2448. MAPREDUCE-1014. Fix the libraries for common and hdfs. (omalley)
  2449. MAPREDUCE-1111. JT Jetty UI not working if we run mumak.sh
  2450. off packaged distribution directory. (hong tang via mahadev)
  2451. MAPREDUCE-1133. Eclipse .classpath template has outdated jar files and is
  2452. missing some new ones. (cos)
  2453. MAPREDUCE-1098. Fixed the distributed-cache to not do i/o while holding a
  2454. global lock. (Amareshwari Sriramadasu via acmurthy)
  2455. MAPREDUCE-1158. Fix JT running maps and running reduces metrics.
  2456. (sharad)
  2457. MAPREDUCE-1160. Reduce verbosity of log lines in some Map/Reduce classes
  2458. to avoid filling up jobtracker logs on a busy cluster.
  2459. (Ravi Gummadi and Hong Tang via yhemanth)
  2460. MAPREDUCE-1153. Fix tasktracker metrics when trackers are decommissioned.
  2461. (sharad)
  2462. MAPREDUCE-1128. Fix MRUnit to prohibit iterating over values twice. (Aaron
  2463. Kimball via cdouglas)
  2464. MAPREDUCE-665. Move libhdfs to HDFS subproject. (Eli Collins via dhruba)
  2465. MAPREDUCE-1196. Fix FileOutputCommitter to use the deprecated cleanupJob
  2466. api correctly. (acmurthy)
  2467. MAPREDUCE-1244. Fix eclipse-plugin's build dependencies. (gkesavan)
  2468. MAPREDUCE-1140. Fix DistributedCache to not decrement reference counts for
  2469. unreferenced files in error conditions.
  2470. (Amareshwari Sriramadasu via yhemanth)
  2471. MAPREDUCE-1245. Fix TestFairScheduler failures by instantiating lightweight
  2472. Jobtracker. (sharad)
  2473. MAPREDUCE-1260. Update Eclipse configuration to match changes to Ivy
  2474. configuration. (Edwin Chan via cos)
  2475. MAPREDUCE-1152. Distinguish between failed and killed tasks in
  2476. JobTrackerInstrumentation. (Sharad Agarwal via cdouglas)
  2477. MAPREDUCE-1285. In DistCp.deleteNonexisting(..), get class from the
  2478. parameter instead of using FileStatus.class. (Peter Romianowski via
  2479. szetszwo)
  2480. MAPREDUCE-1294. Build fails to pull latest hadoop-core-* artifacts (cos)
  2481. MAPREDUCE-1213. TaskTrackers restart is faster because it deletes
  2482. distributed cache directory asynchronously. (Zheng Shao via dhruba)
  2483. MAPREDUCE-1265. The task attempt error log prints the name of the
  2484. tasktracker machine. (Scott Chen via dhruba)
  2485. MAPREDUCE-1201. ProcfsBasedProcessTree collects CPU usage information.
  2486. (Scott Chen via dhruba)
  2487. MAPREDUCE-1326. fi tests don't use fi-site.xml (cos)
  2488. MAPREDUCE-1165. Replace non-portable function name with C99 equivalent.
  2489. (Allen Wittenauer via cdouglas)
  2490. MAPREDUCE-1331. Fixes a typo in a testcase (Devaraj Das)
  2491. MAPREDUCE-1293. AutoInputFormat doesn't work with non-default FileSystems.
  2492. (Andrew Hitchcock via tomwhite)
  2493. MAPREDUCE-1131. Using profilers other than hprof can cause JobClient to
  2494. report job failure. (Aaron Kimball via tomwhite)
  2495. MAPREDUCE-1155. Streaming tests swallow exceptions.
  2496. (Todd Lipcon via tomwhite)
  2497. MAPREDUCE-1212. Mapreduce contrib project ivy dependencies are not included
  2498. in binary target. (Aaron Kimball via tomwhite)
  2499. MAPREDUCE-1388. Move the HDFS RAID package from HDFS to MAPREDUCE.
  2500. (Eli Collins via dhruba)
  2501. MAPREDUCE-1322. Defines default value for staging directory to be user
  2502. based fixing a failing streaming test.
  2503. (Devaraj Das and Amareshwari Sriramadasu via yhemanth)
  2504. MAPREDUCE-899. Modified LinuxTaskController to check that task-controller
  2505. has right permissions and ownership before performing any actions.
  2506. (Amareshwari Sriramadasu via yhemanth)
  2507. MAPREDUCE-1443. DBInputFormat can leak connections.
  2508. (Aaron Kimball via tomwhite)
  2509. MAPREDUCE-1457. Fixes JobTracker to get the FileSystem object within
  2510. getStagingAreaDir within a privileged block. Fixes Child.java to use the
  2511. appropriate UGIs while getting the TaskUmbilicalProtocol proxy and
  2512. while executing the task. (Jakob Homan via ddas)
  2513. MAPREDUCE-1399. The archive command shows a null error message (nicholas
  2514. via mahadev)
  2515. MAPREDUCE-1305. Improve efficiency of distcp -delete. (Peter Romianowski
  2516. via cdouglas)
  2517. MAPREDUCE-1474. Update forrest documentation for Hadoop Archives. (Mahadev
  2518. Konar via cdouglas)
  2519. MAPREDUCE-1400. Use tr rather than sed to effect literal substitution in
  2520. the build script. (Allen Wittenauer via cdouglas)
  2521. MAPREDUCE-1358. Avoid false positives in OutputLogFilter. (Todd Lipcon via
  2522. cdouglas)
  2523. MAPREDUCE-1490. Fix a NullPointerException that could occur during
  2524. instantiation and initialization of the DistributedRaidFileSystem.
  2525. (Rodrigo Schmidt via dhruba)
  2526. MAPREDUCE-1476. Fix the M/R framework to not call commit for special
  2527. tasks like job setup/cleanup and task cleanup.
  2528. (Amareshwari Sriramadasu via yhemanth)
  2529. MAPREDUCE-1398. Fix TaskLauncher to stop waiting for slots on a TIP that
  2530. is killed / failed.
  2531. (Amareshwari Sriramadasu via yhemanth)
  2532. MAPREDUCE-1491. The parity files created by the RAID are combined
  2533. using Hadoop Archive Files (HAR). (Rodrigo Schmidt via dhruba)
  2534. MAPREDUCE-1378. URL encode link in jobhistory.jsp to avoid errors caused by
  2535. unescaped characters. (E. Sammer via cdouglas)
  2536. MAPREDUCE-1519. RaidNode fails to create new parity file
  2537. if an older version already exists. (Rodrigo Schmidt via dhruba)
  2538. MAPREDUCE-1537. Fixes a compilation problem in a testcase after commit
  2539. HDFS-984. (Jitendra Nath Pandey via ddas)
  2540. MAPREDUCE-1537. The patch makes the job client call the getDelegationToken
  2541. only when security is enabled. (Jitendra Nath Pandey via ddas)
  2542. MAPREDUCE-1510. RAID should regenerate parity files if they get deleted.
  2543. (Rodrigo Schmidt via dhruba)
  2544. MAPREDUCE-1421. Fix the LinuxTaskController tests failing on trunk after
  2545. the commit of MAPREDUCE-1385. (Amareshwari Sriramadasu via vinodkv)
  2546. MAPREDUCE-1520. Fix TestMiniMRLocalFS failure caused by regression in
  2547. getting user working dir. (Amareshwari Sriramadasu via cdouglas)
  2548. MAPREDUCE-1512. RAID uses HarFileSystem directly instead of
  2549. FileSystem.get (Rodrigo Schmidt via dhruba)
  2550. MAPREDUCE-1435. Fix symlink handling in task work directory when
  2551. cleaning up, essentially to avoid following links.
  2552. (Ravi Gummadi via yhemanth)
  2553. MAPREDUCE-1518. RaidNode does not run the deletion check on the
  2554. directory that stores the parity files. (Rodrigo Schmidt via dhruba)
  2555. MAPREDUCE-1573. TestStreamingAsDifferentUser fails if run as tt_user.
  2556. (Ravi Gummadi via vinodkv)
  2557. MAPREDUCE-927. Cleanup of task-logs should happen in TaskTracker instead
  2558. of the Child. (Amareshwari Sriramadasu via vinodkv)
  2559. MAPREDUCE-1578. Decouple HadoopArchives vesrion from HarFileSystem version.
  2560. (Rodrigo Schmidt via szetszwo)
  2561. MAPREDUCE-1422. Fix cleanup of localized job directory to work if files
  2562. with non-deletable permissions are created within it.
  2563. (Amar Kamat via yhemanth)
  2564. MAPREDUCE-1306. Randomize the arrival of heartbeat responses in Mumak.
  2565. (Tamas Sarlos via cdouglas)
  2566. MAPREDUCE-1579. archive: check and possibly replace the space charater
  2567. in source paths. (szetszwo)
  2568. MAPREDUCE-1536. DataDrivenDBInputFormat does not split date columns correctly.
  2569. (Aaron Kimball via enis)
  2570. MAPREDUCE-890. After HADOOP-4491, the user who started mapred system is
  2571. not able to run job. (Ravi Gummadi via vinodkv)
  2572. MAPREDUCE-1615. Fix compilation of TestSubmitJob. (cdouglas)
  2573. MAPREDUCE-1508. Protect against NPE in TestMultipleLevelCaching. (Aaron
  2574. Kimball via cdouglas)
  2575. MAPREDUCE-1497. Suppress spurious findbugs warning about IndexCache
  2576. synchronization. (Amareshwari Sriramadasu via cdouglas)
  2577. MAPREDUCE-1420. Fix TestTTResourceReporting failure. (Scott Chen via
  2578. cdouglas)
  2579. MAPREDUCE-1480. Correctly initialize child RecordReaders in
  2580. CombineFileInputFormat. (Aaron Kimball via cdouglas)
  2581. MAPREDUCE-1348. Fix block forensics packaging. (Tom White via cdouglas)
  2582. MAPREDUCE-1628. HarFileSystem shows incorrect replication numbers and
  2583. permissions. (szetszwo via mahadev)
  2584. MAPREDUCE-1602. Fix the error message for the case that src does not
  2585. exist. (szetszwo)
  2586. MAPREDUCE-1585. Create Hadoop Archives version 2 with filenames
  2587. URL-encoded (rodrigo via mahadev)
  2588. MAPREDUCE-1523. Sometimes rumen trace generator fails to extract the job
  2589. finish time. (dick king via mahadev)
  2590. MAPREDUCE-1635. ResourceEstimator does not work after MAPREDUCE-842.
  2591. (Amareshwari Sriramadasu via vinodkv)
  2592. MAPREDUCE-889. binary communication formats added to Streaming by
  2593. HADOOP-1722 should be documented. (Klaas Bosteels via tomwhite)
  2594. MAPREDUCE-1031. ant tar target doens't seem to compile tests in contrib
  2595. projects. (Aaron Kimball via tomwhite)
  2596. MAPREDUCE-1692. Removed unused testcase TestStreamedMerge.
  2597. (Sreekanth Ramakrishnan and Amareshwari Sriramadasu via yhemanth)
  2598. MAPREDUCE-1062. Fix ReliabilityTest to work with retired jobs. (Sreekanth
  2599. Ramakrishnan via cdouglas)
  2600. MAPREDUCE-1409. IOExceptions thrown from FIleOutputCommitter::abortTask
  2601. should cause the task to fail. (Amareshwari Sriramadasu via cdouglas)
  2602. MAPREDUCE-1695. Include capacity scheduler in findbugs and javadoc-dev
  2603. targets and also fix existing warnings. (Hong Tang via yhemanth)
  2604. MAPREDUCE-1494. Ensure TestJobDirCleanup verifies the correct paths.
  2605. (Amareshwari Sriramadasu via cdouglas)
  2606. MAPREDUCE-1622. Include missing slf4j dependencies. (cdouglas)
  2607. MAPREDUCE-1515. Accept java5.home from build.properties, not only from the
  2608. command line when building forrest docs. (Al Thompson via cdouglas)
  2609. MAPREDUCE-1618. Add missing javadoc to JobStatus::*JobAcls. (Amareshwari
  2610. Sriramadasu via cdouglas)
  2611. MAPREDUCE-1219. Remove job level metrics from jobtracker metrics to ease
  2612. undue load on jobtracker. (Sreekanth Ramakrishnan via sharad)
  2613. MAPREDUCE-1604. Add Forrest documentation for Job ACLs.
  2614. (Amareshwari Sriramadasu via yhemanth)
  2615. MAPREDUCE-1705. Archiving and Purging of HDFS parity files should
  2616. handle globbed policies accurately. (Rodrigo Schmidt via dhruba)
  2617. MAPREDUCE-1612. job conf file is not accessible from job history web page.
  2618. (Ravi Gummadi and Sreekanth Ramakrishnan via vinodkv)
  2619. MAPREDUCE-1397. NullPointerException observed during task failures.
  2620. (Amareshwari Sriramadasu via vinodkv)
  2621. MAPREDUCE-1728. Oracle timezone strings do not match Java.
  2622. (Aaron Kimball via tomwhite)
  2623. MAPREDUCE-1609. TaskTracker.localizeJob should not set permissions on
  2624. job log directory recursively. (Amareshwari Sriramadasu via vinodkv)
  2625. MAPREDUCE-1657. After task logs directory is deleted, tasklog servlet
  2626. displays wrong error message about job ACLs. (Ravi Gummadi via vinodkv)
  2627. MAPREDUCE-1727. TestJobACLs fails after HADOOP-6686. (Ravi Gummadi via vinodkv)
  2628. MAPREDUCE-1611. Refresh nodes and refresh queues doesnt work with service
  2629. authorization enabled. (Amar Kamat via vinodkv)
  2630. MAPREDUCE-1276. Correct flaws in the shuffle related to connection setup
  2631. and failure attribution. (Amareshwari Sriramadasu via cdouglas)
  2632. MAPREDUCE-1372. ConcurrentModificationException in JobInProgress.
  2633. (Dick King and Amareshwari Sriramadasu via tomwhite)
  2634. MAPREDUCE-118. Fix Job.getJobID(). (Amareshwari Sriramadasu via sharad)
  2635. MAPREDUCE-913. TaskRunner crashes with NPE resulting in held up slots,
  2636. UNINITIALIZED tasks and hung TaskTracker. (Amareshwari Sriramadasu and
  2637. Sreekanth Ramakrishnan via vinodkv)
  2638. MAPREDUCE-1725. Fix MapReduce API incompatibilities between 0.20 and 0.21.
  2639. (tomwhite)
  2640. MAPREDUCE-1606. TestJobACLs may timeout as there are no slots for launching
  2641. JOB_CLEANUP task. (Ravi Gummadi via vinodkv)
  2642. MAPREDUCE-1765. Correct streaming documentation for StreamXmlRecordReader.
  2643. (Corinne Chandel via amareshwari)
  2644. MAPREDUCE-1880. Fix BigDecimal.divide(..) in the pi example. (szetszwo)
  2645. MAPREDUCE-1885. Revert FileSystem create method that takes CreateFlags
  2646. (MapReduce part of HADOOP-6826). (Ravi Gummadi via tomwhite)
  2647. MAPREDUCE-1870. Harmonize MapReduce JAR library versions with Common and
  2648. HDFS. (tomwhite)
  2649. MAPREDUCE-1791. Remote cluster control functionality needs JavaDocs
  2650. improvement (Konstantin Boudnik)
  2651. MAPREDUCE-1942. 'compile-fault-inject' should never be called directly.
  2652. (Konstantin Boudnik)
  2653. MAPREDUCE-1876. Fixes TaskAttemptStartedEvent to correctly log event type
  2654. for all task types. (Amar Kamat via amareshwari)
  2655. MAPREDUCE-1926. MapReduce distribution is missing build-utils.xml.
  2656. (tomwhite)
  2657. MAPREDUCE-2012. Some contrib tests fail in branch 0.21 and trunk.
  2658. (Amareshwari Sriramadasu via tomwhite)
  2659. MAPREDUCE-1980. Fixes TaskAttemptUnsuccessfulCompletionEvent and
  2660. TaskAttemptFinishedEvent to correctly log event type for all task types.
  2661. (Amar Kamat via amareshwari)
  2662. MAPREDUCE-1856. Extract a subset of tests for smoke (DOA) validation (cos)