1
0

CHANGES.txt 291 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893
  1. Hadoop MapReduce Change Log
  2. Trunk (Unreleased)
  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. MAPREDUCE-4887. Add RehashPartitioner, to smooth distributions
  9. with poor implementations of Object#hashCode(). (Radim Kolar via cutting)
  10. MAPREDUCE-5232. Add a configuration to be able to log classpath and other
  11. system properties on mapreduce JVMs startup. (Sangjin Lee via vinodkv)
  12. MAPREDUCE-5910. Make MR AM resync with RM in case of work-preserving
  13. RM-restart. (Rohith via jianhe)
  14. MAPREDUCE-2841. Add a native implementation of MapOutputCollector.
  15. (see section below for detailed breakdown)
  16. IMPROVEMENTS
  17. MAPREDUCE-3481. [Gridmix] Improve Gridmix STRESS mode. (amarrk)
  18. MAPREDUCE-3597. [Rumen] Rumen should provide APIs to access all the
  19. job-history related information.
  20. MAPREDUCE-3375. [Gridmix] Memory Emulation system tests.
  21. (Vinay Thota via amarrk)
  22. MAPREDUCE-2733. [Gridmix] Gridmix3 cpu emulation system tests.
  23. (Vinay Thota via amarrk)
  24. MAPREDUCE-2836. Provide option to fail jobs when submitted to non-existent
  25. fair scheduler pools. (Ahmed Radwan via todd)
  26. MAPREDUCE-3171. normalize nodemanager native code compilation with common/hdfs
  27. native. (tucu)
  28. MAPREDUCE-3149. Add a test to verify that TokenCache handles file system
  29. uri with no authority. (John George via jitendra)
  30. MAPREDUCE-3169. Create a new MiniMRCluster equivalent which only provides
  31. client APIs cross MR1 and MR2 (Ahmed via tucu)
  32. MAPREDUCE-2944. Improve checking of input for JobClient.displayTasks()
  33. (XieXianshan via harsh)
  34. MAPREDUCE-3956. Remove the use of the deprecated Syncable.sync() method from
  35. TeraOutputFormat in the terasort example. (szetszwo)
  36. MAPREDUCE-3935. Annotate Counters.Counter and Counters.Group as @Public.
  37. (tomwhite)
  38. HADOOP-8285 MR changes for Use ProtoBuf for RpcPayLoadHeader (sanjay radia)
  39. MAPREDUCE-3302. Remove the last dependency call from
  40. org.apache.hadoop.record package in MR. (harsh)
  41. MAPREDUCE-2384. The job submitter should make sure to validate
  42. jobs before creation of necessary files. (harsh)
  43. MAPREDUCE-4371. Check for cyclic dependencies in Jobcontrol job DAG
  44. (madhukara phatak via bobby)
  45. MAPREDUCE-4686. hadoop-mapreduce-client-core fails compilation in Eclipse
  46. due to missing Avro-generated classes (Chris Nauroth via harsh)
  47. MAPREDUCE-4735. Make arguments in TestDFSIO case insensitive.
  48. (Brandon Li via suresh)
  49. MAPREDUCE-5197. Add a service for checkpointing task state.
  50. (Carlo Curino via cdouglas)
  51. MAPREDUCE-5189. Add policies and wiring to respond to preemption requests
  52. from YARN. (Carlo Curino via cdouglas)
  53. MAPREDUCE-5196. Add bookkeeping for managing checkpoints of task state.
  54. (Carlo Curino via cdouglas)
  55. MAPREDUCE-5912. Task.calculateOutputSize does not handle Windows files after
  56. MAPREDUCE-5196. (Remus Rusanu via cnauroth)
  57. MAPREDUCE-6019. MapReduce changes for exposing YARN/MR endpoints on multiple
  58. interfaces. (Craig Welch, Milan Potocnik, Arpit Agarwal via xgong)
  59. MAPREDUCE-6013. [post-HADOOP-9902] mapred version is missing (Akira AJISAKA
  60. via aw)
  61. BUG FIXES
  62. MAPREDUCE-5714. Removed forceful JVM exit in shutDownJob.
  63. (Jinghui Wang via Eric Yang)
  64. MAPREDUCE-3194. "mapred mradmin" command is broken in mrv2
  65. (Jason Lowe via bobby)
  66. MAPREDUCE-3462. Fix Gridmix JUnit testcase failures.
  67. (Ravi Prakash and Ravi Gummadi via amarrk)
  68. MAPREDUCE-3349. Log rack-name in JobHistory for unsuccessful tasks.
  69. (Devaraj K and Amar Kamat via amarrk)
  70. MAPREDUCE-3412. Fix 'ant docs'. (amarrk)
  71. MAPREDUCE-3346. [Rumen] LoggedTaskAttempt#getHostName() returns null.
  72. (amarrk)
  73. MAPREDUCE-2950. [Gridmix] TestUserResolve fails in trunk.
  74. (Ravi Gummadi via amarrk)
  75. MAPREDUCE-2784. [Gridmix] Bug fixes in ExecutionSummarizer and
  76. ResourceUsageMatcher. (amarrk)
  77. MAPREDUCE-2978. Fixed test-patch to make Jenkins report correct number of
  78. findBugs, correct links to findBugs artifacts and no links to the
  79. artifacts when there are no warnings. (Tom White via vinodkv).
  80. MAPREDUCE-3664. Federation Documentation has incorrect configuration example.
  81. (Brandon Li via jitendra)
  82. MAPREDUCE-1740. NPE in getMatchingLevelForNodes when node locations are
  83. variable depth (ahmed via tucu) [IMPORTANT: this is dead code in trunk]
  84. MAPREDUCE-3990. MRBench allows Long-sized input-lines value
  85. but parses CLI argument as an Integer. (harsh)
  86. MAPREDUCE-3868. Make Raid Compile. (Weiyan Wang via schen)
  87. MAPREDUCE-4685. DBCount should not use ACCESS. (Viji via harsh)
  88. MAPREDUCE-3223. Remove MR1 configs from mapred-default.xml (tlipcon via harsh)
  89. MAPREDUCE-4695. Fix LocalRunner on trunk after MAPREDUCE-3223 broke it
  90. (harsh)
  91. MAPREDUCE-4574. Fix TotalOrderParitioner to work with
  92. non-WritableComparable key types. (harsh)
  93. MAPREDUCE-5012. Typo in javadoc for IdentityMapper class. (Adam Monsen
  94. via suresh)
  95. MAPREDUCE-4987. TestMRJobs#testDistributedCache fails on Windows due to
  96. classpath problems and unexpected behavior of symlinks (Chris Nauroth via
  97. bikas)
  98. MAPREDUCE-5191. TestQueue#testQueue fails with timeout on Windows. (Ivan
  99. Mitic via hitesh)
  100. MAPREDUCE-5717. Task pings are interpreted as task progress (jlowe)
  101. MAPREDUCE-5867. Fix NPE in KillAMPreemptionPolicy related to
  102. ProportionalCapacityPreemptionPolicy (Sunil G via devaraj)
  103. MAPREDUCE-5972. Fix typo 'programatically' in job.xml (and a few other
  104. places) (Akira AJISAKA via aw)
  105. BREAKDOWN OF MAPREDUCE-2841 (NATIVE TASK) SUBTASKS
  106. MAPREDUCE-5985. native-task: Fix build on macosx. Contributed by
  107. Binglin Chang
  108. MAPREDUCE-5994. Simplify ByteUtils and fix failing test. (todd)
  109. MAPREDUCE-5996. native-task: Rename system tests into standard directory
  110. layout (todd)
  111. MAPREDUCE-5997. native-task: Use DirectBufferPool from Hadoop Common (todd)
  112. MAPREDUCE-6000. native-task: Simplify ByteBufferDataReader/Writer (todd)
  113. MAPREDUCE-5991. native-task should not run unit tests if native profile is
  114. not enabled. (Binglin Chang)
  115. MAPREDUCE-5995. native-task: Revert changes to Text internals (todd)
  116. MAPREDUCE-6005. native-task: Fix some valgrind errors (Binglin Chang)
  117. MAPREDUCE-5984. native-task: Reuse lz4 sources in hadoop-common (Binglin
  118. Chang)
  119. MAPREDUCE-5976. native-task: should not fail to build if snappy is missing
  120. (Manu Zhang)
  121. MAPREDUCE-5978. native-task: remove test case for not supported codec
  122. Bzip2Codec and DefaultCodec (Manu Zhang)
  123. MAPREDUCE-6006. native-task: add native tests to maven and fix bug in
  124. pom.xml (Binglin Chang via todd)
  125. MAPREDUCE-6026. native-task: fix logging (Manu Zhang via todd)
  126. MAPREDUCE-6035. native-task: sources/test-sources jar distribution (Manu
  127. Zhang via todd)
  128. MAPREDUCE-5977. Fix or suppress native-task gcc warnings (Manu Zhang via
  129. todd)
  130. MAPREDUCE-6054. native-task: Speed up tests (todd)
  131. MAPREDUCE-6058. native-task: KVTest and LargeKVTest should check mr job is
  132. sucessful (Binglin Chang)
  133. MAPREDUCE-6056. native-task: move system test working dir to target dir and
  134. cleanup test config xml files (Manu Zhang via bchang)
  135. MAPREDUCE-6055. native-task: findbugs, interface annotations, and other misc
  136. cleanup (todd)
  137. MAPREDUCE-6067. native-task: fix some counter issues (Binglin Chang)
  138. MAPREDUCE-6069. native-task: Lint/style fixes and removal of unused code
  139. (todd)
  140. MAPREDUCE-6074. native-task: fix release audit, javadoc, javac warnings
  141. (todd)
  142. MAPREDUCE-6077. native-task: Remove CustomModule examples in nativetask (seanzhong)
  143. MAPREDUCE-6078. native-task: fix gtest build on macosx (Binglin Chang)
  144. Release 2.7.0 - UNRELEASED
  145. INCOMPATIBLE CHANGES
  146. NEW FEATURES
  147. IMPROVEMENTS
  148. OPTIMIZATIONS
  149. BUG FIXES
  150. Release 2.6.0 - UNRELEASED
  151. INCOMPATIBLE CHANGES
  152. NEW FEATURES
  153. IMPROVEMENTS
  154. MAPREDUCE-5971. Move the default options for distcp -p to
  155. DistCpOptionSwitch. (clamb via wang)
  156. MAPREDUCE-5963. ShuffleHandler DB schema should be versioned with
  157. compatible/incompatible changes (Junping Du via jlowe)
  158. MAPREDUCE-883. harchive: Document how to unarchive (Akira AJISAKA and
  159. Koji Noguchi via aw)
  160. MAPREDUCE-4791. Javadoc for KeyValueTextInputFormat should include default
  161. separator and how to change it (Akira AJISAKA via aw)
  162. MAPREDUCE-5906. Inconsistent configuration in property
  163. "mapreduce.reduce.shuffle.input.buffer.percent" (Akira AJISAKA via aw)
  164. MAPREDUCE-5974. Allow specifying multiple MapOutputCollectors with
  165. fallback. (Todd Lipcon via kasha)
  166. MAPREDUCE-5130. Add missing job config options to mapred-default.xml
  167. (Ray Chiang via Sandy Ryza)
  168. MAPREDUCE-5891. Improved shuffle error handling across NM restarts
  169. (Junping Du via jlowe)
  170. MAPREDUCE-5279. Made MR headroom calculation honor cpu dimension when YARN
  171. scheduler resource type is memory plus cpu. (Peng Zhang and Varun Vasudev
  172. via zjshen)
  173. MAPREDUCE-6072. Remove INSTALL document (Akira AJISAKA via aw)
  174. MAPREDUCE-5970. Provide a boolean switch to enable MR-AM profiling (Gera
  175. Shegalov via jlowe)
  176. OPTIMIZATIONS
  177. BUG FIXES
  178. MAPREDUCE-5866. TestFixedLengthInputFormat fails in windows.
  179. (Varun Vasudev via cnauroth)
  180. MAPREDUCE-5956. Made MR AM not use maxAttempts to determine if the current
  181. attempt is the last retry. (Wangda Tan via zjshen)
  182. MAPREDUCE-5957. AM throws ClassNotFoundException with job classloader
  183. enabled if custom output format/committer is used (Sangjin Lee via jlowe)
  184. MAPREDUCE-5756. CombineFileInputFormat.getSplits() including directories
  185. in its results (Jason Dere via jlowe)
  186. MAPREDUCE-6014. New task status field in task attempts table can lead to
  187. an empty web page (Mit Desai via jlowe)
  188. MAPREDUCE-6021. MR AM should have working directory in LD_LIBRARY_PATH
  189. (jlowe)
  190. MAPREDUCE-6010. HistoryServerFileSystemStateStore fails to update tokens
  191. (jlowe)
  192. MAPREDUCE-5878. some standard JDK APIs are not part of system classes
  193. defaults (Sangjin Lee via jlowe)
  194. MAPREDUCE-5944. Remove MRv1 commands from CommandsManual.apt.vm
  195. (Akira AJISAKA via aw)
  196. MAPREDUCE-5943. Separate mapred commands from CommandManual.apt.vm
  197. (Akira AJISAKA via aw)
  198. MAPREDUCE-5363. Fix doc and spelling for TaskCompletionEvent#getTaskStatus
  199. and getStatus (Akira AJISAKA via aw)
  200. MAPREDUCE-5595. Typo in MergeManagerImpl.java (Akira AJISAKA via aw)
  201. MAPREDUCE-5597. Missing alternatives in javadocs for deprecated constructors
  202. in mapreduce.Job (Akira AJISAKA via aw)
  203. MAPREDUCE-5950. incorrect description in distcp2 document (Akira AJISAKA
  204. via aw)
  205. MAPREDUCE-5998. CompositeInputFormat javadoc is broken (Akira AJISAKA via
  206. aw)
  207. MAPREDUCE-5999. Fix dead link in InputFormat javadoc (Akira AJISAKA via aw)
  208. MAPREDUCE-6032. Made MR jobs write job history files on the default FS when
  209. the current context's FS is different. (Benjamin Zhitomirsky via zjshen)
  210. MAPREDUCE-6024. Shortened the time when Fetcher is stuck in retrying before
  211. concluding the failure by configuration. (Yunjiong Zhao via zjshen)
  212. MAPREDUCE-6036. TestJobEndNotifier fails intermittently in branch-2 (chang
  213. li via jlowe)
  214. MAPREDUCE-6012. DBInputSplit creates invalid ranges on Oracle.
  215. (Wei Yan via kasha)
  216. MAPREDUCE-6044. Fully qualified intermediate done dir path breaks per-user dir
  217. creation on Windows. (zjshen)
  218. MAPREDUCE-5885. build/test/test.mapred.spill causes release audit warnings
  219. (Chen He via jlowe)
  220. BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
  221. MAPREDUCE-5890. Support for encrypting Intermediate
  222. data and spills in local filesystem. (asuresh via tucu)
  223. MAPREDUCE-6007. Add support to distcp to preserve raw.* namespace
  224. extended attributes. (clamb)
  225. MAPREDUCE-6041. Fix TestOptionsParser. (clamb)
  226. --
  227. MAPREDUCE-6051. Fix typos in log messages. (Ray Chiang via cdouglas)
  228. MAPREDUCE-5931. Validate SleepJob command line parameters (Gera Shegalov
  229. via jlowe)
  230. MAPREDUCE-6063. Correct spill size calculation for spills wrapping the
  231. circular buffer. (zhihai xu via cdouglas)
  232. MAPREDUCE-6071. JobImpl#makeUberDecision doesn't log that Uber mode is
  233. disabled because of too much CPUs (Tsuyoshi OZAWA via jlowe)
  234. MAPREDUCE-6075. HistoryServerFileSystemStateStore can create zero-length
  235. files (jlowe)
  236. MAPREDUCE-6070. yarn.app.am.resource.mb/cpu-vcores affects uber mode but
  237. is not documented (Tsuyoshi OZAWA via jlowe)
  238. MAPREDUCE-6090. mapred hsadmin getGroups fails to connect in some cases
  239. (Robert Kanter via jlowe)
  240. MAPREDUCE-6086. mapreduce.job.credentials.binary should allow all URIs.
  241. (Zhihai Xu via kasha)
  242. MAPREDUCE-6091. YARNRunner.getJobStatus() fails with
  243. ApplicationNotFoundException if the job rolled off the RM view (Sangjin
  244. Lee via jlowe)
  245. MAPREDUCE-6095. Enable DistributedCache for uber-mode Jobs (Gera Shegalov
  246. via jlowe)
  247. MAPREDUCE-6104. TestJobHistoryParsing.testPartialJob fails in branch-2
  248. (Mit Desai via jlowe)
  249. MAPREDUCE-6109. Fix minor typo in distcp -p usage text (Charles Lamb
  250. via aw)
  251. MAPREDUCE-6093. minor distcp doc edits (Charles Lamb via aw)
  252. MAPREDUCE-5831. Make MR client ignore unknown counters received from AM.
  253. (Junping Du via zjshen)
  254. MAPREDUCE-6073. Description of mapreduce.job.speculative.slowtaskthreshold
  255. in mapred-default should be moved into description tags (Tsuyoshi OZAWA
  256. via aw)
  257. MAPREDUCE-5796. Use current version of the archive name in
  258. DistributedCacheDeploy document (Akira AJISAKA via aw)
  259. MAPREDUCE-5945. Update the description of GenericOptionsParser -jt
  260. option (Akira AJISAKA via aw)
  261. MAPREDUCE-6087. Fixed wrong config name of
  262. MRJobConfig#MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS. Contributed by
  263. Akira AJISAKA. (Akira AJISAKA via jianhe)
  264. MAPREDUCE-6094. TestMRCJCFileInputFormat.testAddInputPath() fails on trunk
  265. (Akira AJISAKA via jlowe)
  266. MAPREDUCE-6029. TestCommitterEventHandler fails in trunk (Mit Desai via
  267. jlowe)
  268. MAPREDUCE-6122. TestLineRecordReader may fail due to test data files checked
  269. out of git with incorrect line endings. (cnauroth)
  270. MAPREDUCE-6123. TestCombineFileInputFormat incorrectly starts 2
  271. MiniDFSCluster instances. (cnauroth)
  272. MAPREDUCE-5875. Make Counter limits consistent across JobClient,
  273. MRAppMaster, and YarnChild. (Gera Shegalov via kasha)
  274. MAPREDUCE-6125. TestContainerLauncherImpl sometimes fails (Mit Desai via
  275. jlowe)
  276. MAPREDUCE-6115. TestPipeApplication#testSubmitter fails in trunk (Binglin
  277. Chang via jlowe)
  278. MAPREDUCE-5873. Shuffle bandwidth computation includes time spent waiting
  279. for maps (Siqi Li via jlowe)
  280. MAPREDUCE-5542. Killing a job just as it finishes can generate an NPE in
  281. client (Rohith via jlowe)
  282. Release 2.5.1 - 2014-09-05
  283. INCOMPATIBLE CHANGES
  284. NEW FEATURES
  285. IMPROVEMENTS
  286. OPTIMIZATIONS
  287. BUG FIXES
  288. MAPREDUCE-6033. Updated access check for displaying job information
  289. (Yu Gao via Eric Yang)
  290. Release 2.5.0 - 2014-08-11
  291. INCOMPATIBLE CHANGES
  292. NEW FEATURES
  293. IMPROVEMENTS
  294. MAPREDUCE-5671. NaN can be created by client and assign to Progress (Chen
  295. He via jeagles)
  296. MAPREDUCE-5665. Add audience annotations to MiniMRYarnCluster and
  297. MiniMRCluster. (Anubhav Dhoot via kasha)
  298. MAPREDUCE-5765. Update hadoop-pipes examples README (Mit Desai via jeagles)
  299. MAPREDUCE-5713. InputFormat and JobConf JavaDoc Fixes (Chen He via jeagles)
  300. MAPREDUCE-5456. TestFetcher.testCopyFromHostExtraBytes is missing (Jason
  301. Lowe via jeagles)
  302. MAPREDUCE-5804. TestMRJobsWithProfiler#testProfiler timesout (Mit Desai
  303. via kihwal)
  304. MAPREDUCE-5825. Provide diagnostics for reducers killed during ramp down
  305. (Gera Shegalov via jlowe)
  306. MAPREDUCE-5836. Fix typo in RandomTextWriter (Akira AJISAKA via jeagles)
  307. MAPREDUCE-5852. Prepare MapReduce codebase for JUnit 4.11. (cnauroth)
  308. MAPREDUCE-5639. Port DistCp2 document to trunk (Akira AJISAKA via jeagles)
  309. MAPREDUCE-5812. Make job context available to
  310. OutputCommitter.isRecoverySupported() (Mohammad Kamrul Islam via jlowe)
  311. MAPREDUCE-5638. Port Hadoop Archives document to trunk (Akira AJISAKA via
  312. jeagles)
  313. MAPREDUCE-5402. In DynamicInputFormat, change MAX_CHUNKS_TOLERABLE,
  314. MAX_CHUNKS_IDEAL, MIN_RECORDS_PER_CHUNK and SPLIT_RATIO to be configurable.
  315. (Tsuyoshi OZAWA via szetszwo)
  316. MAPREDUCE-5637. Convert Hadoop Streaming document to APT (Akira AJISAKA via
  317. jeagles)
  318. MAPREDUCE-5636. Convert MapReduce Tutorial document to APT (Akira AJISAKA
  319. via jeagles)
  320. MAPREDUCE-5774. Job overview in History UI should list reducer phases in
  321. chronological order. (Gera Shegalov via kasha)
  322. MAPREDUCE-5652. NM Recovery. ShuffleHandler should handle NM restarts.
  323. (Jason Lowe via kasha)
  324. MAPREDUCE-5861. finishedSubMaps field in LocalContainerLauncher does not
  325. need to be volatile. (Tsuyoshi OZAWA via junping_du)
  326. MAPREDUCE-5809. Enhance distcp to support preserving HDFS ACLs. (cnauroth)
  327. MAPREDUCE-5899. Support incremental data copy in DistCp. (jing9)
  328. MAPREDUCE-5886. Allow wordcount example job to accept multiple input paths.
  329. (cnauroth)
  330. MAPREDUCE-5834. Increased test-timeouts in TestGridMixClasses to avoid
  331. occassional failures. (Mit Desai via vinodkv)
  332. MAPREDUCE-5896. InputSplits should indicate which locations have the block
  333. cached in memory. (Sandy Ryza via kasha)
  334. MAPREDUCE-5844. Add a configurable delay to reducer-preemption.
  335. (Maysam Yabandeh via kasha)
  336. MAPREDUCE-5790. Made it easier to enable hprof profile options by default.
  337. (Gera Shegalov via vinodkv)
  338. OPTIMIZATIONS
  339. BUG FIXES
  340. MAPREDUCE-5759. Remove unnecessary conf load in Limits (Sandy Ryza)
  341. MAPREDUCE-5014. Extend Distcp to accept a custom CopyListing.
  342. (Srikanth Sundarrajan via amareshwari)
  343. MAPREDUCE-5775. Remove unnecessary job.setNumReduceTasks in SleepJob.createJob
  344. (jhanver chand sharma via devaraj)
  345. MAPREDUCE-4937. MR AM handles an oversized split metainfo file poorly
  346. (Eric Payne via jlowe)
  347. MAPREDUCE-5642. TestMiniMRChildTask fails on Windows.
  348. (Chuan Liu via cnauroth)
  349. MAPREDUCE-5846. Rumen doesn't understand JobQueueChangedEvent (Nathan Roberts via raviprak)
  350. MAPREDUCE-5837. MRAppMaster fails when checking on uber mode. (wheat9)
  351. MAPREDUCE-5749. TestRMContainerAllocator#testReportedAppProgress Failed
  352. (jlowe)
  353. MAPREDUCE-5884. History server uses short user name when canceling tokens
  354. (Mohammad Kamrul Islam via jlowe)
  355. MAPREDUCE-5888. Failed job leaves hung AM after it unregisters (Jason Lowe
  356. via jeagles)
  357. MAPREDUCE-5814. fat jar with *-default.xml may fail when
  358. mapreduce.job.classloader=true. (Gera Shegalov via jlowe)
  359. MAPREDUCE-5309. 2.0.4 JobHistoryParser can't parse certain failed job
  360. history files generated by 2.0.3 history server (Rushabh S Shah via jlowe)
  361. MAPREDUCE-5862. Line records longer than 2x split size aren't handled
  362. correctly (bc Wong via jlowe)
  363. MAPREDUCE-5895. Close streams properly to avoid leakage in TaskLog.
  364. (Kousuke Saruta via devaraj)
  365. MAPREDUCE-5777. Support utf-8 text with Byte Order Marker.
  366. (Zhihai Xu via kasha)
  367. MAPREDUCE-5898. distcp to support preserving HDFS extended attributes(XAttrs)
  368. (Yi Liu via umamahesh)
  369. MAPREDUCE-5920. Add Xattr option in DistCp docs. (Yi Liu via cnauroth)
  370. MAPREDUCE-5924. Changed TaskAttemptImpl to ignore TA_COMMIT_PENDING event
  371. at COMMIT_PENDING state. (Zhijie Shen via jianhe)
  372. MAPREDUCE-5939. StartTime showing up as the epoch time in JHS UI after
  373. upgrade (Chen He via jlowe)
  374. MAPREDUCE-5900. Changed to the interpret container preemption exit code as a
  375. task attempt killing event. (Mayank Bansal via zjshen)
  376. MAPREDUCE-5868. Fixed an issue with TestPipeApplication that was causing the
  377. nightly builds to fail. (Akira Ajisaka via vinodkv)
  378. MAPREDUCE-5517. Fixed MapReduce ApplicationMaster to not validate reduce side
  379. resource configuration for deciding uber-mode on map-only jobs. (Siqi Li via
  380. vinodkv)
  381. MAPREDUCE-5952. LocalContainerLauncher#renameMapOutputForReduce incorrectly
  382. assumes a single dir for mapOutIndex. (Gera Shegalov via kasha)
  383. MAPREDUCE-6002. Made MR task avoid reporting error to AM when the task process
  384. is shutting down. (Wangda Tan via zjshen)
  385. Release 2.4.1 - 2014-06-23
  386. INCOMPATIBLE CHANGES
  387. NEW FEATURES
  388. IMPROVEMENTS
  389. MAPREDUCE-5830. Added back the private API HostUtil.getTaskLogUrl(..) for
  390. binary compatibility with older clients like Hive 0.13. (Akira Ajisaka via
  391. vinodkv)
  392. OPTIMIZATIONS
  393. BUG FIXES
  394. MAPREDUCE-5818. Added "hsadmin" command into mapred.cmd. (Jian He via zjshen)
  395. MAPREDUCE-5824. Fixed test-failure of TestPipesNonJavaInputFormat in
  396. Windows. (Xuan Gong via vinodkv)
  397. MAPREDUCE-5815. Fixed test-failure of TestMRAppMaster by making MRAppMaster
  398. gracefully handle empty-queue names. (Akira Ajisaka via vinodkv)
  399. MAPREDUCE-5826. Fixed HistoryServerFileSystemStore to use right permissions
  400. on Windows for temporary files and thus also fix the test-issue with
  401. TestHistoryServerFileSystemStateStoreService. (Varun Vasudev via vinodkv)
  402. MAPREDUCE-5828. Fixed a test issue with TestMapReduceJobControl that was
  403. causing it to fail on Windows. (vinodkv)
  404. MAPREDUCE-5827. TestSpeculativeExecutionWithMRApp fails.
  405. (Zhijie Shen via cnauroth)
  406. MAPREDUCE-5833. TestRMContainerAllocator fails ocassionally.
  407. (Zhijie Shen via cnauroth)
  408. MAPREDUCE-5832. Fixed TestJobClient to not fail on JDK7 or on Windows. (Jian
  409. He and Vinod Kumar Vavilapalli via vinodkv)
  410. MAPREDUCE-5841. uber job doesn't terminate on getting mapred job kill
  411. (Sangjin Lee via jlowe)
  412. MAPREDUCE-5843. Fixed TestMRKeyValueTextInputFormat to not leak files and
  413. thus avoid failing on Windows. (Varun Vasudev via vinodkv)
  414. MAPREDUCE-5835. Killing Task might cause the job to go to ERROR state
  415. (Ming Ma via jlowe)
  416. MAPREDUCE-5821. Avoid unintentional reallocation of byte arrays in segments
  417. during merge. (Todd Lipcon via cdouglas)
  418. Release 2.4.0 - 2014-04-07
  419. INCOMPATIBLE CHANGES
  420. NEW FEATURES
  421. MAPREDUCE-5787. Added the ability to keep alive shuffle connections in the
  422. MapReduce shuffle-handler. (Rajesh Balamohan via vinodkv)
  423. IMPROVEMENTS
  424. MAPREDUCE-5464. Add analogs of the SLOTS_MILLIS counters that jive with the
  425. YARN resource model (Sandy Ryza)
  426. MAPREDUCE-5732. Report proper queue when job has been automatically placed
  427. (Sandy Ryza)
  428. MAPREDUCE-5699. Allow setting tags on MR jobs (kasha)
  429. MAPREDUCE-5761. Added a simple log message to denote when encrypted shuffle
  430. is on in the shuffle-handler. (Jian He via vinodkv)
  431. MAPREDUCE-5754. Preserve Job diagnostics in history (Gera Shegalov via
  432. jlowe)
  433. MAPREDUCE-5766. Moved ping messages from TaskAttempts to be at DEBUG level
  434. inside the ApplicationMaster log. (Jian He via vinodkv)
  435. MAPREDUCE-5773. Provide dedicated MRAppMaster syslog length limit (Gera
  436. Shegalov via jlowe)
  437. MAPREDUCE-5553. Allow users to easily access
  438. completed/pending/successful/failed tasks on MR AM web-ui. (Paul Han via
  439. acmurthy)
  440. MAPREDUCE-4052. Improved MapReduce clients to use NodeManagers' ability to
  441. handle cross platform application submissions. (Jian He via vinodkv)
  442. MAPREDUCE-2349. Modified FileInputFormat to be able to issue file and block
  443. location calls in parallel. (Siddharth Seth via vinodkv)
  444. OPTIMIZATIONS
  445. BUG FIXES
  446. MAPREDUCE-5746. Job diagnostics can implicate wrong task for a failed job.
  447. (Jason Lowe via kasha)
  448. MAPREDUCE-5670. CombineFileRecordReader should report progress when moving
  449. to the next file (Chen He via jlowe)
  450. MAPREDUCE-5757. ConcurrentModificationException in JobControl.toList
  451. (jlowe)
  452. MAPREDUCE-5770. Fixed MapReduce ApplicationMaster to correctly redirect
  453. to the YARN's web-app proxy with the correct scheme prefix. (Jian He via
  454. vinodkv)
  455. MAPREDUCE-5768. TestMRJobs.testContainerRollingLog fails on trunk (Gera
  456. Shegalov via jlowe)
  457. MAPREDUCE-5780. SliveTest should use the specified path to get the
  458. particular FileSystem instead of using the default FileSystem. (szetszwo)
  459. MAPREDUCE-5028. Fixed a bug in MapTask that was causing mappers to fail
  460. when a large value of io.sort.mb is set. (Karthik Kambatla via vinodkv)
  461. MAPREDUCE-5778. JobSummary does not escape newlines in the job name (Akira
  462. AJISAKA via jlowe)
  463. MAPREDUCE-5789. Average Reduce time is incorrect on Job Overview page
  464. (Rushabh S Shah via jlowe)
  465. MAPREDUCE-5794. SliveMapper always uses default FileSystem. (szetszwo via
  466. Arpit Agarwal)
  467. MAPREDUCE-5751. MR app master fails to start in some cases if
  468. mapreduce.job.classloader is true (Sangjin Lee via jlowe)
  469. MAPREDUCE-5688. TestStagingCleanup fails intermittently with JDK7 (Mit
  470. Desai via jeagles)
  471. MAPREDUCE-5769. Unregistration to RM should not be called if AM is crashed
  472. before registering with RM (Rohith via jlowe)
  473. MAPREDUCE-5570. Map task attempt with fetch failure has incorrect attempt
  474. finish time (Rushabh S Shah via jlowe)
  475. MAPREDUCE-5806. Fixed a bug in MRAppMaster so as to enable users to properly
  476. override HADOOP_ROOT_LOGGER or HADOOP_CLIENT_OPTS. (Varun Vasudev via
  477. vinodkv)
  478. MAPREDUCE-5791. Shuffle phase is slow in Windows -
  479. FadviseFileRegion::transferTo does not read disks efficiently.
  480. (Nikola Vujic via cnauroth)
  481. MAPREDUCE-5795. Fixed MRAppMaster to record the correct job-state after it
  482. recovers from a commit during a previous attempt. (Xuan Gong via vinodkv)
  483. MAPREDUCE-5805. Fixed MapReduce JobHistory encoding of queue-name to escape
  484. hyphens and thus avoid parsing errors. (Akira AJISAKA via vinodkv)
  485. MAPREDUCE-5810. Removed the faulty and failing streaming test
  486. TestStreamingTaskLog. (Akira Ajisaka via vinodkv)
  487. MAPREDUCE-5813. Fix YarnChild to explicitly load job.xml from the
  488. local-filesystem, rather than rely on the classpath. (Gera Shegalov via
  489. acmurthy)
  490. Release 2.3.1 - UNRELEASED
  491. INCOMPATIBLE CHANGES
  492. NEW FEATURES
  493. IMPROVEMENTS
  494. OPTIMIZATIONS
  495. BUG FIXES
  496. Release 2.3.0 - 2014-02-18
  497. INCOMPATIBLE CHANGES
  498. NEW FEATURES
  499. MAPREDUCE-5265. History server admin service to refresh user and superuser
  500. group mappings (Ashwin Shankar via jlowe)
  501. MAPREDUCE-5356. Ability to refresh aggregated log retention period and
  502. check interval (Ashwin Shankar via jlowe)
  503. MAPREDUCE-5386. Ability to refresh history server job retention and job
  504. cleaner settings (Ashwin Shankar via jlowe)
  505. MAPREDUCE-5411. Refresh size of loaded job cache on history server (Ashwin
  506. Shankar via jlowe)
  507. MAPREDUCE-5332. Support token-preserving restart of history server (jlowe)
  508. IMPROVEMENTS
  509. MAPREDUCE-5329. Allow MR applications to use additional AuxServices,
  510. which are compatible with the default MapReduce shuffle.
  511. (Avner BenHanoch via sseth)
  512. MAPREDUCE-5463. Deprecate SLOTS_MILLIS counters (Tzuyoshi Ozawa via Sandy
  513. Ryza)
  514. MAPREDUCE-5457. Add a KeyOnlyTextOutputReader to enable streaming to write
  515. out text files without separators (Sandy Ryza)
  516. MAPREDUCE-5596. Allow configuring the number of threads used to serve
  517. shuffle connections (Sandy Ryza via jlowe)
  518. MAPREDUCE-434. LocalJobRunner limited to single reducer (Sandy Ryza and
  519. Aaron Kimball via Sandy Ryza)
  520. MAPREDUCE-4421. Run MapReduce framework via the distributed cache (jlowe)
  521. MAPREDUCE-1176. FixedLengthInputFormat and FixedLengthRecordReader
  522. (Mariappan Asokan and BitsOfInfo via Sandy Ryza)
  523. MAPREDUCE-5613. DefaultSpeculator holds and checks hashmap that is always
  524. empty (Gera Shegalov via Sandy Ryza)
  525. MAPREDUCE-5431. Missing pom dependency in MR-client (Timothy St. Clair
  526. via stevel)
  527. MAPREDUCE-5624 Move grizzly-test and junit dependencies to test scope
  528. (Ted Yu via stevel)
  529. MAPREDUCE-5481. Enable uber jobs to have multiple reducers (Sandy Ryza)
  530. MAPREDUCE-5052. Job History UI and web services confusing job start time and
  531. job submit time (Chen He via jeagles)
  532. MAPREDUCE-5692. Add explicit diagnostics when a task attempt is killed due
  533. to speculative execution (Gera Shegalov via Sandy Ryza)
  534. MAPREDUCE-5550. Task Status message (reporter.setStatus) not shown in UI
  535. with Hadoop 2.0 (Gera Shegalov via Sandy Ryza)
  536. MAPREDUCE-3310. Custom grouping comparator cannot be set for Combiners (tucu)
  537. MAPREDUCE-5672. Provide optional RollingFileAppender for container log4j
  538. (syslog) (Gera Shegalov via jlowe)
  539. MAPREDUCE-5725. Make explicit that TestNetworkedJob relies on the Capacity
  540. Scheduler (Sandy Ryza)
  541. MAPREDUCE-5744. Job hangs because
  542. RMContainerAllocator$AssignedRequests.preemptReduce() violates the
  543. comparator contract (Gera Shegalov via kasha)
  544. OPTIMIZATIONS
  545. MAPREDUCE-4680. Job history cleaner should only check timestamps of files in
  546. old enough directories (Robert Kanter via Sandy Ryza)
  547. MAPREDUCE-5484. YarnChild unnecessarily loads job conf twice (Sandy Ryza)
  548. MAPREDUCE-5487. In task processes, JobConf is unnecessarily loaded again
  549. in Limits (Sandy Ryza)
  550. MAPREDUCE-5601. ShuffleHandler fadvises file regions as DONTNEED even when
  551. fetch fails (Sandy Ryza)
  552. BUG FIXES
  553. MAPREDUCE-5569. FloatSplitter is not generating correct splits (Nathan
  554. Roberts via jlowe)
  555. MAPREDUCE-5546. mapred.cmd on Windows set HADOOP_OPTS incorrectly (Chuan Liu
  556. via cnauroth)
  557. MAPREDUCE-5518. Fixed typo "can't read paritions file". (Albert Chu
  558. via devaraj)
  559. MAPREDUCE-5561. org.apache.hadoop.mapreduce.v2.app.job.impl.TestJobImpl
  560. testcase failing on trunk (Karthik Kambatla via jlowe)
  561. MAPREDUCE-5598. TestUserDefinedCounters.testMapReduceJob is flakey
  562. (Robert Kanter via jlowe)
  563. MAPREDUCE-5604. TestMRAMWithNonNormalizedCapabilities fails on Windows due to
  564. exceeding max path length. (cnauroth)
  565. MAPREDUCE-5451. MR uses LD_LIBRARY_PATH which doesn't mean anything in
  566. Windows. (Yingda Chen via cnauroth)
  567. MAPREDUCE-5409. MRAppMaster throws InvalidStateTransitonException: Invalid
  568. event: TA_TOO_MANY_FETCH_FAILURE at KILLED for TaskAttemptImpl (Gera
  569. Shegalov via jlowe)
  570. MAPREDUCE-5674. Missing start and finish time in mapred.JobStatus.
  571. (Chuan Liu via cnauroth)
  572. MAPREDUCE-5650. Job fails when hprof mapreduce.task.profile.map/reduce.params
  573. is specified (Gera Shegalov via Sandy Ryza)
  574. MAPREDUCE-5316. job -list-attempt-ids command does not handle illegal
  575. task-state (Ashwin Shankar via jlowe)
  576. MAPREDUCE-5380. Invalid mapred command should return non-zero exit code
  577. (Stephen Chu via jlowe)
  578. MAPREDUCE-5404. HSAdminServer does not use ephemeral ports in minicluster
  579. mode (Ted Yu via jlowe)
  580. MAPREDUCE-5522. Incorrect oreder expected from JobQueueInfo (Jinghui Wang
  581. via bobby)
  582. MAPREDUCE-5514. Fix TestRMContainerAllocator. (Zhijie Shen via acmurthy)
  583. MAPREDUCE-5102. fix coverage org.apache.hadoop.mapreduce.lib.db and
  584. org.apache.hadoop.mapred.lib.db (Aleksey Gorshkov, Andrey Klochkov, and
  585. Nathan Roberts via jlowe)
  586. MAPREDUCE-5585. TestCopyCommitter#testNoCommitAction Fails on JDK7
  587. (jeagles)
  588. MAPREDUCE-5186. mapreduce.job.max.split.locations causes some splits
  589. created by CombineFileInputFormat to fail (Robert Parker and Jason Lowe
  590. via jlowe)
  591. MAPREDUCE-5610. TestSleepJob fails in jdk7 (Jonathan Eagles via jlowe)
  592. MAPREDUCE-5616. MR Client-AppMaster RPC max retries on socket timeout is too
  593. high. (cnauroth)
  594. MAPREDUCE-5625. TestFixedLengthInputFormat fails in jdk7 environment
  595. (Mariappan Asokan via jeagles)
  596. MAPREDUCE-5631. TestJobEndNotifier.testNotifyRetries fails with Should
  597. have taken more than 5 seconds in jdk7 (Jonathan Eagles via jlowe)
  598. MAPREDUCE-5645. TestFixedLengthInputFormat fails with native libs (Mit
  599. Desai via jeagles)
  600. MAPREDUCE-5632. TestRMContainerAllocator#testUpdatedNodes fails (jeagles)
  601. MAPREDUCE-5656. bzip2 codec can drop records when reading data in splits
  602. (jlowe)
  603. MAPREDUCE-5623. TestJobCleanup fails because of RejectedExecutionException
  604. and NPE. (jlowe)
  605. MAPREDUCE-5679. TestJobHistoryParsing has race condition (Liyin Liang via
  606. jlowe)
  607. MAPREDUCE-5687. Fixed failure in TestYARNRunner caused by YARN-1446. (Jian He
  608. via vinodkv)
  609. MAPREDUCE-5694. Fixed MR AppMaster to shutdown the LogManager so as to avoid
  610. losing syslog in some conditions. (Mohammad Kamrul Islam via vinodkv)
  611. MAPREDUCE-5685. Fixed a bug with JobContext getCacheFiles API inside the
  612. WrappedReducer class. (Yi Song via vinodkv)
  613. MAPREDUCE-5689. MRAppMaster does not preempt reducers when scheduled maps
  614. cannot be fulfilled. (lohit via kasha)
  615. MAPREDUCE-5724. JobHistoryServer does not start if HDFS is not running.
  616. (tucu)
  617. MAPREDUCE-5729. mapred job -list throws NPE (kasha)
  618. MAPREDUCE-5693. Restore MRv1 behavior for log flush (Gera Shegalov via
  619. jlowe)
  620. MAPREDUCE-5723. MR AM container log can be truncated or empty.
  621. (Mohammad Kamrul Islam via kasha)
  622. MAPREDUCE-5743. Fixed the test failure in TestRMContainerAllocator.
  623. (Ted Yu and Vinod Kumar Vavilapalli via zjshen)
  624. Release 2.2.0 - 2013-10-13
  625. INCOMPATIBLE CHANGES
  626. NEW FEATURES
  627. IMPROVEMENTS
  628. OPTIMIZATIONS
  629. BUG FIXES
  630. MAPREDUCE-5504. mapred queue -info inconsistent with types (Kousuke Saruta
  631. via tgraves)
  632. MAPREDUCE-5488. Changed MR client to keep trying to reach the application
  633. when it sees that on attempt's AM is down. (Jian He via vinodkv)
  634. MAPREDUCE-5515. Fixed MR AM's webapp to depend on a new config
  635. mapreduce.ssl.enabled to enable https and disabling it by default as MR AM
  636. needs to set up its own certificates etc and not depend on clusters'.
  637. (Omkar Vinit Joshi via vinodkv)
  638. MAPREDUCE-5505. Clients should be notified job finished only after job
  639. successfully unregistered (Zhijie Shen via bikas)
  640. MAPREDUCE-5503. Fixed a test issue in TestMRJobClient. (Jian He via vinodkv)
  641. MAPREDUCE-5170. Fixed a wrong log message in CombineFileInputFormat class.
  642. (Sangjin Lee via vinodkv)
  643. MAPREDUCE-5525. Increase timeout of TestDFSIO.testAppend and
  644. TestMRJobsWithHistoryService.testJobHistoryData. (Chuan Liu via cnauroth)
  645. MAPREDUCE-5513. ConcurrentModificationException in JobControl (Robert
  646. Parker via jlowe)
  647. MAPREDUCE-5531. Fix compat with hadoop-1 in mapreduce.(TaskID,
  648. TaskAttemptID) by re-introducing missing constructors. (Robert Kanter via
  649. acmurthy)
  650. MAPREDUCE-5545. org.apache.hadoop.mapred.TestTaskAttemptListenerImpl.testCommitWindow
  651. times out (Robert Kanter via jlowe)
  652. MAPREDUCE-5529. Fix compat with hadoop-1 in mapred.TotalOrderPartitioner
  653. by re-introducing (get,set)PartitionFile which takes in JobConf. (Robert
  654. Kanter via acmurthy)
  655. MAPREDUCE-5538. Fixed MR AppMaster to send job-notification URL only after
  656. the job is really done - a bug caused by MAPREDUCE-5505. (Zhijie Shen via
  657. vinodkv)
  658. MAPREDUCE-5551. Fix compat with hadoop-1 in
  659. SequenceFileAsBinaryOutputFormat.WritableValueBytes by re-introducing
  660. missing constructors. (Zhijie Shen via acmurthy)
  661. MAPREDUCE-5544. JobClient#getJob loads job conf twice. (Sandy Ryza)
  662. MAPREDUCE-5536. Fixed MR AM and JHS to respect
  663. mapreduce.jobhistory.webapp.https.address. (Omkar Vinit Joshi via vinodkv)
  664. MAPREDUCE-5530. Fix compat with hadoop-1 in
  665. mapred.lib.CombinFileInputFormat by re-introducing
  666. isSplittable(FileSystem, Path) api and ensuring semantic compatibility.
  667. (Robert Kanter via acmurthy)
  668. MAPREDUCE-5459. Update documentation on how to run MRv1 examples on YARN.
  669. (Zhijie Shen via acmurthy)
  670. MAPREDUCE-5554. hdfs-site.xml included in hadoop-mapreduce-client-jobclient
  671. tests jar is breaking tests for downstream components (Robert Kanter via
  672. Sandy Ryza)
  673. MAPREDUCE-5489. MR jobs hangs as it does not use the node-blacklisting
  674. feature in RM requests (Zhijie Shen via bikas)
  675. MAPREDUCE-5442. $HADOOP_MAPRED_HOME/$HADOOP_CONF_DIR setting not working on
  676. Windows. (Yingda Chen via cnauroth)
  677. MAPREDUCE-5533. Fixed MR speculation code to track any TaskAttempts that
  678. aren't heart-beating for a while, so that we can aggressively speculate
  679. instead of waiting for task-timeout (Xuan Gong via vinodkv)
  680. MAPREDUCE-5562. Fixed MR App Master to perform pending tasks like staging-dir
  681. cleanup, sending job-end notification correctly when unregister with RM
  682. fails. (Zhijie Shen via vinodkv)
  683. Release 2.1.1-beta - 2013-09-23
  684. INCOMPATIBLE CHANGES
  685. NEW FEATURES
  686. IMPROVEMENTS
  687. MAPREDUCE-5478. TeraInputFormat unnecessarily defines its own FileSplit
  688. subclass (Sandy Ryza)
  689. MAPREDUCE-5497. Changed MRAppMaster to sleep only after doing everything else
  690. but just before ClientService to avoid race conditions during RM restart.
  691. (Jian He via vinodkv)
  692. MAPREDUCE-5379. Include token tracking ids in jobconf. (kkambatl via tucu)
  693. MAPREDUCE-5523. Added separate configuration properties for https for JHS
  694. without which even when https is enabled, it starts on http port itself.
  695. (Omkar Vinit Joshi via vinodkv)
  696. OPTIMIZATIONS
  697. MAPREDUCE-5446. TestJobHistoryEvents and TestJobHistoryParsing have race
  698. conditions (jlowe via kihwal)
  699. MAPREDUCE-5462. In map-side sort, swap entire meta entries instead of
  700. indexes for better cache performance. (Sandy Ryza)
  701. MAPREDUCE-1981. Improve getSplits performance by using listLocatedStatus
  702. (Hairong Kuang and Jason Lowe via jlowe)
  703. BUG FIXES
  704. MAPREDUCE-5385. Fixed a bug with JobContext getCacheFiles API. (Omkar Vinit
  705. Joshi via vinodkv)
  706. MAPREDUCE-5428. HistoryFileManager doesn't stop threads when service is
  707. stopped (Karthik Kambatla via jlowe)
  708. MAPREDUCE-5251. Reducer should not implicate map attempt if it has
  709. insufficient space to fetch map output (Ashwin Shankar via jlowe)
  710. MAPREDUCE-5317. Stale files left behind for failed jobs (Ravi Prakash via
  711. jlowe)
  712. MAPREDUCE-5358. MRAppMaster throws invalid transitions for JobImpl
  713. (Devaraj K via jlowe)
  714. MAPREDUCE-3193. FileInputFormat doesn't read files recursively in the
  715. input path dir (Devaraj K via jlowe)
  716. MAPREDUCE-5440. TestCopyCommitter Fails on JDK7 (Robert Parker via jlowe)
  717. MAPREDUCE-5367. Local jobs all use same local working directory
  718. (Sandy Ryza)
  719. MAPREDUCE-5425. Junit in TestJobHistoryServer failing in jdk 7 (Robert
  720. Parker via jlowe)
  721. MAPREDUCE-5454. TestDFSIO fails intermittently on JDK7 (Karthik Kambatla
  722. via Sandy Ryza)
  723. MAPREDUCE-5001. LocalJobRunner has race condition resulting in job
  724. failures (Sandy Ryza via jlowe)
  725. MAPREDUCE-5466. Changed MR AM to not promote history files of intermediate
  726. AMs in case they are exiting because of errors and thus help history-server
  727. pick up the right history file for the last successful AM. (Jian He via
  728. vinodkv)
  729. MAPREDUCE-5468. Fix MR AM recovery for map-only jobs. (vinodkv via
  730. acmurthy)
  731. MAPREDUCE-5470. LocalJobRunner does not work on Windows. (Sandy Ryza via
  732. cnauroth)
  733. MAPREDUCE-5476. Changed MR AM recovery code to cleanup staging-directory
  734. only after unregistering from the RM. (Jian He via vinodkv)
  735. MAPREDUCE-5483. revert MAPREDUCE-5357. (rkanter via tucu)
  736. MAPREDUCE-5441. Changed MR AM to return RUNNING state if exiting when RM
  737. commands to reboot, so that client can continue to track the overall job.
  738. (Jian He via vinodkv)
  739. MAPREDUCE-5475. MRClientService does not verify ACLs properly (jlowe)
  740. MAPREDUCE-5414. TestTaskAttempt fails in JDK7 with NPE (Nemon Lou via
  741. devaraj)
  742. MAPREDUCE-5020. Compile failure with JDK8 (Trevor Robinson via tgraves)
  743. MAPREDUCE-5164. mapred job and queue commands omit HADOOP_CLIENT_OPTS
  744. (Nemon Lou via devaraj)
  745. MAPREDUCE-5493. Cleanup in-memory & on-disk segments to prevent leak on
  746. shuffle completion. (jlowe via acmurthy)
  747. Release 2.1.0-beta - 2013-08-22
  748. INCOMPATIBLE CHANGES
  749. MAPREDUCE-4067. Changed MRClientProtocol api to throw IOException only (Xuan
  750. Gong via vinodkv)
  751. MAPREDUCE-5234. Change mapred.TaskReport and mapreduce.TaskReport for binary
  752. compatibility with mapred in 1.x but incompatible with 0.23.x. (Mayank Bansal
  753. via vinodkv)
  754. MAPREDUCE-5156. Change hadoop examples ProgramDriver to be able to run
  755. 1.x examples jar on top of YARN. This change breaks 0.23.x direct usages of
  756. ProgramDriver. (Zhijie Shen via vinodkv)
  757. MAPREDUCE-5233. Add methods that are changed or removed from JobControl.Job
  758. when compared to 1.x. This breaks 0.23.x users of one API in Job. (Mayank
  759. Bansal via vinodkv)
  760. MAPREDUCE-5237. Add methods that were removed from ClusterStatus back into
  761. 2.x so as to be compatible with 1.x. Incompatible as
  762. ClusterStatus.UNINITIALIZED_MEMORY_VALUE is a long now and so breaks 0.23.x
  763. but it shouldn't be a big deal in reality. (Zhijie Shen via vinodkv)
  764. NEW FEATURES
  765. HADOOP-8562. Enhancements to support Hadoop on Windows Server and Windows
  766. Azure environments. (See breakdown of tasks below for subtasks and
  767. contributors)
  768. IMPROVEMENTS
  769. MAPREDUCE-3008. Improvements to cumulative CPU emulation for short running
  770. tasks in Gridmix. (amarrk via tgraves)
  771. MAPREDUCE-5033. mapred shell script should respect usage flags
  772. (--help -help -h). (Andrew Wang via atm)
  773. MAPREDUCE-4892. Modify CombineFileInputFormat to not skew input slits'
  774. allocation on small clusters. (Bikas Saha via vinodkv)
  775. MAPREDUCE-4990. Construct debug strings conditionally in
  776. ShuffleHandler.Shuffle#sendMapOutput(). (kkambatl via tucu)
  777. MAPREDUCE-4875. coverage fixing for org.apache.hadoop.mapred
  778. (Aleksey Gorshkov via bobby)
  779. MAPREDUCE-5129. Allow tags to JobHistory for deeper analytics. (billie via
  780. acmurthy)
  781. MAPREDUCE-3787. [Gridmix] Optimize job monitoring and STRESS mode for
  782. faster job submission. (amarrk via tgraves)
  783. MAPREDUCE-5079. Changes job recovery to restore state directly from job
  784. history, instaed of simulating state machine events.
  785. (Jason Lowe and Robert Parker via sseth)
  786. MAPREDUCE-4981. Add WordMean, WordMedian, WordStandardDeviation
  787. to ExamplesDriver. (Plamen Jeliazkov via shv)
  788. MAPREUDUCE-5059. Change average merge time on Job overview page to be the
  789. time delta between the end of the shuffle and the start of the reduce.
  790. (Omkar Vinit Joshi via vinodkv)
  791. MAPREDUCE-4985. Add compression option to TestDFSIO usage.
  792. (Plamen Jeliazkov via shv)
  793. MAPREDUCE-5152. Make MR App to simply pass through the container from RM
  794. instead of extracting and populating information itself to start any
  795. container. (vinodkv)
  796. MAPREDUCE-5175. Updated MR App to not set envs that will be set by NMs
  797. anyways after YARN-561. (Xuan Gong via vinodkv)
  798. MAPREDUCE-5069. add concrete common implementations of
  799. CombineFileInputFormat (Sangjin Lee via bobby)
  800. MAPREDUCE-5145. Changed default max-attempts to be more than one for MR jobs
  801. inline with YARN. (Zhijie Shen via vinodkv)
  802. MAPREDUCE-5036. Default shuffle handler port should not be 8080.
  803. (Sandy Ryza via tomwhite)
  804. MAPREDUCE-5159. Change ValueAggregatorJob to add APIs which can support
  805. binary compatibility with hadoop-1 examples. (Zhijie Shen via vinodkv)
  806. MAPREDUCE-5157. Bring back old sampler related code so that we can support
  807. binary compatibility with hadoop-1 sorter example. (Zhijie Shen via vinodkv)
  808. MAPREDUCE-5222. Bring back some methods and constants in Jobclient for
  809. binary compatibility with mapred in 1.x. (Karthik Kambatla via vinodkv)
  810. MAPREDUCE-5235. Bring back old fields and exceptions in Counters for
  811. binary compatibility with mapred in 1.x. (Mayank Bansal via vinodkv)
  812. MAPREDUCE-5246. Specify application-type at the time of job submission after
  813. YARN-563. (Mayank Bansal via vinodkv)
  814. MAPREDUCE-5230. Bring back NLineInputFormat.createFileSplit for binary
  815. compatibility with mapred in 1.x (Mayank Bansal via vinodkv)
  816. MAPREDUCE-5270. Migrated MR app from using BuilderUtil factory methods to
  817. individual record factory methods. (Jian He via vinodkv)
  818. MAPREDUCE-5263. Bring back old methods and fields in
  819. filecache.DistributedCache for binary compatibility with mapred in 1.x.
  820. (Zhijie Shen via vinodkv)
  821. MAPREDUCE-5228. Bring back FileInputFormat.Counter and
  822. FileOuputFormat.Counter for binary compatibility with 1.x mapred APIs.
  823. (Mayank Bansal via vinodkv)
  824. MAPREDUCE-5176. Add annotation for tagging tasks as responsive to
  825. preemption. (Carlo Curino, cdouglas)
  826. MAPREDUCE-5275. Bring back a couple of APIs in mapreduce.security.TokenCache
  827. for binary compatibility with 1.x mapreduce APIs. (Mayank Bansal via vinodkv)
  828. MAPREDUCE-5231. Bring back a constructor in mapred's
  829. DBInputFormat.DBRecordReader for binary compatibility with 1.x mapred APIs.
  830. (Zhijie Shen via vinodkv)
  831. MAPREDUCE-5273. Bring back a couple of protected variables in mapred and
  832. mapreduce CombineFileRecordReader for binary compatibility with 1.x APIs.
  833. (Mayank Bansal via vinodkv)
  834. MAPREDUCE-5280. Bring back removed constructor and a method in mapreduce
  835. ClusterMetrics for binary compatibility with 1.x APIs. (Mayank Bansal via
  836. vinodkv)
  837. MAPREDUCE-5289. Updated MR App to use Token directly after YARN-717. (Jian He
  838. via vinodkv)
  839. MAPREDUCE-5229. Put back FileOutputCommitter.TEMP_DIR_NAME in mapreduce for
  840. binary compatibility with 1.x APIs. (Zhijie Shen via vinodkv)
  841. MAPREDUCE-5274. Bring back SecureShuffleUtils.toHex in mapreduce for binary
  842. compatibility with 1.x APIs. (Mayank Bansal via vinodkv)
  843. MAPREDUCE-5300. Fix backward incompatibility for
  844. o.a.h.mapreduce.filecache.DistributedCache. (Zhijie Shen via acmurthy)
  845. MAPREDUCE-5283. Over 10 different tests have near identical
  846. implementations of AppContext (Sandy Ryza via jlowe)
  847. MAPREDUCE-5199. Removing ApplicationTokens file as it is no longer needed.
  848. (Daryn Sharp via vinodkv)
  849. MAPREDUCE-5192. Allow for alternate resolutions of TaskCompletionEvents.
  850. (cdouglas via acmurthy)
  851. MAPREDUCE-5184. Document compatibility for MapReduce applications in
  852. hadoop-2 vis-a-vis hadoop-1. (Zhijie Shen via acmurthy)
  853. MAPREDUCE-5194. Heed interrupts during Fetcher shutdown. (cdouglas)
  854. MAPREDUCE-5326. Added version to shuffle header. (Zhijie Shen via
  855. acmurthy)
  856. MAPREDUCE-5333. Add test that verifies MRAM works correctly when sending
  857. requests with non-normalized capabilities. (ywskycn via tucu)
  858. MAPREDUCE-5398. MR changes for YARN-513 (Jian He via bikas)
  859. OPTIMIZATIONS
  860. MAPREDUCE-4974. Optimising the LineRecordReader initialize() method
  861. (Gelesh via bobby)
  862. MAPREDUCE-5268. Improve history server startup performance (Karthik
  863. Kambatla via jlowe)
  864. MAPREDUCE-5352. Optimize node local splits generated by
  865. CombineFileInputFormat. (sseth)
  866. BUG FIXES
  867. MAPREDUCE-4671. AM does not tell the RM about container requests which are
  868. no longer needed. (Bikas Saha via sseth)
  869. MAPREDUCE-4994. -jt generic command line option does not work. (sandyr via tucu)
  870. MAPREDUCE-5000. Fixes getCounters when speculating by fixing the selection
  871. of the best attempt for a task. (Jason Lowe via sseth)
  872. MAPREDUCE-4994. Addendum fixing testcases failures. (sandyr via tucu)
  873. MAPREDUCE-4846. Some JobQueueInfo methods are public in MR1 but protected
  874. in MR2. (Sandy Ryza via tomwhite)
  875. MAPREDUCE-5013. mapred.JobStatus compatibility: MR2 missing constructors
  876. from MR1. (Sandy Ryza via tomwhite)
  877. MAPREDUCE-4951. Container preemption interpreted as task failure.
  878. (Sandy Ryza via tomwhite)
  879. MAPREDUCE-5008. Merger progress miscounts with respect to EOF_MARKER.
  880. (Sandy Ryza via tomwhite)
  881. MAPREDUCE-4693. History server should include counters for failed tasks.
  882. (Xuan Gong via sseth)
  883. MAPREDUCE-4896. mapred queue -info spits out ugly exception when queue does
  884. not exist. (sandyr via tucu)
  885. MAPREDUCE-3685. Fix bugs in MergeManager to ensure compression codec is
  886. appropriately used and that on-disk segments are correctly sorted on
  887. file-size. (Anty Rao and Ravi Prakash via acmurthy)
  888. MAPREDUCE-4571. TestHsWebServicesJobs fails on jdk7. (tgraves via tucu)
  889. MAPREDUCE-4716. TestHsWebServicesJobsQuery.testJobsQueryStateInvalid
  890. fails with jdk7. (tgraves via tucu)
  891. MAPREDUCE-5075. DistCp leaks input file handles since ThrottledInputStream
  892. does not close the wrapped InputStream. (Chris Nauroth via szetszwo)
  893. MAPREDUCE-3872. Fix an event handling races in ContainerLauncherImpl.
  894. (Robert Kanter via sseth)
  895. MAPREDUCE-5062. Fix MR AM to read max-retries from the RM. (Zhijie Shen via
  896. vinodkv)
  897. MAPREDUCE-3829. [Gridmix] Gridmix should give better error message when
  898. input data directory already exists and -generate opton is
  899. given.(ravigummadi via tgraves)
  900. MAPREDUCE-2722. [Gridmix] Gridmix simulated job's map's hdfsBytesRead
  901. counter is wrong when compressed input is used.(ravigummadi via tgraves)
  902. MAPREDUCE-3953. [Gridmix] Gridmix throws NPE and does not simulate a
  903. job if the trace contains null taskStatus for a task. (ravigummadi via
  904. tgraves)
  905. MAPREDUCE-4087. [Gridmix] GenerateDistCacheData job of Gridmix can
  906. become slow in some cases (ravigummadi via tgraves).
  907. MAPREDUCE-5077. Remove mapreduce.util.ResourceCalculatorPlugin and related
  908. code. (Karthik Kambatla via sseth)
  909. MAPREDUCE-4083. [Gridmix] NPE in cpu emulation. (amarrk via tgraves)
  910. MAPREDUCE-4100. [Gridmix] Bug fixed in compression emulation feature for
  911. map only jobs. (amarrk via tgraves)
  912. MAPREDUCE-4356. [Rumen] Provide access to the method
  913. ParsedTask.obtainTaskAttempts(). (ravigummadi via tgraves)
  914. MAPREDUCE-4149. [Rumen] Rumen fails to parse certain counter
  915. strings. (ravigummadi via tgraves)
  916. MAPREDUCE-3757. [Rumen] Fixed Rumen Folder to adjust shuffleFinished and
  917. sortFinished times when needed. (Ravi Gummadi via tgraves)
  918. MAPREDUCE-5138. Fix LocalDistributedCacheManager after YARN-112. (Omkar Vinit
  919. Joshi via vinodkv)
  920. MAPREDUCE-5086. MR app master deletes staging dir when sent a reboot
  921. command from the RM. (Jian He via jlowe)
  922. MAPREDUCE-5113. Streaming input/output types are ignored with java
  923. mapper/reducer. (sandyr via tucu)
  924. MAPREDUCE-5098. Fix findbugs warnings in gridmix. (kkambatl via tucu)
  925. MAPREDUCE-5137. AM web UI: clicking on Map Task results in 500 error
  926. (Thomas Graves via jlowe)
  927. MAPREDUCE-5136. TestJobImpl->testJobNoTasks fails with IBM JAVA (Amir
  928. Sanjar via jlowe)
  929. MAPREDUCE-5139. Update MR AM to use the modified startContainer API after
  930. YARN-486. (Xuan Gong via vinodkv)
  931. MAPREDUCE-5151. Update MR AM to use standard exit codes from the API after
  932. YARN-444. (Sandy Ryza via vinodkv)
  933. MAPREDUCE-5140. MR part of YARN-514 (Zhijie Shen via bikas)
  934. MAPREDUCE-5128. mapred-default.xml is missing a bunch of history server
  935. configs. (sandyr via tucu)
  936. MAPREDUCE-4898. FileOutputFormat.checkOutputSpecs and
  937. FileOutputFormat.setOutputPath incompatible with MR1. (rkanter via tucu)
  938. MAPREDUCE-5078. TestMRAppMaster fails on Windows due to mismatched path
  939. separators. (Chris Nauroth via sseth)
  940. MAPREDUCE-4932. mapreduce.job#getTaskCompletionEvents incompatible with
  941. Hadoop 1. (rkanter via tucu)
  942. MAPREDUCE-5163. Update MR App to not use API utility methods for collections
  943. after YARN-441. (Xuan Gong via vinodkv)
  944. MAPREDUCE-5066. Added a timeout for the job.end.notification.url. (Ivan
  945. Mitic via acmurthy)
  946. MAPREDUCE-5146. application classloader may be used too early to load
  947. classes. (Sangjin Lee via tomwhite)
  948. MAPREDUCE-4737. Ensure that mapreduce APIs are semantically consistent
  949. with mapred API w.r.t Mapper.cleanup and Reducer.cleanup; in the sense that
  950. cleanup is now called even if there is an error. The old mapred API
  951. already ensures that Mapper.close and Reducer.close are invoked during
  952. error handling. Note that it is an incompatible change, however end-users
  953. can override Mapper.run and Reducer.run to get the old (inconsistent)
  954. behaviour. (acmurthy)
  955. MAPREDUCE-5166. Fix ConcurrentModificationException due to insufficient
  956. synchronization on updates to task Counters. (Sandy Ryza via acmurthy)
  957. MAPREDUCE-5181. RMCommunicator should not use AMToken from the env.
  958. (Vinod Kumar Vavilapalli via sseth)
  959. MAPREDUCE-5178. Update MR App to set progress in ApplicationReport after
  960. YARN-577. (Hitesh Shah via vinodkv)
  961. MAPREDUCE-5167. Update MR App after YARN-562 to use the new builder API
  962. for the container. (Jian He via vinodkv)
  963. MAPREDUCE-5179. Fix unit test in TestHSWebServices which fails when
  964. versionInfo has parantheses like when running on a git checkout. (Hitesh Shah
  965. via vinodkv)
  966. MAPREDUCE-5193. A few MR tests use block sizes which are smaller than the
  967. default minimum block size. (Andrew Wang via atm)
  968. MAPREDUCE-5205. Fixed MR App to load tokens correctly. (vinodkv)
  969. MAPREDUCE-5204. Handling YarnRemoteException separately from IOException in
  970. MR app after YARN-629. (Xuan Gong via vinodkv)
  971. MAPREDUCE-5209. Fix units in a ShuffleScheduler log message.
  972. (Tsuyoshi OZAWA via cdouglas)
  973. MAPREDUCE-5212. Handling YarnRemoteException separately from IOException in
  974. MR App's use of ClientRMProtocol after YARN-631. (Xuan Gong via vinodkv)
  975. MAPREDUCE-5226. Handling YarnRemoteException separately from IOException in
  976. MR App's use of AMRMProtocol after YARN-630. (Xuan Gong via vinodkv)
  977. MAPREDUCE-4942. mapreduce.Job has a bunch of methods that throw
  978. InterruptedException so its incompatible with MR1. (rkanter via tucu)
  979. MAPREDUCE-5239. Updated MR App to reflect YarnRemoteException changes after
  980. YARN-634. (Siddharth Seth via vinodkv)
  981. MAPREDUCE-5208. Modified ShuffleHandler to use SecureIOUtils for reading
  982. local files. (Omkar Vinit Joshi via vinodkv)
  983. MAPREDUCE-5220. Setter methods in TaskCompletionEvent are public in MR1 and
  984. protected in MR2. (sandyr via tucu)
  985. MAPREDUCE-5240. Fix a bug in MRAppMaster because of which OutputCommitter
  986. could not access credentials set by the user. (vinodkv)
  987. MAPREDUCE-5244. Two functions changed their visibility in JobStatus.
  988. (zjshen via tucu)
  989. MAPREDUCE-4927. Historyserver 500 error due to NPE when accessing specific
  990. counters page for failed job. (Ashwin Shankar via jlowe)
  991. MAPREDUCE-5257. Fix issues in TestContainerLauncherImpl after YARN-617.
  992. (Omkar Vinit Joshi via vinodkv)
  993. MAPREDUCE-5282. Updating MR App to use immutable ApplicationID after
  994. YARN-716. (Siddharth Seth via vinodkv)
  995. MAPREDUCE-5286. Change MapReduce to use ContainerTokenIdentifier instead
  996. of the entire Container in the startContainer call - YARN-684.
  997. (Vinod Kumar Vavilapalli via sseth)
  998. MAPREDUCE-5299. Fix backward incompatibility for TaskCompletionEvent by
  999. adding back setTaskID. (Zhijie Shen via acmurthy)
  1000. MAPREDUCE-5296. Fix backward incompatibility for JobControl by adding the
  1001. omitted addJob. (Zhijie Shen via acmurthy)
  1002. MAPREDUCE-5245. Added back constants to JobConf to fix incompatibilities.
  1003. (Zhijie Shen via acmurthy)
  1004. MAPREDUCE-5297. Updated MR App since BuilderUtils is no longer public
  1005. after YARN-748. (Jian He via vinodkv)
  1006. MAPREDUCE-5301. Updated MR code to work with YARN-635 changes of renaming
  1007. YarnRemoteException to YarnException. (Siddharth Seth via vinodkv)
  1008. MAPREDUCE-5308. Shuffling to memory can get out-of-sync when fetching
  1009. multiple compressed map outputs (Nathan Roberts via jlowe)
  1010. MAPREDUCE-5315. DistCp reports success even on failure. (mithun and jlowe
  1011. via daryn)
  1012. MAPREDUCE-5259. TestTaskLog fails on Windows because of path separators
  1013. missmatch. (Ivan Mitic via cnauroth)
  1014. MAPREDUCE-4019. -list-attempt-ids is not working (Ashwin Shankar,
  1015. Devaraj K, and B Anil Kumar via jlowe)
  1016. MAPREDUCE-5334. Fix failing unit tests - TestContainerLauncher,
  1017. TestContainerLauncherImpl. (Vinod Kumar Vavilapalli via sseth)
  1018. MAPREDUCE-5325. MR changes related to YARN-727. ClientRMProtocol.getAllApplications
  1019. should accept ApplicationType as a parameter. (Xuan Gong via hitesh)
  1020. MAPREDUCE-5291. Change MR App to use updated property names in
  1021. container-log4j.properties. (Zhijie Shen via sseth)
  1022. MAPREDUCE-5303. Changed MR app after moving ProtoBase to package impl.pb via
  1023. YARN-724. (Jian He via vinodkv)
  1024. MAPREDUCE-5312. TestRMNMInfo is failing. (sandyr via tucu)
  1025. MAPREDUCE-5304. mapreduce.Job killTask/failTask/getTaskCompletionEvents
  1026. methods have incompatible signature changes. (kkambatl via tucu)
  1027. MAPREDUCE-5298. Moved MapReduce services to YARN-530 stricter lifecycle.
  1028. (Steve Loughran via vinodkv)
  1029. MAPREDUCE-5319. Set user.name in job.xml. (Xuan Gong via acmurthy)
  1030. MAPREDUCE-5310. MRAM should not normalize allocation request capabilities.
  1031. (tucu)
  1032. MAPREDUCE-5213. Re-assess TokenCache methods marked @Private.
  1033. (kkambatl via tucu)
  1034. MAPREDUCE-5412. Update MR app to use multiple containers API of
  1035. ContainerManager after YARN-926. (Jian He via vinodkv)
  1036. MAPREDUCE-5421. Fixed TestNonExistentJob failure after YARN-873. (Junping Du
  1037. via vinodkv)
  1038. MAPREDUCE-5419. TestSlive is getting FileNotFound Exception (Robert Parker
  1039. via jlowe)
  1040. MAPREDUCE-5399. Unnecessary Configuration instantiation in IFileInputStream
  1041. slows down merge. (Stanislav Barton via Sandy Ryza)
  1042. BREAKDOWN OF HADOOP-8562 SUBTASKS
  1043. MAPREDUCE-4739. Some MapReduce tests fail to find winutils.
  1044. (Chris Nauroth via suresh)
  1045. MAPREDUCE-4780. MapReduce distribution build fails on Windows.
  1046. (Chris Nauroth via suresh)
  1047. MAPREDUCE-4790. MapReduce build script would be more readable using abspath.
  1048. (Chris Nauroth via suresh)
  1049. MAPREDUCE-4869. Fix TestMapReduceChildJVM. (Chris Nauroth via acmurthy)
  1050. MAPREDUCE-4870. Fix TestMRJobsWithHistoryService. (Chris Nauroth via acmurthy)
  1051. MAPREDUCE-4983. Fixed various platform specific assumptions in various tests,
  1052. so that they can pass on Windows too. (Chris Nauroth via vinodkv)
  1053. HADOOP-9372. Fix bad timeout annotations on tests.
  1054. (Arpit Agarwal via suresh)
  1055. MAPREDUCE-4885. Streaming tests have multiple failures on Windows. (Chris
  1056. Nauroth via bikas)
  1057. MAPREDUCE-5177. Use common utils FileUtil#setReadable/Writable/Executable &
  1058. FileUtil#canRead/Write/Execute. (Ivan Mitic via suresh)
  1059. MAPREDUCE-5349. TestClusterMapReduceTestCase and TestJobName fail on Windows
  1060. in branch-2. (Chuan Liu via cnauroth)
  1061. MAPREDUCE-5355. MiniMRYarnCluster with localFs does not work on Windows.
  1062. (Chuan Liu via cnauroth)
  1063. MAPREDUCE-5359. JobHistory should not use File.separator to match timestamp
  1064. in path. (Chuan Liu via cnauroth)
  1065. MAPREDUCE-5357. Job staging directory owner checking could fail on Windows.
  1066. (Chuan Liu via cnauroth)
  1067. MAPREDUCE-5360. TestMRJobClient fails on Windows due to path format.
  1068. (Chuan Liu via cnauroth)
  1069. MAPREDUCE-5366. TestMRAsyncDiskService fails on Windows. (Chuan Liu via
  1070. cnauroth)
  1071. MAPREDUCE-5187. Create mapreduce command scripts on Windows. (Chuan Liu via
  1072. cnauroth)
  1073. MAPREDUCE-4374. Fix child task environment variable config and add support
  1074. for Windows. (Chuan Liu via cnauroth)
  1075. Release 2.0.6-alpha - 08/22/2013
  1076. INCOMPATIBLE CHANGES
  1077. NEW FEATURES
  1078. IMPROVEMENTS
  1079. OPTIMIZATIONS
  1080. Release 2.0.5-alpha - 06/06/2013
  1081. INCOMPATIBLE CHANGES
  1082. NEW FEATURES
  1083. IMPROVEMENTS
  1084. OPTIMIZATIONS
  1085. BUG FIXES
  1086. MAPREDUCE-5240 inside of FileOutputCommitter the initialized Credentials cache
  1087. appears to be empty. (vinodkv)
  1088. Release 2.0.4-alpha - 2013-04-25
  1089. INCOMPATIBLE CHANGES
  1090. NEW FEATURES
  1091. IMPROVEMENTS
  1092. OPTIMIZATIONS
  1093. BUG FIXES
  1094. MAPREDUCE-5006. Fix failing streaming tests due to MAPREDUCE-4994.
  1095. (Sandy Ryza via tomwhite)
  1096. MAPREDUCE-5088. MR Client gets an renewer token exception while Oozie is
  1097. submitting a job (Daryn Sharp via cos)
  1098. MAPREDUCE-5117. Changed MRClientProtocolPBClientImpl to be closeable and thus
  1099. fix failures in renewal of HistoryServer's delegations tokens. (Siddharth
  1100. Seth via vinodkv)
  1101. MAPREDUCE-5083. MiniMRCluster should use a random component when creating an
  1102. actual cluster (Siddharth Seth via hitesh)
  1103. MAPREDUCE-5094. Disabled memory monitoring by default in MiniMRYarnCluster
  1104. to avoid some downstream tests failing. (Siddharth Seth via vinodkv)
  1105. Release 2.0.3-alpha - 2013-02-06
  1106. INCOMPATIBLE CHANGES
  1107. MAPREDUCE-4123. Remove the 'mapred groups' command, which is no longer
  1108. supported. (Devaraj K via sseth)
  1109. MAPREDUCE-4938. Use token request messages defined in hadoop common.
  1110. (suresh)
  1111. NEW FEATURES
  1112. MAPREDUCE-4520. Added support for MapReduce applications to request for
  1113. CPU cores along-with memory post YARN-2. (acmurthy)
  1114. MAPREDUCE-4810. Added new admin command options for MR AM. (Jerry Chen via
  1115. vinodkv)
  1116. MAPREDUCE-4049. Experimental api to allow for alternate shuffle plugins.
  1117. (Avner BenHanoch via acmurthy)
  1118. MAPREDUCE-4807. Allow MapOutputBuffer to be pluggable. (masokan via tucu)
  1119. MAPREDUCE-4808. Refactor MapOutput and MergeManager to facilitate reuse
  1120. by Shuffle implementations. (masokan via tucu)
  1121. IMPROVEMENTS
  1122. MAPREDUCE-3678. The Map tasks logs should have the value of input
  1123. split it processed. (harsh)
  1124. MAPREDUCE-4616. Improve javadoc for MultipleOutputs. (Tony Burton via
  1125. acmurthy)
  1126. HADOOP-8911. CRLF characters in source and text files.
  1127. (Raja Aluri via suresh)
  1128. MAPREDUCE-4723. Fix warnings found by findbugs 2. (Sandy Ryza via eli)
  1129. MAPREDUCE-4703. Add the ability to start the MiniMRClientCluster using
  1130. the configurations used before it is being stopped. (ahmed.radwan via tucu)
  1131. MAPREDUCE-4845. ClusterStatus.getMaxMemory() and getUsedMemory() exist in
  1132. MR1 but not MR2. (Sandy Ryza via tomwhite)
  1133. MAPREDUCE-4899. Implemented a MR specific plugin for tracking finished
  1134. applications that YARN's ResourceManager doesn't keep track off anymore
  1135. (Derek Dagit via vinodkv)
  1136. MAPREDUCE-4920. Use security token protobuf definition from hadoop common.
  1137. (Suresh Srinivas via vinodkv)
  1138. MAPREDUCE-4907. TrackerDistributedCacheManager issues too many getFileStatus
  1139. calls. (sandyr via tucu)
  1140. MAPREDUCE-4949. Enable multiple pi jobs to run in parallel. (sandyr via tucu)
  1141. MAPREDUCE-4809. Change visibility of classes for pluggable sort changes.
  1142. (masokan via tucu)
  1143. MAPREDUCE-4838. Add additional fields like Locality, Avataar to the
  1144. JobHistory logs. (Zhijie Shen via sseth)
  1145. MAPREDUCE-4971. Minor extensibility enhancements to Counters &
  1146. FileOutputFormat. (Arun C Murthy via sseth)
  1147. MAPREDUCE-4977. Documentation for pluggable shuffle and pluggable sort.
  1148. (tucu)
  1149. OPTIMIZATIONS
  1150. MAPREDUCE-4893. Fixed MR ApplicationMaster to do optimal assignment of
  1151. containers to get maximum locality. (Bikas Saha via vinodkv)
  1152. BUG FIXES
  1153. MAPREDUCE-4272. SortedRanges.Range#compareTo is not spec compliant.
  1154. (Yu Gao via llu)
  1155. MAPREDUCE-4607. Race condition in ReduceTask completion can result in Task
  1156. being incorrectly failed. (Bikas Saha via tomwhite)
  1157. MAPREDUCE-4646. Fixed MR framework to send diagnostic information correctly
  1158. to clients in case of failed jobs also. (Jason Lowe via vinodkv)
  1159. MAPREDUCE-4674. Hadoop examples secondarysort has a typo
  1160. "secondarysrot" in the usage. (Robert Justice via eli)
  1161. MAPREDUCE-4681. Fix unit tests broken by HDFS-3910. (acmurthy)
  1162. MAPREDUCE-4712. mr-jobhistory-daemon.sh doesn't accept --config
  1163. (Vinod Kumar Vavilapalli via tgraves)
  1164. MAPREDUCE-4654. TestDistCp is ignored. (Sandy Ryza via tomwhite)
  1165. MAPREDUCE-4736. Remove obsolete option [-rootDir] from TestDFSIO.
  1166. (Brandon Li via suresh)
  1167. MAPREDUCE-4637. Handle TaskAttempt diagnostic updates while in the NEW and
  1168. UNASSIGNED states. (Mayank Bansal via sseth)
  1169. MAPREDUCE-1806. CombineFileInputFormat does not work with paths not on default FS. (Gera Shegalov via tucu)
  1170. MAPREDUCE-4777. In TestIFile, testIFileReaderWithCodec relies on
  1171. testIFileWriterWithCodec. (Sandy Ryza via tomwhite)
  1172. MAPREDUCE-4800. Cleanup o.a.h.mapred.MapTaskStatus - remove unused
  1173. code. (kkambatl via tucu)
  1174. MAPREDUCE-4861. Cleanup: Remove unused mapreduce.security.token.DelegationTokenRenewal.
  1175. (kkambatl via tucu)
  1176. MAPREDUCE-4856. TestJobOutputCommitter uses same directory as
  1177. TestJobCleanup. (Sandy Ryza via tomwhite)
  1178. MAPREDUCE-4278. Cannot run two local jobs in parallel from the same
  1179. gateway. (Sandy Ryza via tomwhite)
  1180. MAPREDUCE-1700. User supplied dependencies may conflict with MapReduce
  1181. system JARs. (tomwhite)
  1182. MAPREDUCE-4936. JobImpl uber checks for cpu are wrong (Arun C Murthy via
  1183. jlowe)
  1184. MAPREDUCE-4924. flakey test: org.apache.hadoop.mapred.TestClusterMRNotification.testMR.
  1185. (rkanter via tucu)
  1186. MAPREDUCE-4923. Add toString method to TaggedInputSplit. (sandyr via tucu)
  1187. MAPREDUCE-4948. Fix a failing unit test TestYARNRunner.testHistoryServerToken.
  1188. (Junping Du via sseth)
  1189. MAPREDUCE-4803. Remove duplicate copy of TestIndexCache. (Mariappan Asokan
  1190. via sseth)
  1191. MAPREDUCE-2264. Job status exceeds 100% in some cases.
  1192. (devaraj.k and sandyr via tucu)
  1193. MAPREDUCE-4969. TestKeyValueTextInputFormat test fails with Open JDK 7.
  1194. (Arpit Agarwal via suresh)
  1195. MAPREDUCE-4884. Streaming tests fail to start MiniMRCluster due to missing
  1196. queue configuration. (Chris Nauroth via suresh)
  1197. MAPREDUCE-4953. HadoopPipes misuses fprintf. (Andy Isaacson via atm)
  1198. Release 2.0.2-alpha - 2012-09-07
  1199. INCOMPATIBLE CHANGES
  1200. NEW FEATURES
  1201. MAPREDUCE-987. Exposing MiniDFS and MiniMR clusters as a single process
  1202. command-line. (ahmed via tucu)
  1203. MAPREDUCE-4417. add support for encrypted shuffle (tucu)
  1204. MAPREDUCE-4355. Add RunningJob.getJobStatus() (kkambatl via tucu)
  1205. MAPREDUCE-3451. Port Fair Scheduler to MR2 (pwendell via tucu)
  1206. MAPREDUCE-4438. Add a simple, generic client to run 'easy' AMs in YARN.
  1207. (Bikas Saha via acmurthy)
  1208. IMPROVEMENTS
  1209. MAPREDUCE-4157. ResourceManager should not kill apps that are well behaved
  1210. (Jason Lowe via bobby)
  1211. MAPREDUCE-4511. Add IFile readahead (ahmed via tucu)
  1212. MAPREDUCE-4408. allow jobs to set a JAR that is in the distributed cached
  1213. (rkanter via tucu)
  1214. MAPREDUCE-4440. Changed SchedulerApp and SchedulerNode to be a minimal
  1215. interface to allow schedulers to maintain their own. (acmurthy)
  1216. MAPREDUCE-4146. Support limits on task status string length and number of
  1217. block locations in branch-2. (Ahmed Radwan via tomwhite)
  1218. MAPREDUCE-3871. Allow symlinking in LocalJobRunner DistributedCache.
  1219. (tomwhite)
  1220. MAPREDUCE-3921. MR AM should act on node health status changes.
  1221. (Bikas Saha via sseth)
  1222. MAPREDUCE-2220. Fix new API FileOutputFormat-related typos in
  1223. mapred-default.xml (Rui Kubo via harsh)
  1224. MAPREDUCE-3907. Document entries mapred-default.xml for the
  1225. jobhistory server. (Eugene Koontz via harsh)
  1226. MAPREDUCE-3906. Fix inconsistency in documentation regarding
  1227. mapreduce.jobhistory.principal. (Eugene Koontz via harsh)
  1228. MAPREDUCE-4432. Confusing warning message when GenericOptionsParser
  1229. is not used. (Gabriel Reid via harsh)
  1230. MAPREDUCE-4427. Added an 'unmanaged' mode for AMs so as to ease
  1231. development of new applications. (Bikas Saha via acmurthy)
  1232. MAPREDUCE-4447. Remove aop from cruft from the ant build. (eli)
  1233. MAPREDUCE-3289. Make use of fadvise in the NM's shuffle handler.
  1234. (Todd Lipcon and Siddharth Seth via sseth)
  1235. MAPREDUCE-4580. Change MapReduce to use the yarn-client module.
  1236. (Vinod Kumar Vavilapalli via sseth)
  1237. MAPREDUCE-4579. Split TestTaskAttempt into two so as to pass tests on
  1238. jdk7. (Thomas Graves via vinodkv)
  1239. MAPREDUCE-4638. MR AM supplies MapReduce jars in classpath rather than
  1240. rely on YARN. (acmurthy)
  1241. BUG FIXES
  1242. MAPREDUCE-4422. YARN_APPLICATION_CLASSPATH needs a documented default value in
  1243. YarnConfiguration. (ahmed via tucu)
  1244. MAPREDUCE-4406. Users should be able to specify the MiniCluster ResourceManager
  1245. and JobHistoryServer ports. (ahmed via tucu)
  1246. MAPREDUCE-4407. Add hadoop-yarn-server-tests-<version>-tests.jar to hadoop dist
  1247. package. (ahmed via tucu)
  1248. MAPREDUCE-4465. Update description of yarn.nodemanager.address property.
  1249. (bowang via tucu)
  1250. MAPREDUCE-4342. Distributed Cache gives inconsistent result if cache files
  1251. get deleted from tasktracker. (mayank_bansal via tucu)
  1252. MAPREDUCE-4498. Remove hsqldb jar from Hadoop runtime classpath. (rkanter via tucu)
  1253. MAPREDUCE-4494. TestFifoScheduler failing with Metrics source QueueMetrics,q0=default
  1254. already exists!. (ahmed.radwan via tucu)
  1255. MAPREDUCE-4484. Incorrect IS_MINI_YARN_CLUSTER property name in YarnConfiguration.
  1256. (ahmed.radwan via tucu)
  1257. MAPREDUCE-4562. Support for "FileSystemCounter" legacy counter group name
  1258. for compatibility reasons is creating incorrect counter name.
  1259. (Jarek Jarcec Cecho via tomwhite)
  1260. MAPREDUCE-4068. Jars in lib subdirectory of the submittable JAR are not added to the
  1261. classpath (rkanter via tucu)
  1262. MAPREDUCE-4577. HDFS-3672 broke
  1263. TestCombineFileInputFormat.testMissingBlocks() test. (atm)
  1264. MAPREDUCE-4470. Fix TestCombineFileInputFormat.testForEmptyFile (ikatsov via tucu)
  1265. MAPREDUCE-4608. hadoop-mapreduce-client is missing some dependencies.
  1266. (tucu via tomwhite)
  1267. MAPREDUCE-4610. Support deprecated mapreduce.job.counters.limit property in
  1268. MR2. (tomwhite)
  1269. MAPREDUCE-4629. Remove JobHistory.DEBUG_MODE (Karthik Kambatla via bobby)
  1270. MAPREDUCE-4642. MiniMRClientClusterFactory should not use job.setJar() (rkanter via tucu)
  1271. MAPREDUCE-4148. MapReduce should not have a compile-time dependency on
  1272. HDFS. (tomwhite)
  1273. MAPREDUCE-4250. hadoop-config.sh missing variable exports, causes Yarn
  1274. jobs to fail with ClassNotFoundException MRAppMaster. (phunt via tucu)
  1275. MAPREDUCE-4002. MultiFileWordCount job fails if the input path is not
  1276. from default file system. (Bhallamudi Venkata Siva Kamesh via todd)
  1277. MAPREDUCE-4274 MapOutputBuffer should use native byte order for kvmeta.
  1278. (todd via bobby)
  1279. MAPREDUCE-4262. NM gives wrong log message saying "Connected to
  1280. ResourceManager" before trying to connect. (Devaraj K via tgraves)
  1281. MAPREDUCE-4276. Allow setting yarn.nodemanager.delete.debug-delay-sec
  1282. property to "-1" for easier container debugging. (ahmed via tucu)
  1283. MAPREDUCE-4224. TestFifoScheduler throws
  1284. org.apache.hadoop.metrics2.MetricsException (Devaraj K via tgraves)
  1285. MAPREDUCE-3493. Add the default mapreduce.shuffle.port property
  1286. to mapred-default.xml (Madhukara Phatak via harsh)
  1287. MAPREDUCE-4307. TeraInputFormat calls FileSystem.getDefaultBlockSize()
  1288. without a Path - Failure when using ViewFileSystem. (Ahmed Radwan via eli)
  1289. MAPREDUCE-4313. TestTokenCache doesn't compile due
  1290. TokenCache.getDelegationToken compilation error (bobby)
  1291. MAPREDUCE-3873. Fixed NodeManagers' decommissioning at RM to accept IP
  1292. addresses also. (xieguiming via vinodkv)
  1293. MAPREDUCE-4306. Fix distributed shell to work with users other than the one
  1294. running the daemons. (Ahmed Radwan via sseth)
  1295. MAPREDUCE-4031. Prevent a Node Manager hang during shutdown.
  1296. (Devaraj K via sseth)
  1297. MAPREDUCE-4336. Distributed Shell fails when used with the CapacityScheduler
  1298. (ahmed via tucu)
  1299. MAPREDUCE-4290. Fix Yarn Applicaiton Status to MR JobState conversion.
  1300. (Devaraj K via sseth)
  1301. MAPREDUCE-2289. Permissions race can make getStagingDir fail on local filesystem
  1302. (ahmed via tucu)
  1303. MAPREDUCE-4372. Deadlock in Resource Manager (Devaraj K via bobby)
  1304. MAPREDUCE-4376. TestClusterMRNotification times out (Kihwal Lee via bobby)
  1305. MAPREDUCE-4383. HadoopPipes.cc needs to include unistd.h.
  1306. (Andy Isaacson via eli)
  1307. MAPREDUCE-2739. Update installation docs (remove YarnClientFactory) (bowang via tucu)
  1308. MAPREDUCE-3993. Graceful handling of codec errors during decompression
  1309. (kkambatl via tucu)
  1310. MAPREDUCE-4416. Some tests fail if Clover is enabled (Kihwal Lee via bobby)
  1311. MAPREDUCE-4441. Fix build issue caused by MR-3451 (kkambatl via tucu)
  1312. HADOOP-8499. Lower min.user.id to 500 for the tests.
  1313. (Colin Patrick McCabe via eli)
  1314. MAPREDUCE-4395. Possible NPE at ClientDistributedCacheManager
  1315. #determineTimestamps (Bhallamudi via bobby)
  1316. MAPREDUCE-4380. Empty Userlogs directory is getting created under logs
  1317. directory (Devaraj K via bobby)
  1318. MAPREDUCE-4649. Ensure MapReduce JobHistory Daemon doens't assume
  1319. HADOOP_YARN_HOME and HADOOP_MAPRED_HOME are the same. (vinodkv via
  1320. acmurthy)
  1321. Release 2.0.0-alpha - 05-23-2012
  1322. INCOMPATIBLE CHANGES
  1323. MAPREDUCE-3545. Remove Avro RPC. (suresh)
  1324. NEW FEATURES
  1325. IMPROVEMENTS
  1326. MAPREDUCE-2887. Due to HADOOP-7524, change RPC to allow multiple protocols
  1327. including multuple versions of the same protocol (Sanjay Radia)
  1328. MAPREDUCE-2934. MR portion of HADOOP-7607 - Simplify the RPC proxy cleanup
  1329. process (atm)
  1330. HADOOP-7862. MR changes to work with HADOOP 7862: Move the support for
  1331. multiple protocols to lower layer so that Writable, PB and Avro can all
  1332. use it (Sanjay Radia)
  1333. MAPREDUCE-3909 Javadoc the Service interfaces (stevel)
  1334. MAPREDUCE-3885. Avoid an unnecessary copy for all requests/responses in
  1335. MRs ProtoOverHadoopRpcEngine. (Devaraj Das via sseth)
  1336. MAPREDUCE-3991. Streaming FAQ has some wrong instructions about input files
  1337. splitting. (harsh)
  1338. MAPREDUCE-3773. Add queue metrics with buckets for job run times. (omalley
  1339. via acmurthy)
  1340. MAPREDUCE-3970. Add ServiceOperations class to aid working with Services
  1341. (stevel)
  1342. MAPREDUCE-3353. Add a channel between RM and AM to get information on
  1343. nodes. (Bikas Saha via acmurthy)
  1344. MAPREDUCE-3955. Change MR to use ProtobufRpcEngine from hadoop-common
  1345. instead of ProtoOverHadoopRpcEngine. (Jitendra Nath Pandey via sseth)
  1346. MAPREDUCE-4103. Fix HA docs for changes to shell command fencer args (todd)
  1347. MAPREDUCE-4093. Improve RM WebApp start up when proxy address is not set
  1348. (Devaraj K vai bobby)
  1349. MAPREDUCE-4138. Reduce memory usage of counters due to non-static nested
  1350. classes. (tomwhite)
  1351. MAPREDUCE-3883. Document yarn.nodemanager.delete.debug-delay-sec
  1352. configuration property (Eugene Koontz via tgraves)
  1353. MAPREDUCE-4219. make default container-executor.conf.dir be a path
  1354. relative to the container-executor binary. (rvs via tucu)
  1355. MAPREDUCE-4205. retrofit all JVM shutdown hooks to use ShutdownHookManager
  1356. (tucu)
  1357. OPTIMIZATIONS
  1358. BUG FIXES
  1359. MAPREDUCE-3740. Fixed broken mapreduce compilation after the patch for
  1360. HADOOP-7965. (Devaraj K via vinodkv)
  1361. MAPREDUCE-3818. Fixed broken compilation in TestSubmitJob after the patch
  1362. for HDFS-2895. (Suresh Srinivas via vinodkv)
  1363. MAPREDUCE-2942. TestNMAuditLogger.testNMAuditLoggerWithIP failing (Thomas
  1364. Graves via mahadev)
  1365. MAPREDUCE-3933. Failures because MALLOC_ARENA_MAX is not set (ahmed via tucu)
  1366. MAPREDUCE-3728. ShuffleHandler can't access results when configured in a
  1367. secure mode (ahmed via tucu)
  1368. MAPREDUCE-3952. In MR2, when Total input paths to process == 1,
  1369. CombinefileInputFormat.getSplits() returns 0 split. (zhenxiao via tucu)
  1370. MAPREDUCE-3578. Starting nodemanager as root gives "Unknown -jvm option"
  1371. (tomwhite)
  1372. MAPREDUCE-3348. Fixed a bug in MR client to redirect to JobHistoryServer
  1373. correctly when RM forgets the app. (Devaraj K via vinodkv)
  1374. MAPREDUCE-3974. TestSubmitJob in MR1 tests doesn't compile after HDFS-162
  1375. merge. (atm)
  1376. MAPREDUCE-4007. JobClient getJob(JobID) should return NULL if the job
  1377. does not exist (for backwards compatibility) (tucu)
  1378. MAPREDUCE-3431 NPE in Resource Manager shutdown. (stevel)
  1379. MAPREDUCE-4010. TestWritableJobConf fails on trunk (tucu via bobby)
  1380. MAPREDUCE-3992. Reduce fetcher doesn't verify HTTP status code of response
  1381. (todd)
  1382. MAPREDUCE-4066. Use default value when fetching MR_AM_STAGING_DIR
  1383. (xieguiming via harsh)
  1384. MAPREDUCE-3377. Added a unit test to ensure OutputCommitter.checkOutputSpecs
  1385. is called prior to copying job.xml. (Jane Chen via acmurthy)
  1386. MAPREDUCE-4081. TestMROutputFormat.java does not compile (Jason Lowe via
  1387. bobby)
  1388. MAPREDUCE-4082. hadoop-mapreduce-client-app's mrapp-generated-classpath
  1389. file should not be in the module JAR (tucu)
  1390. MAPREDUCE-3916. various issues with running yarn proxyserver (devaraj via tucu)
  1391. MAPREDUCE-4091. tools testcases failing because of MAPREDUCE-4082 (tucu)
  1392. MAPREDUCE-4095. TestJobInProgress#testLocality uses a bogus topology.
  1393. (Colin Patrick McCabe via eli)
  1394. MAPREDUCE-4098. TestMRApps testSetClasspath fails (tucu)
  1395. MAPREDUCE-4097. tools testcases fail because missing mrapp-generated-classpath
  1396. file in classpath (rvs via tucu)
  1397. MAPREDUCE-4113. Fix tests org.apache.hadoop.mapred.TestClusterMRNotification
  1398. (Devaraj K via bobby)
  1399. MAPREDUCE-4112. Fix tests org.apache.hadoop.mapred.TestClusterMapReduceTestCase
  1400. (Devaraj K via bobby)
  1401. MAPREDUCE-4111. Fix tests in org.apache.hadoop.mapred.TestJobName (Devaraj
  1402. K via bobby)
  1403. MAPREDUCE-4110. Fix tests in org.apache.hadoop.mapred.TestMiniMRClasspath &
  1404. org.apache.hadoop.mapred.TestMiniMRWithDFSWithDistinctUsers (Devaraj K via
  1405. bobby)
  1406. MAPREDUCE-4105. Yarn RackResolver ignores rack configurations.
  1407. (Ahmed Radwan via tomwhite)
  1408. MAPREDUCE-3869. Fix classpath for DistributedShell application. (Devaraj K
  1409. via sseth)
  1410. MAPREDUCE-4057. Update RAID for the HA and fsdataset changes. (Devaraj K
  1411. via szetszwo)
  1412. MAPREDUCE-4076. Stream job fails with ZipException when use yarn jar
  1413. command (Devaraj K via bobby)
  1414. MAPREDUCE-4108. Fix tests in org.apache.hadoop.util.TestRunJar
  1415. (Devaraj K via tgraves)
  1416. MAPREDUCE-4107. Fix tests in org.apache.hadoop.ipc.TestSocketFactory
  1417. (Devaraj K via tgraves)
  1418. MAPREDUCE-4147. YARN should not have a compile-time dependency on HDFS.
  1419. (tomwhite)
  1420. MAPREDUCE-4008. ResourceManager throws MetricsException on start up
  1421. saying QueueMetrics MBean already exists (Devaraj K via tgraves)
  1422. MAPREDUCE-3867. MiniMRYarn/MiniYarn uses fixed ports (tucu)
  1423. MAPREDUCE-4141. clover integration broken, also mapreduce poms are
  1424. pulling in clover as a dependency. (phunt via tucu)
  1425. MAPREDUCE-4193. broken doc link for yarn-default.xml in site.xml.
  1426. (phunt via tomwhite)
  1427. MAPREDUCE-4202. TestYarnClientProtocolProvider is broken (Daryn Sharp via
  1428. bobby)
  1429. MAPREDUCE-3173. MRV2 UI doesn't work properly without internet (Devaraj K
  1430. via bobby)
  1431. MAPREDUCE-3958. RM: Remove RMNodeState and replace it with NodeState
  1432. (Bikas Saha via bobby)
  1433. MAPREDUCE-4231. Update RAID to use the new BlockCollection interface.
  1434. (szetszwo)
  1435. MAPREDUCE-4483. 2.0 build does not work (John George via bobby)
  1436. MAPREDUCE-4444. nodemanager fails to start when one of the local-dirs is
  1437. bad (Jason Lowe via bobby)
  1438. Release 0.23.10 - UNRELEASED
  1439. INCOMPATIBLE CHANGES
  1440. NEW FEATURES
  1441. IMPROVEMENTS
  1442. MAPREDUCE-5640. Rename TestLineRecordReader in jobclient module (Jason Lowe
  1443. via jeagles)
  1444. MAPREDUCE-3191. docs for map output compression incorrectly reference
  1445. SequenceFile (Chen He via jeagles)
  1446. OPTIMIZATIONS
  1447. MAPREDUCE-1981. Improve getSplits performance by using listLocatedStatus
  1448. (Hairong Kuang and Jason Lowe via jlowe)
  1449. BUG FIXES
  1450. MAPREDUCE-3193. FileInputFormat doesn't read files recursively in the
  1451. input path dir (Devaraj K via jlowe)
  1452. MAPREDUCE-5380. Invalid mapred command should return non-zero exit code
  1453. (Stephen Chu via jlowe)
  1454. MAPREDUCE-5317. Stale files left behind for failed jobs (Ravi Prakash via
  1455. jlowe)
  1456. MAPREDUCE-5251. Reducer should not implicate map attempt if it has
  1457. insufficient space to fetch map output (Ashwin Shankar via jlowe)
  1458. MAPREDUCE-5419. TestSlive is getting FileNotFound Exception (Robert Parker
  1459. via jlowe)
  1460. MAPREDUCE-5440. TestCopyCommitter Fails on JDK7 (Robert Parker via jlowe)
  1461. MAPREDUCE-5001. LocalJobRunner has race condition resulting in job
  1462. failures (Sandy Ryza via jlowe)
  1463. MAPREDUCE-5475. MRClientService does not verify ACLs properly (jlowe)
  1464. MAPREDUCE-5504. mapred queue -info inconsistent with types (Kousuke Saruta
  1465. via tgraves)
  1466. MAPREDUCE-5513. ConcurrentModificationException in JobControl (Robert
  1467. Parker via jlowe)
  1468. MAPREDUCE-5586. TestCopyMapper#testCopyFailOnBlockSizeDifference fails when
  1469. run from hadoop-tools/hadoop-distcp directory (jeagles)
  1470. MAPREDUCE-5587. TestTextOutputFormat fails on JDK7 (jeagles)
  1471. MAPREDUCE-5373. TestFetchFailure.testFetchFailureMultipleReduces could fail
  1472. intermittently (jeagles)
  1473. Release 0.23.9 - 2013-07-08
  1474. INCOMPATIBLE CHANGES
  1475. NEW FEATURES
  1476. IMPROVEMENTS
  1477. MAPREDUCE-5084. fix coverage org.apache.hadoop.mapreduce.v2.app.webapp and
  1478. org.apache.hadoop.mapreduce.v2.hs.webapp (Aleksey Gorshkov via jeagles)
  1479. OPTIMIZATIONS
  1480. MAPREDUCE-5268. Improve history server startup performance (Karthik
  1481. Kambatla via jlowe)
  1482. BUG FIXES
  1483. MAPREDUCE-5308. Shuffling to memory can get out-of-sync when fetching
  1484. multiple compressed map outputs (Nathan Roberts via jlowe)
  1485. MAPREDUCE-5315. DistCp reports success even on failure. (mithun and jlowe
  1486. via daryn)
  1487. MAPREDUCE-4019. -list-attempt-ids is not working (Ashwin Shankar,
  1488. Devaraj K, and B Anil Kumar via jlowe)
  1489. MAPREDUCE-5316. job -list-attempt-ids command does not handle illegal
  1490. task-state (Ashwin Shankar via jlowe)
  1491. Release 0.23.8 - 2013-06-05
  1492. INCOMPATIBLE CHANGES
  1493. NEW FEATURES
  1494. IMPROVEMENTS
  1495. MAPREDUCE-5065. DistCp should skip checksum comparisons if block-sizes
  1496. are different on source/target (Mithun Radhakrishnan via kihwal)
  1497. OPTIMIZATIONS
  1498. BUG FIXES
  1499. MAPREDUCE-5015. Coverage fix for org.apache.hadoop.mapreduce.tools.CLI
  1500. (Aleksey Gorshkov via tgraves)
  1501. MAPREDUCE-5147. Maven build should create
  1502. hadoop-mapreduce-client-app-VERSION.jar directly (Robert Parker via tgraves)
  1503. MAPREDUCE-4927. Historyserver 500 error due to NPE when accessing specific
  1504. counters page for failed job. (Ashwin Shankar via jlowe)
  1505. Release 0.23.7 - 2013-04-18
  1506. INCOMPATIBLE CHANGES
  1507. NEW FEATURES
  1508. IMPROVEMENTS
  1509. MAPREDUCE-4905. test org.apache.hadoop.mapred.pipes
  1510. (Aleksey Gorshkov via bobby)
  1511. MAPREDUCE-4989. JSONify DataTables input data for Attempts page (Ravi
  1512. Prakash via jlowe)
  1513. MAPREDUCE-5027. Shuffle does not limit number of outstanding connections
  1514. (Robert Parker via jeagles)
  1515. MAPREDUCE-4972. Coverage fixing for org.apache.hadoop.mapreduce.jobhistory
  1516. (Aleksey Gorshkov via bobby)
  1517. OPTIMIZATIONS
  1518. MAPREDUCE-4946. Fix a performance problem for large jobs by reducing the
  1519. number of map completion event type conversions. (Jason Lowe via sseth)
  1520. MAPREDUCE-4822. Unnecessary conversions in History Events. (Chu Tong via
  1521. jlowe)
  1522. BUG FIXES
  1523. MAPREDUCE-4458. Warn if java.library.path is used for AM or Task
  1524. (Robert Parker via jeagles)
  1525. MAPREDUCE-4992. AM hangs in RecoveryService when recovering tasks with
  1526. speculative attempts (Robert Parker via jlowe)
  1527. MAPREDUCE-5009. Killing the Task Attempt slated for commit does not clear
  1528. the value from the Task commitAttempt member (Robert Parker via jeagles)
  1529. MAPREDUCE-4871. AM uses mapreduce.jobtracker.split.metainfo.maxsize but
  1530. mapred-default has mapreduce.job.split.metainfo.maxsize (Jason Lowe via
  1531. jeagles)
  1532. MAPREDUCE-4794. DefaultSpeculator generates error messages on normal
  1533. shutdown (Jason Lowe via jeagles)
  1534. MAPREDUCE-5043. Fetch failure processing can cause AM event queue to
  1535. backup and eventually OOM (Jason Lowe via bobby)
  1536. MAPREDUCE-5023. History Server Web Services missing Job Counters (Ravi
  1537. Prakash via tgraves)
  1538. MAPREDUCE-5060. Fetch failures that time out only count against the first
  1539. map task (Robert Joseph Evans via jlowe)
  1540. MAPREDUCE-5042. Reducer unable to fetch for a map task that was recovered
  1541. (Jason Lowe via bobby)
  1542. MAPREDUCE-5053. java.lang.InternalError from decompression codec cause
  1543. reducer to fail (Robert Parker via jeagles)
  1544. MAPREDUCE-4991. coverage for gridmix (Aleksey Gorshkov via tgraves)
  1545. MAPREDUCE-5007. fix coverage org.apache.hadoop.mapreduce.v2.hs (Aleksey
  1546. Gorshkov via tgraves)
  1547. MAPREDUCE-5137. AM web UI: clicking on Map Task results in 500 error
  1548. (Thomas Graves via jlowe)
  1549. Release 0.23.6 - 2013-02-06
  1550. INCOMPATIBLE CHANGES
  1551. NEW FEATURES
  1552. IMPROVEMENTS
  1553. MAPREDUCE-4811. JobHistoryServer should show when it was started in WebUI
  1554. About page (Ravi Prakash via jlowe)
  1555. OPTIMIZATIONS
  1556. BUG FIXES
  1557. MAPREDUCE-4802. Takes a long time to load the task list on the AM for
  1558. large jobs (Ravi Prakash via bobby)
  1559. MAPREDUCE-4764. repair TestBinaryTokenFile (Ivan A. Veselovsky via bobby)
  1560. MAPREDUCE-4825. JobImpl.finished doesn't expect ERROR as a final job state
  1561. (jlowe via bobby)
  1562. MAPREDUCE-4817. Hardcoded task ping timeout kills tasks localizing large
  1563. amounts of data (tgraves)
  1564. MAPREDUCE-4836. Elapsed time for running tasks on AM web UI tasks page is 0
  1565. (Ravi Prakash via jeagles)
  1566. MAPREDUCE-4842. Shuffle race can hang reducer (Mariappan Asokan via jlowe)
  1567. MAPREDUCE-4833. Task can get stuck in FAIL_CONTAINER_CLEANUP (Robert
  1568. Parker via jlowe)
  1569. MAPREDUCE-4793. Problem with adding resources when using both -files and
  1570. -file to hadoop streaming (jlowe)
  1571. MAPREDUCE-4890. Invalid TaskImpl state transitions when task fails while
  1572. speculating (jlowe)
  1573. MAPREDUCE-4902. Fix typo "receievd" should be "received" in log output
  1574. (Albert Chu via jlowe)
  1575. MAPREDUCE-4813. AM timing out during job commit (jlowe via bobby)
  1576. MAPREDUCE-4279. getClusterStatus() fails with null pointer exception when
  1577. running jobs in local mode (Devaraj K via bobby)
  1578. MAPREDUCE-4832. MR AM can get in a split brain situation (jlowe)
  1579. MAPREDUCE-4894. Renewal / cancellation of JobHistory tokens (Siddharth
  1580. Seth via tgraves)
  1581. MAPREDUCE-4819. AM can rerun job after reporting final job status to the
  1582. client (bobby and Bikas Saha via bobby)
  1583. MAPREDUCE-4913. TestMRAppMaster#testMRAppMasterMissingStaging occasionally
  1584. exits (Jason Lowe via tgraves)
  1585. MAPREDUCE-4848. TaskAttemptContext cast error during AM recovery (Jerry
  1586. Chen via jlowe)
  1587. MAPREDUCE-4921. JobClient should acquire HS token with RM principal
  1588. (daryn via bobby)
  1589. MAPREDUCE-4934. Maven RAT plugin is not checking all source files (tgraves)
  1590. MAPREDUCE-4678. Running the Pentomino example with defaults throws
  1591. java.lang.NegativeArraySizeException (Chris McConnell via harsh)
  1592. MAPREDUCE-4925. The pentomino option parser may be buggy.
  1593. (Karthik Kambatla via harsh)
  1594. Release 0.23.5 - 2012-11-28
  1595. INCOMPATIBLE CHANGES
  1596. NEW FEATURES
  1597. IMPROVEMENTS
  1598. MAPREDUCE-4596. Split StateMachine state from states seen by MRClientProtocol
  1599. for Job, Task and TaskAttempt. (Siddarth Seth via vinodkv)
  1600. MAPREDUCE-4752. Reduce MR AM memory usage through String Interning (Robert
  1601. Evans via tgraves)
  1602. MAPREDUCE-4266. remove Ant remnants from MR (tgraves via bobby)
  1603. MAPREDUCE-4666. JVM metrics for history server (jlowe via jeagles)
  1604. OPTIMIZATIONS
  1605. MAPREDUCE-4720. Browser thinks History Server main page JS is taking too
  1606. long (Ravi Prakash via bobby)
  1607. BUG FIXES
  1608. MAPREDUCE-4554. Job Credentials are not transmitted if security is turned
  1609. off (Benoy Antony via bobby)
  1610. MAPREDUCE-4705. Fix a bug in job history lookup, which makes older jobs
  1611. inaccessible despite the presence of a valid history file. (Jason Lowe
  1612. via sseth)
  1613. MAPREDUCE-4521. mapreduce.user.classpath.first incompatibility with 0.20/1.x
  1614. (Ravi Prakash via bobby)
  1615. MAPREDUCE-4721. Task startup time in JHS is same as job startup time.
  1616. (Ravi Prakash via bobby)
  1617. MAPREDUCE-4479. Fix parameter order in assertEquals() in
  1618. TestCombineInputFileFormat.java (Mariappan Asokan via bobby)
  1619. MAPREDUCE-4733. Reducer can fail to make progress during shuffle if too many
  1620. reducers complete consecutively. (Jason Lowe via vinodkv)
  1621. MAPREDUCE-4740. only .jars can be added to the Distributed Cache
  1622. classpath. (Robert Joseph Evans via jlowe)
  1623. MAPREDUCE-4229. Intern counter names in the JT (Miomir Boljanovic and bobby via daryn)
  1624. MAPREDUCE-4741. WARN and ERROR messages logged during normal AM shutdown.
  1625. (Vinod Kumar Vavilapalli via jlowe)
  1626. MAPREDUCE-4730. Fix Reducer's EventFetcher to scale the map-completion
  1627. requests slowly to avoid HADOOP-8942. (Jason Lowe via vinodkv)
  1628. MAPREDUCE-4748. Invalid event: T_ATTEMPT_SUCCEEDED at SUCCEEDED. (jlowe)
  1629. MAPREDUCE-4724. job history web ui applications page should be sorted to
  1630. display last app first (tgraves via bobby)
  1631. MAPREDUCE-4746. The MR Application Master does not have a config to set
  1632. environment variables (Rob Parker via bobby)
  1633. MAPREDUCE-4729. job history UI not showing all job attempts. (Vinod
  1634. Kumar Vavilapalli via jlowe)
  1635. MAPREDUCE-4763 repair test TestUmbilicalProtocolWithJobToken (Ivan A.
  1636. Veselovsky via bobby)
  1637. MAPREDUCE-4771. KeyFieldBasedPartitioner not partitioning properly when
  1638. configured (jlowe via bobby)
  1639. MAPREDUCE-4772. Fetch failures can take way too long for a map to be
  1640. restarted (bobby)
  1641. MAPREDUCE-4782. NLineInputFormat skips first line of last InputSplit
  1642. (Mark Fuhs via bobby)
  1643. MAPREDUCE-4774. JobImpl does not handle asynchronous task events in FAILED
  1644. state (jlowe via bobby)
  1645. MAPREDUCE-4751. AM stuck in KILL_WAIT for days (vinodkv via bobby)
  1646. MAPREDUCE-4787. TestJobMonitorAndPrint is broken (Rob Parker via bobby)
  1647. MAPREDUCE-4425. Speculation + Fetch failures can lead to a hung job (jlowe
  1648. via bobby)
  1649. MAPREDUCE-4786. Job End Notification retry interval is 5 milliseconds by
  1650. default (Ravi Prakash via bobby)
  1651. MAPREDUCE-4517. Too many INFO messages written out during AM to RM heartbeat
  1652. (Jason Lowe via tgraves)
  1653. MAPREDUCE-4797. LocalContainerAllocator can loop forever trying to contact
  1654. the RM (jlowe via bobby)
  1655. MAPREDUCE-4801. ShuffleHandler can generate large logs due to prematurely
  1656. closed channels (jlowe via bobby)
  1657. Release 0.23.4
  1658. INCOMPATIBLE CHANGES
  1659. NEW FEATURES
  1660. IMPROVEMENTS
  1661. MAPREDUCE-2786. Add compression option for TestDFSIO.
  1662. (Plamen Jeliazkov via shv)
  1663. MAPREDUCE-4645. Provide a random seed to Slive to make the sequence
  1664. of file names deterministic. (Ravi Prakash via shv)
  1665. MAPREDUCE-4651. Benchmarking random reads with DFSIO. (shv)
  1666. OPTIMIZATIONS
  1667. BUG FIXES
  1668. MAPREDUCE-4647. We should only unjar jobjar if there is a lib directory
  1669. in it. (Robert Evans via tgraves)
  1670. MAPREDUCE-4691. Historyserver can report "Unknown job" after RM says job
  1671. has completed (Robert Joseph Evans via jlowe)
  1672. MAPREDUCE-4689. JobClient.getMapTaskReports on failed job results in NPE
  1673. (jlowe via bobby)
  1674. Release 0.23.3
  1675. INCOMPATIBLE CHANGES
  1676. MAPREDUCE-4072. User set java.library.path seems to overwrite default
  1677. creating problems native lib loading (Anupam Seth via bobby)
  1678. MAPREDUCE-3812. Lower default allocation sizes, fix allocation
  1679. configurations and document them (Harsh J via bobby)
  1680. NEW FEATURES
  1681. IMPROVEMENTS
  1682. MAPREDUCE-4059. The history server should have a separate pluggable
  1683. storage/query interface. (Robert Evans via tgraves)
  1684. MAPREDUCE-3942. Randomize master key generation for
  1685. ApplicationTokenSecretManager and roll it every so often. (Vinod Kumar
  1686. Vavilapalli via sseth)
  1687. MAPREDUCE-4151. RM scheduler web page should filter apps to those that
  1688. are relevant to scheduling (Jason Lowe via tgraves)
  1689. MAPREDUCE-4134. Remove references of mapred.child.ulimit etc. since they
  1690. are not being used any more (Ravi Prakash via bobby)
  1691. MAPREDUCE-3972. Fix locking and exception issues in JobHistory server.
  1692. (Robert Joseph Evans via sseth)
  1693. MAPREDUCE-4161. create sockets consistently (Daryn Sharp via bobby)
  1694. MAPREDUCE-4079. Allow MR AppMaster to limit ephemeral port range.
  1695. (bobby via tgraves)
  1696. MAPREDUCE-4210. Expose listener address for WebApp (Daryn Sharp via bobby)
  1697. MAPREDUCE-4162. Correctly set token service (Daryn Sharp via bobby)
  1698. MAPREDUCE-4301. Dedupe some strings in MRAM for memory savings
  1699. (bobby via tgraves)
  1700. MAPREDUCE-4267. mavenize pipes (tgraves via bobby)
  1701. MAPREDUCE-4375. Show Configuration Tracability in MR UI (bobby
  1702. via tgraves)
  1703. MAPREDUCE-4569. Fixed TestHsWebServicesJobsQuery to pass on JDK7 by not
  1704. depending on test order. (Thomas Graves via vinodkv)
  1705. OPTIMIZATIONS
  1706. MAPREDUCE-3850. Avoid redundant calls for tokens in TokenCache (Daryn
  1707. Sharp via bobby)
  1708. BUG FIXES
  1709. MAPREDUCE-4092. commitJob Exception does not fail job (Jon Eagles via
  1710. bobby)
  1711. MAPREDUCE-4089. Hung Tasks never time out. (Robert Evans via tgraves)
  1712. MAPREDUCE-4024. RM webservices can't query on finalStatus (Tom Graves
  1713. via bobby)
  1714. MAPREDUCE-4060. Multiple SLF4J binding warning (Jason Lowe via bobby)
  1715. MAPREDUCE-3983. TestTTResourceReporting can fail, and should just be
  1716. deleted (Ravi Prakash via bobby)
  1717. MAPREDUCE-4012 Hadoop Job setup error leaves no useful info to users
  1718. (when LinuxTaskController is used). (tgraves)
  1719. MAPREDUCE-4062. AM Launcher thread can hang forever (tgraves via bobby)
  1720. MAPREDUCE-3988. mapreduce.job.local.dir doesn't point to a single directory
  1721. on a node. (Eric Payne via bobby)
  1722. MAPREDUCE-3999. Tracking link gives an error if the AppMaster hasn't
  1723. started yet (Ravi Prakash via bobby)
  1724. MAPREDUCE-4020. Web services returns incorrect JSON for deep queue tree
  1725. (Anupam Seth via tgraves)
  1726. MAPREDUCE-3672. Killed maps shouldn't be counted towards
  1727. JobCounter.NUM_FAILED_MAPS. (Anupam Seth via tgraves)
  1728. MAPREDUCE-3682 Tracker URL says AM tasks run on localhost.
  1729. (Ravi Prakash via tgraves)
  1730. MAPREDUCE-3082. Archive command take wrong path for input file with current
  1731. directory (John George via bobby)
  1732. MAPREDUCE-3650. testGetTokensForHftpFS() fails (Ravi Prakash via bobby)
  1733. MAPREDUCE-3621. TestDBJob and TestDataDrivenDBInputFormat ant tests fail
  1734. (Ravi Prakash via tgraves)
  1735. MAPREDUCE-4073. CS assigns multiple off-switch containers when using
  1736. multi-level-queues (Siddharth Seth via bobby)
  1737. MAPREDUCE-4051. Remove the empty hadoop-mapreduce-project/assembly/all.xml
  1738. file (Ravi Prakash via bobby)
  1739. MAPREDUCE-4117. mapred job -status throws NullPointerException (Devaraj K
  1740. via bobby)
  1741. MAPREDUCE-4099. ApplicationMaster may fail to remove staging directory
  1742. (Jason Lowe via bobby)
  1743. MAPREDUCE-4017. Add jobname to jobsummary log (tgraves and Koji Noguchi
  1744. via bobby)
  1745. MAPREDUCE-4040. History links should use hostname rather than IP address.
  1746. (Bhallamudi Venkata Siva Kamesh via sseth)
  1747. MAPREDUCE-4099 amendment. ApplicationMaster will remove staging directory
  1748. after the history service is stopped. (Jason Lowe via sseth)
  1749. MAPREDUCE-3932. Fix the TaskAttempt state machine to handle
  1750. CONTIANER_LAUNCHED and CONTIANER_LAUNCH_FAILED events in additional
  1751. states. (Robert Joseph Evans via sseth)
  1752. MAPREDUCE-4140. mapreduce classes incorrectly importing
  1753. "clover.org.apache.*" classes. (Patrick Hunt via tomwhite)
  1754. MAPREDUCE-4050. For tasks without assigned containers, changes the node
  1755. text on the UI to N/A instead of a link to null. (Bhallamudi Venkata Siva
  1756. Kamesh via sseth)
  1757. MAPREDUCE-4128. AM Recovery expects all attempts of a completed task to
  1758. also be completed. (Bikas Saha via bobby)
  1759. MAPREDUCE-4144. Fix a NPE in the ResourceManager when handling node
  1760. updates. (Jason Lowe via sseth)
  1761. MAPREDUCE-4156. ant build fails compiling JobInProgress (tgraves)
  1762. MAPREDUCE-4160. some mrv1 ant tests fail with timeout - due to 4156
  1763. (tgraves)
  1764. MAPREDUCE-4074. Client continuously retries to RM When RM goes down
  1765. before launching Application Master (xieguiming via tgraves)
  1766. MAPREDUCE-4159. Job is running in Uber mode after setting
  1767. "mapreduce.job.ubertask.maxreduces" to zero (Devaraj K via bobby)
  1768. MAPREDUCE-4165. Committing is misspelled as commiting in task logs
  1769. (John Eagles via bobby)
  1770. MAPREDUCE-4129. Lots of unneeded counters log messages (Ahmed Radwan via
  1771. bobby)
  1772. MAPREDUCE-3947. yarn.app.mapreduce.am.resource.mb not documented
  1773. (Devaraj K via bobby)
  1774. MAPREDUCE-4190. Improve web UI for task attempts userlog link (Tom Graves
  1775. via bobby)
  1776. MAPREDUCE-4133. MR over viewfs is broken (John George via bobby)
  1777. MAPREDUCE-4194. ConcurrentModificationError in DirectoryCollection
  1778. (Jonathan Eagles via bobby)
  1779. MAPREDUCE-3613. web service calls header contains 2 content types
  1780. (tgraves)
  1781. MAPREDUCE-4169. Container Logs appear in unsorted order (Jonathan Eagles
  1782. via bobby)
  1783. MAPREDUCE-4189. TestContainerManagerSecurity is failing (Devaraj K via
  1784. bobby)
  1785. MAPREDUCE-4209. junit dependency in hadoop-mapreduce-client is missing
  1786. scope test (Radim Kolar via bobby)
  1787. MAPREDUCE-4206. Sorting by Last Health-Update on the RM nodes page sorts
  1788. does not work correctly (Jonathon Eagles via tgraves)
  1789. MAPREDUCE-4212. TestJobClientGetJob sometimes fails
  1790. (Daryn Sharp via tgraves)
  1791. MAPREDUCE-4211. Error conditions (missing appid, appid not found) are
  1792. masked in the RM app page (Jonathan Eagles via bobby)
  1793. MAPREDUCE-4163. consistently set the bind address (Daryn Sharp via bobby)
  1794. MAPREDUCE-4048. NullPointerException exception while accessing the
  1795. Application Master UI (Devaraj K via bobby)
  1796. MAPREDUCE-4220. RM apps page starttime/endtime sorts are incorrect
  1797. (Jonathan Eagles via bobby)
  1798. MAPREDUCE-4226. ConcurrentModificationException in FileSystemCounterGroup.
  1799. (tomwhite)
  1800. MAPREDUCE-4215. RM app page shows 500 error on appid parse error
  1801. (Jonathon Eagles via tgraves)
  1802. MAPREDUCE-4237. TestNodeStatusUpdater can fail if localhost has a domain
  1803. associated with it (bobby)
  1804. MAPREDUCE-4233. NPE can happen in RMNMNodeInfo. (bobby)
  1805. MAPREDUCE-4238. mavenize data_join. (tgraves)
  1806. MAPREDUCE-4102. job counters not available in Jobhistory webui for
  1807. killed jobs (Bhallamudi Venkata Siva Kamesh via tgraves)
  1808. MAPREDUCE-3543. Mavenize Gridmix. (tgraves)
  1809. MAPREDUCE-4197. Include the hsqldb jar in the hadoop-mapreduce tar
  1810. file (Ravi Prakash via tgraves)
  1811. MAPREDUCE-4269. documentation: Gridmix has javadoc warnings in
  1812. StressJobFactory (Jonathon Eagles via tgraves).
  1813. MAPREDUCE-3870. Invalid App Metrics
  1814. (Bhallamudi Venkata Siva Kamesh via tgraves).
  1815. MAPREDUCE-4152. map task left hanging after AM dies trying to connect to RM
  1816. (Tom Graves via bobby)
  1817. MAPREDUCE-4297. Usersmap file in gridmix should not fail on empty lines
  1818. (Ravi Prakash via bobby)
  1819. MAPREDUCE-4302. NM goes down if error encountered during log aggregation
  1820. (Daryn Sharp via bobby)
  1821. MAPREDUCE-3350. Per-app RM page should have the list of application-attempts
  1822. like on the app JHS page (Jonathon Eagles via tgraves)
  1823. MAPREDUCE-3842. Stop webpages from automatic refreshing (tgraves)
  1824. MAPREDUCE-3927. Shuffle hang when set map.failures.percent
  1825. (Bhallamudi Venkata Siva Kamesh via tgraves)
  1826. MAPREDUCE-4311. Capacity scheduler.xml does not accept decimal values for
  1827. capacity and maximum-capacity settings (Karthik Kambatla via tgraves)
  1828. MAPREDUCE-4341. add types to capacity scheduler properties documentation
  1829. (Karthik Kambatla via tgraves)
  1830. MAPREDUCE-4270. Move the data_join test classes to the correct path.
  1831. (Thomas Graves via sseth)
  1832. MAPREDUCE-3889. job client tries to use /tasklog interface, but that
  1833. doesn't exist anymore (Devaraj K via bobby)
  1834. MAPREDUCE-4320. gridmix mainClass wrong in pom.xml (tgraves)
  1835. MAPREDUCE-4295. RM crashes due to DNS issue (tgraves)
  1836. MAPREDUCE-4228. mapreduce.job.reduce.slowstart.completedmaps is not working
  1837. properly (Jason Lowe via bobby)
  1838. MAPREDUCE-4392. Counters.makeCompactString() changed behavior from 0.20
  1839. (Jason Lowe via bobby)
  1840. MAPREDUCE-4384. Race conditions in IndexCache (Kihwal Lee via tgraves)
  1841. MAPREDUCE-4387. RM gets fatal error and exits during TestRM
  1842. (Kihwal Lee via tgraves)
  1843. MAPREDUCE-4379. Node Manager throws java.lang.OutOfMemoryError: Java heap
  1844. space due to org.apache.hadoop.fs.LocalDirAllocator.contexts (Devaraj K
  1845. via bobby)
  1846. MAPREDUCE-4402. TestFileInputFormat fails intermittently (Jason Lowe via
  1847. bobby)
  1848. MAPREDUCE-4300. OOM in AM can turn it into a zombie. (Robert Evans via
  1849. tgraves)
  1850. MAPREDUCE-4252. MR2 job never completes with 1 pending task (Tom White via
  1851. bobby)
  1852. MAPREDUCE-3940. ContainerTokens should have an expiry interval. (Siddharth
  1853. Seth and Vinod Kumar Vavilapalli via vinodkv)
  1854. MAPREDUCE-4419. ./mapred queue -info <queuename> -showJobs displays all
  1855. the jobs irrespective of <queuename> (Devaraj K via bobby)
  1856. MAPREDUCE-4299. Terasort hangs with MR2 FifoScheduler (Tom White via
  1857. bobby)
  1858. MAPREDUCE-4437. Race in MR ApplicationMaster can cause reducers to never be
  1859. scheduled (Jason Lowe via bobby)
  1860. MAPREDUCE-4449. Incorrect MR_HISTORY_STORAGE property name in JHAdminConfig
  1861. (Ahmed Radwan via bobby)
  1862. MAPREDUCE-4283. Display tail of aggregated logs by default (Jason Lowe via
  1863. bobby)
  1864. MAPREDUCE-4448. Fix NM crash during app cleanup if aggregation didn't
  1865. init. (Jason Lowe via daryn)
  1866. MAPREDUCE-3893. allow capacity scheduler configs maximum-applications and
  1867. maximum-am-resource-percent configurable on a per queue basis (tgraves via
  1868. bobby)
  1869. MAPREDUCE-4467. IndexCache failures due to missing synchronization
  1870. (Kihwal Lee via tgraves)
  1871. MAPREDUCE-4423. Potential infinite fetching of map output (Robert Evans
  1872. via tgraves)
  1873. MAPREDUCE-4456. LocalDistributedCacheManager can get an
  1874. ArrayIndexOutOfBounds when creating symlinks (Robert Evans via tgraves)
  1875. MAPREDUCE-4496. AM logs link is missing user name (Jason Lowe via bobby)
  1876. MAPREDUCE-4493. Distibuted Cache Compatability Issues (Robert Evans
  1877. via tgraves)
  1878. MAPREDUCE-4492. Configuring total queue capacity between 100.5 and 99.5 at
  1879. perticular level is sucessfull (Mayank Bansal via bobby)
  1880. MAPREDUCE-4457. mr job invalid transition TA_TOO_MANY_FETCH_FAILURE at
  1881. FAILED (Robert Evans via tgraves)
  1882. MAPREDUCE-4234. SortValidator.java is incompatible with multi-user or
  1883. parallel use (due to a /tmp file with static name) (Robert Evans via
  1884. jeagles)
  1885. MAPREDUCE-4504. SortValidator writes to wrong directory (Robert Evans
  1886. via tgraves)
  1887. MAPREDUCE-4503. Should throw InvalidJobConfException if duplicates found in
  1888. cacheArchives or cacheFiles (Robert Evans via jeagles)
  1889. MAPREDUCE-3782. teragen terasort jobs fail when using webhdfs:// (Jason
  1890. Lowe via bobby)
  1891. MAPREDUCE-4053. Counters group names deprecation is wrong, iterating over
  1892. group names deprecated names don't show up (Robert Evans via tgraves)
  1893. MAPREDUCE-3506. Calling getPriority on JobInfo after parsing a history log
  1894. with JobHistoryParser throws a NullPointerException (Jason Lowe via bobby)
  1895. MAPREDUCE-4570. ProcfsBasedProcessTree#constructProcessInfo() prints a
  1896. warning if procfsDir/<pid>/stat is not found. (Ahmed Radwan via bobby)
  1897. MAPREDUCE-4600. TestTokenCache.java from MRV1 no longer compiles (daryn
  1898. via bobby)
  1899. MAPREDUCE-4612. job summary file permissions not set when its created
  1900. (tgraves via bobby)
  1901. MAPREDUCE-4614. Simplify debugging a job's tokens (daryn via bobby)
  1902. MAPREDUCE-4611. MR AM dies badly when Node is decommissioned (Robert
  1903. Evans via tgraves)
  1904. MAPREDUCE-4604. In mapred-default, mapreduce.map.maxattempts &
  1905. mapreduce.reduce.maxattempts defaults are set to 4 as well as
  1906. mapreduce.job.maxtaskfailures.per.tracker. (Ravi Prakash via jeagles)
  1907. MAPREDUCE-4633. history server doesn't set permissions on all subdirs
  1908. (tgraves via bobby)
  1909. MAPREDUCE-4641. Exception in commitJob marks job as successful in job
  1910. history (Jason Lowe via bobby)
  1911. Release 0.23.2 - UNRELEASED
  1912. INCOMPATIBLE CHANGES
  1913. NEW FEATURES
  1914. IMPROVEMENTS
  1915. MAPREDUCE-3849. Change TokenCache's reading of the binary token file
  1916. (Daryn Sharp via bobby)
  1917. MAPREDUCE-3854. Fixed and reenabled tests related to MR child JVM's
  1918. environmental variables in TestMiniMRChildTask. (Tom White via vinodkv)
  1919. MAPREDUCE-3877 Add a test to formalise the current state transitions
  1920. of the yarn lifecycle. (stevel)
  1921. MAPREDUCE-3866. Fixed the bin/yarn script to not print the command line
  1922. unnecessarily. (vinodkv)
  1923. MAPREDUCE-3730. Modified RM to allow restarted NMs to be able to join the
  1924. cluster without waiting for expiry. (Jason Lowe via vinodkv)
  1925. MAPREDUCE-2793. Corrected AppIDs, JobIDs, TaskAttemptIDs to be of correct
  1926. format on the web pages. (Bikas Saha via vinodkv)
  1927. MAPREDUCE-3614. Fixed MR AM to close history file quickly and send a correct
  1928. final state to the RM when it is killed. (Ravi Prakash via vinodkv)
  1929. MAPREDUCE-3497. Added docs for YARN CLI. (tgraves via acmurthy)
  1930. MAPREDUCE-3954. Added new envs to separate heap size for different daemons
  1931. started via bin scripts. (Robert Joseph Evans via vinodkv)
  1932. MAPREDUCE-4025. AM can crash if task attempt reports bogus progress value
  1933. (Jason Lowe via bobby)
  1934. MAPREDUCE-4034. Unable to view task logs on history server with
  1935. mapreduce.job.acl-view-job=* (Jason Lowe and Siddarth Seth via bobby)
  1936. MAPREDUCE-4043. Secret keys set in Credentials are not seen by tasks
  1937. (Jason Lowe via bobby)
  1938. MAPREDUCE-3989. Cap space usage of default log4j rolling policy.
  1939. (Patrick Hunt via eli)
  1940. OPTIMIZATIONS
  1941. MAPREDUCE-3901. Modified JobHistory records in YARN to lazily load job and
  1942. task reports so as to improve UI response times. (Siddarth Seth via vinodkv)
  1943. MAPREDUCE-2855. Passing a cached class-loader to ResourceBundle creator to
  1944. minimize counter names lookup time. (Siddarth Seth via vinodkv)
  1945. MAPREDUCE-3944. Change the history jobs/ webservice to return partial job
  1946. info for a significant performance improvement. (Robert Joseph Evans via
  1947. sseth)
  1948. BUG FIXES
  1949. MAPREDUCE-3918 proc_historyserver no longer in command line arguments for
  1950. HistoryServer (Jon Eagles via bobby)
  1951. MAPREDUCE-3862. Nodemanager can appear to hang on shutdown due to lingering
  1952. DeletionService threads (Jason Lowe via bobby)
  1953. MAPREDUCE-3680. FifoScheduler web service rest API can print out invalid
  1954. JSON. (B Anil Kumar via tgraves)
  1955. MAPREDUCE-3852. Test TestLinuxResourceCalculatorPlugin failing. (Thomas
  1956. Graves via mahadev)
  1957. MAPREDUCE-3736. Variable substitution depth too large for fs.default.name
  1958. causes jobs to fail (ahmed via tucu).
  1959. MAPREDUCE-3864. Fix cluster setup docs for correct SecondaryNameNode
  1960. HTTPS parameters. (todd)
  1961. MAPREDUCE-3583. Change pid to String and stime to BigInteger in order to
  1962. avoid NumberFormatException caused by overflow. (Zhihong Yu via szetszwo)
  1963. MAPREDUCE-3634. Fixed all daemons to crash instead of hanging around when
  1964. their EventHandlers get exceptions. (vinodkv)
  1965. MAPREDUCE-3798. Fixed failing TestJobCleanup.testCusomCleanup() and moved it
  1966. to the maven build. (Ravi Prakash via vinodkv)
  1967. MAPREDUCE-3884. PWD should be first in the classpath of MR tasks (tucu)
  1968. MAPREDUCE-3878. Null user on filtered jobhistory job page (Jonathon Eagles
  1969. via tgraves)
  1970. MAPREDUCE-3738. MM can hang during shutdown if AppLogAggregatorImpl thread
  1971. dies unexpectedly (Jason Lowe via sseth)
  1972. MAPREDUCE-3904 Job history produced with mapreduce.cluster.acls.enabled
  1973. false can not be viewed with mapreduce.cluster.acls.enabled true
  1974. (Jonathon Eagles via tgraves)
  1975. MAPREDUCE-3910. Fixed a bug in CapacityScheduler LeafQueue which was causing
  1976. app-submission to fail. (John George via vinodkv)
  1977. MAPREDUCE-3686. Fixed two bugs in Counters because of which web app displays
  1978. zero counter values for framework counters. (Bhallamudi Venkata Siva Kamesh
  1979. via vinodkv)
  1980. MAPREDUCE-3913. RM application webpage is unresponsive after 2000 jobs
  1981. (Jason Lowe via tgraves)
  1982. MAPREDUCE-3922. Fixed build to not compile 32bit container-executor binary
  1983. by default on all platforms. (Hitesh Shah via vinodkv)
  1984. MAPREDUCE-3790. Broken pipe on streaming job can lead to truncated output for
  1985. a successful job (Jason Lowe via bobby)
  1986. MAPREDUCE-3816. capacity scheduler web ui bar graphs for used capacity wrong
  1987. (tgraves via bobby)
  1988. MAPREDUCE-3930. Fixed an NPE while accessing the AM page/webservice for a
  1989. task attempt without an assigned container. (Robert Joseph Evans via
  1990. sseth)
  1991. MAPREDUCE-3931. Changed PB implementation of LocalResource to take locks
  1992. so that race conditions don't fail tasks by inadvertantly changing the
  1993. timestamps. (Siddarth Seth via vinodkv)
  1994. MAPREDUCE-3687. If AM dies before it returns new tracking URL, proxy
  1995. redirects to http://N/A/ and doesn't return error code (Ravi Prakash via
  1996. bobby)
  1997. MAPREDUCE-3920. Revise yarn default port number selection
  1998. (Dave Thompson via tgraves)
  1999. MAPREDUCE-3903. Add support for mapreduce admin users. (Thomas Graves via
  2000. sseth)
  2001. MAPREDUCE-3706. Fix circular redirect error in job-attempts page. (bobby
  2002. via acmurthy)
  2003. MAPREDUCE-3896. Add user information to the delegation token issued by the
  2004. history server. (Vinod Kumar Vavilapalli via sseth)
  2005. MAPREDUCE-3792. Fix "bin/mapred job -list" to display all jobs instead of
  2006. only the jobs owned by the user. (Jason Lowe via vinodkv)
  2007. MAPREDUCE-3929. Fixed output of 'bin/mapred queue -showacl' command to
  2008. clarify ACLs for users. (John George via acmurthy)
  2009. MAPREDUCE-3960. Fix web-proxy to forward request to AM with configured
  2010. hostname or IP. (tgraves via acmurthy)
  2011. MAPREDUCE-3897. Fixed computation of maxActiveAppsPerUser for queues by
  2012. using capacity and not max-capacity since we are already scaling it by
  2013. userLimitFactor. (Eric Payne via acmurthy)
  2014. MAPREDUCE-3009. Fixed node link on JobHistory webapp. (chackaravarthy via
  2015. vinodkv)
  2016. MAPREDUCE-3964. ResourceManager does not have JVM metrics (Jason Lowe via
  2017. bobby)
  2018. MAPREDUCE-3034. Ensure NodeManager reboots itself on direction from
  2019. ResourceManager. (Devaraj K & Eric Payne via acmurthy)
  2020. MAPREDUCE-3976. TestRMContainerAllocator failing (Jason Lowe via bobby)
  2021. MAPREDUCE-3961. Map/ReduceSlotMillis computation incorrect (Siddharth Seth
  2022. via bobby)
  2023. MAPREDUCE-3977. LogAggregationService leaks log aggregator objects
  2024. (Jason Lowe via bobby)
  2025. MAPREDUCE-3975. Default value not set for Configuration parameter
  2026. mapreduce.job.local.dir (Eric Payne via bobby)
  2027. MAPREDUCE-3982. Fixed FileOutputCommitter to not err out for an 'empty-job'
  2028. whose tasks don't write any outputs. (Robert Joseph Evans via vinodkv)
  2029. MAPREDUCE-4005. Fixes broken AM container logs URL on ResourceManager
  2030. Application Info page. (Jason Lowe via sseth)
  2031. MAPREDUCE-4006. History server container log web UI sometimes combines
  2032. stderr/stdout/syslog contents together (Siddharth Seth via tgraves)
  2033. MAPREDUCE-4061. RM only has 1 AM launcher thread (tgraves via bobby)
  2034. Release 0.23.1 - 2012-02-17
  2035. INCOMPATIBLE CHANGES
  2036. NEW FEATURES
  2037. MAPREDUCE-3121. NodeManager should handle disk-failures (Ravi Gummadi via mahadev)
  2038. MAPREDUCE-2863. Support web services for YARN and MR components. (Thomas
  2039. Graves via vinodkv)
  2040. MAPREDUCE-3251. Network ACLs can prevent some clients to talk to MR ApplicationMaster
  2041. (Anupam Seth via mahadev)
  2042. IMPROVEMENTS
  2043. MAPREDUCE-3297. Moved log related components into yarn-common so that
  2044. HistoryServer and clients can use them without depending on the
  2045. yarn-server-nodemanager module. (Siddharth Seth via vinodkv)
  2046. MAPREDUCE-3336. Replaced guice internal.Preconditions api usage with the
  2047. public Preconditions API. (Thomas Graves via vinodkv)
  2048. MAPREDUCE-3280. Removed the unnecessary job user-name configuration in
  2049. mapred-site.xml. (vinodkv)
  2050. MAPREDUCE-3370. Fixed MiniMRYarnCluster and related tests to not use
  2051. a hard-coded path for the mr-app jar. (Ahmed Radwan via vinodkv)
  2052. MAPREDUCE-3325. Improvements to CapacityScheduler doc. (Thomas Graves
  2053. via mahadev)
  2054. MAPREDUCE-3341. Enhance logging of initalized queue limit values.
  2055. (Anupam Seth via mahadev)
  2056. MAPREDUCE-3243. Invalid tracking URL for streaming jobs (Jonathan Eagles
  2057. via mahadev)
  2058. MAPREDUCE-3331. Improvement to single node cluster setup documentation for
  2059. 0.23 (Anupam Seth via mahadev)
  2060. MAPREDUCE-3102. Changed NodeManager to fail fast when LinuxContainerExecutor
  2061. has wrong configuration or permissions. (Hitesh Shah via vinodkv)
  2062. MAPREDUCE-3415. improve MiniMRYarnCluster & DistributedShell JAR resolution.
  2063. (tucu)
  2064. MAPREDUCE-3373. Hadoop scripts unconditionally source
  2065. "$bin"/../libexec/hadoop-config.sh. (Bruno Mahé via tomwhite)
  2066. MAPREDUCE-3372. HADOOP_PREFIX cannot be overridden.
  2067. (Bruno Mahé via tomwhite)
  2068. MAPREDUCE-3411. Performance Upgrade for jQuery (Jonathan Eagles via
  2069. mahadev)
  2070. MAPREDUCE-3371. Review and improve the yarn-api javadocs. (Ravi Prakash
  2071. via mahadev)
  2072. MAPREDUCE-3238. Small cleanup in SchedulerApp. (Todd Lipcon via mahadev)
  2073. MAPREDUCE-3413. RM web ui applications not sorted in any order by default.
  2074. (Jonathan Eagles via mahadev)
  2075. MAPREDUCE-3045. Fixed UI filters to not filter on hidden title-numeric
  2076. sort fields. (Jonathan Eagles via sseth)
  2077. MAPREDUCE-3448. TestCombineOutputCollector javac unchecked warning on mocked
  2078. generics (Jonathan Eagles via mahadev)
  2079. MAPREDUCE-3169 amendment. Deprecate MiniMRCluster. (Ahmed Radwan via
  2080. sseth)
  2081. MAPREDUCE-3369. Migrate MR1 tests to run on MR2 using the new interfaces
  2082. introduced in MAPREDUCE-3169. (Ahmed Radwan via tomwhite)
  2083. MAPREDUCE-3518. mapred queue -info <queue> -showJobs throws NPE.
  2084. (Jonathan Eagles via mahadev)
  2085. MAPREDUCE-3391. Making a trivial change to correct a log message in
  2086. DistributedShell app's AM. (Subroto Sanyal via vinodkv)
  2087. MAPREDUCE-3547. Added a bunch of unit tests for the the RM/NM webservices.
  2088. (Thomas Graves via acmurthy)
  2089. MAPREDUCE-3610. Remove use of the 'dfs.block.size' config for default block
  2090. size fetching. Use FS#getDefaultBlocksize instead. (Sho Shimauchi via harsh)
  2091. MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev)
  2092. MAPREDUCE-3528. Fixed TaskHeartBeatHandler to use a new configuration
  2093. for the thread loop interval separate from task-timeout configuration
  2094. property. (Siddharth Seth via vinodkv)
  2095. MAPREDUCE-3312. Modified MR AM to not send a stop-container request for
  2096. a container that isn't launched at all. (Robert Joseph Evans via vinodkv)
  2097. MAPREDUCE-3382. Enhanced MR AM to use a proxy to ping the job-end
  2098. notification URL. (Ravi Prakash via vinodkv)
  2099. MAPREDUCE-3299. Added AMInfo table to the MR AM job pages to list all the
  2100. job-attempts when AM restarts and recovers. (Jonathan Eagles via vinodkv)
  2101. MAPREDUCE-3251. Network ACLs can prevent some clients to talk to MR AM.
  2102. Improved the earlier patch to not to JobHistoryServer repeatedly.
  2103. (Anupam Seth via vinodkv)
  2104. MAPREDUCE-3553. Add support for data returned when exceptions thrown from web
  2105. service apis to be in either xml or in JSON. (Thomas Graves via mahadev)
  2106. MAPREDUCE-3641. Making CapacityScheduler more conservative so as to
  2107. assign only one off-switch container in a single scheduling
  2108. iteration. (Arun C Murthy via vinodkv)
  2109. MAPREDUCE-3692. yarn-resourcemanager out and log files can get big. (eli)
  2110. MAPREDUCE-3710. Improved FileInputFormat to return better locality for the
  2111. last split. (Siddarth Seth via vinodkv)
  2112. MAPREDUCE-2765. DistCp Rewrite. (Mithun Radhakrishnan via mahadev)
  2113. MAPREDUCE-3737. The Web Application Proxy's is not documented very well.
  2114. (Robert Evans via mahadev)
  2115. MAPREDUCE-3699. Increased RPC handlers for all YARN servers to reasonable
  2116. values for working at scale. (Hitesh Shah via vinodkv)
  2117. MAPREDUCE-3693. Added mapreduce.admin.user.env to mapred-default.xml.
  2118. (Roman Shapshonik via acmurthy)
  2119. MAPREDUCE-3732. Modified CapacityScheduler to use only users with pending
  2120. requests for computing user-limits. (Arun C Murthy via vinodkv)
  2121. MAPREDUCE-3679. AM logs and others should not automatically refresh after every 1
  2122. second. (Vinod KV via mahadev)
  2123. MAPREDUCE-3754. Modified RM UI to filter applications based on state of the
  2124. applications. (vinodkv)
  2125. MAPREDUCE-3774. Moved yarn-default.xml to hadoop-yarn-common from
  2126. hadoop-server-common. (Mahadev Konar via vinodkv)
  2127. MAPREDUCE-3771. Un-deprecated the old mapred apis, port of MAPREDUCE-1735.
  2128. (acmurthy)
  2129. MAPREDUCE-3784. Fixed CapacityScheduler so that maxActiveApplications and
  2130. maxActiveApplicationsPerUser per queue are not too low for small
  2131. clusters. (Arun C Murthy via vinodkv)
  2132. OPTIMIZATIONS
  2133. MAPREDUCE-3567. Extraneous JobConf objects in AM heap. (Vinod Kumar
  2134. Vavilapalli via sseth)
  2135. MAPREDUCE-3399. Modifying ContainerLocalizer to send a heartbeat to NM
  2136. immediately after downloading a resource instead of always waiting for a
  2137. second. (Siddarth Seth via vinodkv)
  2138. MAPREDUCE-3568. Optimized Job's progress calculations in MR AM. (vinodkv)
  2139. MAPREDUCE-3569. TaskAttemptListener holds a global lock for all
  2140. task-updates. (Vinod Kumar Vavilapalli via sseth)
  2141. MAPREDUCE-3511. Removed a multitude of cloned/duplicate counters in the AM
  2142. thereby reducing the AM heap size and preventing full GCs. (vinodkv)
  2143. MAPREDUCE-3618. Fixed TaskHeartbeatHandler to not hold a global lock for all
  2144. task-updates. (Siddarth Seth via vinodkv)
  2145. MAPREDUCE-3512. Batching JobHistory flushing to DFS so that we don't flush
  2146. for every event slowing down AM. (Siddarth Seth via vinodkv)
  2147. MAPREDUCE-3718. Change default AM heartbeat interval to 1 second. (Hitesh
  2148. Shah via sseth)
  2149. MAPREDUCE-3360. Added information about lost/rebooted/decommissioned nodes
  2150. on the webapps. (Bhallamudi Venkata Siva Kamesh and Jason Lowe via vinodkv)
  2151. MAPREDUCE-3756. Made single shuffle limit configurable. (Hitesh Shah via
  2152. acmurthy)
  2153. MAPREDUCE-3811. Made jobclient-to-AM retries configurable. (sseth via
  2154. acmurthy)
  2155. BUG FIXES
  2156. MAPREDUCE-3221. Reenabled the previously ignored test in TestSubmitJob
  2157. and fixed bugs in it. (Devaraj K via vinodkv)
  2158. MAPREDUCE-3215. Reenabled and fixed bugs in the failing test
  2159. TestNoJobSetupCleanup. (Hitesh Shah via vinodkv)
  2160. MAPREDUCE-3219. Reenabled and fixed bugs in the failing test
  2161. TestDelegationToken. (Hitesh Shah via vinodkv)
  2162. MAPREDUCE-3217. Reenabled and fixed bugs in the failing ant test
  2163. TestAuditLogger. (Devaraj K via vinodkv)
  2164. MAPREDUCE-3291. App fail to launch due to delegation token not
  2165. found in cache (Robert Evans via mahadev)
  2166. MAPREDUCE-3344. o.a.h.mapreduce.Reducer since 0.21 blindly casts to
  2167. ReduceContext.ValueIterator. (Brock Noland via tomwhite)
  2168. MAPREDUCE-3342. Fixed JobHistoryServer to also show the job's queue
  2169. name. (Jonathan Eagles via vinodkv)
  2170. MAPREDUCE-3345. Fixed a race condition in ResourceManager that was causing
  2171. TestContainerManagerSecurity to fail sometimes. (Hitesh Shah via vinodkv)
  2172. MAPREDUCE-3333. Fixed bugs in ContainerLauncher of MR AppMaster due to
  2173. which per-container connections to NodeManager were lingering long enough
  2174. to hit the ulimits on number of processes. (vinodkv)
  2175. MAPREDUCE-3392. Fixed Cluster's getDelegationToken's API to return null
  2176. when there isn't a supported token. (John George via vinodkv)
  2177. MAPREDUCE-3379. Fixed LocalResourceTracker in NodeManager to remove deleted
  2178. cache entries correctly. (Siddharth Seth via vinodkv)
  2179. MAPREDUCE-3324. Not All HttpServer tools links (stacks,logs,config,metrics) are
  2180. accessible through all UI servers (Jonathan Eagles via mahadev)
  2181. MAPREDUCE-3355. Fixed MR AM's ContainerLauncher to handle node-command
  2182. timeouts correctly. (vinodkv)
  2183. MAPREDUCE-3407. Fixed pom files to refer to the correct MR app-jar needed
  2184. by the integration tests. (Hitesh Shah via vinodkv)
  2185. MAPREDUCE-3434. Nightly build broken (Hitesh Shah via mahadev)
  2186. MAPREDUCE-3447. mapreduce examples not working (mahadev)
  2187. MAPREDUCE-3444. trunk/0.23 builds broken (Hitesh Shah via mahadev)
  2188. MAPREDUCE-3454. [Gridmix] TestDistCacheEmulation is broken (Hitesh Shah
  2189. via mahadev)
  2190. MAPREDUCE-3408. yarn-daemon.sh unconditionnaly sets yarn.root.logger
  2191. (Bruno Mahe via mahadev)
  2192. MAPREDUCE-3329. Fixed CapacityScheduler to ensure maximum-capacity cannot
  2193. be lesser than capacity for any queue. (acmurthy)
  2194. MAPREDUCE-3464. mapreduce jsp pages missing DOCTYPE. (Dave Vronay via mattf)
  2195. MAPREDUCE-3265. Removed debug logs during job submission to LOG.debug to
  2196. cut down noise. (acmurthy)
  2197. MAPREDUCE-3433. Finding counters by legacy group name returns empty
  2198. counters. (tomwhite)
  2199. MAPREDUCE-3450. NM port info no longer available in JobHistory.
  2200. (Siddharth Seth via mahadev)
  2201. MAPREDUCE-3488. Streaming jobs are failing because the main class
  2202. isnt set in the pom files. (mahadev)
  2203. MAPREDUCE-3463. Second AM fails to recover properly when first AM is killed with
  2204. java.lang.IllegalArgumentException causing lost job. (Siddharth Seth via mahadev)
  2205. MAPREDUCE-3452. fifoscheduler web ui page always shows 0% used for the queue.
  2206. (Jonathan Eagles via mahadev)
  2207. MAPREDUCE-3443. JobClient and Job should function in the context of the
  2208. UGI which created them. (Mahadev Konar via sseth)
  2209. MAPREDUCE-3460. MR AM can hang if containers are allocated on a node
  2210. blacklisted by the AM. (Hitesh Shah and Robert Joseph Evans via sseth)
  2211. MAPREDUCE-3453. RM web ui application details page shows RM cluster about
  2212. information. (Jonathan Eagles via sseth)
  2213. MAPREDUCE-3479. JobClient#getJob cannot find local jobs. (tomwhite)
  2214. MAPREDUCE-3456. $HADOOP_PREFIX/bin/yarn should set defaults for
  2215. $HADOOP_*_HOME (Eric Payne via mahadev)
  2216. MAPREDUCE-3458. Fix findbugs warnings in hadoop-examples. (Devaraj K
  2217. via mahadev)
  2218. MAPREDUCE-3485. DISKS_FAILED -101 error code should be defined in same location as
  2219. ABORTED_CONTAINER_EXIT_STATUS. (Ravi Gummadi via mahadev)
  2220. MAPREDUCE-3496. Fixed client to print queue acls in consistent order.
  2221. (Jonathan Eagles via acmurthy)
  2222. MAPREDUCE-3147. Handle leaf queues with the same name properly. (Ravi Prakash via
  2223. mahadev)
  2224. MAPREDUCE-3327. RM web ui scheduler link doesn't show correct max value
  2225. for queues (Anupam Seth via mahadev)
  2226. MAPREDUCE-3513. Capacity Scheduler web UI has a spelling mistake for Memory.
  2227. (chackaravarthy via mahadev)
  2228. MAPREDUCE-3519. Fixed a deadlock in NodeManager LocalDirectories's handling
  2229. service. (Ravi Gummadi via vinodkv)
  2230. MAPREDUCE-3527. Fix minor API incompatibilities between 1.0 and 0.23.
  2231. (tomwhite)
  2232. MAPREDUCE-3328. mapred queue -list output inconsistent and missing child
  2233. queues. (Ravi Prakash via mahadev)
  2234. MAPREDUCE-3510. Capacity Scheduler inherited ACLs not displayed by mapred queue
  2235. -showacls (Jonathan Eagles via mahadev)
  2236. MAPREDUCE-3537. Fix race condition in DefaultContainerExecutor which led
  2237. to container localization occuring in wrong directories. (acmurthy)
  2238. MAPREDUCE-3542. Support "FileSystemCounter" legacy counter group name for
  2239. compatibility. (tomwhite)
  2240. MAPREDUCE-3426. Fixed MR AM in uber mode to write map intermediate outputs
  2241. in the correct directory to work properly in secure mode. (Hitesh Shah via
  2242. vinodkv)
  2243. MAPREDUCE-3541. Fix broken TestJobQueueClient test. (Ravi Prakash via
  2244. mahadev)
  2245. MAPREDUCE-3398. Fixed log aggregation to work correctly in secure mode.
  2246. (Siddharth Seth via vinodkv)
  2247. MAPREDUCE-3530. Fixed an NPE occuring during scheduling in the
  2248. ResourceManager. (Arun C Murthy via vinodkv)
  2249. MAPREDUCE-3484. Fixed JobEndNotifier to not get interrupted before completing
  2250. all its retries. (Ravi Prakash via vinodkv)
  2251. MAPREDUCE-3531. Fixed a race in ContainerTokenSecretManager. (Robert Joseph
  2252. Evans via sseth)
  2253. MAPREDUCE-3560. TestRMNodeTransitions is failing on trunk.
  2254. (Siddharth Seth via mahadev)
  2255. MAPREDUCE-3487. Fixed JobHistory web-UI to display links to single task's
  2256. counters' page. (Jason Lowe via vinodkv)
  2257. MAPREDUCE-3564. Fixed failures in TestStagingCleanup and TestJobEndNotifier
  2258. tests. (Siddharth Seth via vinodkv)
  2259. MAPREDUCE-3422. Counter display names are not being picked up. (Jonathan
  2260. Eagles via sseth)
  2261. MAPREDUCE-3366. Mapreduce component should use consistent directory structure
  2262. layout as HDFS/common (Eric Yang via mahadev)
  2263. MAPREDUCE-3387. Fixed AM's tracking URL to always go through the proxy, even
  2264. before the job started, so that it works properly with oozie throughout
  2265. the job execution. (Robert Joseph Evans via vinodkv)
  2266. MAPREDUCE-3579. ConverterUtils shouldn't include a port in a path from a url
  2267. without a port. (atm via harsh)
  2268. MAPREDUCE-3563. Fixed LocalJobRunner to work correctly with new mapreduce
  2269. apis. (acmurthy)
  2270. MAPREDUCE-3376. Fixed Task to ensure it passes reporter to combiners using
  2271. old MR api. (Subroto Sanyal via acmurthy)
  2272. MAPREDUCE-3339. Fixed MR AM to stop considering node blacklisting after the
  2273. number of nodes blacklisted crosses a threshold. (Siddharth Seth via vinodkv)
  2274. MAPREDUCE-3588. Fixed bin/yarn which was broken by MAPREDUCE-3366 so that
  2275. yarn daemons can start. (Arun C Murthy via vinodkv)
  2276. MAPREDUCE-3586. Modified CompositeService to avoid duplicate stop operations
  2277. thereby solving race conditions in MR AM shutdown. (vinodkv)
  2278. MAPREDUCE-3604. Fixed streaming to use new mapreduce.framework.name to
  2279. check for local mode. (acmurthy)
  2280. MAPREDUCE-3521. Fixed streaming to ensure it doesn't silently ignore
  2281. unknown arguments. (Robert Evans via acmurthy)
  2282. MAPREDUCE-3522. Ensure queues inherit ACLs from parent if they aren't
  2283. explicitly specified. (Jonathan Eagles via acmurthy)
  2284. MAPREDUCE-3608. Fixed compile issue with MAPREDUCE-3522. (mahadev via
  2285. acmurthy)
  2286. MAPREDUCE-3490. Fixed MapReduce AM to count failed maps also towards Reduce
  2287. ramp up. (Sharad Agarwal and Arun C Murthy via vinodkv)
  2288. MAPREDUCE-1744. DistributedCache creates its own FileSytem instance when
  2289. adding a file/archive to the path. (Dick King via tucu)
  2290. MAPREDUCE-3529. TokenCache does not cache viewfs credentials correctly
  2291. (sseth)
  2292. MAPREDUCE-3595. Add missing TestCounters#testCounterValue test from branch
  2293. 1 to 0.23 (Tom White via sseth)
  2294. MAPREDUCE-3566. Fixed MR AM to construct CLC only once across all tasks.
  2295. (vinodkv via acmurthy)
  2296. MAPREDUCE-3572. Moved AM event dispatcher to a separate thread for
  2297. performance reasons. (vinodkv via acmurthy)
  2298. MAPREDUCE-3615. Fix some ant test failures. (Thomas Graves via sseth)
  2299. MAPREDUCE-3326. Added detailed information about queue's to the
  2300. CapacityScheduler web-ui. (Jason Lowe via acmurthy)
  2301. MAPREDUCE-3548. Added more unit tests for MR AM & JHS web-services.
  2302. (Thomas Graves via acmurthy)
  2303. MAPREDUCE-3617. Removed wrong default value for
  2304. yarn.resourcemanager.principal and yarn.nodemanager.principal. (Jonathan
  2305. Eagles via acmurthy)
  2306. MAPREDUCE-3183. hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
  2307. missing license header. (Hitesh Shah via tucu).
  2308. MAPREDUCE-3003. Publish MR JARs to Maven snapshot repository. (tucu)
  2309. MAPREDUCE-3204. mvn site:site fails on MapReduce. (tucu)
  2310. MAPREDUCE-3014. Rename and invert logic of '-cbuild' profile to 'native' and off
  2311. by default. (tucu)
  2312. MAPREDUCE-3477. Hadoop site documentation cannot be built anymore. (jeagles via tucu)
  2313. MAPREDUCE-3500. MRJobConfig creates an LD_LIBRARY_PATH using the platform ARCH. (tucu)
  2314. MAPREDUCE-3389. MRApps loads the 'mrapp-generated-classpath' file with
  2315. classpath from the build machine. (tucu)
  2316. MAPREDUCE-3544. gridmix build is broken, requires hadoop-archives to be added as
  2317. ivy dependency. (tucu)
  2318. MAPREDUCE-3557. MR1 test fail to compile because of missing hadoop-archives dependency.
  2319. (tucu)
  2320. MAPREDUCE-3624. Remove unnecessary dependency on JDK's tools.jar. (mahadev
  2321. via acmurthy)
  2322. MAPREDUCE-3616. Thread pool for launching containers in MR AM not
  2323. expanding as expected. (vinodkv via sseth)
  2324. MAPREDUCE-3639. Fixed TokenCache to work with absent FileSystem canonical
  2325. service-names. (Siddharth Seth via vinodkv)
  2326. MAPREDUCE-3380. Token infrastructure for running clients which are not kerberos
  2327. authenticated. (mahadev)
  2328. MAPREDUCE-3648. TestJobConf failing. (Thomas Graves via mahadev)
  2329. MAPREDUCE-3651. TestQueueManagerRefresh fails. (Thomas Graves via mahadev)
  2330. MAPREDUCE-3645. TestJobHistory fails. (Thomas Graves via mahadev)
  2331. MAPREDUCE-3652. org.apache.hadoop.mapred.TestWebUIAuthorization.testWebUIAuthorization
  2332. fails. (Thomas Graves via mahadev)
  2333. MAPREDUCE-3625. CapacityScheduler web-ui display of queue's used capacity is broken.
  2334. (Jason Lowe via mahadev)
  2335. MAPREDUCE-3596. Fix scheduler to handle cleaned up containers, which NMs
  2336. may subsequently report as running. (Vinod Kumar Vavilapalli via sseth)
  2337. MAPREDUCE-3656. Fixed a race condition in MR AM which is failing the sort
  2338. benchmark consistently. (Siddarth Seth via vinodkv)
  2339. MAPREDUCE-3532. Modified NM to report correct http address when an ephemeral
  2340. web port is configured. (Bhallamudi Venkata Siva Kamesh via vinodkv)
  2341. MAPREDUCE-3404. Corrected MR AM to honor speculative configuration and enable
  2342. speculating either maps or reduces. (Eric Payne via vinodkv)
  2343. MAPREDUCE-3649. Job End notification gives an error on calling back.
  2344. (Ravi Prakash via mahadev)
  2345. MAPREDUCE-3657. State machine visualize build fails. (Jason Lowe
  2346. via mahadev)
  2347. MAPREDUCE-2450. Fixed a corner case with interrupted communication threads
  2348. leading to a long timeout in Task. (Rajesh Balamohan via acmurthy)
  2349. MAPREDUCE-3669. Allow clients to talk to MR HistoryServer using both
  2350. delegation tokens and kerberos. (mahadev via acmurthy)
  2351. MAPREDUCE-3684. LocalDistributedCacheManager does not shut down its thread
  2352. pool (tomwhite)
  2353. MAPREDUCE-3582. Move successfully passing MR1 tests to MR2 maven tree.
  2354. (ahmed via tucu)
  2355. MAPREDUCE-3698. Client cannot talk to the history server in secure mode.
  2356. (mahadev)
  2357. MAPREDUCE-3689. RM web UI doesn't handle newline in job name.
  2358. (Thomas Graves via mahadev)
  2359. MAPREDUCE-3549. write api documentation for web service apis for RM, NM,
  2360. mapreduce app master, and job history server (Thomas Graves via mahadev)
  2361. MAPREDUCE-3705. ant build fails on 0.23 branch. (Thomas Graves via
  2362. mahadev)
  2363. MAPREDUCE-3691. webservices add support to compress response.
  2364. (Thomas Graves via mahadev)
  2365. MAPREDUCE-3702. internal server error trying access application master
  2366. via proxy with filter enabled (Thomas Graves via mahadev)
  2367. MAPREDUCE-3646. Remove redundant URL info from "mapred job" output.
  2368. (Jonathan Eagles via mahadev)
  2369. MAPREDUCE-3681. Fixed computation of queue's usedCapacity. (acmurthy)
  2370. MAPREDUCE-3505. yarn APPLICATION_CLASSPATH needs to be overridable.
  2371. (ahmed via tucu)
  2372. MAPREDUCE-3714. Fixed EventFetcher and Fetcher threads to shut-down properly
  2373. so that reducers don't hang in corner cases. (vinodkv)
  2374. MAPREDUCE-3712. The mapreduce tar does not contain the hadoop-mapreduce-client-
  2375. jobclient-tests.jar. (mahadev)
  2376. MAPREDUCE-3717. JobClient test jar has missing files to run all the test programs.
  2377. (mahadev)
  2378. MAPREDUCE-3630. Fixes a NullPointer exception while running TeraGen - if a
  2379. map is asked to generate 0 records. (Mahadev Konar via sseth)
  2380. MAPREDUCE-3683. Fixed maxCapacity of queues to be product of parent
  2381. maxCapacities. (acmurthy)
  2382. MAPREDUCE-3713. Fixed the way head-room is allocated to applications by
  2383. CapacityScheduler so that it deducts current-usage per user and not
  2384. per-application. (Arun C Murthy via vinodkv)
  2385. MAPREDUCE-3721. Fixed a race in shuffle which caused reduces to hang.
  2386. (sseth via acmurthy)
  2387. MAPREDUCE-3733. Add Apache License Header to hadoop-distcp/pom.xml.
  2388. (mahadev)
  2389. MAPREDUCE-3735. Add distcp jar to the distribution (tar).
  2390. (mahadev)
  2391. MAPREDUCE-3720. Changed bin/mapred job -list to not print job-specific
  2392. information not available at RM. (vinodkv via acmurthy)
  2393. MAPREDUCE-3742. "yarn logs" command fails with ClassNotFoundException.
  2394. (Jason Lowe via mahadev)
  2395. MAPREDUCE-3703. ResourceManager should provide node lists in JMX output.
  2396. (Eric Payne via mahadev)
  2397. MAPREDUCE-3716. Fixing YARN+MR to allow MR jobs to be able to use
  2398. java.io.File.createTempFile to create temporary files as part of their
  2399. tasks. (Jonathan Eagles via vinodkv)
  2400. MAPREDUCE-3748. Changed a log in CapacityScheduler.nodeUpdate to debug.
  2401. (ramya via acmurthy)
  2402. MAPREDUCE-3764. Fixed resource usage metrics for queues and users.
  2403. (acmurthy)
  2404. MAPREDUCE-3749. ConcurrentModificationException in counter groups.
  2405. (tomwhite)
  2406. MAPREDUCE-3762. Fixed default CapacityScheduler configs. (mahadev via
  2407. acmurthy)
  2408. MAPREDUCE-3499. New MiniMR does not setup proxyuser configuration
  2409. correctly, thus tests using doAs do not work. (johnvijoe via tucu)
  2410. MAPREDUCE-3696. MR job via oozie does not work on hadoop 23.
  2411. (John George via mahadev)
  2412. MAPREDUCE-3427. Fix streaming unit tests broken after mavenization.
  2413. (Hitesh Shah via acmurthy)
  2414. MAPREDUCE-3640. Allow AMRecovery to work with partial JobHistory files.
  2415. (Arun C Murthy via sseth)
  2416. MAPREDUCE-3752. Modified application limits to include queue max-capacities
  2417. besides the usual user limits. (Arun C Murthy via vinodkv)
  2418. MAPREDUCE-3744. Fix the yarn logs command line. Improve error messages for
  2419. mapred job -logs. (Jason Lowe via sseth)
  2420. MAPREDUCE-3780. Fixed a bug where applications killed before getting
  2421. activated were not getting cleaned up properly. (Hitesh Shah via acmurthy)
  2422. MAPREDUCE-3708. Metrics: Incorrect Apps Submitted Count (Bhallamudi via
  2423. mahadev)
  2424. MAPREDUCE-3727. jobtoken location property in jobconf refers to wrong
  2425. jobtoken file (tucu)
  2426. MAPREDUCE-3711. Fixed MR AM recovery so that only single selected task
  2427. output is recovered and thus reduce the unnecessarily bloated recovery
  2428. time. (Robert Joseph Evans via vinodkv)
  2429. MAPREDUCE-3760. Changed active nodes list to not contain unhealthy nodes
  2430. on the webUI and metrics. (vinodkv)
  2431. MAPREDUCE-3417. Fixed job-access-controls to work with MR AM and
  2432. JobHistoryServer web-apps. (Jonathan Eagles via vinodkv)
  2433. MAPREDUCE-3803. Fix broken build of raid contrib due to HDFS-2864.
  2434. (Ravi Prakash via suresh)
  2435. MAPREDUCE-3791. can't build site in hadoop-yarn-server-common.
  2436. (mahadev)
  2437. MAPREDUCE-3723. TestAMWebServicesJobs & TestHSWebServicesJobs
  2438. incorrectly asserting tests (Bhallamudi Venkata Siva Kamesh
  2439. via mahadev)
  2440. MAPREDUCE-3795. "job -status" command line output is malformed.
  2441. (vinodkv via mahadev)
  2442. MAPREDUCE-3759. ClassCastException thrown in -list-active-trackers when
  2443. there are a few unhealthy nodes (vinodkv via mahadev)
  2444. MAPREDUCE-3775. Change MiniYarnCluster to escape special chars in testname.
  2445. (Hitesh Shah via mahadev)
  2446. MAPREDUCE-3765. FifoScheduler does not respect yarn.scheduler.fifo.minimum-
  2447. allocation-mb setting (Hitesh Shah via mahadev)
  2448. MAPREDUCE-3747. Initialize queue metrics upfront and added start/finish
  2449. time to RM Web-UI. (acmurthy)
  2450. MAPREDUCE-3814. Fixed MRV1 compilation. (Arun C Murthy via vinodkv)
  2451. MAPREDUCE-3810. Performance tweaks - reduced logging in AM and defined
  2452. hascode/equals for ResourceRequest & Priority. (vinodkv via acmurthy)
  2453. MAPREDUCE-3813. Added a cache for resolved racks. (vinodkv via acmurthy)
  2454. MAPREDUCE-3808. Fixed an NPE in FileOutputCommitter for jobs with maps
  2455. but no reduces. (Robert Joseph Evans via vinodkv)
  2456. MAPREDUCE-3804. yarn webapp interface vulnerable to cross scripting attacks
  2457. (Dave Thompson via bobby)
  2458. MAPREDUCE-3354. Changed scripts so that jobhistory server is started by
  2459. bin/mapred instead of bin/yarn. (Jonathan Eagles via acmurthy)
  2460. MAPREDUCE-3809. Ensure that there is no needless sleep in Task at the end
  2461. of the task. (sseth via acmurthy)
  2462. MAPREDUCE-3794. Support mapred.Task.Counter and mapred.JobInProgress.Counter
  2463. enums for compatibility (Tom White via mahadev)
  2464. MAPREDUCE-3697. Support binary compatibility for Counters after
  2465. MAPREDUCE-901. (mahadev via acmurthy)
  2466. MAPREDUCE-3709. TestDistributedShell is failing. (Hitesh Shah via
  2467. mahadev)
  2468. MAPREDUCE-3817. Fixed bin/mapred to allow running of distcp and archive
  2469. jobs. (Arpit Gupta via acmurthy)
  2470. MAPREDUCE-3709. TestDistributedShell is failing. (Hitesh Shah via
  2471. mahadev)
  2472. MAPREDUCE-3436. JobHistory webapp address should use the host configured
  2473. in the jobhistory address. (Ahmed Radwan via sseth)
  2474. MAPREDUCE-3815. Fixed MR AM to always use hostnames and never IPs when
  2475. requesting containers so that scheduler can give off data local containers
  2476. correctly. (Siddarth Seth via vinodkv)
  2477. MAPREDUCE-3833. Fixed a bug in reinitiaziling of queues. (Jason Lowe via
  2478. acmurthy)
  2479. MAPREDUCE-3826. Fixed a bug in RM web-ui which broke sorting. (Jonathan
  2480. Eagles via acmurthy)
  2481. MAPREDUCE-3823. Ensure counters are calculated only once after a job
  2482. finishes. (Vinod Kumar Vavilapalli via sseth)
  2483. MAPREDUCE-3827. Changed Counters to use ConcurrentSkipListMap for
  2484. performance. (vinodkv via acmurthy)
  2485. MAPREDUCE-3822. Changed FS counter computation to use all occurences of
  2486. the same FS scheme, instead of randomly using one. (Mahadev Konar via
  2487. sseth)
  2488. MAPREDUCE-3834. Changed MR AM to not add the same rack entry multiple times
  2489. into the container request table when multiple hosts for a split happen to
  2490. be on the same rack. (Siddarth Seth via vinodkv)
  2491. MAPREDUCE-3828. Ensure that urls in single-node mode are correct. (sseth
  2492. via acmurthy)
  2493. MAPREDUCE-3770. Zombie.getJobConf() results into NPE. (amarrk)
  2494. MAPREDUCE-3840. JobEndNotifier doesn't use the proxyToUse during connecting
  2495. (Ravi Prakash via bobby)
  2496. MAPREDUCE-3843. Job summary log file found missing on the RM host
  2497. (Anupam Seth via tgraves)
  2498. MAPREDUCE-3846. Addressed MR AM hanging issues during AM restart and then
  2499. the recovery. (vinodkv)
  2500. MAPREDUCE-3802. Added test to validate that AM can crash multiple times and
  2501. still can recover successfully after MAPREDUCE-3846. (vinodkv)
  2502. MAPREDUCE-3858. Task attempt failure during commit results in task never completing.
  2503. (Tom White via mahadev)
  2504. MAPREDUCE-3856. Instances of RunningJob class givs incorrect job tracking
  2505. urls when mutiple jobs are submitted from same client jvm. (Eric Payne via
  2506. sseth)
  2507. MAPREDUCE-3880. Changed LCE binary to be 32-bit. (acmurthy)
  2508. Release 0.23.0 - 2011-11-01
  2509. INCOMPATIBLE CHANGES
  2510. MAPREDUCE-2455. Remove deprecated JobTracker.State in favour of
  2511. JobTrackerStatus. (tomwhite)
  2512. MAPREDUCE-2430. Remove mrunit contrib. (nigel via eli)
  2513. MAPREDUCE-2606. Remove IsolationRunner. (Alejandro Abdelnur via eli)
  2514. NEW FEATURES
  2515. MAPREDUCE-2682. Add "mapred classpath" command to print classpath
  2516. for MR applications. (vinodkv via acmurthy)
  2517. MAPREDUCE-2107. [Gridmix] Total heap usage emulation in Gridmix.
  2518. (Amar Kamat and Ravi Gummadi via amarrk)
  2519. MAPREDUCE-2106. [Gridmix] Cumulative CPU usage emulation in Gridmix.
  2520. (amarrk)
  2521. MAPREDUCE-2543. [Gridmix] High-Ram feature emulation in Gridmix. (amarrk)
  2522. MAPREDUCE-2408. [Gridmix] Compression emulation in Gridmix. (amarrk)
  2523. MAPREDUCE-2473. Add "mapred groups" command to query the server-side groups
  2524. resolved for a user. (Aaron T. Myers via todd)
  2525. MAPREDUCE-461. Enable ServicePlugins for the JobTracker.
  2526. (Fredrik Hedberg via tomwhite)
  2527. MAPREDUCE-2521. Create RPM and Debian packages for MapReduce. Changes
  2528. deployment layout to be consistent across the binary tgz, rpm, and deb.
  2529. (Eric Yang via omalley)
  2530. MAPREDUCE-2323. Add metrics to the fair scheduler. (todd)
  2531. MAPREDUCE-2037. Capture intermediate progress, CPU and memory usage for
  2532. tasks. (Dick King via acmurthy)
  2533. MAPREDUCE-279. MapReduce 2.0. Merging MR-279 branch into trunk. Contributed by
  2534. Arun C Murthy, Christopher Douglas, Devaraj Das, Greg Roelofs, Jeffrey
  2535. Naisbitt, Josh Wills, Jonathan Eagles, Krishna Ramachandran, Luke Lu, Mahadev
  2536. Konar, Robert Evans, Sharad Agarwal, Siddharth Seth, Thomas Graves, and Vinod
  2537. Kumar Vavilapalli.
  2538. MAPREDUCE-2930. Added the ability to be able to generate graphs from the
  2539. state-machine definitions. (Binglin Chang via vinodkv)
  2540. MAPREDUCE-2719. Add a simple, DistributedShell, application to illustrate
  2541. alternate frameworks on YARN. (Hitesh Shah via acmurthy)
  2542. MAPREDUCE-3104. Implemented Application-acls. (vinodkv)
  2543. MAPREDUCE-2708. Designed and implemented MR Application Master recovery to
  2544. make MR AMs resume their progress after restart. (Sharad Agarwal via vinodkv)
  2545. MAPREDUCE-2858. Added a WebApp Proxy for applications. (Robert Evans via
  2546. acmurthy)
  2547. IMPROVEMENTS
  2548. MAPREDUCE-2187. Reporter sends progress during sort/merge. (Anupam Seth via
  2549. acmurthy)
  2550. MAPREDUCE-2365. Add counters to track bytes (read,written) via
  2551. File(Input,Output)Format. (Siddharth Seth via acmurthy)
  2552. MAPREDUCE-2680. Display queue name in job client CLI. (acmurthy)
  2553. MAPREDUCE-2679. Minor changes to sync trunk with MR-279 branch. (acmurthy)
  2554. MAPREDUCE-2400. Remove Cluster's dependency on JobTracker via a
  2555. ServiceProvider for the actual implementation. (tomwhite via acmurthy)
  2556. MAPREDUCE-2596. [Gridmix] Summarize Gridmix runs. (amarrk)
  2557. MAPREDUCE-2563. [Gridmix] Add High-Ram emulation system tests to
  2558. Gridmix. (Vinay Kumar Thota via amarrk)
  2559. MAPREDUCE-2104. [Rumen] Add Cpu, Memory and Heap usages to
  2560. TraceBuilder's output. (amarrk)
  2561. MAPREDUCE-2554. [Gridmix] Add distributed cache emulation system tests
  2562. to Gridmix. (Vinay Kumar Thota via amarrk)
  2563. MAPREDUCE-2543. [Gridmix] High-Ram feature emulation testcase. (amarrk)
  2564. MAPREDUCE-2469. Task counters should also report the total heap usage of
  2565. the task. (Ravi Gummadi and Amar Ramesh Kamat via amarrk)
  2566. MAPREDUCE-2544. [Gridmix] Add compression emulation system tests to
  2567. Gridmix. (Vinay Kumar Thota via amarrk)
  2568. MAPREDUCE-2517. [Gridmix] Add system tests to Gridmix.
  2569. (Vinay Kumar Thota via amarrk)
  2570. MAPREDUCE-2492. The new MapReduce API should make available task's
  2571. progress to the task. (amarrk)
  2572. MAPREDUCE-2153. Bring in more job configuration properties in to the trace
  2573. file. (Rajesh Balamohan via amarrk)
  2574. MAPREDUCE-1461. Feature to instruct rumen-folder utility to skip jobs worth
  2575. of specific duration. (Rajesh Balamohan via amarrk)
  2576. MAPREDUCE-2172. Added test-patch.properties required by test-patch.sh
  2577. (nigel)
  2578. MAPREDUCE-2156. Raid-aware FSCK. (Patrick Kling via dhruba)
  2579. MAPREDUCE-2215. A more elegant FileSystem#listCorruptFileBlocks API
  2580. (RAID changes) (Patrick Kling via hairong)
  2581. MAPREDUCE-1831. BlockPlacement policy for HDFS-RAID.
  2582. (Scott Chen via dhruba)
  2583. MAPREDUCE-1906. Lower minimum heartbeat interval for TaskTracker
  2584. (Scott Carey and Todd Lipcon via todd)
  2585. MAPREDUCE-1382. MRAsyncDiscService should tolerate missing local.dir.
  2586. (Zheng Shao and tomwhite via tomwhite)
  2587. MAPREDUCE-2263. MapReduce side of HADOOP-6904: RPC compatibility.
  2588. (hairong)
  2589. MAPREDUCE-1706. Log RAID recoveries on HDFS. (schen)
  2590. MAPREDUCE-2334. Update BlockPlacementPolicyRaid for the new method
  2591. in BlockPlacementPolicy. (szetszwo)
  2592. MAPREDUCE-2254. Allow setting of end-of-record delimiter for
  2593. TextInputFormat (Ahmed Radwan via todd)
  2594. MAPREDUCE-1927. Unit test for HADOOP-6835 (concatenated gzip support).
  2595. (Greg Roelofs via tomwhite)
  2596. MAPREDUCE-2206. The task-cleanup tasks should be optional. (schen)
  2597. MAPREDUCE-2225. MultipleOutputs should not require the use of 'Writable'.
  2598. (Harsh J Chouraria via tomwhite)
  2599. MAPREDUCE-1811. Job.monitorAndPrintJob() should print status of the job
  2600. at completion. (Harsh J Chouraria via tomwhite)
  2601. MAPREDUCE-993. bin/hadoop job -events <jobid> <from-event-#> <#-of-events>
  2602. help message is confusing. (Harsh J Chouraria via tomwhite)
  2603. MAPREDUCE-2302. Add static factory methods in GaloisField. (schen)
  2604. MAPREDUCE-2351. mapred.job.tracker.history.completed.location should
  2605. support an arbitrary filesystem URI. (tomwhite)
  2606. MAPREDUCE-2239. BlockPlacementPolicyRaid should call getBlockLocations
  2607. only when necessary. (schen)
  2608. MAPREDUCE-2331. Add coverage of task graph servlet to fair scheduler system
  2609. test. (todd)
  2610. MAPREDUCE-2367. Allow using a file to exclude certain tests from build.
  2611. (todd)
  2612. MAPREDUCE-2202. Generalize CLITest structure and interfaces to faciliate
  2613. upstream adoption (e.g. for web or system testing). (cos)
  2614. MAPREDUCE-2420. JobTracker should be able to renew delegation token over
  2615. HTTP (Boris Shkolnik via jitendra)
  2616. MAPREDUCE-2474. Add docs to the new API Partitioner on how to access the
  2617. Job Configuration. (Harsh J Chouraria via todd)
  2618. MAPREDUCE-2475. Disable IPV6 for junit tests. (suresh srinivas via mahadev)
  2619. MAPREDUCE-2422. Removed unused internal methods from DistributedCache.
  2620. (tomwhite)
  2621. MAPREDUCE-2456. Log the reduce taskID and associated TaskTrackers with
  2622. failed fetch notifications in the JobTracker log.
  2623. (Jeffrey Naisbitt via cdouglas)
  2624. MAPREDUCE-869. Documentation for config to set map/reduce task environment
  2625. (Alejandro Abdelnur via todd)
  2626. MAPREDUCE-2410. Add entry to streaming FAQ about how streaming reducers
  2627. receive keys. (Harsh J Chouraria via todd)
  2628. MAPREDUCE-2499. MR part of HADOOP-7291. (eli)
  2629. MAPREDUCE-2497. Missing spaces in error messages. (eli)
  2630. MAPREDUCE-2502. JobSubmitter should use mapreduce.job.maps instead of
  2631. its deprecated equivalent. (eli via todd)
  2632. MAPREDUCE-2381. JobTracker instrumentation not consistent about error
  2633. handling. (Philip Zeyliger via tomwhite)
  2634. MAPREDUCE-2449. Allow for command line arguments when performing
  2635. "Run on Hadoop" action in Eclipse plugin. (Jeff Zemerick via todd)
  2636. MAPREDUCE-2483. Remove duplication of jars between Hadoop subprojects
  2637. from build artifacts. (Eric Yang via omalley)
  2638. MAPREDUCE-2372. TaskLogAppender mechanism shouldn't be set up in
  2639. log4j.properties (todd)
  2640. MAPREDUCE-2516. Rename webinterface.private.actions to
  2641. mapreduce.jobtracker.webinterface.trusted (Ari Rabkin via todd)
  2642. MAPREDUCE-2459. Cache HAR filesystem metadata. (Mac Yang via mahadev)
  2643. HADOOP-7259. Contrib modules should include the build.properties from
  2644. the enclosing hadoop directory. (omalley)
  2645. MAPREDUCE-2494. Order distributed cache deletions by LRU. (Robert Joseph
  2646. Evans via cdouglas)
  2647. MAPREDUCE-2452. Makes the cancellation of delegation tokens happen in a
  2648. separate thread. (ddas)
  2649. HADOOP-7106. Reorganize project SVN layout to "unsplit" the projects.
  2650. (todd, nigel)
  2651. MAPREDUCE-2249. Check the reflexive property of Counters objects when
  2652. comparing equality. (Devaraj K via todd)
  2653. MAPREDUCE-2623. Update ClusterMapReduceTestCase to use
  2654. MiniDFSCluster.Builder (Harsh J Chouraria via eli)
  2655. MAPREDUCE-2602. Allow setting of end-of-record delimiter for
  2656. TextInputFormat for the old API. (Ahmed Radwan via todd)
  2657. MAPREDUCE-2705. Permits parallel multiple task launches.
  2658. (Thomas Graves via ddas)
  2659. MAPREDUCE-2489. Jobsplits with random hostnames can make the queue
  2660. unusable (jeffrey naisbit via mahadev)
  2661. MAPREDUCE-2854. update INSTALL with config necessary run mapred on yarn.
  2662. (thomas graves via mahadev)
  2663. MAPREDUCE-2701. app/Job.java needs UGI for the user that launched it.
  2664. (Robert Evans via mahadev)
  2665. MAPREDUCE-2652. Enabled multiple NMs to be runnable on a single node by
  2666. making shuffle service port to be truely configurable. (Robert Evans via
  2667. vinodkv)
  2668. MAPREDUCE-2735. Add an applications summary log to ResourceManager.
  2669. (Thomas Graves via acmurthy)
  2670. MAPREDUCE-2697. Enhance CapacityScheduler to cap concurrently running
  2671. applications per-queue & per-user. (acmurthy)
  2672. Configuration changes:
  2673. add yarn.capacity-scheduler.maximum-am-resource-percent
  2674. MAPREDUCE-2774. Add startup message to ResourceManager & NodeManager on
  2675. startup. (Venu Gopala Rao via acmurthy)
  2676. MAPREDUCE-2655. Add audit logs to ResourceManager and NodeManager. (Thomas
  2677. Graves via acmurthy)
  2678. MAPREDUCE-2864. Normalize configuration variable names for YARN. (Robert
  2679. Evans via acmurthy)
  2680. MAPREDUCE-2690. Web-page for FifoScheduler. (Eric Payne via acmurthy)
  2681. MAPREDUCE-2711. Update TestBlockPlacementPolicyRaid for the new namesystem
  2682. and block management APIs. (szetszwo)
  2683. MAPREDUCE-2933. Change allocate call to return ContainerStatus for
  2684. completed containers rather than Container. (acmurthy)
  2685. MAPREDUCE-2675. Reformat JobHistory Server main page to be more
  2686. useful. (Robert Joseph Evans via vinodkv).
  2687. MAPREDUCE-2896. Simplify all apis to in
  2688. org.apache.hadoop.yarn.api.records.* to be get/set only. Added javadocs to
  2689. all public records. (acmurthy)
  2690. MAPREDUCE-2676. MR-279: JobHistory Job page needs reformatted. (Robert Evans via
  2691. mahadev)
  2692. MAPREDUCE-2899. Replace major parts of ApplicationSubmissionContext with a
  2693. ContainerLaunchContext (Arun Murthy via mahadev)
  2694. MAPREDUCE-2966. Added ShutDown hooks for MRV2 processes so that they can
  2695. gracefully exit. (Abhijit Suresh Shingate via vinodkv)
  2696. MAPREDUCE-2672. MR-279: JobHistory Server needs Analysis this job.
  2697. (Robert Evans via mahadev)
  2698. MAPREDUCE-2965. Streamlined the methods hashCode(), equals(), compareTo()
  2699. and toString() for all IDs. (Siddharth Seth via vinodkv)
  2700. MAPREDUCE-2726. Added job-file to the AM and JobHistoryServer web
  2701. interfaces. (Jeffrey Naisbitt via vinodkv)
  2702. MAPREDUCE-2880. Improve classpath-construction for mapreduce AM and
  2703. containers. (Arun C Murthy via vinodkv)
  2704. MAPREDUCE-3055. Simplified ApplicationAttemptId passing to
  2705. ApplicationMaster via environment variable. (vinodkv)
  2706. MAPREDUCE-3092. Removed a special comparator for JobIDs in JobHistory as
  2707. JobIDs are already comparable. (Devaraj K via vinodkv)
  2708. MAPREDUCE-3099. Add docs for setting up a single node MRv2 cluster.
  2709. (mahadev)
  2710. MAPREDUCE-3001. Added task-specific counters to AppMaster and JobHistory
  2711. web-UIs. (Robert Joseph Evans via vinodkv)
  2712. MAPREDUCE-3098. Fixed RM and MR AM to report YarnApplicationState and
  2713. application's FinalStatus separately. (Hitesh Shah via vinodkv)
  2714. MAPREDUCE-2889. Added documentation for writing new YARN applications.
  2715. (Hitesh Shah via acmurthy)
  2716. MAPREDUCE-3134. Added documentation the CapacityScheduler. (acmurthy)
  2717. MAPREDUCE-3013. Removed YarnConfiguration.YARN_SECURITY_INFO and its usage
  2718. as it doesn't affect security any more. (vinodkv)
  2719. MAPREDUCE-2907. Changed log level for various messages in ResourceManager
  2720. from INFO to DEBUG. (Ravi Prakash via vinodkv)
  2721. MAPREDUCE-2702. Added a new API in OutputCommitter for recovering
  2722. the outputs of tasks from a crashed job so as to support MR Application
  2723. Master recovery. (Sharad Agarwal and Arun C Murthy via vinodkv)
  2724. MAPREDUCE-2738. Added the missing cluster level statistics on the RM web
  2725. UI. (Robert Joseph Evans via vinodkv)
  2726. MAPREDUCE-2988. Reenabled TestLinuxContainerExecutor reflecting the
  2727. current NodeManager code. (Robert Joseph Evans via vinodkv)
  2728. MAPREDUCE-3161. Improved some javadocs and fixed some typos in
  2729. YARN. (Todd Lipcon via vinodkv)
  2730. MAPREDUCE-3148. Ported MAPREDUCE-2702 to old mapred api for aiding task
  2731. recovery. (acmurthy)
  2732. MAPREDUCE-3133. Running a set of methods in a Single Test Class.
  2733. (Jonathan Eagles via mahadev)
  2734. MAPREDUCE-3059. QueueMetrics do not have metrics for aggregate
  2735. containers-allocated and aggregate containers-released.
  2736. (Devaraj K via mahadev)
  2737. MAPREDUCE-3187. Add names for various unnamed threads in MR2.
  2738. (Todd Lipcon and Siddharth Seth via mahadev)
  2739. MAPREDUCE-3136. Added documentation for setting up Hadoop clusters in both
  2740. non-secure and secure mode for both HDFS & YARN. (acmurthy)
  2741. MAPREDUCE-3068. Added a whitelist of environment variables for containers
  2742. from the NodeManager and set MALLOC_ARENA_MAX for all daemons and
  2743. containers. (Chris Riccomini via acmurthy)
  2744. MAPREDUCE-3144. Augmented JobHistory with the information needed for
  2745. serving aggregated logs. (Siddharth Seth via vinodkv)
  2746. MAPREDUCE-3163. JobClient spews errors when killing MR2 job.
  2747. (mahadev)
  2748. MAPREDUCE-3239. Use new createSocketAddr API in MRv2 to give better
  2749. error messages on misconfig (Todd Lipcon via mahadev)
  2750. MAPREDUCE-2747. Cleaned up LinuxContainerExecutor binary sources and changed
  2751. the configuration to use yarn names. (Robert Joseph Evans via vinodkv)
  2752. MAPREDUCE-3205. Fix memory specifications to be physical rather than
  2753. virtual, allowing for a ratio between the two to be configurable. (todd
  2754. via acmurthy)
  2755. MAPREDUCE-2986. Fixed MiniYARNCluster to support multiple NodeManagers.
  2756. (Anupam Seth via vinodkv)
  2757. MAPREDUCE-2736. Remove unused contrib components dependent on MR1. (eli)
  2758. MAPREDUCE-2989. Modified JobHistory to link to task and AM logs from the
  2759. JobHistoryServer. (Siddharth Seth via vinodkv)
  2760. MAPREDUCE-3146. Added a MR specific command line to dump logs for a
  2761. given TaskAttemptID. (Siddharth Seth via vinodkv)
  2762. MAPREDUCE-3275. Added documentation for AM WebApp Proxy. (Robert Evans via
  2763. acmurthy)
  2764. MAPREDUCE-3322. Added a better index.html and an brief overview of YARN
  2765. architecture. (acmurthy)
  2766. OPTIMIZATIONS
  2767. MAPREDUCE-2026. Make JobTracker.getJobCounters() and
  2768. JobInProgress.getCounters() aquire locks in a shorter time period.
  2769. (Joydeep Sen Sarma via schen)
  2770. MAPREDUCE-2740. MultipleOutputs in new API creates needless
  2771. TaskAttemptContexts. (todd)
  2772. MAPREDUCE-901. Efficient framework counters. (llu via acmurthy)
  2773. MAPREDUCE-2629. Workaround a JVM class loading quirk which prevents
  2774. JIT compilation of inner classes methods in ReduceContextImpl.
  2775. BUG FIXES
  2776. MAPREDUCE-2603. Disable High-Ram emulation in system tests.
  2777. (Vinay Kumar Thota via amarrk)
  2778. MAPREDUCE-2539. Fixed NPE in getMapTaskReports in JobClient. (Robert Evans via
  2779. acmurthy)
  2780. MAPREDUCE-1978. Rumen TraceBuilder should provide recursive
  2781. input folder scanning.
  2782. MAPREDUCE-2416. Remove the restriction of specifying group names in
  2783. users-list file for Gridmix in RoundRobinUserResolver mode.
  2784. MAPREDUCE-2417. Fix Gridmix in RoundRobinUserResolver mode to
  2785. map testing/proxy users to unique users in a trace.
  2786. MAPREDUCE-2307. Exception thrown in Jobtracker logs, when the Scheduler
  2787. configured is FairScheduler. (Devaraj K via matei)
  2788. MAPREDUCE-2199. build is broken 0.22 branch creation. (cos)
  2789. MAPREDUCE-1752. Implement getFileBlockLocations in HarFilesystem.
  2790. (Patrick Kling via dhruba)
  2791. MAPREDUCE-2155. RaidNode should optionally use the mapreduce jobs to
  2792. fix missing blocks. (Patrick Kling via dhruba)
  2793. MAPREDUCE-1334. Fix TestIndexUpdater by ignoring _SUCCESS file in HDFS.
  2794. (Kay Kay via yhemanth)
  2795. MAPREDUCE-2232. Add missing methods to TestMapredGroupMappingServiceRefresh.
  2796. (Todd Lipcon via eli)
  2797. MAPREDUCE-2271. Fix TestSetupTaskScheduling failure on trunk.
  2798. (Liyin Liang via todd)
  2799. MAPREDUCE-2290. Fix compilation error in TestTaskCommit. (eli)
  2800. MAPREDUCE-2294. Fix compilation error in mumak. (todd)
  2801. MAPREDUCE-2300. Fix TestUmbilicalProtocolWithJobToken on trunk after
  2802. HADOOP-6904. (todd)
  2803. MAPREDUCE-2296. Fix references to misspelled method name
  2804. getProtocolSigature (todd)
  2805. MAPREDUCE-2311. Fix TestFairScheduler failure (schen)
  2806. MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement.
  2807. (Harsh J Chouraria via tomwhite)
  2808. MAPREDUCE-2203. Wrong javadoc for TaskRunner's appendJobJarClasspaths
  2809. method. (Jingguo Yao via tomwhite)
  2810. MAPREDUCE-2074. Task should fail when symlink creation fails.
  2811. (Priyo Mustafi via tomwhite)
  2812. MAPREDUCE-1242. Chain APIs error misleading.
  2813. (Harsh J Chouraria via tomwhite)
  2814. MAPREDUCE-2379. Adds missing DistributedCache configurations in
  2815. mapred-default.xml (Todd Lipcon via amareshwari)
  2816. MAPREDUCE-2348. Disable mumak tests on trunk since they currently time out
  2817. (todd)
  2818. MAPREDUCE-2395. TestBlockFixer timing out on trunk. (Ramkumar Vadali via
  2819. todd)
  2820. MAPREDUCE-2426. Make TestFairSchedulerSystem fail with more verbose output
  2821. (todd)
  2822. MAPREDUCE-2448. NoSuchMethodError:
  2823. org.apache.hadoop.hdfs.TestDatanodeBlockScanner.corruptReplica(..) (eli)
  2824. MAPREDUCE-2460. Fix flaky test TestFairSchedulerSystem. (todd)
  2825. MAPREDUCE-2451. Log the details from health check script at the
  2826. JobTracker. (Thomas Graves via cdouglas)
  2827. MAPREDUCE-2467. HDFS-1052 changes break the raid contrib module in
  2828. MapReduce. (suresh srinivas via mahadev)
  2829. MAPREDUCE-2258. IFile reader closes stream and compressor in wrong order.
  2830. (todd via tomwhite)
  2831. MAPREDUCE-2518. The t flag is missing in distcp help message. (Wei Yongjun
  2832. via szetszwo)
  2833. MAPREDUCE-2514. Fix typo in TaskTracker ReinitTrackerAction log message.
  2834. (Jonathan Eagles via cdouglas)
  2835. MAPREDUCE-2490. Add logging to graylist and blacklist activity to aid
  2836. diagnosis of related issues. (Jonathan Eagles via cdouglas)
  2837. MAPREDUCE-2495. exit() the TaskTracker when the distributed cache cleanup
  2838. thread dies. (Robert Joseph Evans via cdouglas)
  2839. MAPREDUCE-2470. Fix NPE in RunningJobs::getCounters. (Robert Joseph Evans
  2840. via cdouglas)
  2841. MAPREDUCE-2536. Update FsShell -mv command usage in TestMRCLI. (Daryn
  2842. Sharp via szetszwo)
  2843. MAPREDUCE-2529. Add support for regex-based shuffle metric counting
  2844. exceptions. (Thomas Graves via cdouglas)
  2845. MAPREDUCE-2559. ant binary fails due to missing c++ lib dir. (eli)
  2846. MAPREDUCE-2573. Fix new findbugs warning introduced by MAPREDUCE-2494.
  2847. (Robert Joseph Evans via todd)
  2848. MAPREDUCE-2581. Spelling errors in log messages. (Tim Sell via eli)
  2849. MAPREDUCE-2588. Change raid to the new DataTransferProtocol API. (szetszwo)
  2850. MAPREDUCE-2576. Typo in comment in SimulatorLaunchTaskAction.java.
  2851. (Tim Sell via jghoman)
  2852. MAPREDUCE-2550. Fix bin/mapred to work properly from within a source
  2853. checkout (Eric Yang via todd)
  2854. MAPREDUCE-2620. Update RAID for HDFS-2087. (szetszwo)
  2855. MAPREDUCE-2624. Update RAID for HDFS-2107. (szetszwo)
  2856. MAPREDUCE-2670. Fixing spelling mistake in FairSchedulerServlet.java. (eli)
  2857. MAPREDUCE-2710. Update JobSubmitter.printTokens(..) for HDFS-2161.
  2858. (szetszwo)
  2859. MAPREDUCE-2409. DistributedCache maps files and archives to the same path,
  2860. despite semantic incompatibility. (Siddharth Seth via cdouglas)
  2861. MAPREDUCE-2575. TestMiniMRDFSCaching fails if test.build.dir is set
  2862. to something other than build/test (Thomas Graves via mahadev)
  2863. MAPREDUCE-2622. Remove the last remaining reference to the deprecated
  2864. configuration "io.sort.mb". (Harsh J Chouraria via todd)
  2865. MAPREDUCE-2732. Remove directly accessing FSNamesystem.LOG from
  2866. TestCopyFiles and TestDistCh. (szetszwo)
  2867. MAPREDUCE-2463. Job history files are not moved to done folder when job
  2868. history location is hdfs. (Devaraj K via szetszwo)
  2869. MAPREDUCE-2243. Close streams propely in a finally-block to avoid leakage
  2870. in CompletedJobStatusStore, TaskLog, EventWriter and TotalOrderPartitioner.
  2871. (Devaraj K via szetszwo)
  2872. MAPREDUCE-2741. Make ant build system work with hadoop-common JAR
  2873. generated by Maven. (Alejandro Abdelnur via tomwhite)
  2874. MAPREDUCE-2760. mapreduce.jobtracker.split.metainfo.maxsize typoed
  2875. in mapred-default.xml. (todd via eli)
  2876. MAPREDUCE-2797. Update mapreduce tests and RAID for HDFS-2239. (szetszwo)
  2877. MAPREDUCE-2805. Update RAID for HDFS-2241. (szetszwo)
  2878. MAPREDUCE-2837. Ported bug fixes from y-merge to prepare for MAPREDUCE-279
  2879. merge. (acmurthy)
  2880. MAPREDUCE-2541. Fixed a race condition in IndexCache.removeMap. (Binglin
  2881. Chang via acmurthy)
  2882. MAPREDUCE-2458. Rename sanitized pom.xml in build directory to work around IDE
  2883. bug (Luke Lu via mahadev)
  2884. MAPREDUCE-279. Fix in MR-279 branch. Clear application notification if sent once
  2885. to NodeManager (mahadev)
  2886. MAPREDUCE-2433. YARNApplicationConstants hard code app master jar version (Luke
  2887. Lu via mahadev)
  2888. MAPREDUCE-279. Fix in MR-279 branch. Implement restart for resource manager
  2889. phase 1 - Helper classes to store and restore the data structures. (mahadev)
  2890. MAPREDUCE-2414. Change MRv2 to use generic interfaces. (Siddharth Seth via
  2891. acmurthy)
  2892. MAPREDUCE-279. Fix in MR-279 branch. Implement health-checks for the node -
  2893. server side(ResourceManager) changes. (vinodkv)
  2894. MAPREDUCE-2405: Implement uber-AppMaster (in-cluster LocalJobRunner for MRv2)
  2895. (Greg Roelofs via mahadev)
  2896. MAPREDUCE-279. Fix in MR-279 branch. Implementing Containers' memory monitoring.
  2897. (vinodkv)
  2898. MAPREDUCE-2440. Name clashes in TypeConverter (luke via mahadev)
  2899. MAPREDUCE-279. Fix in MR-279 branch. Add fail count to the command line of the
  2900. application master. (mahadev)
  2901. MAPREDUCE-2424. Polish uber-AppMaster: add uber-AM counters and GUI indicators.
  2902. (Greg Roelofs via mahadev)
  2903. MAPREDUCE-2405. Implement uber-AppMaster (in-cluster LocalJobRunner for MRv2).
  2904. (Greg Roelofs and Sharad Agarwal via mahadev)
  2905. MAPREDUCE-279. Fix in MR-279 branch. Fix YarnRemoteException to give more
  2906. details. (Siddharth Seth via mahadev)
  2907. MAPREDUCE-279. Fix in MR-279 branch. WebApp for Job History (Krishna
  2908. Ramachandran via mahadev)
  2909. MAPREDUCE-279. Fix in MR-279 branch. Install sanitized poms for downstream
  2910. sanity (Luke Lu via mahadev)
  2911. MAPREDUCE-279. Fix in MR-279 branch. Add HistoryCleanerService to Job History
  2912. server. (Krishna Ramachandran via sharad)
  2913. MAPREDUCE-279. Fix in MR-279 branch. Implement 'bin/mapred job -list' and
  2914. 'bin/mapred job -list-active-trackers'. (acmurthy)
  2915. MAPREDUCE-279. Fix in MR-279 branch. Implement 'bin/mapred queue [-info
  2916. [-showJobs]] [-list] and enhanced 'bin/mapred job -list' to show queue and
  2917. ApplicationMaster information. (acmurthy)
  2918. MAPREDUCE-279. Fix in MR-279 branch. Fixed computation of user-limits at
  2919. runtime. (acmurthy)
  2920. MAPREDUCE-279. Fix in MR-279 branch. Added functionality to refresh queues at
  2921. runtime via the 'bin/yarn rmadmin' command. (acmurthy)
  2922. MAPREDUCE-279. Fix in MR-279 branch. Added functionality to stop/start queues.
  2923. (acmurthy)
  2924. MAPREDUCE-279. Fix in MR-279 branch. Introducing web-UI for NodeManager and
  2925. linking it from RM UI. (vinodkv)
  2926. MAPREDUCE-279. Fix in MR-279 branch. Fix race condition in TestJobHistoryEvents
  2927. and TestJobHistoryParsing. (sharad)
  2928. MAPREDUCE-279. Fix in MR-279 branch. Add Containers' logs' view to NM UI and
  2929. link it from AM UI. (vinodkv)
  2930. MAPREDUCE-279. Fix in MR-279 branch. Add ACLs for queues and command-line
  2931. utilities for viewing them. (acmurthy)
  2932. MAPREDUCE-279. Fix in MR-279 branch. Recovery of MR Application Master from
  2933. failures. (sharad)
  2934. MAPREDUCE-279. Fix in MR-279 branch. Added support High-RAM applications in
  2935. CapacityScheduler. (acmurthy)
  2936. MAPREDUCE-279. Fix in MR-279 branch. Completing the ZooKeeper Store for
  2937. ResourceManager state. (mahadev)
  2938. MAPREDUCE-279. Fix in MR-279 branch. Reorient container localization to be
  2939. per-container rather than per-application. (cdouglas)
  2940. MAPREDUCE-279. Fix in MR-279 branch. Fix file creation in
  2941. JobHistoryEventHandler. (sharad)
  2942. MAPREDUCE-279. Fix in MR-279 branch. Disable ContainerMonitoring for non-linux
  2943. systems. (vinodkv)
  2944. MAPREDUCE-279. Fix in MR-279 branch. Fix container launch w/ inconsistent
  2945. credential file naming. (cdouglas)
  2946. MAPREDUCE-2434. Metrics for ResourceManager. (Luke Lu via acmurthy)
  2947. MAPREDUCE-279. Fix in MR-279 branch. RM Restart Phase 2 - Completed the recovery
  2948. of components in the RM (mahadev)
  2949. MAPREDUCE-279. Fix in MR-279 branch. Fix to send finish application event only
  2950. when the application is finished (mahadev)
  2951. MAPREDUCE-2462. Write job conf along with JobHistory, other minor improvements.
  2952. (Siddharth Seth via sharad)
  2953. MAPREDUCE-279. Fix in MR-279 branch. Implement 'delay scheduling' for better
  2954. locality in CapacityScheduler and improved high-ram applications. (acmurthy)
  2955. MAPREDUCE-279. Fix in MR-279 branch. Implement Job Acls in MR Application
  2956. Master. (sharad)
  2957. MAPREDUCE-279. Fix in MR-279 branch. Moving userlogs out of container work-dir
  2958. into a separate directory structure. (vinodkv)
  2959. MAPREDUCE-279. Fix in MR-279 branch. Completing RM Restart. Completed Phase 3 of
  2960. making sure events are logged and restored (mahadev)
  2961. MAPREDUCE-2468. Add metrics for NM Shuffle. (Luke Lu via cdouglas)
  2962. MAPREDUCE-279. Fix in MR-279 branch. Adding user log handling for YARN. Making
  2963. NM put the user-logs on DFS and providing log-dump tools. (vinodkv)
  2964. MAPREDUCE-279. Fix in MR-279 branch. Fixing three tight-loops in RM that are
  2965. causing high cpu-usage. (vinodkv)
  2966. MAPREDUCE-279. Fix in MR-279 branch. Replacing FileContext usage with FileSystem
  2967. to work around security authentication issues with FileContext against a secure
  2968. DFS. (vinodkv)
  2969. MAPREDUCE-279. Fix in MR-279 branch. Client reconnect to restarted AM. (sharad)
  2970. MAPREDUCE-279. Fix in MR-279 branch. Fix refreshProxy in ClientServiceDelegate.
  2971. (sharad)
  2972. MAPREDUCE-279. Fix in MR-279 branch. Fix Null Pointer in TestUberAM. (sharad)
  2973. MAPREDUCE-2478. Improve history server. (Siddharth Seth via sharad)
  2974. MAPREDUCE-279. Fix in MR-279 branch. Improved TestJobHistoryEvents and
  2975. TestJobHistoryParsing. (sharad)
  2976. MAPREDUCE-279. Fix in MR-279 branch. Fix NM to use multiple disks for local
  2977. files and the userlogs. (vinodkv)
  2978. MAPREDUCE-2480: MR App should not depend on hard coded version of shuffle (luke
  2979. lu via mahadev)
  2980. MAPREDUCE-279. Fix in MR-279 branch. Propagate error back to client in case of a
  2981. job submission failure (mahadev)
  2982. MAPREDUCE-279. Fix in MR-279 branch. Fix assembly to add mapreduce shell scripts
  2983. to the assembly package. (mahadev)
  2984. MAPREDUCE-279. Fix in MR-279 branch. Fix TestQueueMetrics. (Luke Lu via sharad)
  2985. MAPREDUCE-279. Fix in MR-279 branch. Removal of stale application-log dirs from
  2986. NM local disks. (vinodkv)
  2987. MAPREDUCE-279. Fix in MR-279 branch. Add license header and minor cleanup in
  2988. history server. (Siddharth Seth via sharad)
  2989. MAPREDUCE-279. Fix in MR-279 branch. Minor fix for install instructions.
  2990. (mahadev)
  2991. MAPREDUCE-279. Fix in MR-279 branch. Fix a race in MR task that was causing MR
  2992. containers to overwrite each other's job.xml. Also fix leaking attempt-dirs in
  2993. app-local-dir. (vinodkv)
  2994. MAPREDUCE-279. Fix in MR-279 branch. Adding valid state to ASM on a finish when
  2995. its already completed and also disble UberAM. (mahadev)
  2996. MAPREDUCE-279. Fix in MR-279 branch. Fixed CS user limits. (acmurthy)
  2997. MAPREDUCE-279. Fix in MR-279 branch. Fixed reservation's bad interaction with
  2998. delay scheduling in CS. (acmurthy)
  2999. MAPREDUCE-279. Fix in MR-279 branch. Support mapreduce old (0.20) APIs. (sharad)
  3000. MAPREDUCE-279. Fix in MR-279 branch. Support fail-fast for MR jobs. (ddas)
  3001. MAPREDUCE-279. Fix in MR-279 branch. Fix for clearing container requests on an
  3002. AM failure and add tostring methods to taskids and taskattemptids for better
  3003. grep support. (mahadev)
  3004. MAPREDUCE-279. Fix in MR-279 branch. Speed up communication between MR AM and RM
  3005. by relying on a new config rather than AM_EXPIRY_INTERVAL which is too large.
  3006. (acmurthy)
  3007. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of maximum capacity to use
  3008. parent's absolute-capacity rather than the leaf queue's absolute-capacity.
  3009. (acmurthy)
  3010. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug in JobIDPbImpl that's causing
  3011. AM to crash randomly. (vinodkv)
  3012. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of maximum capacity in
  3013. ParentQueue to use its parent's absolute-capacity rather than its own
  3014. absolute-capacity. (acmurthy)
  3015. MAPREDUCE-279. Fix in MR-279 branch. Launching bin/yarn and bin/mapred only
  3016. *once* in AM for constructing classpaths to avoid multiple forks and huge vmem
  3017. usage by AM. (vinodkv)
  3018. MAPREDUCE-279. Fix in MR-279 branch. Fix CapacityScheduler to release unused
  3019. reservations on application completion. (acmurthy)
  3020. MAPREDUCE-279. Fix in MR-279 branch. Fix CapacityScheduler (LeafQueue) to not
  3021. allocate DATA_LOCAL containers when they are not required on the rack.
  3022. (acmurthy)
  3023. MAPREDUCE-279. Fix in MR-279 branch. Makes uber-task disabled by default (ddas)
  3024. MAPREDUCE-279. Fix in MR-279 branch. Make logging and memory for AM configurable
  3025. for the user via command line (mahadev)
  3026. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug in previous patch (r1103657).
  3027. Now bin/yarn truly shouldn't be launched multiple times in a single AM.
  3028. (vinodkv)
  3029. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug to do with setting the staging
  3030. dir. (ddas)
  3031. MAPREDUCE-279. Fix in MR-279 branch. Fixed Composite Service to shutdown
  3032. services if an error occurs on starting any one of those (mahadev & chris)
  3033. MAPREDUCE-279. Fix in MR-279 branch. Fix the tests to use jvm fork mode to avoid
  3034. errors in shutting down services (sidharth seth)
  3035. MAPREDUCE-2500. PB factories are not thread safe (Siddharth Seth via mahadev)
  3036. MAPREDUCE-2504. race in JobHistoryEventHandler stop (Siddharth Seth via mahadev)
  3037. MAPREDUCE-279. Fix in MR-279 branch. Fix job hang if the AM launch fails.
  3038. (mahadev)
  3039. MAPREDUCE-2509. Fix NPE in UI for pending attempts. (Luke Lu via mahadev)
  3040. MAPREDUCE-279. Fix in MR-279 branch. Add junit jar to lib in assembly (mahadev
  3041. and luke)
  3042. MAPREDUCE-279. Fix in MR-279 branch. Distributed cache bug fix to pass Terasort.
  3043. (vinodkv)
  3044. MAPREDUCE-279. Fix in MR-279 branch. Fix null pointer exception in kill task
  3045. attempt (mahadev)
  3046. MAPREDUCE-279. Fix in MR-279 branch. Refactored RMContainerAllocator to release
  3047. unused containers. (sharad)
  3048. MAPREDUCE-279. Fix in MR-279 branch. Changed Scheduler to return available limit
  3049. to AM in the allocate api. (acmurthy)
  3050. MAPREDUCE-279. Fix in MR-279 branch. Fix nodemanager expiry to not throw OOM.
  3051. (mahadev)
  3052. MAPREDUCE-279. Fix in MR-279 branch. Use DefaultContainerExecutor for
  3053. integration tests. (cdouglas)
  3054. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in test case (mahadev)
  3055. MAPREDUCE-279. Fix in MR-279 branch. Fix for regression on the scheduling of
  3056. reduces before maps are done (ddas)
  3057. MAPREDUCE-279. Fix in MR-279 branch. Fix distributed-cache related bugs.
  3058. (vinodkv)
  3059. MAPREDUCE-279. Fix in MR-279 branch. Ensure unused containers released by AM are
  3060. correctly counted for queue-capacity. (acmurthy)
  3061. MAPREDUCE-279. Fix in MR-279 branch. Fix TestRuntimeEstimators (Siddharth Seth
  3062. via ddas)
  3063. MAPREDUCE-279. Fix in MR-279 branch. Fix queue refresh to correctly record newly
  3064. added queues in CapacityScheduler. (acmurthy)
  3065. MAPREDUCE-279. Fix in MR-279 branch. Added metrics for tracking reservations in
  3066. CapacityScheduler. (Luke Lu via acmurthy)
  3067. MAPREDUCE-2522. Security for JobHistory service. (Siddharth Seth via mahadev)
  3068. MAPREDUCE-2534. Fix CI breaking hard coded version in jobclient pom. (Luke Lu
  3069. via mahadev)
  3070. MAPREDUCE-279. Fix in MR-279 branch. Add public cache. (cdouglas)
  3071. MAPREDUCE-279. Fix in MR-279 branch. Made number of RPC server threads
  3072. configurable. (acmurthy)
  3073. MAPREDUCE-279. Fix in MR-279 branch. Added acl check for RMAdmin. (acmurthy)
  3074. MAPREDUCE-279. Fix in MR-279 branch. Adding job kill for any state that the job
  3075. is in with access control. (mahadev)
  3076. MAPREDUCE-279. Fix in MR-279 branch. Add debug statements for AM not launching
  3077. (mahadev)
  3078. MAPREDUCE-279. Fix in MR-279 branch. Fixing race condition leader to hung jobs
  3079. in scheduler negotiator (mahadev)
  3080. MAPREDUCE-279. Fix in MR-279 branch. Add debug config for delaying delete of
  3081. local files. (cdouglas)
  3082. MAPREDUCE-2527. Metrics for MRAppMaster (Luke lu via mahadev)
  3083. MAPREDUCE-2532. Metrics for NodeManager (Luke Lu via mahadev)
  3084. MAPREDUCE-279. Fix in MR-279 branch. Fixed an NPE during handling of unnecessary
  3085. reservations in CS. (acmurthy)
  3086. MAPREDUCE-279. Fix in MR-279 branch. Fix for public dist cache to work with non
  3087. default hdfs (mahadev &ddas)
  3088. MAPREDUCE-279. Fix in MR-279 branch. Making streaming -file option work. Also
  3089. minor fixes for successful compilation of contrib tests. (vinodkv)
  3090. MAPREDUCE-2536. Backporting changes to MR-279.
  3091. MAPREDUCE-279. Fix in MR-279 branch. Bugfix for using user staging directory for
  3092. history files (Siddharth Seth via mahadev)
  3093. MAPREDUCE-279. Fix in MR-279 branch. First fix for making basic speculative
  3094. execution work (ddas)
  3095. MAPREDUCE-279. Fix in MR-279 branch. Fixes for TestFail/Kill (ddas)
  3096. MAPREDUCE-279. Fix in MR-279 branch. Set correct version of avro-maven-plugin
  3097. that is available in apache maven repositories. (vinodkv)
  3098. MAPREDUCE-279. Fix in MR-279 branch. Fixing and reneabling
  3099. TestContainerTokenSecretManager. (vinodkv)
  3100. MAPREDUCE-279. Fix in MR-279 branch. Cleaning up configuration constants in
  3101. mapreduce modules. (vinodkv)
  3102. MAPREDUCE-279. Fix in MR-279 branch. Fixing NPE on speculator in MRAppMaster and
  3103. making job-history optional in tests to make test goal succeed. (vinodk and
  3104. sharadag).
  3105. MAPREDUCE-279. Fix in MR-279 branch. Fixed NPE in CS by checking Application
  3106. state before scheduling and fixing synchronization in CS. (acmurthy)
  3107. MAPREDUCE-279. Fix in MR-279 branch. Making pipes work with YARN. Changed pipes
  3108. to get log-locations from an environmental variable. (vinodkv)
  3109. MAPREDUCE-279. Fix in MR-279 branch. Ensure 'lost' NodeManagers are dealt
  3110. appropriately, the containers are released correctly. (acmurthy)
  3111. MAPREDUCE-279. Fix in MR-279 branch. Adding some more logging for AM expiry logs
  3112. (mahadev)
  3113. MAPREDUCE-279. Fix in MR-279 branch. Reduce ramp up and zero maps support.
  3114. (sharad)
  3115. MAPREDUCE-279. Fix in MR-279 branch. Allowing hdfs calls from streaming/pipes
  3116. tasks. (vinodkv)
  3117. MAPREDUCE-279. Fix in MR-279 branch. Added ability to decommission nodes and
  3118. completed RM administration tools to achieve parity with JobTracker. (acmurthy)
  3119. MAPREDUCE-2551. Added JobSummaryLog. (Siddharth Seth via acmurthy)
  3120. MAPREDUCE-2552. Fixed NPE in CompletedJob in JobHistoryServer. (Siddharth Seth
  3121. via acmurthy)
  3122. MAPREDUCE-279. Fix in MR-279 branch. Fix reduce slow start. (sharad)
  3123. MAPREDUCE-279. Fix in MR-279 branch. Fixed TestFifoScheduler. (acmurthy)
  3124. MAPREDUCE-279. Fix in MR-279 branch. Fix build issue for using yarn.version
  3125. instead of hadoop-mapred.version (mahadev and giri)
  3126. MAPREDUCE-279. Fix in MR-279 branch. Fixes in the handling of KILL events in the
  3127. SUCCEEDED state for tasks in the application master (ddas)
  3128. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in TestRMNMRPCResponseId.
  3129. (mahadev)
  3130. MAPREDUCE-279. Fix in MR-279 branch. Fix a deadlock in the resourcemanager.
  3131. (mahadev)
  3132. MAPREDUCE-279. Fix in MR-279 branch. NodeStatus.getNodeHealthStatus().setBlah
  3133. broken (Siddharth Seth)
  3134. MAPREDUCE-279. Fix in MR-279 branch. Fix another NPE in TestRMNMRPCResponseId.
  3135. (mahadev)
  3136. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in TestNMExpiry (siddharth
  3137. seth)
  3138. MAPREDUCE-279. Fix in MR-279 branch. Making each node aggregate all its
  3139. user-logs to a separate hdfs file. (vinodkv)
  3140. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of max-capacity for a
  3141. queue, also fixed a bug in registration of NodeManagers. (acmurthy)
  3142. MAPREDUCE-279. Fix in MR-279 branch. More cleaning up constants, removing stale
  3143. code, and making conspicuous the envs that apps depend on to be provided by
  3144. YARN. (vinodkv)
  3145. MAPREDUCE-279. Fix in MR-279 branch. Fix container size rounding in AM and
  3146. headroom in RM. (acmurthy and sharad)
  3147. MAPREDUCE-279. Fix in MR-279 branch. Disable Job acls until fixed (mahadev)
  3148. MAPREDUCE-279. Fix in MR-279 branch. Fix to report job status if the application
  3149. is KILLED/FAILED. (mahadev)
  3150. MAPREDUCE-279. Fix in MR-279 branch. Fix a corner case in headroom computation -
  3151. now reservations are taken into account and headroom is computed much later to
  3152. account for allocations/reservations. (acmurthy)
  3153. MAPREDUCE-2537. The RM writes its log to
  3154. yarn-mapred-resourcemanager-<RM_Host>.out (Robert Evans via mahadev)
  3155. MAPREDUCE-279. Fix in MR-279 branch. Fix logging for showing the state of job
  3156. (FAILED/KILLED/SUCCEEDED) when it completes (mahadev)
  3157. MAPREDUCE-279. Fix in MR-279 branch. Re-enabled TestCapacityScheduler.
  3158. (acmurthy)
  3159. MAPREDUCE-279. Fix in MR-279 branch. Support for min and max container capacity.
  3160. (acmurthy and sharad)
  3161. MAPREDUCE-2531. Fixed jobcontrol to downgrade JobID. (Robert Evans via acmurthy)
  3162. MAPREDUCE-2539. Fixed NPE in getMapTaskReports in JobClient. (Robert Evans via
  3163. acmurthy)
  3164. MAPREDUCE-279. Fix in MR-279 branch. Fixing the wrong config key used in
  3165. JobHistory that prevented configuring move-thread interval. (vinodkv)
  3166. MAPREDUCE-279. Fix in MR-279 branch. Fixed inconsistency in QueueACL enums.
  3167. (acmurthy)
  3168. MAPREDUCE-279. Fix in MR-279 branch. Fix various issues with Web UI's. (Luke Lu)
  3169. MAPREDUCE-279. Fix in MR-279 branch. Fix class cast exception in Task abort for
  3170. old mapreduce apis. (sharad)
  3171. MAPREDUCE-279. Fix in MR-279 branch. Add deletion of distributed cache
  3172. resources. (cdouglas)
  3173. MAPREDUCE-279. Fix in MR-279 branch. Disable aggregation of logs onto DFS till
  3174. JobHistoryServer starts serving logs. (vinodkv)
  3175. MAPREDUCE-279. Fix in MR-279 branch. Cleanup redundant code in TaskAttemptImpl.
  3176. (sharad)
  3177. MAPREDUCE-279. Fix in MR-279 branch. Work around broken signaling in public
  3178. cache. (cdouglas)
  3179. MAPREDUCE-2566. YarnConfiguration should reloadConfiguration if instantiated
  3180. with a non YarnConfiguration object. (Siddharth Seth)
  3181. MAPREDUCE-279. Fix in MR-279 branch. Fully resolve paths when launching
  3182. containers. (Siddharth Seth)
  3183. MAPREDUCE-279. Fix in MR-279 branch. Re-enabling Uber-AM feature. (vinodkv)
  3184. MAPREDUCE-279. Fix in MR-279 branch. Fixed deadlock during expiring NMs.
  3185. (acmurthy)
  3186. MAPREDUCE-279. Fix in MR-279 branch. Solving NPEs during
  3187. ContainerManager#StopContainer. Also removing the unused
  3188. ContainerManager#CleanupContainer api. (vinodkv)
  3189. MAPREDUCE-279. Fix in MR-279 branch. Remove retries in dist cache so that NM's
  3190. do not shutdown (mahadev)
  3191. MAPREDUCE-279. Fix in MR-279 branch. Fix classpath construction for Task.
  3192. (vinodkv via sharad)
  3193. MAPREDUCE-279. Fix in MR-279 branch. Sending Job diagnostics from AM to RM and
  3194. redirect to history-url on job completion. (vinodkv and sharadag)
  3195. MAPREDUCE-279. Fix in MR-279 branch. Added clover in pom dependency. (sharad)
  3196. MAPREDUCE-279. Fix in MR-279 branch. Intermittent TestMRApp failures on faster
  3197. Linux desktop. (Luke lu via mahadev)
  3198. MAPREDUCE-279. Fix in MR-279 branch. Including source files in release
  3199. distribution (Luke Lu via mahadev)
  3200. MAPREDUCE-279. Fix in MR-279 branch. Intermittent TestMRApp failures on faster
  3201. Linux desktop (part 2) (Luke lu via mahadev)
  3202. MAPREDUCE-279. Fix in MR-279 branch. Disable Uber AM. (mahadev)
  3203. MAPREDUCE-279. Fix in MR-279 branch. Added few job diagnostic messages. (sharad)
  3204. MAPREDUCE-279. Fix in MR-279 branch. Add ability to includes src files in
  3205. assembly target for maven (Luke Lu via mahadev)
  3206. MAPREDUCE-2582. Cleanup JobHistory event generation.(Siddharth Seth via sharad)
  3207. MAPREDUCE-279. Fix in MR-279 branch. Fix rounding off problem in reduce ramp up.
  3208. (sharad)
  3209. MAPREDUCE-279. Fix in MR-279 branch. Fix more rounding off problems in reduce
  3210. ramp up. Also fix a bug preventing the application of the cap on reduce ramp-up.
  3211. (Sharad Agarwal via vinodkv)
  3212. MAPREDUCE-279. Fix in MR-279 branch. Fix to exclude images dir into the tar
  3213. distribution (Luke Lu via gkesavan)
  3214. MAPREDUCE-279. Fix in MR-279 branch. Changes a couple of usages of FileContext
  3215. to FileSystem in YarnRunner to handle distributed cache path resolutions on
  3216. non-default filesystems. (ddas)
  3217. MAPREDUCE-279. Fix in MR-279 branch. Display failed/killed attempts of the task
  3218. on MR AM UI separately. (vinodkv)
  3219. MAPREDUCE-279. Fix in MR-279 branch. Miscellaneous UI fixes + source code
  3220. formatting for MR JobHistoryEventHandler. (vinodkv)
  3221. MAPREDUCE-279. Fix in MR-279 branch. Fixing broken link to logs for container on
  3222. NM web UI. (vinodkv)
  3223. MAPREDUCE-279. Fix in MR-279 branch. Fixing the bug which was causing FAILED
  3224. jobs to be displayed as COMPLETED on the RM UI. (vinodkv)
  3225. MAPREDUCE-279. Fix in MR-279 branch. Job level node blacklisting. (sharad)
  3226. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in history event handling
  3227. (Siddharth Seth via mahadev)
  3228. MAPREDUCE-2569. Ensure root queue allocated 100% capacity. (Jonathan Eagles via
  3229. cdouglas)
  3230. MAPREDUCE-279. Fix in MR-279 branch. Fix ClassCastException in JobHistoryServer
  3231. for certain jobs. (Siddharth Seth via llu)
  3232. MAPREDUCE-279. Fix in MR-279 branch. Changes for invoking rack resolution in the
  3233. RM and in the AM (ddas)
  3234. MAPREDUCE-279. Fix in MR-279 branch. Fix concurrent modification exception in
  3235. the Capacity Scheduler (mahadev)
  3236. MAPREDUCE-279. Fix in MR-279 branch. Fix stopContainer for setsid challenged
  3237. platforms. (llu)
  3238. MAPREDUCE-2587. Generate yarn version for UI. (Thomas Graves via lluts page to
  3239. the history server UI. (vinodkv)
  3240. MAPREDUCE-279. Fix in MR-279 branch. Bug fix to set correct state on containers
  3241. so as to avoid duplicate containers from RM to AM. (vinodkv)
  3242. MAPREDUCE-279. Fix in MR-279 branch. Hack until MAPREDUCE-2365 is fixed to make
  3243. PIG work with MRV2. (mahadev)
  3244. MAPREDUCE-279. Fix in MR-279 branch. Changes a couple of usages of FileContext
  3245. to FileSystem in TaskAttemptImpl to handle distributed cache path resolutions on
  3246. non-default filesystems. (ddas)
  3247. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE when requesting attempts for
  3248. completed jobs. (Siddharth Seth via llu)
  3249. MAPREDUCE-279. Fix in MR-279 branch. Improve logging for AM when requesting
  3250. containers to show the right ask and release fields (mahadev)
  3251. MAPREDUCE-279. Fix in MR-279 branch. Fix race condition between multiple
  3252. localizers on a single node. (cdouglas via mahadev)
  3253. MAPREDUCE-279. Fix in MR-279 branch. Fix RM app start/finish time and
  3254. diagnostics. (llu)
  3255. MAPREDUCE-279. Fix in MR-279 branch. Fix to schedule reduces irrespective of the
  3256. headroom when all maps are done so as to avoid stall in reduce-scheduling when
  3257. slow-start is disabled. (Sharad Agarwal via vinodkv).
  3258. MAPREDUCE-279. Fix in MR-279 branch. Disabling locality-wait in
  3259. CapacityScheduler for now to prevent uber-slow scheduling for apps with no
  3260. data-locality constraints (sleep-job like). (vinodkv)
  3261. MAPREDUCE-279. Fix in MR-279 branch. Fixing scheduling deadlock in AM because of
  3262. incorrect headRoom values from RM. The bug happens when AM releases containers
  3263. and RM decrements current memory usage twice for all those containers. (vinodkv)
  3264. MAPREDUCE-2611. Fix counters, finish times etc. in job history. (Siddharth Seth
  3265. via llu)
  3266. MAPREDUCE-279. Fix in MR-279 branch. Fix for ConcurrentModification exception
  3267. while iterating through tokens in a UGI in ContainerLauncherImpl. (ddas)
  3268. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in YarnChild that was causing
  3269. lots of tasks to fail. (vinodkv)
  3270. MAPREDUCE-2615. Make killJob go through AM and fix JobSummaryLog. (Siddharth
  3271. Seth via llu)
  3272. MAPREDUCE-279. Fix in MR-279 branch. Fix class cast exception in release
  3273. reserved containers in capacity scheduler (mahadev)
  3274. MAPREDUCE-279. Fix in MR-279 branch. Fix diagnostics display for more than 100
  3275. apps in RM. (llu)
  3276. MAPREDUCE-279. Fix in MR-279 branch. Fix some invalid transitions in the RM.
  3277. (vinodkv via ddas)
  3278. MAPREDUCE-2618. Fix NPE in 0 map 0 reduce jobs. (Jeffrey Naisbitt via llu)
  3279. MAPREDUCE-2625. Add version info to nodemanager info page. (Jonathan Eagles via
  3280. llu)
  3281. MAPREDUCE-279. Fix in MR-279 branch. (1) Faster retries from AM to HistoryServer
  3282. (2) Correct diagnostics for containers. (vinodkv)
  3283. MAPREDUCE-279. Fix in MR-279 branch. Major ASM cleanup. Streamlining classes,
  3284. interface and events. (vinodkv)
  3285. MAPREDUCE-279. Fix in MR-279 branch. Reinstate resolve path fixes for viewfs.
  3286. (Siddharth Seth via llu)
  3287. MAPREDUCE-2633. Add a getCounter(Enum) method to the Counters record. (Josh
  3288. Wills via sharad)
  3289. MAPREDUCE-2645. Updates to MRv2 INSTALL and README documentation. (Josh Wills
  3290. via vinodkv)
  3291. MAPREDUCE-2628. Add compiled on date to NM and RM info/about page.
  3292. MAPREDUCE-2400. Remove Cluster's dependency on JobTracker via a ServiceProvider
  3293. for the actual implementation. (tomwhite via acmurthy)
  3294. MAPREDUCE-2663. Refactoring StateMachineFactory inner classes. (ahmed radwan via
  3295. mahadev)
  3296. MAPREDUCE-2678. minimum-user-limit-percent no longer honored. (naisbitt via
  3297. mahadev)
  3298. MAPREDUCE-2630. refreshQueues leads to NPEs when used w/FifoScheduler. (Josh
  3299. Wills via mahadev)
  3300. MAPREDUCE-2644. NodeManager fails to create containers when NM_LOG_DIR is not
  3301. explicitly set in the Configuration. (Josh Wills via vinodkv)
  3302. MAPREDUCE-2661. Fix TaskImpl to not access MapTaskImpl. (Ahmed Radwan via
  3303. sharad)
  3304. HADOOP-6929. Backport changes to MR-279 (mahadev and owen)
  3305. HADOOP-6929. Making Security Info abstract and not an interface (mahadev)
  3306. MAPREDUCE-2667. mapred job -kill leaves application in RUNNING state (thomas
  3307. graves via mahadev)
  3308. MAPREDUCE-2664. Implement JobCounters for Mtions as asynchronous. (vinodkv,
  3309. sharad and acmurthy)
  3310. MAPREDUCE-2773. server.api.records.NodeHealthStatus renamed but not updated in
  3311. client NodeHealthStatus.java (Thomas Graves via mahadev)
  3312. MAPREDUCE-2772. Fix MR-279 build after common mavenization. (Robert Joseph Evans
  3313. via llu)
  3314. MAPREDUCE-2772. Fix MR-279 build after common mavenization, part 2. (Thomas
  3315. Graves via llu)
  3316. MAPREDUCE-279. Fix in MR-279 branch. Harmonize slf4j versions. (llu)
  3317. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in FifoScheduler. (mahadev)
  3318. MAPREDUCE-2776. Fix some of the yarn findbug warnings. (Siddharth Seth via
  3319. mahadev)
  3320. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules,
  3321. part 1 (mahadev)
  3322. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules
  3323. part 2 (mahadev)
  3324. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules
  3325. part 3 (mahadev)
  3326. MAPREDUCE-279. Fix in MR-279 branch. Fix the poms to enable 0.23 snapshots for
  3327. hdfs/common from apache nightly builds (gkesavan)
  3328. MAPREDUCE-279. Fix in MR-279 branch. Fix ivy conf to work with the hadoop common
  3329. trunk maven build changes. (Giridharan Kesavan)
  3330. MAPREDUCE-279. Fix in MR-279 branch. Patch for findbugs warnings in Resource
  3331. Manager (Siddharth Seth via mahadev)
  3332. MAPREDUCE-279. Fix in MR-279 branch. Fix for running ant targets to use the
  3333. right set of common/test jars (gkesavan via mahadev)
  3334. MAPREDUCE-2782. Unit tests for CapacityScheduler. (acmurthy)
  3335. MAPREDUCE-2706. Log job submission failures. (Jeffrey Naisbitt via acmurthy)
  3336. MAPREDUCE-2781. mr279 RM application finishtime not set (Thomas Graves via
  3337. mahadev)
  3338. MAPREDUCE-279. Fix in MR-279 branch. Fixed CS locality wait factor. (acmurthy)
  3339. MAPREDUCE-2808. pull MAPREDUCE-2797 into mr279 branch (Thomas Graves via
  3340. mahadev)
  3341. MAPREDUCE-2639. Bug fixes in speculate.DataStatistics. (Josh Wills via acmurthy)
  3342. MAPREDUCE-2839. Fixed TokenCache to get delegation tokens using both new and old
  3343. apis. (Siddharth Seth via acmurthy)
  3344. MAPREDUCE-2727. Fix divide-by-zero error in SleepJob for sleepCount equals 0.
  3345. (Jeffrey Naisbitt via acmurthy)
  3346. MAPREDUCE-2839. Fixed TokenCache to get delegation tokens using both new
  3347. and old apis. (Siddharth Seth via acmurthy)
  3348. MAPREDUCE-2727. Fix divide-by-zero error in SleepJob for sleepCount equals
  3349. 0. (Jeffrey Naisbitt via acmurthy)
  3350. MAPREDUCE-2860. Fix log4j logging in the maven test cases. (mahadev)
  3351. MAPREDUCE-2867. Remove Unused TestApplicaitonCleanup in resourcemanager/applicationsmanager.
  3352. (mahadev)
  3353. MAPREDUCE-2868. ant build broken in hadoop-mapreduce dir (mahadev, giri and arun via mahadev)
  3354. MAPREDUCE-2649. Handling of finished applications in RM. (Thomas Graves
  3355. via acmurthy)
  3356. MAPREDUCE-2838. Fix MapReduce builds to use new hadoop-common test jars.
  3357. (gkesavan via acmurthy)
  3358. MAPREDUCE-2859. Fix eclipse plugin contrib module compilation (gkesavan)
  3359. MAPREDUCE-2846. Fix missing synchronization in the task log management.
  3360. (omalley)
  3361. MAPREDUCE-2807. Fix AM restart and client redirection. (sharad)
  3362. MAPREDUCE-2877. Add missing Apache license header in some files in MR
  3363. and also add the rat plugin to the poms. (mahadev)
  3364. MAPREDUCE-2796. Set start times for MR applications for clients to see.
  3365. (Devaraj K via acmurthy)
  3366. MAPREDUCE-2879. Fix version for MR-279 to 0.23.0. (acmurthy)
  3367. MAPREDUCE-2881. Fix to include log4j 1.2.16 depenency (gkesavan)
  3368. MAPREDUCE-2885. Fix mapred-config.sh to look for hadoop-config.sh in
  3369. HADOOP_COMMON_HOME/libexec. (acmurthy)
  3370. MAPREDUCE-2893. Remove duplicate entry of YarnClientProtocolProvider in
  3371. ClientProtocolProvider services file. (Liang-Chi Hsieh via acmurthy)
  3372. MAPREDUCE-2891. Javadoc for AMRMProtocol and related records. (acmurthy)
  3373. MAPREDUCE-2898. Javadoc for ContainerManager protocol and related records.
  3374. (acmurthy)
  3375. MAPREDUCE-2904. Fixed bin/yarn to correctly include HDFS jars and
  3376. clean up of stale refs to pre-mavenized Hadoop Common and HDFS.
  3377. (Sharad Agarwal and Arun C. Murthy via acmurthy)
  3378. MAPREDUCE-2737. Update the progress of jobs on client side. (Siddharth Seth
  3379. and Mahadev Konar via mahadev)
  3380. MAPREDUCE-2886. Fix Javadoc warnings in MapReduce. (mahadev)
  3381. MAPREDUCE-2897. Javadoc for ClientRMProtocol protocol and related records.
  3382. (acmurthy)
  3383. MAPREDUCE-2916. Ivy build for MRv1 fails with bad organization for
  3384. common daemon. (mahadev)
  3385. MAPREDUCE-2917. Fixed corner case in container reservation which led to
  3386. starvation and hung jobs. (acmurthy)
  3387. MAPREDUCE-2756. Better error handling in JobControl for failed jobs.
  3388. (Robert Evans via acmurthy)
  3389. MAPREDUCE-2716. MRReliabilityTest job fails because of missing
  3390. job-file. (Jeffrey Naisbitt via vinodkv)
  3391. MAPREDUCE-2882. TestLineRecordReader depends on ant jars. (todd)
  3392. MAPREDUCE-2687. Fix NodeManager to use the right version of
  3393. LocalDirAllocator.getLocalPathToWrite. (mahadev & acmurthy)
  3394. MAPREDUCE-2800. Set final progress for tasks to ensure all task information
  3395. is correctly logged to JobHistory. (Siddharth Seth via acmurthy)
  3396. MAPREDUCE-2938. Log application submission failure in CapacityScheduler.
  3397. (acmurthy)
  3398. MAPREDUCE-2948. Hadoop streaming test failure, post MR-2767 (mahadev)
  3399. MAPREDUCE-2908. Fix all findbugs warnings. (vinodkv via acmurthy)
  3400. MAPREDUCE-2947. Fixed race condition in AuxiliaryServices. (vinodkv via
  3401. acmurthy)
  3402. MAPREDUCE-2844. Fixed display of nodes in UI. (Ravi Teja Ch N V via
  3403. acmurthy)
  3404. MAPREDUCE-2677. Fixed 404 for some links from HistoryServer. (Robert Evans
  3405. via acmurthy)
  3406. MAPREDUCE-2937. Ensure reason for application failure is displayed to the
  3407. user. (mahadev via acmurthy)
  3408. MAPREDUCE-2953. Fix a race condition on submission which caused client to
  3409. incorrectly assume application was gone by making submission synchronous
  3410. for RMAppManager. (Thomas Graves via acmurthy)
  3411. MAPREDUCE-2963. Fix hang in TestMRJobs. (Siddharth Seth via acmurthy)
  3412. MAPREDUCE-2954. Fixed a deadlock in NM caused due to wrong synchronization
  3413. in protocol buffer records. (Siddharth Seth via vinodkv)
  3414. MAPREDUCE-2975. Fixed YARNRunner to use YarnConfiguration rather than
  3415. Configuration. (mahadev via acmurthy)
  3416. MAPREDUCE-2971. ant build mapreduce fails protected access jc.displayJobList
  3417. (jobs) (Thomas Graves via mahadev)
  3418. MAPREDUCE-2691. Finishing up the cleanup of distributed cache file resources
  3419. and related tests. (Siddharth Seth via vinodkv)
  3420. MAPREDUCE-2749. Ensure NM registers with RM after starting all its services
  3421. correctly. (Thomas Graves via acmurthy)
  3422. MAPREDUCE-2979. Removed the needless ClientProtocolProvider configuration
  3423. from the hadoop-mapreduce-client-core module. (Siddharth Seth via vinodkv)
  3424. MAPREDUCE-2985. Fixed findbugs warnings in ResourceLocalizationService.
  3425. (Thomas Graves via acmurthy)
  3426. MAPREDUCE-2874. Fix formatting of ApplicationId in web-ui. (Eric Payne via
  3427. acmurthy)
  3428. MAPREDUCE-2995. Better handling of expired containers in MapReduce
  3429. ApplicationMaster. (vinodkv via acmurthy)
  3430. MAPREDUCE-2995. Fixed race condition in ContainerLauncher. (vinodkv via
  3431. acmurthy)
  3432. MAPREDUCE-2949. Fixed NodeManager to shut-down correctly if a service
  3433. startup fails. (Ravi Teja via vinodkv)
  3434. MAPREDUCE-3005. Fix both FifoScheduler and CapacityScheduler to correctly
  3435. enforce locality constraints. (acmurthy)
  3436. MAPREDUCE-3007. Fixed Yarn Mapreduce client to be able to connect to
  3437. JobHistoryServer in secure mode. (vinodkv)
  3438. MAPREDUCE-2987. Fixed display of logged user on RM Web-UI. (Thomas Graves
  3439. via acmurthy)
  3440. MAPREDUCE-3006. Fixed MapReduce AM to exit only after properly writing out
  3441. history file. (vinodkv)
  3442. MAPREDUCE-2925. Fixed Yarn+MR client code to behave saner with completed
  3443. jobs. (Devaraj K via vinodkv)
  3444. MAPREDUCE-3030. Fixed a bug in NodeId.equals() that was causing RM to
  3445. reject all NMs. (Devaraj K via vinodkv)
  3446. MAPREDUCE-3042. Fixed default ResourceTracker address. (Chris Riccomini
  3447. via acmurthy)
  3448. MAPREDUCE-3038. job history server not starting because conf() missing
  3449. HsController (Jeffrey Naisbitt via mahadev)
  3450. MAPREDUCE-3004. Fix ReduceTask to not assume 'local' mode in YARN. (Hitesh
  3451. Shah via acmurthy)
  3452. MAPREDUCE-3017. The Web UI shows FINISHED for killed/successful/failed jobs.
  3453. (mahadev)
  3454. MAPREDUCE-3040. Fixed extra copy of Configuration in
  3455. YarnClientProtocolProvider and ensured MiniMRYarnCluster sets JobHistory
  3456. configuration for tests. (acmurthy)
  3457. MAPREDUCE-3018. Fixed -file option for streaming. (mahadev via acmurthy)
  3458. MAPREDUCE-3036. Fixed metrics for reserved resources in CS. (Robert Evans
  3459. via acmurthy)
  3460. MAPREDUCE-2998. Fixed a bug in TaskAttemptImpl which caused it to fork
  3461. bin/mapred too many times. (vinodkv via acmurthy)
  3462. MAPREDUCE-3023. Fixed clients to display queue state correctly. (Ravi
  3463. Prakash via acmurthy)
  3464. MAPREDUCE-2970. Fixed NPEs in corner cases with different configurations
  3465. for mapreduce.framework.name. (Venu Gopala Rao via vinodkv)
  3466. MAPREDUCE-3062. Fixed default RMAdmin address. (Chris Riccomini
  3467. via acmurthy)
  3468. MAPREDUCE-3066. Fixed default ResourceTracker address for the NodeManager.
  3469. (Chris Riccomini via acmurthy)
  3470. MAPREDUCE-3044. Pipes jobs stuck without making progress. (mahadev)
  3471. MAPREDUCE-2754. Fixed MR AM stdout, stderr and syslog to redirect to
  3472. correct log-files. (Ravi Teja Ch N V via vinodkv)
  3473. MAPREDUCE-3073. Fixed build issues in MR1. (mahadev via acmurthy)
  3474. MAPREDUCE-2691. Increase threadpool size for launching containers in
  3475. MapReduce ApplicationMaster. (vinodkv via acmurthy)
  3476. MAPREDUCE-2990. Fixed display of NodeHealthStatus. (Subroto Sanyal via
  3477. acmurthy)
  3478. MAPREDUCE-3053. Better diagnostic message for unknown methods in ProtoBuf
  3479. RPCs. (vinodkv via acmurthy)
  3480. MAPREDUCE-2952. Fixed ResourceManager/MR-client to consume diagnostics
  3481. for AM failures in a couple of corner cases. (Arun C Murthy via vinodkv)
  3482. MAPREDUCE-3064. 27 unit test failures with Invalid
  3483. "mapreduce.jobtracker.address" configuration value for
  3484. JobTracker: "local" (Venu Gopala Rao via mahadev)
  3485. MAPREDUCE-3090. Fix MR AM to use ApplicationAttemptId rather than
  3486. (ApplicationId, startCount) consistently. (acmurthy)
  3487. MAPREDUCE-2646. Fixed AMRMProtocol to return containers based on
  3488. priority. (Sharad Agarwal and Arun C Murthy via vinodkv)
  3489. MAPREDUCE-3031. Proper handling of killed containers to prevent stuck
  3490. containers/AMs on an external kill signal. (Siddharth Seth via vinodkv)
  3491. MAPREDUCE-2984. Better error message for displaying completed containers.
  3492. (Devaraj K via acmurthy)
  3493. MAPREDUCE-3071. app master configuration web UI link under the Job menu
  3494. opens up application menu. (thomas graves via mahadev)
  3495. MAPREDUCE-3067. Ensure exit-code is set correctly for containers. (Hitesh
  3496. Shah via acmurthy)
  3497. MAPREDUCE-2999. Fix YARN webapp framework to properly filter servlet
  3498. paths. (Thomas Graves via vinodkv)
  3499. MAPREDUCE-3095. fairscheduler ivy including wrong version for hdfs.
  3500. (John George via mahadev)
  3501. MAPREDUCE-3054. Unable to kill submitted jobs. (mahadev)
  3502. MAPREDUCE-3021. Change base urls for RM web-ui. (Thomas Graves via
  3503. acmurthy)
  3504. MAPREDUCE-3041. Fixed ClientRMProtocol to provide min/max resource
  3505. capabilities along-with new ApplicationId for application submission.
  3506. (Hitesh Shah via acmurthy)
  3507. MAPREDUCE-2843. Fixed the node-table to be completely displayed and making
  3508. node entries on RM UI to be sortable. (Abhijit Suresh Shingate via vinodkv)
  3509. MAPREDUCE-3110. Fixed TestRPC failure. (vinodkv)
  3510. MAPREDUCE-3078. Ensure MapReduce AM reports progress correctly for
  3511. displaying on the RM Web-UI. (vinodkv via acmurthy)
  3512. MAPREDUCE-3114. Fixed invalid ApplicationURL on RM WebUI. (Subroto Sanyal
  3513. via vinodkv)
  3514. MAPREDUCE-2791. Added missing info on 'job -status' output. (Devaraj K via
  3515. acmurthy)
  3516. MAPREDUCE-2996. Add uber-ness information to JobHistory. (Jonathan Eagles
  3517. via acmurthy)
  3518. MAPREDUCE-3050. Add ability to get resource usage information for
  3519. applications and nodes. (Robert Evans via acmurthy)
  3520. MAPREDUCE-3113. Ensure bin/yarn and bin/yarn-daemon.sh identify the root
  3521. of the install properly. (Xie Xianshan via acmurthy)
  3522. MAPREDUCE-2792. Replace usage of node ip-addresses with hostnames.
  3523. (vinodkv via acmurthy)
  3524. MAPREDUCE-3112. Fixed recursive sourcing of HADOOP_OPTS environment
  3525. variable. (Eric Yang)
  3526. MAPREDUCE-3056. Changed the default staging directory to not include
  3527. user.name to prevent issues with non-secure mode. (Devaraj K via vinodkv)
  3528. MAPREDUCE-2913. Fixed TestMRJobs.testFailingMapper to assert the correct
  3529. TaskCompletionEventStatus. (Jonathan Eagles via vinodkv)
  3530. MAPREDUCE-2794. [MR-279] Incorrect metrics value for AvailableGB per
  3531. queue per user. (John George via mahadev)
  3532. MAPREDUCE-2783. Fixing RM web-UI to show no tracking-URL when AM
  3533. crashes. (Eric Payne via vinodkv)
  3534. MAPREDUCE-3141. Fix the broken MRAppMaster to work over YARN in security
  3535. mode.(vinodkv)
  3536. MAPREDUCE-2751. Modified NodeManager to stop leaving around local files
  3537. after application finishes. (Siddharth Seth via vinodkv)
  3538. MAPREDUCE-3033. Ensure Master interface pays attention to classic v/s yarn
  3539. frameworks. (Hitesh Shah via acmurthy)
  3540. MAPREDUCE-2802. Ensure JobHistory filenames have jobId. (Jonathan Eagles
  3541. via acmurthy)
  3542. MAPREDUCE-2876. Use a different config for ContainerAllocationExpirer.
  3543. (Anupam Seth via acmurthy)
  3544. MAPREDUCE-3153. Fix TestFileOutputCommitter which was broken by
  3545. MAPREDUCE-2702. (mahadev via acmurthy)
  3546. MAPREDUCE-3123. Fix NM to quote symlink names to escape special
  3547. characters. (Hitesh Shah via acmurthy)
  3548. MAPREDUCE-3154. Fix JobSubmitter to check for output specs before copying
  3549. job submission files to fail fast. (Abhijit Suresh Shingate via acmurthy)
  3550. MAPREDUCE-3158. Fix test failures in MRv1 due to default framework being
  3551. set to yarn. (Hitesh Shah via acmurthy)
  3552. MAPREDUCE-3167. container-executor is not being packaged with the assembly
  3553. target. (mahadev)
  3554. MAPREDUCE-3020. Fixed TaskAttemptImpl to log the correct node-address for
  3555. a finished Reduce task. (Chackaravarthy via vinodkv)
  3556. MAPREDUCE-2668. Fixed AuxServices to send a signal on application-finish
  3557. to all the services. (Thomas Graves via vinodkv)
  3558. MAPREDUCE-3126. Fixed a corner case in CapacityScheduler where headroom
  3559. wasn't updated on changes to cluster size. (acmurthy)
  3560. MAPREDUCE-3140. Fixed the invalid JobHistory URL for failed
  3561. applications. (Subroto Sanyal via vinodkv)
  3562. MAPREDUCE-3125. Modified TaskImpl to consider only non-failed, non-killed
  3563. task-attempts for obtaining task's progress. (Hitesh Shah via vinodkv)
  3564. MAPREDUCE-2666. Retrieve shuffle port number from JobHistory on MR AM
  3565. restart. (Jonathan Eagles via acmurthy)
  3566. MAPREDUCE-2789. Complete schedulingInfo on CLI. (Eric Payne via acmurthy)
  3567. MAPREDUCE-3170. Fixed job output commit for deep hierarchies. (Hitesh Shah
  3568. via acmurthy)
  3569. MAPREDUCE-3124. Fixed location of native libs i.e. libhadoop.so for
  3570. containers. (John George via acmurthy)
  3571. MAPREDUCE-3057. Job History Server goes of OutOfMemory with 1200 Jobs
  3572. and Heap Size set to 10 GB. (Eric Payne via mahadev)
  3573. MAPREDUCE-2840. mr279 TestUberAM.testSleepJob test fails. (jonathan eagles
  3574. via mahadev)
  3575. MAPREDUCE-3190. Ensure bin/yarn fails early with a clear error message
  3576. when HADOOP_COMMON_HOME or HADOOP_HDFS_HOME are not set. (todd & acmurthy
  3577. via acmurthy)
  3578. MAPREDUCE-3189. Add link decoration back to MR2's CSS. (Todd Lipcon via
  3579. mahadev)
  3580. MAPREDUCE-3127. Changed default value of yarn.resourcemanager.acl.enable
  3581. to true and added some more documentation. (acmurthy)
  3582. MAPREDUCE-3032. Fixed TaskAttemptImpl so that JobHistory can have error
  3583. information about failed tasks. (Devaraj K via vinodkv)
  3584. MAPREDUCE-3196. TestLinuxContainerExecutorWithMocks fails on Mac OSX.
  3585. (Arun Murthy via mahadev)
  3586. MAPREDUCE-3197. TestMRClientService failing on building clean checkout of
  3587. branch 0.23 (mahadev)
  3588. MAPREDUCE-2762. Cleanup MR staging directory on completion. (mahadev via
  3589. acmurthy)
  3590. MAPREDUCE-3165. Ensure logging options are set correctly for MR AM and
  3591. tasks. (todd via acmurthy)
  3592. MAPREDUCE-3203. Fix some javac warnings in MRAppMaster. (mahadev)
  3593. MAPREDUCE-3199. Fixed pom files to include correct log4j configuration for
  3594. tests. (vinodkv)
  3595. MAPREDUCE-3162. Separated application-init and container-init event types
  3596. in NodeManager's Application state machine. (Todd Lipcon via vinodkv)
  3597. MAPREDUCE-3176. Fixed ant mapreduce tests that are timing out because
  3598. of wrong framework name. (Hitesh Shah via vinodkv)
  3599. MAPREDUCE-3181. Fixed MapReduce runtime to load yarn-default.xml and
  3600. yarn-site.xml. (acmurthy)
  3601. MAPREDUCE-2788. Normalize resource requests in FifoScheduler
  3602. appropriately. (Ahmed Radwan via acmurthy)
  3603. MAPREDUCE-2693. Fix NPE in job-blacklisting. (Hitesh Shah via acmurthy)
  3604. MAPREDUCE-3208. Fix NPE task/container log appenders. (liangzhwa via
  3605. acmurthy)
  3606. MAPREDUCE-3212. Fix usage/help message for bin/yarn. (Bhallamudi Venkata
  3607. Siva Kamesh via acmurthy)
  3608. MAPREDUCE-3179. Ensure failed tests exit with right error code. (Jonathan
  3609. Eagles via acmurthy)
  3610. MAPREDUCE-3188. Ensure correct shutdown in services. (todd via acmurthy)
  3611. MAPREDUCE-3226. Fix shutdown of fetcher threads. (vinodkv via acmurthy)
  3612. MAPREDUCE-3070. Fix NodeManager to use ephemeral ports by default.
  3613. (Devaraj K via acmurthy)
  3614. MAPREDUCE-3242. Trunk compilation broken with bad interaction from
  3615. MAPREDUCE-3070 and MAPREDUCE-3239. (mahadev)
  3616. MAPREDUCE-3058. Fixed MR YarnChild to report failure when task throws an
  3617. error and thus prevent a hanging task and job. (vinodkv)
  3618. MAPREDUCE-3087. Fixed the mapreduce classpath to correctly include the
  3619. generated-classpath file needed for tests. (Ravi Prakash via vinodkv)
  3620. MAPREDUCE-3233. Fixed a bug in MR Job so as to be able to restart the
  3621. application on AM crash. (Mahadev Konar via vinodkv)
  3622. MAPREDUCE-3028. Added job-end notification support. (Ravi Prakash via
  3623. acmurthy)
  3624. MAPREDUCE-3249. Ensure shuffle-port is correctly used duringMR AM recovery.
  3625. (vinodkv via acmurthy)
  3626. MAPREDUCE-3252. Fix map tasks to not rewrite data an extra time when
  3627. map output fits in spill buffer. (todd)
  3628. MAPREDUCE-3159. Ensure DefaultContainerExecutor doesn't delete application
  3629. directories during app-init. (todd via acmurthy)
  3630. MAPREDUCE-3248. Fixed log4j properties. (vinodkv via acmurthy)
  3631. MAPREDUCE-2746. Yarn servers can't communicate with each other with
  3632. hadoop.security.authorization set to true (acmurthy via mahadev)
  3633. MAPREDUCE-2821. Added missing fields (resourcePerMap & resourcePerReduce)
  3634. to JobSummary logs. (mahadev via acmurthy)
  3635. MAPREDUCE-3253. Fixed ContextFactory to clone JobContext correctly.
  3636. (acmurthy)
  3637. MAPREDUCE-3263. Fixed the MAPREDUCE-3028 commit which broke MR1. (Hitesh
  3638. Shah via acmurthy)
  3639. MAPREDUCE-3269. Fixed log4j properties to correctly set logging options
  3640. for JobHistoryServer vis-a-vis JobSummary logs. (mahadev via acmurthy)
  3641. MAPREDUCE-2977. Fix ResourceManager to renew HDFS delegation tokens for
  3642. applications. (acmurthy)
  3643. MAPREDUCE-3250. When AM restarts, client keeps reconnecting to the new AM
  3644. and prints a lots of logs. (vinodkv via mahadev)
  3645. MAPREDUCE-3254. Fixed streaming to set the job.jar by using the right
  3646. JobConf ctor. (acmurthy)
  3647. MAPREDUCE-3264. mapreduce.job.user.name needs to be set automatically.
  3648. (acmurthy via mahadev)
  3649. MAPREDUCE-3175. Add authorization to admin web-pages such as /stacks, /jmx
  3650. etc. (Jonathan Eagles via acmurthy)
  3651. MAPREDUCE-3257. Added authorization checks for the protocol between
  3652. ResourceManager and ApplicationMaster. (vinodkv via acmurthy)
  3653. MAPREDUCE-3259. Added java.library.path of NodeManager to
  3654. ContainerLocalizer in LinuxContainerExecutor. (Kihwal Lee via acmurthy)
  3655. MAPREDUCE-3279. Fixed TestJobHistoryParsing which assumed user name to be
  3656. mapred all the time. (Siddharth Seth via acmurthy)
  3657. MAPREDUCE-3240. Fixed NodeManager to be able to forcefully cleanup its
  3658. containers (process-trees) irrespective of whether the container succeeded,
  3659. or killed. (Hitesh Shah via vinodkv)
  3660. MAPREDUCE-3281. Fixed a bug in TestLinuxContainerExecutorWithMocks. (vinodkv)
  3661. MAPREDUCE-3228. Fixed MR AM to timeout RPCs to bad NodeManagers. (vinodkv
  3662. via acmurthy)
  3663. MAPREDUCE-3284. Moved JobQueueClient to hadoop-mapreduce-client-core.
  3664. (acmurthy)
  3665. MAPREDUCE-3282. bin/mapred job -list throws exception. (acmurthy via
  3666. mahadev)
  3667. MAPREDUCE-3186. User jobs are getting hanged if the Resource manager
  3668. process goes down and comes up while job is getting executed.
  3669. (Eric Payne via mahadev)
  3670. MAPREDUCE-3209. Jenkins reports 160 FindBugs warnings (mahadev)
  3671. MAPREDUCE-3258. Fixed AM & JobHistory web-ui to display counters properly.
  3672. (Siddharth Seth via acmurthy)
  3673. MAPREDUCE-3290. Fixed a NPE in ClientRMService. (acmurthy)
  3674. MAPREDUCE-3185. RM Web UI does not sort the columns in some cases.
  3675. (Jonathan Eagles via mahadev)
  3676. MAPREDUCE-3292. In secure mode job submission fails with Provider
  3677. org.apache.hadoop.mapreduce.security.token.JobTokenIndentifier$Renewer
  3678. not found. (mahadev)
  3679. MAPREDUCE-3296. Fixed the remaining nine FindBugs warnings. (vinodkv)
  3680. MAPREDUCE-2775. Fixed ResourceManager and NodeManager to force a
  3681. decommissioned node to shutdown. (Devaraj K via vinodkv)
  3682. MAPREDUCE-3304. Fixed intermittent test failure due to a race in
  3683. TestRMContainerAllocator#testBlackListedNodes. (Ravi Prakash via acmurthy)
  3684. MAPREDUCE-3306. Fixed a bug in NodeManager ApplicationImpl that was causing
  3685. NodeManager to crash. (vinodkv)
  3686. MAPREDUCE-3256. Added authorization checks for the protocol between
  3687. NodeManager and ApplicationMaster. (vinodkv via acmurthy)
  3688. MAPREDUCE-3274. Fixed a race condition in MRAppMaster that was causing a
  3689. task-scheduling deadlock. (Robert Joseph Evans via vinodkv)
  3690. MAPREDUCE-3313. Fixed initialization of ClusterMetrics which was failing
  3691. TestResourceTrackerService sometimes. (Hitesh Shah via vinodkv)
  3692. MAPREDUCE-2766. Fixed NM to set secure permissions for files and directories
  3693. in distributed-cache. (Hitesh Shah via vinodkv)
  3694. MAPREDUCE-2696. Fixed NodeManager to cleanup logs in a thread when logs'
  3695. aggregation is not enabled. (Siddharth Seth via vinodkv)
  3696. MAPREDUCE-3262. Fixed Container's state-machine in NodeManager to handle
  3697. a couple of events in failure states correctly. (Hitesh Shah and Siddharth
  3698. Seth via vinodkv)
  3699. MAPREDUCE-3035. Fixed MR JobHistory to ensure rack information is present.
  3700. (chakravarthy via acmurthy)
  3701. MAPREDUCE-3321. Disabled a few MR tests for 0.23. (Hitesh Shah via
  3702. acmurthy)
  3703. MAPREDUCE-3220. Fixed TestCombineOutputCollector. (Devaraj K via acmurthy)
  3704. MAPREDUCE-3103. Implement Job ACLs for MRAppMaster.
  3705. (mahadev)
  3706. MAPREDUCE-3241. [Rumen] Fix Rumen to ignore the AMStartedEvent. (amarrk)
  3707. MAPREDUCE-3166. [Rumen] Make Rumen use job history api instead of relying
  3708. on current history file name format. (Ravi Gummadi)
  3709. MAPREDUCE-3157. [Rumen] Fix TraceBuilder to handle 0.20 history file
  3710. names also. (Ravi Gummadi)
  3711. MAPREDUCE-3081. Fix vaidya startup script. (gkesavan via suhas).
  3712. MAPREDUCE-2764. Fix renewal of dfs delegation tokens. (Owen via jitendra)
  3713. MAPREDUCE-3192. Fix Javadoc warning in JobClient.java and Cluster.java.
  3714. (jitendra)
  3715. MAPREDUCE-3237. Move LocalJobRunner to hadoop-mapreduce-client-core.
  3716. (tomwhite via acmurthy)
  3717. MAPREDUCE-3316. Rebooted link is not working properly.
  3718. (Bhallamudi Venkata Siva Kamesh via mahadev)
  3719. MAPREDUCE-3317. Rumen TraceBuilder is emiting null as hostname.
  3720. (Ravi Gummadi via mahadev)
  3721. MAPREDUCE-3332. contrib/raid compile breaks due to changes in hdfs/protocol/datatransfer/
  3722. Sender#writeBlock related to checksum handling (Hitesh Shah via mahadev)
  3723. MAPREDUCE-3337. Added missing license headers. (acmurthy)
  3724. Release 0.22.1 - Unreleased
  3725. INCOMPATIBLE CHANGES
  3726. NEW FEATURES
  3727. IMPROVEMENTS
  3728. OPTIMIZATIONS
  3729. BUG FIXES
  3730. MAPREDUCE-3837. Job tracker is not able to recover jobs after crash.
  3731. (Mayank Bansal via shv)
  3732. Release 0.22.0 - 2011-11-29
  3733. INCOMPATIBLE CHANGES
  3734. MAPREDUCE-1866. Removes deprecated class
  3735. org.apache.hadoop.streaming.UTF8ByteArrayUtils. (amareshwari)
  3736. MAPREDUCE-1664. Changes the behaviour of the combination of job-acls
  3737. when they function together with queue-acls. (Ravi Gummadi via vinodkv)
  3738. MAPREDUCE-2994. Fixed a bug in ApplicationID parsing that affects RM
  3739. UI. (Devaraj K via vinodkv)
  3740. MAPREDUCE-1788. o.a.h.mapreduce.Job shouldn't make a copy of the JobConf.
  3741. (Arun Murthy via mahadev)
  3742. NEW FEATURES
  3743. MAPREDUCE-1804. Stress-test tool for HDFS introduced in HDFS-708.
  3744. (Joshua Harlow via shv)
  3745. MAPREDUCE-220. Collect cpu and memory statistics per task. (Scott Chen via
  3746. acmurthy)
  3747. MAPREDUCE-1970. Reed-Solomon code implementation for HDFS RAID.
  3748. (Scott Chen via dhruba)
  3749. MAPREDUCE-2169. Integrated Reed-Solomon code with RaidNode. (Ramkumar
  3750. Vadali via schen)
  3751. MAPREDUCE-2936. Contrib Raid compilation broken after HDFS-1620. (vinodkv)
  3752. IMPROVEMENTS
  3753. MAPREDUCE-2141. Add an "extra data" field to Task for use by Mesos. (matei)
  3754. MAPREDUCE-2140. Regenerate fair scheduler design doc PDF. (matei)
  3755. MAPREDUCE-1546. Redirect all job pages to corresponding history page
  3756. if job is not in JT memory. (Scott Chen via sharad)
  3757. MAPREDUCE-1092. Enable assertions for unit tests. (Eli Collins via
  3758. cdouglas)
  3759. MAPREDUCE-1680. Add a metric recording JobTracker heartbeats processed.
  3760. (Dick King via cdouglas)
  3761. MAPREDUCE-1761. FairScheduler allows separate configuration of node
  3762. and rack locality wait time (Scott Chen via dhruba)
  3763. MAPREDUCE-1539. authorization checks for inter-server protocol
  3764. (based on HADOOP-6600) (Boris Shkolnik via shv)
  3765. MAPREDUCE-1798. Names the configuration keys for the Kerberos
  3766. principals better. (Boris Shkolnik via ddas)
  3767. MAPREDUCE-1773. streaming doesn't support jobclient.output.filter.
  3768. (Amareshwari Sriramadasu via vinodkv)
  3769. MAPREDUCE-1785. Add streaming config option for not emitting the key.
  3770. (Eli Collins via sharad)
  3771. MAPREDUCE-572. If #link is missing from uri format of -cacheArchive
  3772. then streaming does not throw error. (Amareshwari Sriramadasu via
  3773. vinodkv)
  3774. MAPREDUCE-1545. Add timestamps for first task type launched in job summary.
  3775. (Luke Lu via cdouglas)
  3776. MAPREDUCE-1543. Add an audit log for authentication events. (Amar Kamat and
  3777. Luke Lu via cdouglas)
  3778. MAPREDUCE-1762. Add ability to set values of task counters. (Scott Chen via
  3779. cdouglas)
  3780. MAPREDUCE-1533. Reduce overhead of logging and string manipulation during
  3781. heartbeat processing. (Amar Kamat and Dick King via cdouglas)
  3782. MAPREDUCE-1516. JobTracker issues delegation tokens only if the user's
  3783. authentication is Kerberos. (Jitendra Pandey via ddas)
  3784. MAPREDUCE-647. Update distcp forrest documentation to reflect the changes
  3785. of HADOOP-5472, MAPREDUCE-642 and HADOOP-5620. (Rodrigo Schmidt via
  3786. szetszwo)
  3787. MAPREDUCE-1851. Documents configuration parameters in streaming.
  3788. (amareshwari)
  3789. MAPREDUCE-1868. Add a read and connection timeout to JobClient while
  3790. pulling tasklogs. (Krishna Ramachandran via acmurthy)
  3791. MAPREDUCE-1778. Ensure failure to setup CompletedJobStatusStore is not
  3792. silently ignored by the JobTracker. (Krishna Ramachandran via acmurthy)
  3793. MAPREDUCE-1850. Includes job submit host information (name and ip) in
  3794. jobconf and jobdetails display (Krishna Ramachandran via amareshwari)
  3795. MAPREDUCE-1893. Slive with multiple reducers. (shv)
  3796. MAPREDUCE-1248. Fixes redudant memory copying in StreamKeyValUtil.
  3797. (Ruibang He via amareshwari)
  3798. MAPREDUCE-1840. Enhancements to Gridmix benchmark simulating user
  3799. diversity, queue replay, and task duration for JobTracker load testing.
  3800. Also includes compatibility with security enhancements, and scalability
  3801. improvements. (Amar Kamat, Rahul Singh, Hong Tang, and cdouglas)
  3802. MAPREDUCE-1848. Put number of speculative, data local, rack local
  3803. tasks in JobTracker metrics. (Scott Chen via dhruba)
  3804. MAPREDUCE-1935. Makes the Distcp to work in a secure environment.
  3805. (Boris Shkolnik via ddas)
  3806. MAPREDUCE-1945. The MapReduce component for HADOOP-6632.
  3807. (Kan Zhang & Jitendra Pandey via ddas)
  3808. MAPREDUCE-1936. Modify Gridmix3 to support more tunable parameters for
  3809. stress submission and sleep jobs. (Hong Tang via cdouglas)
  3810. MAPREDUCE-1733. Makes pipes applications secure. (Jitendra Pandey via ddas)
  3811. MAPREDUCE-1566. Adds a configuration attribute using which job clients can
  3812. specify a credentials file. The tokens from there will be passed to the job.
  3813. (Jitendra Pandey and Owen O'Malley via ddas)
  3814. MAPREDUCE-1624. Documents the job credentials and associated details to do
  3815. with delegation tokens (on the client side).
  3816. (Jitendra Pandey and Devaraj Das via ddas)
  3817. MAPREDUCE-1834. TestSimulatorDeterministicReplay timesout on trunk.
  3818. (Hong Tang via mahadev)
  3819. MAPREDUCE-1993. Fixes test failure
  3820. TestTrackerDistributedCacheManagerWithLinuxTaskController. (Devaraj Das
  3821. via amareshwari)
  3822. MAPREDUCE-1523. Making Mumak work with Capacity-Scheduler (Anirban Das
  3823. via mahadev)
  3824. MAPREDUCE-1920. Enables completed jobstatus store by default. (Tom White
  3825. via amareshwari)
  3826. MAPREDUCE-1881. Improve TaskTrackerInstrumentation to enable collection of
  3827. advanced metrics. (Matei Zaharia via acmurthy)
  3828. MAPREDUCE-1548. Hadoop archives preserve times and other properties from
  3829. original files. (Rodrigo Schmidt via dhruba)
  3830. MAPREDUCE-1517. Supports streaming job to run in the background. (Bochun Bai
  3831. via amareshwari)
  3832. MAPREDUCE-1819. RaidNode is now smarter in submitting Raid jobs. (Ramkumar
  3833. Vadali via schen)
  3834. MAPREDUCE-2132. A command line option in RaidShell to fix blocks using raid
  3835. MAPREDUCE-2147. Remove redundant lines in JobInProgress ctor.
  3836. (Harsh J Chouraria via cutting)
  3837. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  3838. latest test-patch.sh script (gkesavan)
  3839. MAPREDUCE-1818. RaidNode can specify scheduling parameters. (Ramkumar
  3840. Vadali via schen)
  3841. MAPREDUCE-2051. Contribute a fair scheduler preemption system test.
  3842. (Todd Lipcon via tomwhite)
  3843. MAPREDUCE-1892. RaidNode can allow layered policies more efficiently.
  3844. (Ramkumar Vadali via schen)
  3845. MAPREDUCE-1592. Generate Eclipse's .classpath file from Ivy config.
  3846. (tomwhite via nigel)
  3847. MAPREDUCE-2073. TestTrackerDistributedCacheManager should be up-front
  3848. about requirements on build environment. (Todd Lipcon via tomwhite)
  3849. MAPREDUCE-2093. Herriot JT and TT clients should vend statistics. (cos)
  3850. MAPREDUCE-2167. Faster directory traversal for raid node. (Ramkumar Vadali
  3851. via schen)
  3852. MAPREDUCE-1931. Gridmix forrest documentation . (Ranjit Mathew via vinodkv).
  3853. MAPREDUCE-2184. Port DistRaid.java to new mapreduce API. (Ramkumar Vadali
  3854. via schen)
  3855. MAPREDUCE-1878. Add MRUnit documentation. (Aaron Kimball via tomwhite)
  3856. MAPREDUCE-2180. Add coverage of fair scheduler servlet to system test (todd)
  3857. MAPREDUCE-2250. Fix logging in raid code. (Ramkumar Vadali via schen)
  3858. MAPREDUCE-2260. Remove auto-generated native build files. (rvs via eli)
  3859. MAPREDUCE-2314. configure files that are generated as part of the released
  3860. tarball need to have executable bit set (rvs via cos)
  3861. MAPREDUCE-1159. Limit Job name in web UI to be 80 char long. (Harsh J
  3862. Chouraria via szetszwo)
  3863. MAPREDUCE-2337. Remove dependence of public MapReduce API on classes in
  3864. server package. (tomwhite)
  3865. MAPREDUCE-2383. Improve documentation of DistributedCache methods (Harsh J
  3866. Chouraria via todd)
  3867. MAPREDUCE-2222. Ivy resolve force mode should be turned off by default.
  3868. (Luke Lu via tomwhite)
  3869. MAPREDUCE-2103. task-controller shouldn't require o-r permissions.
  3870. (todd via eli)
  3871. MAPREDUCE-2505. Explain how to use ACLs in the fair scheduler.
  3872. (matei via eli)
  3873. MAPREDUCE-3138. Add a utility to help applications bridge changes in
  3874. Context Objects APIs due to MAPREDUCE-954. (omalley via acmurthy)
  3875. OPTIMIZATIONS
  3876. MAPREDUCE-1354. Enhancements to JobTracker for better performance and
  3877. scalability. (Arun C. Murthy & Richard King via acmurthy)
  3878. MAPREDUCE-1829. JobInProgress.findSpeculativeTask should use min() to
  3879. find the candidate instead of sort(). (Scott Chen via vinodkv)
  3880. BUG FIXES
  3881. MAPREDUCE-1845. FairScheduler.tasksToPreempt() can return negative number.
  3882. (Scott Chen via matei)
  3883. MAPREDUCE-1707. TaskRunner can get NPE in getting ugi from TaskTracker.
  3884. (Vinod Kumar Vavilapalli)
  3885. MAPREDUCE-1532. Ensures that delegation tokens is obtained as the
  3886. actual user when the proxy-user is used for submitting jobs. Also
  3887. refactors the DelegationTokenToRenew class. (ddas)
  3888. MAPREDUCE-1558. Fixes MRAdmin to look up the principal of the
  3889. JobTracker and use that in the RefreshUserToGroupsMapping protocol and
  3890. RefreshAuthorizationPolicyProtocol. (Boris Shkolnik via ddas)
  3891. MAPREDUCE-1662. Remove unused methods from TaskRunner. (Amareshwari
  3892. Sriramadasu via cdouglas)
  3893. MAPREDUCE-1617. Use IPv4 stack for unit tests. (Amar Kamat and Luke Lu via
  3894. cdouglas)
  3895. MAPREDUCE-1599. Fixes MRBench so that it reuses tokens across jobs
  3896. correctly. (Jitendra Nath Pandey via ddas)
  3897. MAPREDUCE-1836. Refresh for proxy superuser config (mr part for HDFS-1096).
  3898. (Boris Shkolnik via shv)
  3899. MAPREDUCE-1505. Create RPC client on job submission, not in cstr of Job
  3900. instance. (Dick King via cdouglas)
  3901. MAPREDUCE-1813. NPE in PipeMapred.MRErrorThread. (Ravi Gummadi via vinodkv)
  3902. MAPREDUCE-1225. Fixes DistributedCache to check if the file is fresh or not,
  3903. for the first localization also. (Zhong Wang via amareshwari)
  3904. MAPREDUCE-1559. Fixes the token renewer to use the JobTracker's
  3905. credentials for talking to the NameNode. (ddas)
  3906. MAPREDUCE-1492. Delete obsolete har files used on the parity files
  3907. of hdfs raid. (Rodrigo Schmidt via dhruba)
  3908. MAPREDUCE-1857. Removes unused configuration parameters in streaming.
  3909. (amareshwari)
  3910. MAPREDUCE-1887. MRAsyncDiskService now properly absolutizes volume root
  3911. paths. (Aaron Kimball via zshao)
  3912. MAPREDUCE-1863. Fix NPE in Rumen when processing null CDF for failed task
  3913. attempts. (Amar Kamat via cdouglas)
  3914. MAPREDUCE-1864. Removes uninitialized/unused variables in
  3915. org.apache.hadoop.streaming.PipeMapRed. (amareshwari)
  3916. MAPREDUCE-1888. Fixes Streaming to override output key and value types,
  3917. only if mapper/reducer is a command. (Ravi Gummadi via amareshwari)
  3918. MAPREDUCE-577. Fixes duplicate records in StreamXmlRecordReader.
  3919. (Ravi Gummadi via amareshwari)
  3920. MAPREDUCE-1894. Fixed a bug in DistributedRaidFileSystem.readFully()
  3921. that was causing it to loop infinitely. (Ramkumar Vadali via dhruba)
  3922. MAPREDUCE-1838. Reduce the time needed for raiding a bunch of files
  3923. by randomly assigning files to map tasks. (Ramkumar Vadali via dhruba)
  3924. MAPREDUCE-1820. Fix InputSampler to clone sampled keys. (Alex Kozlov via
  3925. cdouglas)
  3926. MAPREDUCE-1528. Incorporates the changes to the credentials API done in
  3927. HADOOP-6845. Also, introduces Credentials in JobConf, and in JobContext.
  3928. (Jitendra Pandey and Arun Murthy via ddas)
  3929. MAPREDUCE-1865. Rumen should also support jobhistory files generated using
  3930. trunk. (Amar Kamat via amareshwari)
  3931. MAPREDUCE-1621. Fixes NPE in TextOutputReader.getLastOutput if it has never
  3932. read any output. (amareshwari)
  3933. MAPREDUCE-1911. Fixes errors in -info message in streaming. (amareshwari)
  3934. MAPREDUCE-1772. Corrects errors in streaming documentation in forrest.
  3935. (amareshwari)
  3936. MAPREDUCE-1925. Fix failing TestRumenJobTraces. (Ravi Gummadi via cdouglas)
  3937. MAPREDUCE-1718. Fixes a bug in the construction of jobconf key for the
  3938. mapping that the tasks use at runtime for looking up delegation tokens.
  3939. (Boris Shkolnik via ddas)
  3940. MAPREDUCE-1701. Fixes a problem to do with exception handling in
  3941. delegation-token renewals. (Boris Shkolnik via ddas)
  3942. MAPREDUCE-1686. Fixes StreamUtil.goodClassOrNull to find classes without
  3943. package names. (Paul Burkhardt via amareshwari)
  3944. MAPREDUCE-1288. Fixes TrackerDistributedCacheManager to take into account
  3945. the owner of the localized file in the mapping from cache URIs to
  3946. CacheStatus objects. (ddas)
  3947. MAPREDUCE-1982. Fixes Rumen's TraceBuilder to extract job name from either
  3948. of configuration properties "mapreduce.job.name" and "mapred.job.name".
  3949. (Ravi Gummadi via amareshwari)
  3950. MAPREDUCE-1958. The MapReduce part corresponding to the HADOOP-6873.
  3951. (Boris Shkolnik & Owen O'Malley via ddas)
  3952. MAPREDUCE-1900. TaskTracker and JobTracker closes FileSystems, opened on
  3953. behalf of users that it no longer requires. (Kan Zhang and ddas via ddas)
  3954. MAPREDUCE-1992. Fixes a problem to do with bringing up the JobTracker in
  3955. unsecure mode. (Kan Zhang via ddas)
  3956. MAPREDUCE-1999. Fixes ClientProtocol to use the correct
  3957. DelegationTokenSelector. (Jitendra Pandey via ddas)
  3958. MAPREDUCE-1780. AccessControlList.toString() is used for serialization of
  3959. ACL in JobStatus.java. (Ravi Gummadi via vinodkv)
  3960. MAPREDUCE-1961. Fix ConcurrentModificationException in Gridmix during
  3961. shutdown. (Hong Tang via cdouglas)
  3962. MAPREDUCE-2000. Fix parsing of JobHistory lines in Rumen when quotes are
  3963. escaped. (Hong Tang via cdouglas)
  3964. MAPREDUCE-2022. Fixes compilation errors in TestSubmitJob. (amareshwari)
  3965. MAPREDUCE-1670. RAID policies should not scan their own destination path.
  3966. (Ramkumar Vadali via dhruba)
  3967. MAPREDUCE-1668. RaidNode Hars a directory only if all its parity files
  3968. have been created. (Ramkumar Vadali via dhruba)
  3969. MAPREDUCE-2021. Fixes duplicate hostnames in CombineFileInputFormat's
  3970. split locations. (amareshwari)
  3971. MAPREDUCE-1375. Fixes flaky test TestFileArgs. (Todd Lipcon via
  3972. amareshwari)
  3973. MAPREDUCE-2023. TestDFSIO should not stop reading if curSize != bufferSize.
  3974. (Hong Tang via szetszwo)
  3975. MAPREDUCE-2031. Fixes test failures TestTaskLauncher and
  3976. TestTaskTrackerLocalization. (Ravi Gummadi via amareshwari)
  3977. MAPREDUCE-2046. Fixes CombineFileInputFormat to allow splits with size
  3978. less than DFS block size. (dhruba borthakur via amareshwari)
  3979. MAPREDUCE-1975. Fixes unnecessary InterruptedException log in gridmix.
  3980. (Ravi Gummadi via amareshwari)
  3981. MAPREDUCE-1597. Fixes CombineFileInputFormat to work with non-splittable
  3982. files. (amareshwari)
  3983. MAPREDUCE-2032. Fixes TestJobCleanup to cleanup test directory in
  3984. tearDown. (Dick King via amareshwari)
  3985. MAPREDUCE-1979. Fixes "Output directory already exists" error in gridmix
  3986. when gridmix.output.directory is not defined. (Ravi Gummadi via
  3987. amareshwari)
  3988. MAPREDUCE-1918. Adds documentation to Rumen. (Amar Kamat via amareshwari)
  3989. MAPREDUCE-2078. Fixes TraceBuilder to generate traces when a globbed job
  3990. history path is given. (Amar Kamat via amareshwari)
  3991. MAPREDUCE-1989. Fixes error message in gridmix when user resolver is set
  3992. and no user list is given. (Ravi Gummadi via amareshwari)
  3993. MAPREDUCE-2067. Distinct minicluster services (e.g. NN and JT) overwrite
  3994. each other's service policies. (Aaron T. Myers via tomwhite)
  3995. MAPREDUCE-2029. DistributedRaidFileSystem removes itself from FileSystem
  3996. cache when it is closed. (Ramkumar Vadali via dhruba)
  3997. MAPREDUCE-1816. HAR files used for RAID parity-bite have configurable
  3998. partfile size. (Ramkumar Vadali via dhruba)
  3999. MAPREDUCE-2082. Fixes Pipes to create the jobtoken file in the right
  4000. place. (Jitendra Pandey via ddas)
  4001. MAPREDUCE-2095. Fixes Gridmix to run from compressed traces. (Ranjit
  4002. Mathew via amareshwari)
  4003. MAPREDUCE-1908. DistributedRaidFileSystem now handles ChecksumException
  4004. correctly. (Ramkumar Vadali via schen)
  4005. MAPREDUCE-2126. JobQueueJobInProgressListener's javadoc is inconsistent
  4006. with source code. (Jingguo Yao via tomwhite)
  4007. MAPREDUCE-2143. HarFileSystem is able to handle spaces in pathnames.
  4008. (Ramkumar Vadali via dhruba)
  4009. MAPREDUCE-1867. Remove unused methods in
  4010. org.apache.hadoop.streaming.StreamUtil. (amareshwari via tomwhite)
  4011. MAPREDUCE-2146. Raid does not affect access time of a source file.
  4012. (Ramkumar Vadali via dhruba)
  4013. MAPREDUCE-2150. RaidNode periodically fixes corrupt blocks. (Ramkumar Vadali via
  4014. schen)
  4015. MAPREDUCE-2099. RaidNode recreates outdated parity HARs. (Ramkumar Vadali
  4016. via schen)
  4017. MAPREDUCE-2173. Fix race condition in TestBlockFixer that was
  4018. causing intermittent failure (Patrick Kling via dhruba)
  4019. MAPREDUCE-2142. Refactor RaidNode so that the map-reduce component is
  4020. clearly separated out. (Patrick Kling via dhruba)
  4021. MAPREDUCE-2179. Fix RaidBlockSender compilation failure. (Ramkumar Vadali
  4022. via schen)
  4023. MAPREDUCE-2034. TestSubmitJob triggers NPE instead of permissions error.
  4024. (Todd Lipcon via tomwhite)
  4025. MAPREDUCE-2195. New property for local conf directory in
  4026. system-test-mapreduce.xml file. (cos)
  4027. MAPREDUCE-1783. FairScheduler initializes tasks only when the job can be
  4028. run. (Ramkumar Vadali via schen)
  4029. MAPREDUCE-2224. Fix synchronization bugs in JvmManager. (todd)
  4030. MAPREDUCE-714. JobConf.findContainingJar unescapes unnecessarily on linux (todd)
  4031. MAPREDUCE-2096. Secure local filesystem IO from symlink vulnerabilities (todd)
  4032. MAPREDUCE-2234. If Localizer can't create task log directory, it should fail
  4033. on the spot. (todd)
  4034. MAPREDUCE-2219. JobTracker should not try to remove mapred.system.dir
  4035. during startup. (todd)
  4036. MAPREDUCE-2207. Task-cleanup task should not be scheduled on the node that
  4037. the task just failed. (Liyin Liang via schen)
  4038. MAPREDUCE-2084. Remove deprecate annotation for package file. The package
  4039. classes themselves are already deprecated. This removes an Eclipse error.
  4040. (tomwhite via nigel)
  4041. MAPREDUCE-2248. DistributedRaidFileSystem should unraid only the corrupt
  4042. block (Ramkumar Vadali via schen)
  4043. MAPREDUCE-1085. For tasks, "ulimit -v -1" is being run when user doesn't
  4044. specify a ulimit (todd)
  4045. MAPREDUCE-2282. Fix TestMRServerPorts for the changes in
  4046. TestHDFSServerPorts. (shv via szetszwo)
  4047. MAPREDUCE-2238. Fix permissions handling to avoid leaving undeletable
  4048. directories in local dirs. (todd)
  4049. MAPREDUCE-2277. TestCapacitySchedulerWithJobTracker needs to wait for jobs
  4050. to complete before testing status. (todd)
  4051. MAPREDUCE-2253. Servlets should specify content type (todd)
  4052. MAPREDUCE-2283. Add timeout for Raid Tests (Ramkumar Vadali via schen)
  4053. MAPREDUCE-1754. Replace mapred.persmissions.supergroup with an
  4054. acl : mapreduce.cluster.administrators (Amareshwari Sriramadasu via shv)
  4055. MAPREDUCE-2256. FairScheduler fairshare preemption from multiple pools may
  4056. preempt all tasks from one pool causing that pool to go below fairshare.
  4057. (Priyo Mustafi via shv)
  4058. MAPREDUCE-2281. MR part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  4059. MAPREDUCE-2200. TestUmbilicalProtocolWithJobToken is failing without Krb
  4060. evironment: needs to be conditional. (cos)
  4061. MAPREDUCE-2077. Resolve name clash in the deprecated
  4062. o.a.h.util.MemoryCalculatorPlugin (Luke Lu via shv)
  4063. MAPREDUCE-2188. The new API MultithreadedMapper doesn't initialize
  4064. RecordReader. (Owen O'Malley via shv)
  4065. MAPREDUCE-1915. Fix IndexOutOfBoundsException in IndexCache.
  4066. (Priyo Mustafi via shv)
  4067. MAPREDUCE-1974. Fix multiple preemtions of the same task in FairScheduler.
  4068. (Scott Chen via shv)
  4069. MAPREDUCE-2304. Fix TestMRCLI to allow hostname with a hyphen (-).
  4070. (Priyo Mustafi via shv)
  4071. MAPREDUCE-1825. jobqueue_details.jsp and FairSchedulerServelet should not
  4072. call finishedMaps and finishedReduces when job is not initialized.
  4073. (Scott Chen via shv)
  4074. MAPREDUCE-2285. MiniMRCluster does not start after ant test-patch
  4075. (todd)
  4076. MAPREDUCE-2315. javadoc is failing in nightly build (todd)
  4077. MAPREDUCE-2054. Hierarchical queue implementation broke dynamic queue
  4078. addition in Dynamic Scheduler. (Thomas Sandholm via tomwhite)
  4079. MAPREDUCE-2272. Job ACL file should not be executable
  4080. (Harsh J Chouraria via todd)
  4081. MAPREDUCE-2241. ClusterWithLinuxTaskController should accept relative path
  4082. on the command line. (todd)
  4083. MAPREDUCE-2251. Remove unused mapreduce.job.userhistorylocation config.
  4084. (Harsh J Chouraria via todd)
  4085. MAPREDUCE-2284. TestLocalRunner.testMultiMaps times out (todd)
  4086. MAPREDUCE-2336. Tool-related packages should be in the Tool javadoc group.
  4087. (tomwhite)
  4088. MAPREDUCE-2394. JUnit output format doesn't propagate into raid contrib
  4089. build. (todd)
  4090. MAPREDUCE-2392. TaskTracker shutdown in the tests sometimes take 60s.
  4091. (tomwhite)
  4092. MAPREDUCE-2437. SLive uses only part* files to generating the final report.
  4093. (shv)
  4094. MAPREDUCE-2428. start-mapred.sh script fails if HADOOP_HOME is not set.
  4095. (tomwhite via eli)
  4096. MAPREDUCE-2445. Fix TestMiniMRWithDFSWithDistinctUsers to be a valid test.
  4097. (todd)
  4098. MAPREDUCE-2457. Job submission should inject group.name on the JobTracker
  4099. (Alejandro Abdelnur via todd)
  4100. MAPREDUCE-2472. Extra whitespace in mapred.child.java.opts breaks JVM
  4101. initialization. (Aaron T. Myers via todd)
  4102. MAPREDUCE-2222. Ivy resolve force mode should be turned off by default.
  4103. (Luke Lu via tomwhite)
  4104. MAPREDUCE-2486. Incorrect snapshot dependency published in .pom files
  4105. (todd)
  4106. MAPREDUCE-2327. MapTask doesn't need to put username information in
  4107. SpillRecord. (todd via tomwhite)
  4108. MAPREDUCE-2515. MapReduce code references some deprecated options
  4109. (Ari Rabkin via todd)
  4110. MAPREDUCE-2487. ChainReducer uses MAPPER_BY_VALUE instead of
  4111. REDUCER_BY_VALUE. (Devaraj K via todd)
  4112. MAPREDUCE-2185. Fix infinite loop at creating splits using
  4113. CombineFileInputFormat. (Ramkumar Vadali via schen)
  4114. MAPREDUCE-2571. CombineFileInputFormat.getSplits throws a
  4115. java.lang.ArrayStoreException. (Bochun Bai via todd)
  4116. MAPREDUCE-2767. Remove Linux task-controller. (Milind Bhandarkar via shv)
  4117. MAPREDUCE-2991. queueinfo.jsp fails to show queue status for Capacity
  4118. scheduler if queue names contain special symbols. (Priyo Mustafi via shv)
  4119. MAPREDUCE-2779. JobSplitWriter.java can't handle large job.split file.
  4120. (Ming Ma via shv)
  4121. MAPREDUCE-2531. Fixed jobcontrol to downgrade JobID. (Robert Evans via
  4122. acmurthy)
  4123. MAPREDUCE-3139. SlivePartitioner generates negative partitions. (jghoman)
  4124. Release 0.21.1 - Unreleased
  4125. NEW FEATURES
  4126. MAPREDUCE-2040. Forrest Documentation for Dynamic Priority Scheduler.
  4127. (Thomas Sandholm via tomwhite)
  4128. BUG FIXES
  4129. MAPREDUCE-1897. trunk build broken on compile-mapred-test (cos)
  4130. MAPREDUCE-1280. Update Eclipse plugin to the new eclipse.jdt API.
  4131. (Alex Kozlov via szetszwo)
  4132. MAPREDUCE-1984. herriot TestCluster fails because exclusion is not there
  4133. (Balaji Rajagopalan via cos)
  4134. MAPREDUCE-2090. Clover build doesn't generate per-test coverage. (cos)
  4135. MAPREDUCE-2134. ant binary-system is broken in mapreduce project. (cos)
  4136. MAPREDUCE-1905. Fixes Context.setStatus() and progress() apis.
  4137. (amareshwari)
  4138. MAPREDUCE-1809. Ant build changes for Streaming system tests in contrib
  4139. projects. (Vinay Kumar Thota via amareshwari)
  4140. MAPREDUCE-2223. TestMRCLI might fail on Ubuntu with default /etc/hosts
  4141. (cos)
  4142. MAPREDUCE-2228. Remove java5 dependencies from build. (cos)
  4143. MAPREDUCE-1929. Allow artifacts to be published to the staging Apache Nexus
  4144. Maven Repository. (tomwhite)
  4145. MAPREDUCE-2317. Fix a NPE in HadoopArchives. (Devaraj K via szetszwo)
  4146. MAPREDUCE-2127. mapreduce trunk builds are filing on hudson.
  4147. (Bruno Mahé via eli)
  4148. Release 0.21.0 - 2010-08-13
  4149. INCOMPATIBLE CHANGES
  4150. MAPREDUCE-516. Fix the starvation problem in the Capacity Scheduler
  4151. when running High RAM Jobs. (Arun Murthy via yhemanth)
  4152. MAPREDUCE-358. Change org.apache.hadoop.examples. AggregateWordCount
  4153. and org.apache.hadoop.examples.AggregateWordHistogram to use new
  4154. mapreduce api. (Amareshwari Sriramadasu via sharad)
  4155. MAPREDUCE-245. Change Job and jobcontrol classes to use the List interface
  4156. rather than ArrayList in APIs. (Tom White via cdouglas)
  4157. MAPREDUCE-766. Enhanced list-blacklisted-trackers to display reasons
  4158. for blacklisting a node. (Sreekanth Ramakrishnan via yhemanth)
  4159. MAPREDUCE-817. Add a cache for retired jobs with minimal job info and
  4160. provide a way to access history file url. (sharad)
  4161. MAPREDUCE-711. Moved Distributed Cache from Common to Map/Reduce
  4162. project. (Vinod Kumar Vavilapalli via yhemanth)
  4163. MAPREDUCE-895. Per the contract elucidated in HADOOP-6201, throw
  4164. FileNotFoundException from FileSystem::listStatus rather than returning
  4165. null. (Jakob Homan via cdouglas)
  4166. MAPREDUCE-479. Provide full task id to map output servlet rather than the
  4167. reduce id, only. (Jiaqi Tan via cdouglas)
  4168. MAPREDUCE-873. Simplify job recovery. Incomplete jobs are resubmitted on
  4169. jobtracker restart. Removes a public constructor in JobInProgress. (sharad)
  4170. HADOOP-6230. Moved process tree and memory calculator related classes from
  4171. Common to Map/Reduce. (Vinod Kumar Vavilapalli via yhemanth)
  4172. MAPREDUCE-157. Refactor job history APIs and change the history format to
  4173. JSON. (Jothi Padmanabhan via sharad)
  4174. MAPREDUCE-849. Rename configuration properties. (Amareshwari Sriramadasu
  4175. via sharad)
  4176. MAPREDUCE-1287. Only call the partitioner with more than one reducer.
  4177. (cdouglas)
  4178. MAPREDUCE-1385. Use the new UserGroupInformation from HADOOP-6299.
  4179. (ddas via omalley)
  4180. MAPREDUCE-1493. Authorization for job-history pages. (vinodkv)
  4181. MAPREDUCE-1607. Task controller may not set permissions for a
  4182. task cleanup attempt's log directory (Amareshwari Sriramadasu via vinodkv)
  4183. MAPREDUCE-1683. Remove JNI calls from ClusterStatus cstr. (Arun Murthy and
  4184. Luke Lu via cdouglas)
  4185. MAPREDUCE-1855. Makes the refresh methods (for groups and proxy users)
  4186. independent of the client side configuration. (Boris Shkolnik via ddas)
  4187. NEW FEATURES
  4188. MAPREDUCE-1774. Large-scale Automated Framework (Sharad Agarwal, Sreekanth
  4189. Ramakrishnan, Konstantin Boudnik, at all via cos)
  4190. MAPREDUCE-706. Support for FIFO pools in the fair scheduler.
  4191. (Matei Zaharia)
  4192. MAPREDUCE-546. Provide sample fair scheduler config file in conf/ and use
  4193. it by default if no other config file is specified. (Matei Zaharia)
  4194. MAPREDUCE-551. Preemption support in the Fair Scheduler. (Matei Zaharia)
  4195. MAPREDUCE-567. Add a new example MR that always fails. (Philip Zeyliger
  4196. via tomwhite)
  4197. MAPREDUCE-211. Provides ability to run a health check script on the
  4198. tasktracker nodes and blacklist nodes if they are unhealthy.
  4199. (Sreekanth Ramakrishnan via yhemanth)
  4200. MAPREDUCE-637. Add an example, distbbp, which able to compute the n th bit
  4201. of Pi for some large n. (szetszwo)
  4202. MAPREDUCE-532. Provide a way to limit the number of used slots
  4203. per queue in the capacity scheduler.
  4204. (Rahul Kumar Singh via yhemanth)
  4205. MAPREDUCE-467. Provide ability to collect statistics about total tasks
  4206. and succeeded tasks in different time windows. (sharad)
  4207. MAPREDUCE-740. Log a job-summary at the end of a job, while allowing it
  4208. to be configured to use a custom appender if desired. (acmurthy)
  4209. MAPREDUCE-814. Provide a way to configure completed job history files
  4210. to be on HDFS. (sharad)
  4211. MAPREDUCE-800. MRUnit should support the new API. (Aaron Kimball via
  4212. tomwhite)
  4213. MAPREDUCE-798. MRUnit should be able to test a succession of MapReduce
  4214. passes. (Aaron Kimball via tomwhite)
  4215. MAPREDUCE-768. Provide an option to dump jobtracker configuration in JSON
  4216. format to standard output. (V.V.Chaitanya Krishna via yhemanth)
  4217. MAPREDUCE-824. Add support for a hierarchy of queues in the capacity
  4218. scheduler. (Rahul Kumar Singh via yhemanth)
  4219. MAPREDUCE-751. Add Rumen, a tool for extracting statistics from job tracker
  4220. logs and generating job traces for simulation and analysis. (Dick King via
  4221. cdouglas)
  4222. MAPREDUCE-830. Add support for splittable compression to TextInputFormats.
  4223. (Abdul Qadeer via cdouglas)
  4224. MAPREDUCE-861. Add support for hierarchical queues in the Map/Reduce
  4225. framework. (Rahul Kumar Singh via yhemanth)
  4226. MAPREDUCE-776. Add Gridmix, a benchmark processing Rumen traces to simulate
  4227. a measured mix of jobs on a cluster. (cdouglas)
  4228. MAPREDUCE-862. Enhance JobTracker UI to display hierarchical queues.
  4229. (V.V.Chaitanya Krishna via yhemanth)
  4230. MAPREDUCE-777. Brand new apis to track and query jobs as a
  4231. replacement for JobClient. (Amareshwari Sriramadasu via acmurthy)
  4232. MAPREDUCE-775. Add native and streaming support for Vertica as an input
  4233. or output format taking advantage of parallel read and write properties of
  4234. the DBMS. (Omer Trajman via ddas)
  4235. MAPREDUCE-679. XML-based metrics as JSP servlet for JobTracker.
  4236. (Aaron Kimball via tomwhite)
  4237. MAPREDUCE-980. Modify JobHistory to use Avro for serialization. (cutting)
  4238. MAPREDUCE-728. Add Mumak, a Hadoop map/reduce simulator. (Arun C Murthy,
  4239. Tamas Sarlos, Anirban Dasgupta, Guanying Wang, and Hong Tang via cdouglas)
  4240. MAPREDUCE-1383. Automates fetching of delegation tokens in File*Formats
  4241. Distributed Cache and Distcp. Also, provides a config
  4242. mapreduce.job.hdfs-servers that the jobs can populate with a comma
  4243. separated list of namenodes. The job client automatically fetches
  4244. delegation tokens from those namenodes. (Boris Shkolnik via ddas)
  4245. MAPREDUCE-698. Per-pool task limits for the fair scheduler.
  4246. (Kevin Peterson via matei)
  4247. MAPREDUCE-1026. Does mutual authentication of the shuffle
  4248. transfers using a shared JobTracker generated key.
  4249. (Boris Shkolnik via ddas)
  4250. MAPREDUCE-744. Introduces the notion of a public distributed cache.
  4251. (Devaraj Das)
  4252. MAPREDUCE-1338. Introduces the notion of token cache using which
  4253. tokens and secrets can be sent by the Job client to the JobTracker.
  4254. (Boris Shkolnik via ddas)
  4255. HDFS-503. This patch implements an optional layer over HDFS that
  4256. implements offline erasure-coding. It can be used to reduce the
  4257. total storage requirements of HDFS. (dhruba)
  4258. MAPREDUCE-1432. Adds hooks in the jobtracker and tasktracker
  4259. for loading the tokens in the user's ugi. This is required
  4260. for the copying of files from the hdfs. (ddas)
  4261. MAPREDUCE-1335. Adds SASL Kerberos/Digest authentication in MapReduce.
  4262. (Kan Zhang via ddas)
  4263. MAPREDUCE-1464. Makes a compatible change in JobTokenIdentifier to
  4264. account for HADOOP-6510. (Jitendra Nath Pandey via ddas)
  4265. MAPREDUCE-1433. Add a delegation token for MapReduce. (omalley)
  4266. MAPREDUCE-1307. Introduces the Job level ACLs feature.
  4267. (Vinod Kumar Vavilapalli via ddas)
  4268. MAPREDUCE-1430. JobTracker automatically renews delegation tokens for jobs.
  4269. (Boris Shkolnik via ddas)
  4270. MAPREDUCE-1455. Introduces job-level authorization for mapreduce servlets.
  4271. (Ravi Gummadi via vinodkv)
  4272. IMPROVEMENTS
  4273. MAPREDUCE-463. Makes job setup and cleanup tasks as optional.
  4274. (Amareshwari Sriramadasu via sharad)
  4275. MAPREDUCE-502. Allow jobtracker to be configured with zero completed jobs
  4276. in memory. (Amar Kamat via sharad)
  4277. MAPREDUCE-416. Moves the history file to a "done" folder whenever a job
  4278. completes. (Amar Kamat via ddas)
  4279. MAPREDUCE-646. Increase srcfilelist replication number in dictcp job.
  4280. (Ravi Gummadi via szetszwo)
  4281. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  4282. build #12. (Giridharan Kesavan)
  4283. MAPREDUCE-642. A option to distcp that allows preserving the full
  4284. source path of a file in the specified destination directory.
  4285. (Rodrigo Schmidt via dhruba)
  4286. MAPREDUCE-686. Move TestSpeculativeExecution.Fake* into a separate class
  4287. so that it can be used by other tests. (Jothi Padmanabhan via sharad)
  4288. MAPREDUCE-625. Modify TestTaskLimits to improve execution time.
  4289. (Jothi Padmanabhan via sharad)
  4290. MAPREDUCE-465. Deprecate o.a.h.mapred.lib.MultithreadedMapRunner and add
  4291. test for o.a.h.mapreduce.lib.MultithreadedMapper.
  4292. (Amareshwari Sriramadasu via sharad)
  4293. MAPREDUCE-701. Improves the runtime of the TestRackAwareTaskPlacement
  4294. by making it a unit test. (Jothi Padmanabhan via ddas)
  4295. MAPREDUCE-371. Change KeyFieldBasedComparator and KeyFieldBasedPartitioner
  4296. to use new api. (Amareshwari Sriramadasu via sharad)
  4297. MAPREDUCE-623. Resolve javac warnings in mapreduce. (Jothi Padmanabhan
  4298. via sharad)
  4299. MAPREDUCE-655. Change KeyValueLineRecordReader and KeyValueTextInputFormat
  4300. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  4301. MAPREDUCE-632. Merge TestCustomOutputCommitter with
  4302. TestCommandLineJobSubmission. (Jothi Padmanabhan via sharad)
  4303. MAPREDUCE-627. Improves execution time of TestTrackerBlacklistAcrossJobs.
  4304. (Jothi Padmanabhan via ddas)
  4305. MAPREDUCE-630. Improves execution time of TestKillCompletedJob.
  4306. (Jothi Padmanabhan via ddas)
  4307. MAPREDUCE-626. Improves the execution time of TestLostTracker.
  4308. (Jothi Padmanabhan via ddas)
  4309. MAPREDUCE-353. Makes the shuffle read and connection timeouts
  4310. configurable. (Ravi Gummadi via ddas)
  4311. MAPREDUCE-739. Allow relative paths to be created in archives. (Mahadev
  4312. Konar via cdouglas)
  4313. MAPREDUCE-772. Merge HADOOP-4010 changes to LineRecordReader into mapreduce
  4314. package. (Abdul Qadeer via cdouglas)
  4315. MAPREDUCE-785. Separate sub-test of TestReduceFetch to be included in
  4316. MR-670. (Jothi Padmanabhan via cdouglas)
  4317. MAPREDUCE-784. Modify TestUserDefinedCounters to use LocalJobRunner
  4318. instead of MiniMR. (Jothi Padmanabhan via sharad)
  4319. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  4320. (gkesavan)
  4321. MAPREDUCE-782. Use PureJavaCrc32 in SpillRecord. (Todd Lipcon via
  4322. szetszwo)
  4323. MAPREDUCE-369. Change org.apache.hadoop.mapred.lib.MultipleInputs to
  4324. use new api. (Amareshwari Sriramadasu via sharad)
  4325. MAPREDUCE-373. Change org.apache.hadoop.mapred.lib.FieldSelectionMapReduce
  4326. to use new api. (Amareshwari Sriramadasu via sharad)
  4327. MAPREDUCE-628. Improves the execution time of TestJobInProgress.
  4328. (Jothi Padmanabhan via ddas)
  4329. MAPREDUCE-793. Creates a new test that consolidates a few tests to
  4330. include in the commit-test list. (Jothi Padmanabhan via ddas)
  4331. MAPREDUCE-797. Adds combiner support to MRUnit MapReduceDriver.
  4332. (Aaron Kimball via johan)
  4333. MAPREDUCE-656. Change org.apache.hadoop.mapred.SequenceFile* classes
  4334. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  4335. MAPREDUCE-670. Creates ant target for 10 mins patch test build.
  4336. (Jothi Padmanabhan via gkesavan)
  4337. MAPREDUCE-375. Change org.apache.hadoop.mapred.lib.NLineInputFormat
  4338. and org.apache.hadoop.mapred.MapFileOutputFormat to use new api.
  4339. (Amareshwari Sriramadasu via ddas)
  4340. MAPREDUCE-779. Added node health failure counts into
  4341. JobTrackerStatistics. (Sreekanth Ramakrishnan via yhemanth)
  4342. MAPREDUCE-842. Setup secure permissions for localized job files,
  4343. intermediate outputs and log files on tasktrackers.
  4344. (Vinod Kumar Vavilapalli via yhemanth)
  4345. MAPREDUCE-478. Allow map and reduce jvm parameters, environment variables
  4346. and ulimit to be set separately.
  4347. Configuration changes:
  4348. add mapred.map.child.java.opts
  4349. add mapred.reduce.child.java.opts
  4350. add mapred.map.child.env
  4351. add mapred.reduce.child.ulimit
  4352. add mapred.map.child.env
  4353. add mapred.reduce.child.ulimit
  4354. deprecated mapred.child.java.opts
  4355. deprecated mapred.child.env
  4356. deprecated mapred.child.ulimit
  4357. (acmurthy)
  4358. MAPREDUCE-767. Remove the dependence on the CLI 2.0 snapshot.
  4359. (Amar Kamat via omalley)
  4360. MAPREDUCE-712. Minor efficiency tweaks to RandomTextWriter. (cdouglas)
  4361. MAPREDUCE-870. Remove the job retire thread and the associated
  4362. config parameters. (sharad)
  4363. MAPREDUCE-874. Rename the PiEstimator example to QuasiMonteCarlo.
  4364. (szetszwo)
  4365. MAPREDUCE-336. Allow logging level of map/reduce tasks to be configurable.
  4366. Configuration changes:
  4367. add mapred.map.child.log.level
  4368. add mapred.reduce.child.log.level
  4369. (acmurthy)
  4370. MAPREDUCE-355. Update mapred.join package to use the new API. (Amareshwari
  4371. Sriramadasu via cdouglas)
  4372. HADOOP-6184. Updated hadoop common and test jars to get the new API
  4373. in Configuration for dumping in JSON format from Hudson trunk build #68.
  4374. (yhemanth)
  4375. MAPREDUCE-476. Extend DistributedCache to work locally (LocalJobRunner).
  4376. (Philip Zeyliger via tomwhite)
  4377. MAPREDUCE-825. JobClient completion poll interval of 5s causes slow tests
  4378. in local mode. (Aaron Kimball via tomwhite)
  4379. MAPREDUCE-910. Support counters in MRUnit. (Aaron Kimball via cdouglas)
  4380. MAPREDUCE-788. Update gridmix2 to use the new API (Amareshwari Sriramadasu
  4381. via cdouglas)
  4382. MAPREDUCE-875. Make DBRecordReader execute queries lazily. (Aaron Kimball
  4383. via enis)
  4384. MAPREDUCE-318. Modularizes the shuffle code. (Jothi Padmanabhan and
  4385. Arun Murthy via ddas)
  4386. MAPREDUCE-936. Allow a load difference for fairshare scheduler.
  4387. (Zheng Shao via dhruba)
  4388. MAPREDUCE-370. Update MultipleOutputs to use the API, merge funcitonality
  4389. of MultipleOutputFormat. (Amareshwari Sriramadasu via cdouglas)
  4390. MAPREDUCE-898. Changes DistributedCache to use the new API.
  4391. (Amareshwari Sriramadasu via ddas)
  4392. MAPREDUCE-144. Includes dump of the process tree in task diagnostics when
  4393. a task is killed due to exceeding memory limits.
  4394. (Vinod Kumar Vavilapalli via yhemanth)
  4395. MAPREDUCE-945. Modifies MRBench and TestMapRed to use ToolRunner so that
  4396. options such as queue name can be passed via command line.
  4397. (Sreekanth Ramakrishnan via yhemanth)
  4398. MAPREDUCE-963. Deprecate o.a.h.mapred.FileAlreadyExistsException and
  4399. replace it with o.a.h.fs.FileAlreadyExistsException. (Boris Shkolnik
  4400. via szetszwo)
  4401. MAPREDUCE-960. Remove an unnecessary intermediate copy and obsolete API
  4402. from KeyValueLineRecordReader. (cdouglas)
  4403. MAPREDUCE-930. Modify Rumen to resolve paths in the canonical way, rather
  4404. than defaulting to the local filesystem. (cdouglas)
  4405. MAPREDUCE-944. Extend the LoadManager API of the fair-share scheduler
  4406. to support regulating tasks for a job based on resources currently in use
  4407. by that job. (dhruba)
  4408. MAPREDUCE-973. Move FailJob and SleepJob from examples to test. (cdouglas
  4409. via omalley)
  4410. MAPREDUCE-966. Modify Rumen to clean up interfaces and simplify integration
  4411. with other tools. (Hong Tang via cdouglas)
  4412. MAPREDUCE-856. Setup secure permissions for distributed cache files.
  4413. (Vinod Kumar Vavilapalli via yhemanth)
  4414. MAPREDUCE-885. More efficient SQL queries for DBInputFormat. (Aaron Kimball
  4415. via enis)
  4416. MAPREDUCE-284. Enables ipc.client.tcpnodelay in Tasktracker's Child.
  4417. (Ravi Gummadi via sharad)
  4418. MAPREDUCE-916. Split the documentation to match the project split.
  4419. (Corinne Chandel via omalley)
  4420. MAPREDUCE-649. Validate a copy by comparing the source and destination
  4421. checksums in distcp. Also adds an intra-task retry mechanism for errors
  4422. detected during the copy. (Ravi Gummadi via cdouglas)
  4423. MAPREDUCE-654. Add a -dryrun option to distcp printing a summary of the
  4424. file data to be copied, without actually performing the copy. (Ravi Gummadi
  4425. via cdouglas)
  4426. MAPREDUCE-664. Display the number of files deleted by distcp when the
  4427. -delete option is specified. (Ravi Gummadi via cdouglas)
  4428. MAPREDUCE-781. Let the name of distcp jobs be configurable. (Venkatesh S
  4429. via cdouglas)
  4430. MAPREDUCE-975. Add an API in job client to get the history file url for
  4431. a given job id. (sharad)
  4432. MAPREDUCE-905. Add Eclipse launch tasks for MapReduce. (Philip Zeyliger
  4433. via tomwhite)
  4434. MAPREDUCE-277. Makes job history counters available on the job history
  4435. viewers. (Jothi Padmanabhan via ddas)
  4436. MAPREDUCE-893. Provides an ability to refresh queue configuration
  4437. without restarting the JobTracker.
  4438. (Vinod Kumar Vavilapalli and Rahul Kumar Singh via yhemanth)
  4439. MAPREDUCE-1011. Add build.properties to svn and git ignore. (omalley)
  4440. MAPREDUCE-954. Change Map-Reduce context objects to be interfaces.
  4441. (acmurthy)
  4442. MAPREDUCE-639. Change Terasort example to reflect the 2009 updates.
  4443. (omalley)
  4444. MAPREDUCE-1063. Document gridmix benchmark. (cdouglas)
  4445. MAPREDUCE-931. Use built-in interpolation classes for making up task
  4446. runtimes in Rumen. (Dick King via cdouglas)
  4447. MAPREDUCE-1012. Mark Context interfaces as public evolving. (Tom White via
  4448. cdouglas)
  4449. MAPREDUCE-971. Document use of distcp when copying to s3, managing timeouts
  4450. in particular. (Aaron Kimball via cdouglas)
  4451. HDFS-663. DFSIO for append. (shv)
  4452. HDFS-641. Move all of the components that depend on map/reduce to
  4453. map/reduce. (omalley)
  4454. HADOOP-5107. Use Maven ant tasks to publish artifacts. (Giridharan Kesavan
  4455. via omalley)
  4456. MAPREDUCE-1229. Allow customization of job submission policy in Mumak.
  4457. (Hong Tang via cdouglas)
  4458. MAPREDUCE-1317. Reduce the memory footprint of Rumen objects by interning
  4459. host Strings. (Hong Tang via cdouglas)
  4460. MAPREDUCE-1097. Add support for Vertica 3.5 to its contrib module. (Omer
  4461. Trajman via cdouglas)
  4462. MAPREDUCE-1627. HadoopArchives should not uses a method in DistCp.
  4463. (szetszwo)
  4464. MAPREDUCE-1198. Alternatively schedule different types of tasks in
  4465. fair share scheduler. (Scott Chen via matei)
  4466. MAPREDUCE-707. Provide a jobconf property for explicitly assigning a job to
  4467. a pool in the Fair Scheduler. (Alan Heirich via matei)
  4468. MAPREDUCE-947. Added commitJob and abortJob apis to OutputCommitter.
  4469. Enhanced FileOutputCommitter to create a _SUCCESS file for successful
  4470. jobs. (Amar Kamat & Jothi Padmanabhan via acmurthy)
  4471. MAPREDUCE-1103. Added more metrics to Jobtracker. (sharad)
  4472. MAPREDUCE-1048. Add occupied/reserved slot usage summary on jobtracker UI.
  4473. (Amareshwari Sriramadasu and Hemanth Yamijala via sharad)
  4474. MAPREDUCE-1090. Modified log statement in TaskMemoryManagerThread to
  4475. include task attempt id. (yhemanth)
  4476. MAPREDUCE-1189. Reduce ivy console output to ovservable level (cos)
  4477. MAPREDUCE-1167. ProcfsBasedProcessTree collects rss memory information.
  4478. (Scott Chen via dhruba)
  4479. MAPREDUCE-1231. Added a new DistCp option, -skipcrccheck, so that the CRC
  4480. check during setup can be skipped. (Jothi Padmanabhan via szetszwo)
  4481. MAPREDUCE-1190. Add package documentation for BBP example.
  4482. (Tsz Wo (Nicholas) Sze via cdouglas)
  4483. MAPREDUCE-1119. When tasks fail to report status, show tasks's stack dump
  4484. before killing. (Aaron Kimball via tomwhite)
  4485. MAPREDUCE-1185. Redirect running job url to history url if job is already
  4486. retired. (Amareshwari Sriramadasu and Sharad Agarwal via sharad)
  4487. MAPREDUCE-1050. Introduce a mock object testing framework. (tomwhite)
  4488. MAPREDUCE-1084. Implementing aspects development and fault injeciton
  4489. framework for MapReduce. (Sreekanth Ramakrishnan via cos)
  4490. MAPREDUCE-1209. Move common specific part of the test TestReflectionUtils
  4491. out of mapred into common. (Todd Lipcon via tomwhite)
  4492. MAPREDUCE-967. TaskTracker does not need to fully unjar job jars.
  4493. (Todd Lipcon via tomwhite)
  4494. MAPREDUCE-1083. Changes in MapReduce so that group information of users
  4495. can be refreshed in the JobTracker via command line.
  4496. (Boris Shkolnik via ddas)
  4497. MAPREDUCE-181. Changes the job submission process to be secure.
  4498. (Devaraj Das)
  4499. MAPREDUCE-1250. Refactors the JobToken to use Common's Token interface.
  4500. (Kan Zhang via ddas)
  4501. MAPREDUCE-896. Enhance tasktracker to cleanup files that might have
  4502. been created by user tasks with non-writable permissions.
  4503. (Ravi Gummadi via yhemanth)
  4504. MAPREDUCE-372. Change org.apache.hadoop.mapred.lib.ChainMapper/Reducer
  4505. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  4506. MAPREDUCE-1295. Add a tool in Rumen for folding and manipulating job
  4507. traces. (Dick King via cdouglas)
  4508. MAPREDUCE-1302. TrackerDistributedCacheManager deletes file
  4509. asynchronously, thus reducing task initialization delays.
  4510. (Zheng Shao via dhruba)
  4511. MAPREDUCE-1218. TaskTrackers send cpu and memory usage of
  4512. node to JobTracker. (Scott Chen via dhruba)
  4513. MAPREDUCE-847. Fix Releaseaudit warning count to zero
  4514. (Giridharan Kesavan)
  4515. MAPREDUCE-1337. Use generics in StreamJob to improve readability of that
  4516. class. (Kay Kay via cdouglas)
  4517. MAPREDUCE-361. Port terasort example to the new mapreduce API. (Amareshwari
  4518. Sriramadasu via cdouglas)
  4519. MAPREDUCE-1367. LocalJobRunner should support parallel mapper execution.
  4520. (Aaron Kimball via tomwhite)
  4521. MAPREDUCE-64. Eliminate io.sort.record.percent from MapTask configuration.
  4522. (cdouglas)
  4523. MAPREDUCE-1440. Replace the long user name in MapReduce with the local
  4524. name. (omalley)
  4525. MAPREDUCE-1470. Move delegation tokens from HDFS to Common so that
  4526. MapReduce can use them too. (omalley)
  4527. MAPREDUCE-1425. Reduce memory usage by archive. (mahadev via szetszwo)
  4528. MAPREDUCE-1441. Trim whitespace from directory lists pulled from the
  4529. configuration. (Todd Lipcon via cdouglas)
  4530. MAPREDUCE-1309. Refactor Rumen trace generator to improve code structure
  4531. and add extensible support for log formats. (Dick King via cdouglas)
  4532. MAPREDUCE-1503. Delegation token renewing and cancelling should provide
  4533. meaningful exceptions when there are failures instead of returning
  4534. false. (omalley)
  4535. HADOOP-6579. Upgrade commons-codec library to 1.4. (omalley)
  4536. MAPREDUCE-1423. Improve performance of CombineFileInputFormat when multiple
  4537. pools are configured. (Dhruba Borthakur via zshao)
  4538. MAPREDUCE-1454. Quote user supplied strings in Tracker servlets. (cdouglas)
  4539. MAPREDUCE-1408. Add customizable job submission policies to Gridmix. (Rahul
  4540. Singh via cdouglas)
  4541. MAPREDUCE-1527. Better warning logged when mapred.queue.names is
  4542. overshadowed by mapred-queues.xml. (Hong Tang via acmurthy)
  4543. MAPREDUCE-1403. Save the size and number of distributed cache artifacts in
  4544. the configuration. (Arun Murthy via cdouglas)
  4545. MAPREDUCE-1482. Truncate state string and diagnostic information in
  4546. TaskStatus. (Amar Kamat via szetszwo)
  4547. MAPREDUCE-1593. [Rumen] Improvements to random seed generation (tamas via
  4548. mahadev)
  4549. MAPREDUCE-1460. Oracle support in DataDrivenDBInputFormat.
  4550. (Aaron Kimball via tomwhite)
  4551. MAPREDUCE-1569. Pass configuration through mocked contexts in MRUnit.
  4552. (Chris White via cdouglas)
  4553. MAPREDUCE-1590. Move HarFileSystem from Hadoop Common to Mapreduce tools.
  4554. (mahadev)
  4555. MAPREDUCE-1629. Get rid of fakeBlockLocations() on HarFileSystem, since
  4556. it's not used (mahadev)
  4557. MAPREDUCE-1489. DataDrivenDBInputFormat should not query the database
  4558. when generating only one split. (Aaron Kimball via tomwhite)
  4559. MAPREDUCE-1514. Add documentation on replication, permissions, new options,
  4560. limitations and internals of har. (mahadev via szetszwo)
  4561. MAPREDUCE-1428. Make block size and the size of archive created files
  4562. configurable. (mahadev via szetszwo)
  4563. MAPREDUCE-1656. JobStory should provide queue info. (hong via mahadev)
  4564. MAPREDUCE-1466. Record number of files processed in FileInputFormat in the
  4565. Configuration for offline analysis. (Luke Lu and Arun Murthy via cdouglas)
  4566. MAPREDUCE-1538. TrackerDistributedCacheManager manages the
  4567. number of files. (Scott Chen via dhruba)
  4568. MAPREDUCE-1673. Scripts to start and stop RaidNode.
  4569. (Rodrigo Schmidt via dhruba)
  4570. MAPREDUCE-1659. RaidNode writes temp files on configured tmp directory and
  4571. add random numbers to their names to avoid conflicts
  4572. (Rodrigo Schmidt via dhruba)
  4573. MAPREDUCE-1221. Allow admins to control physical memory limits per-task
  4574. and per-node. (Scott Chen via acmurthy)
  4575. MAPREDUCE-1065. Update mapred tutorial to use the new API. (Aaron Kimball
  4576. via cdouglas)
  4577. MAPREDUCE-1304. Add a task counter tracking time spent in GC. (Aaron
  4578. Kimball via cdouglas)
  4579. MAPREDUCE-1570. Add grouping comparators to MRUnit. (Chris White via
  4580. cdouglas)
  4581. MAPREDUCE-1650. Exclude Private elements from generated MapReduce
  4582. Javadoc. (tomwhite)
  4583. MAPREDUCE-1625. Improve grouping of packages in Javadoc. (tomwhite)
  4584. MAPREDUCE-1417. Forrest documentation should be updated to reflect
  4585. the changes in MAPREDUCE-744. (Ravi Gummadi via vinodkv)
  4586. MAPREDUCE-1568. TrackerDistributedCacheManager should clean up cache
  4587. in a background thread. (Scott Chen via zshao)
  4588. MAPREDUCE-1749. Move configuration strings out of JobContext so that it
  4589. can be made public stable. (omalley)
  4590. MAPREDUCE-1623. Apply audience and stability notations to Hadoop
  4591. Map-Reduce. (tomwhite via acmurthy)
  4592. MAPREDUCE-1751. Change MapReduce to depend on Hadoop 'common' artifacts
  4593. instead of 'core'. (tomwhite)
  4594. MAPREDUCE-1535. Replace usage of FileStatus#isDir(). (Eli Collins via
  4595. tomwhite)
  4596. MAPREDUCE-1832. Allow file sizes less than 1MB in DFSIO benchmark. (shv)
  4597. MAPREDUCE-1404. Move Cluster-Setup and Single-Node-Setup Docs from
  4598. MapReduce to Common. (tomwhite)
  4599. MAPREDUCE-1697. Document the behavior of -file option and deprecate it
  4600. in favour of -files option in streaming. (Amareshwari Sriramadasu
  4601. via vinodkv)
  4602. MAPREDUCE-1033. Resolve location of scripts and configuration files after
  4603. project split. (tomwhite)
  4604. MAPREDUCE-1018. Document changes to the memory management and scheduling
  4605. model. (Hemanth Yamijala via vinodkv)
  4606. MAPREDUCE-1896. [Herriot] New property for multi user list. (Vinay Thota
  4607. via cos)
  4608. MAPREDUCE-1812. New properties for suspend and resume process. (Vinay
  4609. Thota via cos)
  4610. OPTIMIZATIONS
  4611. MAPREDUCE-270. Fix the tasktracker to optionally send an out-of-band
  4612. heartbeat on task-completion for better job-latency. (acmurthy)
  4613. Configuration changes:
  4614. add mapreduce.tasktracker.outofband.heartbeat
  4615. MAPREDUCE-1186. Modified code in distributed cache to set permissions
  4616. only on required set of localized paths.
  4617. (Amareshwari Sriramadasu via yhemanth)
  4618. MAPREDUCE-1501. FileInputFormat supports multi-level, recursive
  4619. directory listing. (Zheng Shao via dhruba)
  4620. MAPREDUCE-1556. upgrade to Avro 1.3.0. (cutting via tomwhite)
  4621. MAPREDUCE-1613. Install/deploy source jars to Maven repo
  4622. (Patrick Angeles via ddas)
  4623. MAPREDUCE-1610. Forrest documentation should be updated to reflect
  4624. the changes in MAPREDUCE-856. (Ravi Gummadi via vinodkv)
  4625. MAPREDUCE-1853. Adds caching for TaskAttemptContext in MultipleOutputs.
  4626. (Torsten Curdt via amareshwari)
  4627. BUG FIXES
  4628. MAPREDUCE-878. Rename fair scheduler design doc to
  4629. fair-scheduler-design-doc.tex and add Apache license header (matei)
  4630. HADOOP-4687. MapReduce is split from Hadoop Core. It is a subproject under
  4631. Hadoop (Owen O'Malley)
  4632. HADOOP-6096. Fix Eclipse project and classpath files following project
  4633. split. (tomwhite)
  4634. MAPREDUCE-419. Reconcile mapred.userlog.limit.kb defaults in configuration
  4635. and code. (Philip Zeyliger via cdouglas)
  4636. MAPREDUCE-2. Fixes a bug in KeyFieldBasedPartitioner in handling empty
  4637. keys. (Amar Kamat via sharad)
  4638. MAPREDUCE-130. Delete the jobconf copy from the log directory of the
  4639. JobTracker when the job is retired. (Amar Kamat via sharad)
  4640. MAPREDUCE-657. Fix hardcoded filesystem problem in CompletedJobStatusStore.
  4641. (Amar Kamat via sharad)
  4642. MAPREDUCE-179. Update progress in new RecordReaders. (cdouglas)
  4643. MAPREDUCE-658. Replace NPE in distcp with a meaningful error message when
  4644. the source path does not exist. (Ravi Gummadi via cdouglas)
  4645. MAPREDUCE-671. Update ignore list to include untracked, generated
  4646. build artifacts and config files. (cdouglas)
  4647. MAPREDUCE-433. Use more reliable counters in TestReduceFetch. (cdouglas)
  4648. MAPREDUCE-124. Fix a bug in failure handling of abort task of
  4649. OutputCommiter. (Amareshwari Sriramadasu via sharad)
  4650. MAPREDUCE-694. Fix to add jsp-api jars to capacity-scheduler classpath.
  4651. (Giridharan Kesavan)
  4652. MAPREDUCE-702. Fix eclipse-plugin jar target (Giridharan Kesavan)
  4653. MAPREDUCE-522. Replace TestQueueCapacities with simpler test case to
  4654. test integration between capacity scheduler and MR framework.
  4655. (Sreekanth Ramakrishnan via yhemanth)
  4656. MAPREDUCE-683. Fixes an initialization problem in the JobHistory.
  4657. The initialization of JobHistoryFilesManager is now done in the
  4658. JobHistory.init call. (Amar Kamat via ddas)
  4659. MAPREDUCE-708. Fixes a bug to allow updating the reason for
  4660. blacklisting a node on the JobTracker UI.
  4661. (Sreekanth Ramakrishnan via yhemanth)
  4662. MAPREDUCE-709. Fixes message displayed for a blacklisted node where
  4663. the reason for blacklisting is due to the health check script
  4664. timing out. (Sreekanth Ramakrishnan via yhemanth)
  4665. MAPREDUCE-676. Existing diagnostic rules fail for MAP ONLY jobs.
  4666. (Suhas Gogate via tomwhite)
  4667. MAPREDUCE-722. Fixes a bug with tasktracker reservations for
  4668. high memory jobs in capacity scheduler.
  4669. (Vinod Kumar Vavilapalli via yhemanth)
  4670. HADOOP-6090. Updates gridmix script to use new mapreduce api output
  4671. format. (Amareshwari Sriramadasu via sharad)
  4672. MAPREDUCE-732. Removed spurious log statements in the node
  4673. blacklisting logic. (Sreekanth Ramakrishnan via yhemanth)
  4674. MAPREDUCE-734. Fix a ConcurrentModificationException in unreserving
  4675. unused reservations for a job when it completes.
  4676. (Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
  4677. MAPREDUCE-733. Fix a RuntimeException while unreserving trackers
  4678. that are blacklisted for a job.
  4679. (Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
  4680. MAPREDUCE-677. Fix timeout in TestNodeRefresh. (Amar Kamat via
  4681. sharad)
  4682. MAPREDUCE-153. Fix timeout in TestJobInProgressListener. (Amar
  4683. Kamat via sharad)
  4684. MAPREDUCE-742. Fix output messages and java comments in the Pi related
  4685. examples. (szetszwo)
  4686. MAPREDUCE-565. Fix partitioner to work with new API. (Owen O'Malley via
  4687. cdouglas)
  4688. MAPREDUCE-680. Fix so MRUnit can handle reuse of Writable objects.
  4689. (Aaron Kimball via johan)
  4690. MAPREDUCE-18. Puts some checks for cross checking whether a reduce
  4691. task gets the correct shuffle data. (Ravi Gummadi via ddas)
  4692. MAPREDUCE-771. Fix scheduling of setup and cleanup tasks to use
  4693. free slots instead of tasks for scheduling. (yhemanth)
  4694. MAPREDUCE-717. Fixes some corner case issues in speculative
  4695. execution heuristics. (Devaraj Das)
  4696. MAPREDUCE-716. Make DBInputFormat work with Oracle. (Aaron Kimball
  4697. via tomwhite)
  4698. MAPREDUCE-735. Fixes a problem in the KeyFieldHelper to do with
  4699. the end index for some inputs (Amar Kamat via ddas)
  4700. MAPREDUCE-682. Removes reservations on tasktrackers which are
  4701. blacklisted. (Sreekanth Ramakrishnan via yhemanth)
  4702. MAPREDUCE-743. Fixes a problem to do with progress reporting
  4703. in the map phase. (Ravi Gummadi via ddas)
  4704. MAPREDUCE-765. Eliminate the deprecated warnings introduced by H-5438.
  4705. (He Yongqiang via szetszwo)
  4706. MAPREDUCE-383. Fix a bug in Pipes combiner due to bytes count not
  4707. getting reset after the spill. (Christian Kunz via sharad)
  4708. MAPREDUCE-809. Fix job-summary logs to correctly record status of FAILED
  4709. and KILLED jobs. (acmurthy)
  4710. MAPREDUCE-792. Fix unchecked warnings in DBInputFormat. (Aaron Kimball
  4711. via szetszwo)
  4712. MAPREDUCE-760. Fix a timing issue in TestNodeRefresh. (Amar Kamat via
  4713. sharad)
  4714. MAPREDUCE-40. Keep memory management backwards compatible for job
  4715. configuration parameters and limits. (Rahul Kumar Singh via yhemanth)
  4716. MAPREDUCE-587. Fixes a OOM issue in TestStreamingExitStatus.
  4717. (Amar Kamat via ddas)
  4718. MAPREDUCE-408. Fixes an assertion problem in TestKillSubProcesses
  4719. (Ravi Gummadi via ddas)
  4720. MAPREDUCE-659. Fix gridmix2 compilation. (Giridharan Kesavan)
  4721. MAPREDUCE-796. Fixes a ClassCastException in an exception log in
  4722. MultiThreadedMapRunner. (Amar Kamat via ddas)
  4723. MAPREDUCE-808. Fixes a serialization problem in TypedBytes.
  4724. (Klaas Bosteels via ddas)
  4725. MAPREDUCE-845. Fix a findbugs heap size problem in build.xml and add
  4726. a new property findbugs.heap.size. (Lee Tucker via szetszwo)
  4727. MAPREDUCE-838. Fixes a problem in the way commit of task outputs
  4728. happens. The bug was that even if commit failed, the task would
  4729. be declared as successful. (Amareshwari Sriramadasu via ddas)
  4730. MAPREDUCE-813. Updates Streaming and M/R tutorial documents.
  4731. (Corinne Chandel via ddas)
  4732. MAPREDUCE-805. Fixes some deadlocks in the JobTracker due to the fact
  4733. the JobTracker lock hierarchy wasn't maintained in some JobInProgress
  4734. method calls. (Amar Kamat via ddas)
  4735. MAPREDUCE-799. Fixes so all of the MRUnit self-tests run.
  4736. (Aaron Kimball via johan)
  4737. MAPREDUCE-848. Fixes a problem to do with TestCapacityScheduler
  4738. failing (Amar Kamat via ddas)
  4739. MAPREDUCE-840. DBInputFormat leaves open transaction.
  4740. (Aaron Kimball via tomwhite)
  4741. MAPREDUCE-859. Adds Avro and its dependencies required by Hadoop
  4742. common. (Ravi Gummadi via sharad)
  4743. MAPREDUCE-867. Fix ivy conf to look for avro jar from maven repo.
  4744. (Giridharan Kesavan)
  4745. MAPREDUCE-877. Added avro as a dependency to contrib ivy settings.
  4746. (Tsz Wo (Nicholas) Sze via yhemanth)
  4747. MAPREDUCE-852. In build.xml, remove the Main-Class, which is incorrectly
  4748. set in tools, and rename the target "tools-jar" to "tools". (szetszwo)
  4749. MAPREDUCE-773. Sends progress reports for compressed gzip inputs in maps.
  4750. Fixes a native direct buffer leak in LineRecordReader classes.
  4751. (Hong Tang and ddas)
  4752. MAPREDUCE-832. Reduce number of warning messages printed when
  4753. deprecated memory variables are used. (Rahul Kumar Singh via yhemanth)
  4754. MAPREDUCE-745. Fixes a testcase problem to do with generation of JobTracker
  4755. IDs. (Amar Kamat via ddas)
  4756. MAPREDUCE-834. Enables memory management on tasktrackers when old
  4757. memory management parameters are used in configuration.
  4758. (Sreekanth Ramakrishnan via yhemanth)
  4759. MAPREDUCE-818. Fixes Counters#getGroup API. (Amareshwari Sriramadasu
  4760. via sharad)
  4761. MAPREDUCE-807. Handles the AccessControlException during the deletion of
  4762. mapred.system.dir in the JobTracker. The JobTracker will bail out if it
  4763. encounters such an exception. (Amar Kamat via ddas)
  4764. MAPREDUCE-430. Fix a bug related to task getting stuck in case of
  4765. OOM error. (Amar Kamat via ddas)
  4766. MAPREDUCE-871. Fix ownership of Job/Task local files to have correct
  4767. group ownership according to the egid of the tasktracker.
  4768. (Vinod Kumar Vavilapalli via yhemanth)
  4769. MAPREDUCE-911. Fix a bug in TestTaskFail related to speculative
  4770. execution. (Amareshwari Sriramadasu via sharad)
  4771. MAPREDUCE-687. Fix an assertion in TestMiniMRMapRedDebugScript.
  4772. (Amareshwari Sriramadasu via sharad)
  4773. MAPREDUCE-924. Fixes the TestPipes testcase to use Tool.
  4774. (Amareshwari Sriramadasu via sharad)
  4775. MAPREDUCE-903. Add Avro jar to eclipse classpath.
  4776. (Philip Zeyliger via tomwhite)
  4777. MAPREDUCE-943. Removes a testcase in TestNodeRefresh that doesn't make
  4778. sense in the new Job recovery model. (Amar Kamat via ddas)
  4779. MAPREDUCE-764. TypedBytesInput's readRaw() does not preserve custom type
  4780. codes. (Klaas Bosteels via tomwhite)
  4781. HADOOP-6243. Fixes a NullPointerException in handling deprecated keys.
  4782. (Sreekanth Ramakrishnan via yhemanth)
  4783. MAPREDUCE-968. NPE in distcp encountered when placing _logs directory on
  4784. S3FileSystem. (Aaron Kimball via tomwhite)
  4785. MAPREDUCE-826. harchive doesn't use ToolRunner / harchive returns 0 even
  4786. if the job fails with exception (koji Noguchi via mahadev)
  4787. MAPREDUCE-839. unit test TestMiniMRChildTask fails on mac os-x (hong tang
  4788. via mahadev)
  4789. MAPREDUCE-112. Add counters for reduce input, output records to the new API.
  4790. (Jothi Padmanabhan via cdouglas)
  4791. MAPREDUCE-648. Fix two distcp bugs: (1) it should not launch a job if all
  4792. src paths are directories, and (2) it does not skip copying when updating
  4793. a single file. (Ravi Gummadi via szetszwo)
  4794. MAPREDUCE-946. Fix a regression in LineRecordReader where the
  4795. maxBytesToConsume parameter is not set correctly. (cdouglas)
  4796. MAPREDUCE-977. Missing jackson jars from Eclipse template. (tomwhite)
  4797. MAPREDUCE-988. Fix a packaging issue in the contrib modules. (Hong Tang via
  4798. cdouglas)
  4799. MAPREDUCE-971. distcp does not always remove distcp.tmp.dir. (Aaron Kimball
  4800. via tomwhite)
  4801. MAPREDUCE-995. Fix a bug in JobHistory where tasks completing after the job
  4802. is closed cause a NPE. (Jothi Padmanabhan via cdouglas)
  4803. MAPREDUCE-953. Fix QueueManager to dump queue configuration in JSON format.
  4804. (V.V. Chaitanya Krishna via yhemanth)
  4805. MAPREDUCE-645. Prevent distcp from running a job when the destination is a
  4806. file, but the source is not. (Ravi Gummadi via cdouglas)
  4807. MAPREDUCE-1002. Flushed writer in JobQueueClient so queue information is
  4808. printed correctly. (V.V. Chaitanya Krishna via yhemanth)
  4809. MAPREDUCE-1003. Fix compilation problem in eclipse plugin when
  4810. eclipse.home is set. (Ravi Gummadi via yhemanth)
  4811. MAPREDUCE-941. Vaidya script fails on Solaris. (Chad Metcalf
  4812. via tomwhite)
  4813. MAPREDUCE-912. Add and standardize Apache license headers. (Chad Metcalf
  4814. via cdouglas)
  4815. MAPREDUCE-1022. Fix compilation of vertica testcases. (Vinod Kumar
  4816. Vavilapalli via acmurthy)
  4817. MAPREDUCE-1000. Handle corrupt history files in JobHistory.initDone().
  4818. (Jothi Padmanabhan via sharad)
  4819. MAPREDUCE-1028. Fixed number of slots occupied by cleanup tasks to one
  4820. irrespective of slot size for the job.
  4821. (Ravi Gummadi via yhemanth)
  4822. MAPREDUCE-964. Fixed start and finish times of TaskStatus to be
  4823. consistent, thereby fixing inconsistencies in metering tasks.
  4824. (Sreekanth Ramakrishnan via yhemanth)
  4825. MAPREDUCE-1076. Deprecate ClusterStatus and add javadoc in ClusterMetrics.
  4826. (Amareshwari Sriramadasu via sharad)
  4827. MAPREDUCE-979. Fixed JobConf APIs related to memory parameters to return
  4828. values of new configuration variables when deprecated variables are
  4829. disabled. (Sreekanth Ramakrishnan via yhemanth)
  4830. MAPREDUCE-1030. Modified scheduling algorithm to return a map and reduce
  4831. task per heartbeat in the capacity scheduler.
  4832. (Rahul Kumar Singh via yhemanth)
  4833. MAPREDUCE-1071. Use DataInputStream rather than FSDataInputStream in the
  4834. JobHistory EventReader. (Hong Tang via cdouglas)
  4835. MAPREDUCE-986. Fix Rumen to work with truncated task lines. (Dick King via
  4836. cdouglas)
  4837. MAPREDUCE-1029. Fix failing TestCopyFiles by restoring the unzipping of
  4838. HDFS webapps from the hdfs jar. (Aaron Kimball and Jothi Padmanabhan via
  4839. cdouglas)
  4840. MAPREDUCE-769. Make findbugs and javac warnings to zero.
  4841. (Amareshwari Sriramadasu via sharad)
  4842. MAPREDUCE-1104. Initialize RecoveryManager in JobTracker cstr called by
  4843. Mumak. (Hong Tang via cdouglas)
  4844. MAPREDUCE-1061. Add unit test validating byte specifications for gridmix
  4845. jobs. (cdouglas)
  4846. MAPREDUCE-1077. Fix Rumen so that truncated tasks do not mark the job as
  4847. successful. (Dick King via cdouglas)
  4848. MAPREDUCE-1041. Make TaskInProgress::taskStatuses map package-private.
  4849. (Jothi Padmanabhan via cdouglas)
  4850. MAPREDUCE-1070. Prevent a deadlock in the fair scheduler servlet.
  4851. (Todd Lipcon via cdouglas)
  4852. MAPREDUCE-1086. Setup Hadoop logging environment for tasks to point to
  4853. task related parameters. (Ravi Gummadi via yhemanth)
  4854. MAPREDUCE-1105. Remove max limit configuration in capacity scheduler in
  4855. favor of max capacity percentage thus allowing the limit to go over
  4856. queue capacity. (Rahul Kumar Singh via yhemanth)
  4857. MAPREDUCE-1016. Make the job history log format JSON. (cutting)
  4858. MAPREDUCE-1038. Weave Mumak aspects only if related files have changed.
  4859. (Aaron Kimball via cdouglas)
  4860. MAPREDUCE-1163. Remove unused, hard-coded paths from libhdfs. (Allen
  4861. Wittenauer via cdouglas)
  4862. MAPREDUCE-962. Fix a NullPointerException while killing task process
  4863. trees. (Ravi Gummadi via yhemanth)
  4864. MAPREDUCE-1177. Correct setup/cleanup inversion in
  4865. JobTracker::getTaskReports. (Vinod Kumar Vavilapalli via cdouglas)
  4866. MAPREDUCE-1178. Fix ClassCastException in MultipleInputs by adding
  4867. a DelegatingRecordReader. (Amareshwari Sriramadasu and Jay Booth
  4868. via sharad)
  4869. MAPREDUCE-1068. Fix streaming job to show proper message if file is
  4870. is not present. (Amareshwari Sriramadasu via sharad)
  4871. MAPREDUCE-1147. Add map output counters to new API. (Amar Kamat via
  4872. cdouglas)
  4873. MAPREDUCE-915. The debug scripts are run as the job user. (ddas)
  4874. MAPREDUCE-1007. Fix NPE in CapacityTaskScheduler.getJobs().
  4875. (V.V.Chaitanya Krishna via sharad)
  4876. MAPREDUCE-28. Refactor TestQueueManager and fix default ACLs.
  4877. (V.V.Chaitanya Krishna and Rahul K Singh via sharad)
  4878. MAPREDUCE-1182. Fix overflow in reduce causing allocations to exceed the
  4879. configured threshold. (cdouglas)
  4880. MAPREDUCE-1239. Fix contrib components build dependencies.
  4881. (Giridharan Kesavan and omalley)
  4882. MAPREDUCE-787. Fix JobSubmitter to honor user given symlink path.
  4883. (Amareshwari Sriramadasu via sharad)
  4884. MAPREDUCE-1249. Update config default value for socket read timeout to
  4885. match code default. (Amareshwari Sriramadasu via cdouglas)
  4886. MAPREDUCE-1161. Remove ineffective synchronization in NotificationTestCase.
  4887. (Owen O'Malley via cdouglas)
  4888. MAPREDUCE-1244. Fix eclipse-plugin's build dependencies. (gkesavan)
  4889. MAPREDUCE-1075. Fix JobTracker to not throw an NPE for a non-existent
  4890. queue. (V.V.Chaitanya Krishna via yhemanth)
  4891. MAPREDUCE-754. Fix NPE in expiry thread when a TT is lost. (Amar Kamat
  4892. via sharad)
  4893. MAPREDUCE-1074. Document Reducer mark/reset functionality. (Jothi
  4894. Padmanabhan via cdouglas)
  4895. MAPREDUCE-1267. Fix typo in mapred-default.xml. (Todd Lipcon via cdouglas)
  4896. MAPREDUCE-952. Remove inadvertently reintroduced Task.Counter enum. (Jothi
  4897. Padmanabhan via cdouglas)
  4898. MAPREDUCE-1230. Fix handling of null records in VerticaInputFormat. (Omer
  4899. Trajman via cdouglas)
  4900. MAPREDUCE-1171. Allow shuffle retries and read-error reporting to be
  4901. configurable. (Amareshwari Sriramadasu via acmurthy)
  4902. MAPREDUCE-879. Fix broken unit test TestTaskTrackerLocalization on MacOS.
  4903. (Sreekanth Ramakrishnan via yhemanth)
  4904. MAPREDUCE-1124. Fix imprecise byte counts in Gridmix. (cdouglas)
  4905. MAPREDUCE-1222. Add an option to exclude numeric IP addresses in topologies
  4906. processed by Mumak. (Hong Tang via cdouglas)
  4907. MAPREDUCE-1284. Fix fts_open() call in task-controller that was failing
  4908. LinuxTaskController unit tests. (Ravi Gummadi via yhemanth)
  4909. MAPREDUCE-1143. Fix running task counters to be updated correctly
  4910. when speculative attempts are running for a TIP.
  4911. (Rahul Kumar Singh via yhemanth)
  4912. MAPREDUCE-1241. Use a default queue configuration in JobTracker when
  4913. mapred-queues.xml is unavailable. (Todd Lipcon via cdouglas)
  4914. MAPREDUCE-1301. Fix set up of permission checking script used in
  4915. localization tests. (Amareshwari Sriramadasu via yhemanth)
  4916. MAPREDUCE-1286. Remove quoting from client opts in TaskRunner. (Yuri
  4917. Pradkin via cdouglas)
  4918. MAPREDUCE-1059. Use distcp.bytes.per.map when adding sync markers in
  4919. distcp. (Aaron Kimball via cdouglas)
  4920. MAPREDUCE-1009. Update forrest documentation describing hierarchical
  4921. queues. (Vinod Kumar Vavilapalli via yhemanth)
  4922. MAPREDUCE-1342. Fixed deadlock in global blacklisting of tasktrackers.
  4923. (Amareshwari Sriramadasu via acmurthy)
  4924. MAPREDUCE-1316. Fixes a memory leak of TaskInProgress instances in
  4925. the jobtracker. (Amar Kamat via yhemanth)
  4926. MAPREDUCE-1359. TypedBytes TestIO doesn't mkdir its test dir first.
  4927. (Anatoli Fomenko via cos)
  4928. MAPREDUCE-1314. Correct errant mapreduce.x.mapreduce.x replacements from
  4929. bulk change. (Amareshwari Sriramadasu via cdouglas)
  4930. MAPREDUCE-1365. Restore accidentally renamed test in
  4931. TestTaskTrackerBloacklisting. (Amareshwari Sriramadasu via cdouglas)
  4932. MAPREDUCE-1406. Fix spelling of JobContext.MAP_COMBINE_MIN_SPILLS.
  4933. (cdouglas)
  4934. MAPREDUCE-1369. JUnit tests should never depend on anything in conf
  4935. (Anatoli Fomenko via cos)
  4936. MAPREDUCE-1412. Fix timer granularity issue causing failures in
  4937. TestTaskTrackerBlacklisting. (cdouglas)
  4938. MAPREDUCE-1448. Respect --config option in Mumak script. (Hong Tang via
  4939. cdouglas)
  4940. MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via tomwhite)
  4941. MAPREDUCE-1522. FileInputFormat may use the default FileSystem for the
  4942. input path. (Tsz Wo (Nicholas), SZE via cdouglas)
  4943. MAPREDUCE-1407. Update javadoc in mapreduce.{Mapper,Reducer} to match
  4944. actual usage. (Benoit Sigoure via cdouglas)
  4945. MAPREDUCE-1258. Fix fair scheduler event log not logging job info.
  4946. (matei)
  4947. MAPREDUCE-1089. Fix NPE in fair scheduler preemption when tasks are
  4948. scheduled but not running. (Todd Lipcon via matei)
  4949. MAPREDUCE-1014. Fix the libraries for common and hdfs. (omalley)
  4950. MAPREDUCE-1111. JT Jetty UI not working if we run mumak.sh
  4951. off packaged distribution directory. (hong tang via mahadev)
  4952. MAPREDUCE-1133. Eclipse .classpath template has outdated jar files and is
  4953. missing some new ones. (cos)
  4954. MAPREDUCE-1098. Fixed the distributed-cache to not do i/o while holding a
  4955. global lock. (Amareshwari Sriramadasu via acmurthy)
  4956. MAPREDUCE-1158. Fix JT running maps and running reduces metrics.
  4957. (sharad)
  4958. MAPREDUCE-1160. Reduce verbosity of log lines in some Map/Reduce classes
  4959. to avoid filling up jobtracker logs on a busy cluster.
  4960. (Ravi Gummadi and Hong Tang via yhemanth)
  4961. MAPREDUCE-1153. Fix tasktracker metrics when trackers are decommissioned.
  4962. (sharad)
  4963. MAPREDUCE-1128. Fix MRUnit to prohibit iterating over values twice. (Aaron
  4964. Kimball via cdouglas)
  4965. MAPREDUCE-665. Move libhdfs to HDFS subproject. (Eli Collins via dhruba)
  4966. MAPREDUCE-1196. Fix FileOutputCommitter to use the deprecated cleanupJob
  4967. api correctly. (acmurthy)
  4968. MAPREDUCE-1244. Fix eclipse-plugin's build dependencies. (gkesavan)
  4969. MAPREDUCE-1140. Fix DistributedCache to not decrement reference counts for
  4970. unreferenced files in error conditions.
  4971. (Amareshwari Sriramadasu via yhemanth)
  4972. MAPREDUCE-1245. Fix TestFairScheduler failures by instantiating lightweight
  4973. Jobtracker. (sharad)
  4974. MAPREDUCE-1260. Update Eclipse configuration to match changes to Ivy
  4975. configuration. (Edwin Chan via cos)
  4976. MAPREDUCE-1152. Distinguish between failed and killed tasks in
  4977. JobTrackerInstrumentation. (Sharad Agarwal via cdouglas)
  4978. MAPREDUCE-1285. In DistCp.deleteNonexisting(..), get class from the
  4979. parameter instead of using FileStatus.class. (Peter Romianowski via
  4980. szetszwo)
  4981. MAPREDUCE-1294. Build fails to pull latest hadoop-core-* artifacts (cos)
  4982. MAPREDUCE-1213. TaskTrackers restart is faster because it deletes
  4983. distributed cache directory asynchronously. (Zheng Shao via dhruba)
  4984. MAPREDUCE-1265. The task attempt error log prints the name of the
  4985. tasktracker machine. (Scott Chen via dhruba)
  4986. MAPREDUCE-1201. ProcfsBasedProcessTree collects CPU usage information.
  4987. (Scott Chen via dhruba)
  4988. MAPREDUCE-1326. fi tests don't use fi-site.xml (cos)
  4989. MAPREDUCE-1165. Replace non-portable function name with C99 equivalent.
  4990. (Allen Wittenauer via cdouglas)
  4991. MAPREDUCE-1331. Fixes a typo in a testcase (Devaraj Das)
  4992. MAPREDUCE-1293. AutoInputFormat doesn't work with non-default FileSystems.
  4993. (Andrew Hitchcock via tomwhite)
  4994. MAPREDUCE-1131. Using profilers other than hprof can cause JobClient to
  4995. report job failure. (Aaron Kimball via tomwhite)
  4996. MAPREDUCE-1155. Streaming tests swallow exceptions.
  4997. (Todd Lipcon via tomwhite)
  4998. MAPREDUCE-1212. Mapreduce contrib project ivy dependencies are not included
  4999. in binary target. (Aaron Kimball via tomwhite)
  5000. MAPREDUCE-1388. Move the HDFS RAID package from HDFS to MAPREDUCE.
  5001. (Eli Collins via dhruba)
  5002. MAPREDUCE-1322. Defines default value for staging directory to be user
  5003. based fixing a failing streaming test.
  5004. (Devaraj Das and Amareshwari Sriramadasu via yhemanth)
  5005. MAPREDUCE-899. Modified LinuxTaskController to check that task-controller
  5006. has right permissions and ownership before performing any actions.
  5007. (Amareshwari Sriramadasu via yhemanth)
  5008. MAPREDUCE-1443. DBInputFormat can leak connections.
  5009. (Aaron Kimball via tomwhite)
  5010. MAPREDUCE-1457. Fixes JobTracker to get the FileSystem object within
  5011. getStagingAreaDir within a privileged block. Fixes Child.java to use the
  5012. appropriate UGIs while getting the TaskUmbilicalProtocol proxy and
  5013. while executing the task. (Jakob Homan via ddas)
  5014. MAPREDUCE-1399. The archive command shows a null error message (nicholas
  5015. via mahadev)
  5016. MAPREDUCE-1305. Improve efficiency of distcp -delete. (Peter Romianowski
  5017. via cdouglas)
  5018. MAPREDUCE-1474. Update forrest documentation for Hadoop Archives. (Mahadev
  5019. Konar via cdouglas)
  5020. MAPREDUCE-1400. Use tr rather than sed to effect literal substitution in
  5021. the build script. (Allen Wittenauer via cdouglas)
  5022. MAPREDUCE-1358. Avoid false positives in OutputLogFilter. (Todd Lipcon via
  5023. cdouglas)
  5024. MAPREDUCE-1490. Fix a NullPointerException that could occur during
  5025. instantiation and initialization of the DistributedRaidFileSystem.
  5026. (Rodrigo Schmidt via dhruba)
  5027. MAPREDUCE-1476. Fix the M/R framework to not call commit for special
  5028. tasks like job setup/cleanup and task cleanup.
  5029. (Amareshwari Sriramadasu via yhemanth)
  5030. MAPREDUCE-1398. Fix TaskLauncher to stop waiting for slots on a TIP that
  5031. is killed / failed.
  5032. (Amareshwari Sriramadasu via yhemanth)
  5033. MAPREDUCE-1491. The parity files created by the RAID are combined
  5034. using Hadoop Archive Files (HAR). (Rodrigo Schmidt via dhruba)
  5035. MAPREDUCE-1378. URL encode link in jobhistory.jsp to avoid errors caused by
  5036. unescaped characters. (E. Sammer via cdouglas)
  5037. MAPREDUCE-1519. RaidNode fails to create new parity file
  5038. if an older version already exists. (Rodrigo Schmidt via dhruba)
  5039. MAPREDUCE-1537. Fixes a compilation problem in a testcase after commit
  5040. HDFS-984. (Jitendra Nath Pandey via ddas)
  5041. MAPREDUCE-1537. The patch makes the job client call the getDelegationToken
  5042. only when security is enabled. (Jitendra Nath Pandey via ddas)
  5043. MAPREDUCE-1510. RAID should regenerate parity files if they get deleted.
  5044. (Rodrigo Schmidt via dhruba)
  5045. MAPREDUCE-1421. Fix the LinuxTaskController tests failing on trunk after
  5046. the commit of MAPREDUCE-1385. (Amareshwari Sriramadasu via vinodkv)
  5047. MAPREDUCE-1520. Fix TestMiniMRLocalFS failure caused by regression in
  5048. getting user working dir. (Amareshwari Sriramadasu via cdouglas)
  5049. MAPREDUCE-1512. RAID uses HarFileSystem directly instead of
  5050. FileSystem.get (Rodrigo Schmidt via dhruba)
  5051. MAPREDUCE-1435. Fix symlink handling in task work directory when
  5052. cleaning up, essentially to avoid following links.
  5053. (Ravi Gummadi via yhemanth)
  5054. MAPREDUCE-1518. RaidNode does not run the deletion check on the
  5055. directory that stores the parity files. (Rodrigo Schmidt via dhruba)
  5056. MAPREDUCE-1573. TestStreamingAsDifferentUser fails if run as tt_user.
  5057. (Ravi Gummadi via vinodkv)
  5058. MAPREDUCE-927. Cleanup of task-logs should happen in TaskTracker instead
  5059. of the Child. (Amareshwari Sriramadasu via vinodkv)
  5060. MAPREDUCE-1578. Decouple HadoopArchives vesrion from HarFileSystem version.
  5061. (Rodrigo Schmidt via szetszwo)
  5062. MAPREDUCE-1422. Fix cleanup of localized job directory to work if files
  5063. with non-deletable permissions are created within it.
  5064. (Amar Kamat via yhemanth)
  5065. MAPREDUCE-1306. Randomize the arrival of heartbeat responses in Mumak.
  5066. (Tamas Sarlos via cdouglas)
  5067. MAPREDUCE-1579. archive: check and possibly replace the space charater
  5068. in source paths. (szetszwo)
  5069. MAPREDUCE-1536. DataDrivenDBInputFormat does not split date columns correctly.
  5070. (Aaron Kimball via enis)
  5071. MAPREDUCE-890. After HADOOP-4491, the user who started mapred system is
  5072. not able to run job. (Ravi Gummadi via vinodkv)
  5073. MAPREDUCE-1615. Fix compilation of TestSubmitJob. (cdouglas)
  5074. MAPREDUCE-1508. Protect against NPE in TestMultipleLevelCaching. (Aaron
  5075. Kimball via cdouglas)
  5076. MAPREDUCE-1497. Suppress spurious findbugs warning about IndexCache
  5077. synchronization. (Amareshwari Sriramadasu via cdouglas)
  5078. MAPREDUCE-1420. Fix TestTTResourceReporting failure. (Scott Chen via
  5079. cdouglas)
  5080. MAPREDUCE-1480. Correctly initialize child RecordReaders in
  5081. CombineFileInputFormat. (Aaron Kimball via cdouglas)
  5082. MAPREDUCE-1348. Fix block forensics packaging. (Tom White via cdouglas)
  5083. MAPREDUCE-1628. HarFileSystem shows incorrect replication numbers and
  5084. permissions. (szetszwo via mahadev)
  5085. MAPREDUCE-1602. Fix the error message for the case that src does not
  5086. exist. (szetszwo)
  5087. MAPREDUCE-1585. Create Hadoop Archives version 2 with filenames
  5088. URL-encoded (rodrigo via mahadev)
  5089. MAPREDUCE-1523. Sometimes rumen trace generator fails to extract the job
  5090. finish time. (dick king via mahadev)
  5091. MAPREDUCE-1635. ResourceEstimator does not work after MAPREDUCE-842.
  5092. (Amareshwari Sriramadasu via vinodkv)
  5093. MAPREDUCE-889. binary communication formats added to Streaming by
  5094. HADOOP-1722 should be documented. (Klaas Bosteels via tomwhite)
  5095. MAPREDUCE-1031. ant tar target doens't seem to compile tests in contrib
  5096. projects. (Aaron Kimball via tomwhite)
  5097. MAPREDUCE-1692. Removed unused testcase TestStreamedMerge.
  5098. (Sreekanth Ramakrishnan and Amareshwari Sriramadasu via yhemanth)
  5099. MAPREDUCE-1062. Fix ReliabilityTest to work with retired jobs. (Sreekanth
  5100. Ramakrishnan via cdouglas)
  5101. MAPREDUCE-1409. IOExceptions thrown from FIleOutputCommitter::abortTask
  5102. should cause the task to fail. (Amareshwari Sriramadasu via cdouglas)
  5103. MAPREDUCE-1695. Include capacity scheduler in findbugs and javadoc-dev
  5104. targets and also fix existing warnings. (Hong Tang via yhemanth)
  5105. MAPREDUCE-1494. Ensure TestJobDirCleanup verifies the correct paths.
  5106. (Amareshwari Sriramadasu via cdouglas)
  5107. MAPREDUCE-1622. Include missing slf4j dependencies. (cdouglas)
  5108. MAPREDUCE-1515. Accept java5.home from build.properties, not only from the
  5109. command line when building forrest docs. (Al Thompson via cdouglas)
  5110. MAPREDUCE-1618. Add missing javadoc to JobStatus::*JobAcls. (Amareshwari
  5111. Sriramadasu via cdouglas)
  5112. MAPREDUCE-1219. Remove job level metrics from jobtracker metrics to ease
  5113. undue load on jobtracker. (Sreekanth Ramakrishnan via sharad)
  5114. MAPREDUCE-1604. Add Forrest documentation for Job ACLs.
  5115. (Amareshwari Sriramadasu via yhemanth)
  5116. MAPREDUCE-1705. Archiving and Purging of HDFS parity files should
  5117. handle globbed policies accurately. (Rodrigo Schmidt via dhruba)
  5118. MAPREDUCE-1612. job conf file is not accessible from job history web page.
  5119. (Ravi Gummadi and Sreekanth Ramakrishnan via vinodkv)
  5120. MAPREDUCE-1397. NullPointerException observed during task failures.
  5121. (Amareshwari Sriramadasu via vinodkv)
  5122. MAPREDUCE-1728. Oracle timezone strings do not match Java.
  5123. (Aaron Kimball via tomwhite)
  5124. MAPREDUCE-1609. TaskTracker.localizeJob should not set permissions on
  5125. job log directory recursively. (Amareshwari Sriramadasu via vinodkv)
  5126. MAPREDUCE-1657. After task logs directory is deleted, tasklog servlet
  5127. displays wrong error message about job ACLs. (Ravi Gummadi via vinodkv)
  5128. MAPREDUCE-1727. TestJobACLs fails after HADOOP-6686. (Ravi Gummadi via vinodkv)
  5129. MAPREDUCE-1611. Refresh nodes and refresh queues doesnt work with service
  5130. authorization enabled. (Amar Kamat via vinodkv)
  5131. MAPREDUCE-1276. Correct flaws in the shuffle related to connection setup
  5132. and failure attribution. (Amareshwari Sriramadasu via cdouglas)
  5133. MAPREDUCE-1372. ConcurrentModificationException in JobInProgress.
  5134. (Dick King and Amareshwari Sriramadasu via tomwhite)
  5135. MAPREDUCE-118. Fix Job.getJobID(). (Amareshwari Sriramadasu via sharad)
  5136. MAPREDUCE-913. TaskRunner crashes with NPE resulting in held up slots,
  5137. UNINITIALIZED tasks and hung TaskTracker. (Amareshwari Sriramadasu and
  5138. Sreekanth Ramakrishnan via vinodkv)
  5139. MAPREDUCE-1725. Fix MapReduce API incompatibilities between 0.20 and 0.21.
  5140. (tomwhite)
  5141. MAPREDUCE-1606. TestJobACLs may timeout as there are no slots for launching
  5142. JOB_CLEANUP task. (Ravi Gummadi via vinodkv)
  5143. MAPREDUCE-1765. Correct streaming documentation for StreamXmlRecordReader.
  5144. (Corinne Chandel via amareshwari)
  5145. MAPREDUCE-1880. Fix BigDecimal.divide(..) in the pi example. (szetszwo)
  5146. MAPREDUCE-1885. Revert FileSystem create method that takes CreateFlags
  5147. (MapReduce part of HADOOP-6826). (Ravi Gummadi via tomwhite)
  5148. MAPREDUCE-1870. Harmonize MapReduce JAR library versions with Common and
  5149. HDFS. (tomwhite)
  5150. MAPREDUCE-1791. Remote cluster control functionality needs JavaDocs
  5151. improvement (Konstantin Boudnik)
  5152. MAPREDUCE-1942. 'compile-fault-inject' should never be called directly.
  5153. (Konstantin Boudnik)
  5154. MAPREDUCE-1876. Fixes TaskAttemptStartedEvent to correctly log event type
  5155. for all task types. (Amar Kamat via amareshwari)
  5156. MAPREDUCE-1926. MapReduce distribution is missing build-utils.xml.
  5157. (tomwhite)
  5158. MAPREDUCE-2012. Some contrib tests fail in branch 0.21 and trunk.
  5159. (Amareshwari Sriramadasu via tomwhite)
  5160. MAPREDUCE-1980. Fixes TaskAttemptUnsuccessfulCompletionEvent and
  5161. TaskAttemptFinishedEvent to correctly log event type for all task types.
  5162. (Amar Kamat via amareshwari)
  5163. MAPREDUCE-1856. Extract a subset of tests for smoke (DOA) validation (cos)