CHANGES.txt 203 KB

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