1
0

CHANGES.txt 243 KB

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