1
0

CHANGES.txt 292 KB

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