1
0

CHANGES.txt 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594
  1. Hadoop HDFS Change Log
  2. Trunk (Unreleased)
  3. INCOMPATIBLE CHANGES
  4. HDFS-3034. Remove the deprecated DFSOutputStream.sync() method. (szetszwo)
  5. HDFS-5079. Cleaning up NNHAStatusHeartbeat.State from
  6. DatanodeProtocolProtos. (Tao Luo via shv)
  7. HDFS-5570. Deprecate hftp / hsftp and replace them with webhdfs / swebhdfs.
  8. (wheat9)
  9. HDFS-2538. option to disable fsck dots (Mohammad Kamrul Islam via aw)
  10. NEW FEATURES
  11. HDFS-3125. Add JournalService to enable Journal Daemon. (suresh)
  12. IMPROVEMENTS
  13. HDFS-4665. Move TestNetworkTopologyWithNodeGroup to common.
  14. (Junping Du via llu)
  15. HDFS-1620. Rename HdfsConstants -> HdfsServerConstants, FSConstants ->
  16. HdfsConstants. (Harsh J Chouraria via atm)
  17. HDFS-2197. Refactor RPC call implementations out of NameNode class (todd)
  18. HDFS-2572. Remove unnecessary double-check in DN#getHostName. (harsh)
  19. HDFS-2857. Cleanup BlockInfo class. (suresh)
  20. HDFS-2786. Fix host-based token incompatibilities in DFSUtil. (Kihwal Lee
  21. via jitendra)
  22. HDFS-2486. Remove unnecessary priority level checks in
  23. UnderReplicatedBlocks. (Uma Maheswara Rao G via szetszwo)
  24. HDFS-2878. Fix TestBlockRecovery and move it back into main test directory.
  25. (todd)
  26. HDFS-2655. BlockReaderLocal#skip performs unnecessary IO.
  27. (Brandon Li via jitendra)
  28. HDFS-3009. Remove duplicate code in DFSClient#isLocalAddress by using
  29. NetUtils. (Hari Mankude via suresh)
  30. HDFS-3002. TestNameNodeMetrics need not wait for metrics update.
  31. (suresh)
  32. HDFS-3016. Security in unit tests. (Jaimin Jetly via jitendra)
  33. HDFS-3030. Remove getProtocolVersion and getProtocolSignature from translators.
  34. (jitendra)
  35. HDFS-3111. Missing license headers in trunk. (umamahesh)
  36. HDFS-3091. Update the usage limitations of ReplaceDatanodeOnFailure policy in
  37. the config description for the smaller clusters. (szetszwo via umamahesh)
  38. HDFS-309. FSEditLog should log progress during replay. (Sho Shimauchi
  39. via todd)
  40. HDFS-3131. Improve TestStorageRestore. (Brandon Li via atm)
  41. HDFS-3178. Add states and state handler for journal synchronization in
  42. JournalService. (szetszwo)
  43. HDFS-3273. Refactor BackupImage and FSEditLog, and rename
  44. JournalListener.rollLogs(..) to startLogSegment(..). (szetszwo)
  45. HDFS-3292. Remove the deprecated DiskStatus, getDiskStatus(), getRawUsed()
  46. and getRawCapacity() from DistributedFileSystem. (Arpit Gupta via szetszwo)
  47. HADOOP-8285. HDFS changes for Use ProtoBuf for RpcPayLoadHeader. (sanjay
  48. radia)
  49. HDFS-2743. Streamline usage of bookkeeper journal manager.
  50. (Ivan Kelly via umamahesh)
  51. HDFS-3293. Add toString(), equals(..) and hashCode() to JournalInfo.
  52. (Hari Mankude via szetszwo)
  53. HDFS-3197. Incorrect class comments in a few tests. (Andy Isaacson via eli)
  54. HDFS-3476. Correct the default used in TestDFSClientRetries.busyTest()
  55. after HDFS-3462 (harsh)
  56. HDFS-3478. Test quotas with Long.Max_Value. (Sujay Rau via eli)
  57. HDFS-3630 Modify TestPersistBlocks to use both flush and hflush (sanjay)
  58. HDFS-3768. Exception in TestJettyHelper is incorrect.
  59. (Eli Reisman via jghoman)
  60. HDFS-2580. NameNode#main(...) can make use of GenericOptionsParser. (harsh)
  61. HDFS-2127. Add a test that ensure AccessControlExceptions contain
  62. a full path. (Stephen Chu via eli)
  63. HDFS-3995. Use DFSTestUtil.createFile() for file creation and
  64. writing in test cases. (Jing Zhao via suresh)
  65. HDFS-3735. NameNode WebUI should allow sorting live datanode list by fields
  66. Block Pool Used, Block Pool Used(%) and Failed Volumes.
  67. (Brahma Reddy Battula via suresh)
  68. HDFS-4052. BlockManager#invalidateWork should print log outside the lock.
  69. (Jing Zhao via suresh)
  70. HDFS-3358. Specify explicitly that the NN UI status total is talking
  71. of persistent objects on heap. (harsh)
  72. HDFS-4904. Remove JournalService. (Arpit Agarwal via cnauroth)
  73. HDFS-5041. Add the time of last heartbeat to dead server Web UI (Shinichi
  74. Yamashita via brandonli)
  75. HDFS-5721. sharedEditsImage in Namenode#initializeSharedEdits() should be
  76. closed before method returns. (Ted Yu via junping_du)
  77. HDFS-6228. comments typo fix for FsDatasetImpl.java (zhaoyunjiong via umamahesh)
  78. HDFS-6246. Remove 'dfs.support.append' flag from trunk code. (umamahesh)
  79. HDFS-6252. Phase out the old web UI in HDFS. (wheat9)
  80. HDFS-6609. Use DirectorySnapshottableFeature to represent a snapshottable
  81. directory. (Jing Zhao via wheat9)
  82. OPTIMIZATIONS
  83. BUG FIXES
  84. HADOOP-9635 Fix potential Stack Overflow in DomainSocket.c (V. Karthik Kumar
  85. via cmccabe)
  86. HDFS-2299. TestOfflineEditsViewer is failing on trunk. (Uma Maheswara Rao G
  87. via atm)
  88. HDFS-2310. TestBackupNode fails since HADOOP-7524 went in.
  89. (Ivan Kelly via todd)
  90. HDFS-2313. Rat excludes has a typo for excluding editsStored files. (atm)
  91. HDFS-2314. MRV1 test compilation broken after HDFS-2197 (todd)
  92. HDFS-46. Change default namespace quota of root directory from
  93. Integer.MAX_VALUE to Long.MAX_VALUE. (Uma Maheswara Rao G via szetszwo)
  94. HDFS-2373. Commands using WebHDFS and hftp print unnecessary debug
  95. info on the console with security enabled. (Arpit Gupta via suresh)
  96. HDFS-2776. Missing interface annotation on JournalSet.
  97. (Brandon Li via jitendra)
  98. HDFS-3037. TestMulitipleNNDataBlockScanner#testBlockScannerAfterRestart is
  99. racy. (atm)
  100. HDFS-3116. Typo in fetchdt error message. (AOE Takashi via atm)
  101. HDFS-3126. Journal stream from Namenode to BackupNode needs to have
  102. timeout. (Hari Mankude via suresh)
  103. HDFS-3121. Add HDFS tests for HADOOP-8014 change. (John George via
  104. suresh)
  105. HDFS-3119. Overreplicated block is not deleted even after the replication
  106. factor is reduced after sync follwed by closing that file. (Ashish Singhi
  107. via umamahesh)
  108. HDFS-3265. PowerPc Build error. (Kumar Ravi via mattf)
  109. HDFS-2312. FSNamesystem javadoc incorrectly says its for DNs. (harsh)
  110. HDFS-3163. TestHDFSCLI.testAll fails if the user name is not all lowercase.
  111. (Brandon Li via atm)
  112. HDFS-3462. TestDFSClientRetries.busyTest() should restore default
  113. xceiver count in the config. (Madhukara Phatak via harsh)
  114. HDFS-3550. Fix raid javadoc warnings. (Jason Lowe via daryn)
  115. HDFS-3549. Fix dist tar build fails in hadoop-hdfs-raid project. (Jason Lowe via daryn)
  116. HDFS-3482. hdfs balancer throws ArrayIndexOutOfBoundsException
  117. if option is specified without values. ( Madhukara Phatak via umamahesh)
  118. HDFS-3614. Revert unused MiniDFSCluster constructor from HDFS-3049.
  119. (acmurthy via eli)
  120. HDFS-3792. Fix two findbugs introduced by HDFS-3695 (todd)
  121. HDFS-3827. TestHASafeMode#assertSafemode method should be made static.
  122. (Jing Zhao via suresh)
  123. HDFS-3834. Remove unused static fields NAME, DESCRIPTION and Usage from
  124. Command. (Jing Zhao via suresh)
  125. HDFS-2434. TestNameNodeMetrics.testCorruptBlock fails intermittently.
  126. (Jing Zhao via suresh)
  127. HDFS-4067. TestUnderReplicatedBlocks intermittently fails due to
  128. ReplicaAlreadyExistsException. (Jing Zhao via suresh)
  129. HDFS-4115. TestHDFSCLI.testAll fails one test due to number format.
  130. (Trevor Robinson via suresh)
  131. HDFS-4165. Faulty sanity check in FsDirectory.unprotectedSetQuota.
  132. (Binglin Chang via suresh)
  133. HDFS-4105. The SPNEGO user for secondary namenode should use the web
  134. keytab. (Arpit Gupta via jitendra)
  135. HDFS-4003. test-patch should build the common native libs before
  136. running hdfs tests. (Colin Patrick McCabe via eli)
  137. HDFS-4260 Fix HDFS tests to set test dir to a valid HDFS path as opposed
  138. to the local build path (Chri Nauroth via Sanjay)
  139. HDFS-4310. fix test org.apache.hadoop.hdfs.server.datanode.
  140. TestStartSecureDataNode (Ivan A. Veselovsky via atm)
  141. HDFS-4275. MiniDFSCluster-based tests fail on Windows due to failure
  142. to delete test namenode directory. (Chris Nauroth via suresh)
  143. HDFS-4338. TestNameNodeMetrics#testCorruptBlock is flaky. (Andrew Wang via
  144. atm)
  145. HDFS-4391. TestDataTransferKeepalive fails when tests are executed in a
  146. certain order. (Andrew Wang via atm)
  147. HDFS-4757. Update FSDirectory#inodeMap when replacing an INodeDirectory
  148. while setting quota. (Jing Zhao via szetszwo)
  149. HDFS-4761. When resetting FSDirectory, the inodeMap should also be reset.
  150. (Jing Zhao via szetszwo)
  151. HDFS-4687. TestDelegationTokenForProxyUser#testWebHdfsDoAs is flaky with
  152. JDK7. (Andrew Wang via atm)
  153. HDFS-3934. duplicative dfs_hosts entries handled wrong. (Colin Patrick
  154. McCabe)
  155. HDFS-4366. Block Replication Policy Implementation May Skip Higher-Priority
  156. Blocks for Lower-Priority Blocks (Derek Dagit via kihwal)
  157. HDFS-5719. FSImage#doRollback() should close prevState before return
  158. (Ted Yu via brandonli)
  159. HDFS-5794. Fix the inconsistency of layout version number of
  160. ADD_DATANODE_AND_STORAGE_UUIDS between trunk and branch-2. (jing9)
  161. HDFS-6657. Remove link to 'Legacy UI' in trunk's Namenode UI.
  162. (Vinayakumar B via wheat 9)
  163. Release 2.6.0 - UNRELEASED
  164. INCOMPATIBLE CHANGES
  165. NEW FEATURES
  166. IMPROVEMENTS
  167. HDFS-6613. Improve logging in caching classes. (wang)
  168. HDFS-6511. BlockManager#computeInvalidateWork() could do nothing. (Juan Yu via wang)
  169. HDFS-6638. Shorten test run time with a smaller retry timeout setting.
  170. (Liang Xie via cnauroth)
  171. HDFS-6627. Rename DataNode#checkWriteAccess to checkReadAccess.
  172. (Liang Xie via cnauroth)
  173. HDFS-6645. Add test for successive Snapshots between XAttr modifications.
  174. (Stephen Chu via jing9)
  175. HDFS-6643. Refactor INodeWithAdditionalFields.PermissionStatusFormat and
  176. INodeFile.HeaderFormat. (szetszwo)
  177. HDFS-6640. Syntax for MKDIRS, CREATESYMLINK, and SETXATTR are given wrongly
  178. in WebHdfs document (missed webhdfs/v1). (Stephen Chu via jing9)
  179. HDFS-5202. Support Centralized Cache Management on Windows. (cnauroth)
  180. HDFS-2976. Remove unnecessary method (tokenRefetchNeeded) in DFSClient.
  181. (Uma Maheswara Rao G)
  182. HDFS-3851. DFSOutputStream class code cleanup. (Jing Zhao via suresh)
  183. HDFS-2856. Fix block protocol so that Datanodes don't require root or jsvc.
  184. (cnauroth)
  185. HDFS-5624. Add HDFS tests for ACLs in combination with viewfs.
  186. (Stephen Chu via cnauroth)
  187. HDFS-6655. Add 'header banner' to 'explorer.html' also in Namenode UI
  188. (vinayakumarb)
  189. HDFS-4120. Add a new "-skipSharedEditsCheck" option for BootstrapStandby
  190. (Liang Xie and Rakesh R via vinayakumarb)
  191. HDFS-6597. Add a new option to NN upgrade to terminate the process after
  192. upgrade on NN is completed. (Danilo Vunjak via cnauroth)
  193. HDFS-6700. BlockPlacementPolicy shoud choose storage but not datanode for
  194. deletion. (szetszwo)
  195. HDFS-6616. Add exclude-datanodes feature to WebHDFS redirection so that it
  196. will not redirect retries to the same datanode. (zhaoyunjiong via szetszwo)
  197. HDFS-6702. Change DFSClient to pass the StorageType from the namenode to
  198. datanodes and change datanode to write block replicas using the specified
  199. storage type. (szetszwo)
  200. HDFS-6701. Make seed optional in NetworkTopology#sortByDistance.
  201. (Ashwin Shankar via wang)
  202. HDFS-6755. There is an unnecessary sleep in the code path where
  203. DFSOutputStream#close gives up its attempt to contact the namenode
  204. (mitdesai21 via cmccabe)
  205. HDFS-6750. The DataNode should use its shared memory segment to mark
  206. short-circuit replicas that have been unlinked as stale (cmccabe)
  207. OPTIMIZATIONS
  208. HDFS-6690. Deduplicate xattr names in memory. (wang)
  209. BUG FIXES
  210. HDFS-6617. Flake TestDFSZKFailoverController.testManualFailoverWithDFSHAAdmin
  211. due to a long edit log sync op. (Liang Xie via cnauroth)
  212. HDFS-6646. [ HDFS Rolling Upgrade - Shell ] shutdownDatanode and getDatanodeInfo
  213. usage is missed ( Brahma Reddy Battula via vinayakumarb)
  214. HDFS-6630. Unable to fetch the block information by Browsing the file system on
  215. Namenode UI through IE9 ( Haohui Mai via vinayakumarb)
  216. HADOOP-8158. Interrupting hadoop fs -put from the command line
  217. causes a LeaseExpiredException. (daryn via harsh)
  218. HDFS-6678. MiniDFSCluster may still be partially running after initialization
  219. fails. (cnauroth)
  220. HDFS-5809. BlockPoolSliceScanner and high speed hdfs appending make
  221. datanode to drop into infinite loop (cmccabe)
  222. HDFS-6456. NFS should throw error for invalid entry in
  223. dfs.nfs.exports.allowed.hosts (Abhiraj Butala via brandonli)
  224. HDFS-6689. NFS doesn't return correct lookup access for direcories (brandonli)
  225. HDFS-6478. RemoteException can't be retried properly for non-HA scenario.
  226. (Ming Ma via jing9)
  227. HDFS-6693. TestDFSAdminWithHA fails on windows ( vinayakumarb )
  228. HDFS-6667. In HDFS HA mode, Distcp/SLive with webhdfs on secure cluster fails
  229. with Client cannot authenticate via:[TOKEN, KERBEROS] error. (jing9)
  230. HDFS-6704. Fix the command to launch JournalNode in HDFS-HA document.
  231. (Akira AJISAKA via jing9)
  232. HDFS-6731. Run "hdfs zkfc-formatZK" on a server in a non-namenode will cause
  233. a null pointer exception. (Masatake Iwasaki via brandonli)
  234. HDFS-6114. Block Scan log rolling will never happen if blocks written
  235. continuously leading to huge size of dncp_block_verification.log.curr
  236. (vinayakumarb via cmccabe)
  237. HDFS-6455. NFS: Exception should be added in NFS log for invalid separator in
  238. nfs.exports.allowed.hosts. (Abhiraj Butala via brandonli)
  239. HDFS-6715. Webhdfs wont fail over when it gets java.io.IOException: Namenode
  240. is in startup mode. (jing9)
  241. HDFS-5919. FileJournalManager doesn't purge empty and corrupt inprogress edits
  242. files (vinayakumarb)
  243. HDFS-6752. Avoid Address bind errors in TestDatanodeConfig#testMemlockLimit
  244. (vinayakumarb)
  245. HDFS-6749. FSNamesystem methods should call resolvePath.
  246. (Charles Lamb via cnauroth)
  247. Release 2.5.0 - UNRELEASED
  248. INCOMPATIBLE CHANGES
  249. HDFS-6168. Remove a deprecated constructor and the deprecated methods reportChecksumFailure,
  250. getDelegationToken(Text), renewDelegationToken and cancelDelegationToken from
  251. DistributedFileSystem. (szetszwo)
  252. NEW FEATURES
  253. HDFS-6281. Provide option to use the NFS Gateway without having to use the
  254. Hadoop portmapper. (atm)
  255. HDFS-5168. Add cross node dependency support to BlockPlacementPolicy.
  256. (Nikola Vujic via szetszwo)
  257. HDFS-6334. Client failover proxy provider for IP failover based NN HA.
  258. (kihwal)
  259. HDFS-6406. Add capability for NFS gateway to reject connections from
  260. unprivileged ports. (atm)
  261. HDFS-2006. Ability to support storing extended attributes per file.
  262. HDFS-5978. Create a tool to take fsimage and expose read-only WebHDFS API.
  263. (Akira Ajisaka via wheat9)
  264. HDFS-6278. Create HTML5-based UI for SNN. (wheat9)
  265. HDFS-6279. Create new index page for JN / DN. (wheat9)
  266. IMPROVEMENTS
  267. HDFS-6007. Update documentation about short-circuit local reads (iwasakims
  268. via cmccabe)
  269. HDFS-6125. Cleanup unnecessary cast in HDFS code base. (suresh)
  270. HDFS-5196. Provide more snapshot information in WebUI.
  271. (Shinichi Yamashita via wheat9)
  272. HDFS-6155. Fix Boxing/unboxing to parse a primitive findbugs warnings.
  273. (suresh)
  274. HDFS-6119. FSNamesystem code cleanup. (suresh)
  275. HDFS-6158. Clean up dead code for OfflineImageViewer. (wheat9)
  276. HDFS-6164. Remove lsr in OfflineImageViewer. (wheat9)
  277. HDFS-6167. Relocate the non-public API classes in the hdfs.client package.
  278. (szetszwo)
  279. HDFS-6191. Disable quota checks when replaying edit log. (kihwal)
  280. HDFS-6170. Support GETFILESTATUS operation in WebImageViewer.
  281. (Akira Ajisaka via wheat9)
  282. HDFS-6225. Remove the o.a.h.hdfs.server.common.UpgradeStatusReport.
  283. (wheat9)
  284. HDFS-6224. Add a unit test to TestAuditLogger for file permissions
  285. passed to logAuditEvent. (Charles Lamb via wang)
  286. HDFS-6194. Create new tests for ByteRangeInputStream.
  287. (Akira Ajisaka via wheat9)
  288. HDFS-6219. Proxy superuser configuration should use true client IP for
  289. address checks. (daryn via kihwal)
  290. HDFS-6256. Clean up ImageVisitor and SpotCheckImageVisitor.
  291. (Akira Ajisaka via wheat9)
  292. HDFS-6265. Prepare HDFS codebase for JUnit 4.11. (cnauroth)
  293. HDFS-5693. Few NN metrics data points were collected via JMX when NN
  294. is under heavy load. (Ming Ma via jing9)
  295. HDFS-6273. Config options to allow wildcard endpoints for namenode HTTP
  296. and HTTPS servers. (Arpit Agarwal)
  297. HDFS-6282. Re-add testIncludeByRegistrationName. (cmccabe)
  298. HDFS-6266. Identify full path for a given INode. (jing9)
  299. HDFS-6210. Support GETACLSTATUS operation in WebImageViewer.
  300. (Akira Ajisaka via wheat9)
  301. HDFS-6269. NameNode Audit Log should differentiate between webHDFS open and
  302. HDFS open. (Eric Payne via jeagles)
  303. HDFS-6304. Consolidate the logic of path resolution in FSDirectory.
  304. (wheat9)
  305. HDFS-6295. Add "decommissioning" state and node state filtering to
  306. dfsadmin. (wang)
  307. HDFS-6294. Use INode IDs to avoid conflicts when a file open for write is
  308. renamed. (cmccabe)
  309. HDFS-6328. Clean up dead code in FSDirectory. (wheat9)
  310. HDFS-6230. Expose upgrade status through NameNode web UI.
  311. (Mit Desai via wheat9)
  312. HDFS-6186. Pause deletion of blocks when the namenode starts up. (jing9)
  313. HDFS-6293. Issues with OIV processing PB-based fsimages. (kihwal)
  314. HDFS-2949. Add check to active state transition to prevent operator-induced
  315. split brain. (Rushabh S Shah via kihwal)
  316. HDFS-6287. Add vecsum test of libhdfs read access times (cmccabe)
  317. HDFS-5683. Better audit log messages for caching operations.
  318. (Abhiraj Butala via wang)
  319. HDFS-6345. DFS.listCacheDirectives() should allow filtering based on
  320. cache directive ID. (wang)
  321. HDFS-6432. Add snapshot related APIs to webhdfs. (jing9)
  322. HDFS-6396. Remove support for ACL feature from INodeSymlink.
  323. (Charles Lamb via wang)
  324. HDFS-6435. Add support for specifying a static uid/gid mapping for the NFS
  325. gateway. (atm via wang)
  326. HDFS-6416. Use Time#monotonicNow in OpenFileCtx and OpenFileCtxCatch to
  327. avoid system clock bugs (Abhiraj Butala via brandonli)
  328. HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
  329. HDFS-6447. balancer should timestamp the completion message.
  330. (Juan Yu via wang)
  331. HDFS-6463. Clarify behavior of AclStorage#createFsPermissionForExtendedAcl
  332. in comments. (cnauroth)
  333. HDFS-6472. fix typo in webapps/hdfs/explorer.js. (Juan Yu via wang)
  334. HDFS-6056. Clean up NFS config settings (brandonli)
  335. HDFS-6110 adding more slow action log in critical write path
  336. (Liang Xie via stack)
  337. HDFS-6109 let sync_file_range() system call run in background
  338. (Liang Xie via stack)
  339. HDFS-6268. Better sorting in NetworkTopology#pseudoSortByDistance when
  340. no local node is found. (wang)
  341. HDFS-6369. Document that BlockReader#available() can return more bytes than
  342. are remaining in the block (Ted Yu via Colin Patrick McCabe)
  343. HDFS-6487. TestStandbyCheckpoint#testSBNCheckpoints is racy.
  344. (Mit Desai via wang)
  345. HDFS-6297. Add CLI testcases to reflect new features of dfs and dfsadmin
  346. (Dasha Boudnik via cos)
  347. HDFS-6399. Add note about setfacl in HDFS permissions guide.
  348. (cnauroth via wang)
  349. HDFS-6315. Decouple recording edit logs from FSDirectory. (wheat9)
  350. HDFS-6379. HTTPFS - Implement ACLs support. (yoderme via tucu)
  351. HDFS-6471. Make moveFromLocal CLI testcases to be non-disruptive
  352. (Dasha Boudnik via cos)
  353. HDFS-6395. Skip checking xattr limits for non-user-visible namespaces.
  354. (Yi Liu via wang).
  355. HDFS-3493. Invalidate excess corrupted blocks as long as minimum
  356. replication is satisfied. (Juan Yu and Vinayakumar B via wang)
  357. HDFS-6330. Move mkdirs() to FSNamesystem. (wheat9)
  358. HDFS-6470. TestBPOfferService.testBPInitErrorHandling is flaky.
  359. (Ming Ma via wang)
  360. HDFS-6529. Trace logging for RemoteBlockReader2 to identify remote datanode
  361. and file being read. (Anubhav Dhoot via atm)
  362. HDFS-6499. Use NativeIO#renameTo instead of File#renameTo in
  363. FileJournalManager. (Yongjun Zhang via atm)
  364. HDFS-6518. TestCacheDirectives#testExceedsCapacity should
  365. take FSN read lock when accessing pendingCached list.
  366. (wang)
  367. HDFS-6528. Add XAttrs to TestOfflineImageViewer. (Stephen Chu via wang)
  368. HDFS-6545. Finalizing rolling upgrade can make NN unavailable for a long
  369. duration. (kihwal)
  370. HDFS-6530. Fix Balancer documentation. (szetszwo)
  371. HDFS-6480. Move waitForReady() from FSDirectory to FSNamesystem. (wheat9)
  372. HDFS-6403. Add metrics for log warnings reported by JVM pauses. (Yongjun
  373. Zhang via atm)
  374. HDFS-6557. Move the reference of fsimage to FSNamesystem. (wheat9)
  375. HDFS-4667. Capture renamed files/directories in snapshot diff report. (jing9
  376. and Binglin Chang via jing9)
  377. HDFS-6507. Improve DFSAdmin to support HA cluster better.
  378. (Zesheng Wu via vinayakumarb)
  379. HDFS-6578. add toString method to DatanodeStorage for easier debugging.
  380. (Yongjun Zhang via Arpit Agarwal)
  381. HDFS-6562. Refactor rename() in FSDirectory. (wheat9)
  382. HDFS-6486. Add user doc for XAttrs via WebHDFS. (Yi Liu via umamahesh)
  383. HDFS-6430. HTTPFS - Implement XAttr support. (Yi Liu via tucu)
  384. HDFS-6593. Move SnapshotDiffInfo out of INodeDirectorySnapshottable.
  385. (Jing Zhao via wheat9)
  386. HDFS-6595. Allow the maximum threads for balancing on datanodes to be
  387. configurable. (Benoy Antony via szetszwo)
  388. HDFS-6572. Add an option to the NameNode that prints the software and
  389. on-disk image versions. (Charles Lamb via cnauroth)
  390. HDFS-6603. Add XAttr with ACL test. (Stephen Chu via cnauroth)
  391. HDFS-6612. MiniDFSNNTopology#simpleFederatedTopology(int)
  392. always hardcode nameservice ID. (Juan Yu via wang)
  393. HDFS-6614. shorten TestPread run time with a smaller retry timeout setting.
  394. (Liang Xie via cnauroth)
  395. HDFS-6610. TestShortCircuitLocalRead tests sometimes timeout on slow
  396. machines. (Charles Lamb via wang)
  397. HDFS-6620. Snapshot docs should specify about preserve options with cp command
  398. (Stephen Chu via umamahesh)
  399. HDFS-6493. Change dfs.namenode.startup.delay.block.deletion to second
  400. instead of millisecond. (Juan Yu via wang)
  401. HDFS-6680. BlockPlacementPolicyDefault does not choose favored nodes
  402. correctly. (szetszwo)
  403. HDFS-6712. Document HDFS Multihoming Settings. (Arpit Agarwal)
  404. OPTIMIZATIONS
  405. HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)
  406. HDFS-6460. Ignore stale and decommissioned nodes in
  407. NetworkTopology#sortByDistance. (Yongjun Zhang via wang)
  408. HDFS-6583. Remove clientNode in FileUnderConstructionFeature. (wheat9)
  409. HDFS-6599. 2.4 addBlock is 10 to 20 times slower compared to 0.23 (daryn)
  410. BUG FIXES
  411. HDFS-6112. NFS Gateway docs are incorrect for allowed hosts configuration.
  412. (atm)
  413. HDFS-3087. Decomissioning on NN restart can complete without blocks being
  414. replicated. (Rushabh S Shah via kihwal)
  415. HDFS-6162. Format strings should use platform independent line separator.
  416. (suresh)
  417. HDFS-6156. Simplify the JMX API that provides snapshot information.
  418. (wheat9)
  419. HDFS-6173. Move the default processor from Ls to Web in OfflineImageViewer.
  420. (Akira Ajisaka via wheat9)
  421. HDFS-5591. Checkpointing should use monotonic time when calculating period.
  422. (Charles Lamb via wang)
  423. HDFS-6190. Minor textual fixes in DFSClient. (Charles Lamb via wheat9)
  424. HDFS-6159. TestBalancerWithNodeGroup.testBalancerWithNodeGroup fails if
  425. there is block missing after balancer success (Chen He via kihwal)
  426. HDFS-6181. Fix the wrong property names in NFS user guide (brandonli)
  427. HDFS-6180. dead node count / listing is very broken in JMX and old GUI.
  428. (wheat9)
  429. HDFS-6143. WebHdfsFileSystem open should throw FileNotFoundException for
  430. non-existing paths. (Gera Shegalov via wheat9)
  431. HDFS-6169. Move the address in WebImageViewer. (Akira Ajisaka via wheat9)
  432. HDFS-6160. TestSafeMode occasionally fails. (Arpit Agarwal)
  433. HDFS-5669. Storage#tryLock() should check for null before logging successfull message
  434. (Vinayakumar B via umamahesh)
  435. HDFS-6237. TestDFSShell#testGet fails on Windows due to invalid file system
  436. path. (cnauroth)
  437. HDFS-6238. TestDirectoryScanner leaks file descriptors. (cnauroth)
  438. HDFS-6243. HA NameNode transition to active or shutdown may leave lingering
  439. image transfer thread. (cnauroth)
  440. HDFS-5409. TestOfflineEditsViewer#testStored fails on Windows due to CRLF
  441. line endings in editsStored.xml from git checkout. (cnauroth)
  442. HDFS-4909. Avoid protocol buffer RPC namespace clashes. (cmccabe)
  443. HDFS-6153. Document "fileId" and "childrenNum" fields in the FileStatus Json schema
  444. (Akira Ajisaka via vinayakumarb)
  445. HDFS-6178. Decommission on standby NN couldn't finish. (Ming Ma via jing9)
  446. HDFS-6213. TestDataNodeConfig failing on Jenkins runs due to DN web port
  447. in use. (wang)
  448. HDFS-6274. Cleanup javadoc warnings in HDFS code. (suresh)
  449. HDFS-6275. Fix warnings - type arguments can be inferred and redudant
  450. local variable. (suresh)
  451. HDFS-6217. Webhdfs PUT operations may not work via a http proxy.
  452. (Daryn Sharp via kihwal)
  453. HDFS-6276. Remove unnecessary conditions and null check. (suresh)
  454. HDFS-5865. Update OfflineImageViewer document. (Akira Ajisaka via wheat9)
  455. HDFS-6270. Secondary namenode status page shows transaction count in bytes.
  456. (Benoy Antony via wheat9)
  457. HDFS-6218. Audit log should use true client IP for proxied webhdfs
  458. operations. (daryn via kihwal)
  459. HDFS-6288. DFSInputStream Pread doesn't update ReadStatistics.
  460. (Juan Yu via wang)
  461. HDFS-6289. HA failover can fail if there are pending DN messages for DNs
  462. which no longer exist. (atm)
  463. HDFS-6337. Setfacl testcase is failing due to dash character in username
  464. in TestAclCLI (umamahesh)
  465. HDFS-5381. ExtendedBlock#hashCode should use both blockId and block pool ID
  466. (Benoy Antony via Colin Patrick McCabe)
  467. HDFS-6240. WebImageViewer returns 404 if LISTSTATUS to an empty directory.
  468. (Akira Ajisaka via wheat9)
  469. HDFS-6351. Command hdfs dfs -rm -r can't remove empty directory.
  470. (Yongjun Zhang via wang)
  471. HDFS-5522. Datanode disk error check may be incorrectly skipped.
  472. (Rushabh S Shah via kihwal)
  473. HDFS-6367. EnumSetParam$Domain#parse fails for parameter containing more than one enum.
  474. (Yi Liu via umamahesh)
  475. HDFS-6305. WebHdfs response decoding may throw RuntimeExceptions (Daryn
  476. Sharp via jeagles)
  477. HDFS-6355. Fix divide-by-zero, improper use of wall-clock time in
  478. BlockPoolSliceScanner (cmccabe)
  479. HDFS-6370. Web UI fails to display in intranet under IE.
  480. (Haohui Mai via cnauroth)
  481. HDFS-6381. Fix a typo in INodeReference.java. (Binglin Chang via jing9)
  482. HDFS-6400. Cannot execute hdfs oiv_legacy. (Akira AJISAKA via kihwal)
  483. HDFS-6250. Fix test failed in TestBalancerWithNodeGroup.testBalancerWithRackLocality
  484. (Binglin Chang and Chen He via junping_du)
  485. HDFS-4913. Deleting file through fuse-dfs when using trash fails requiring
  486. root permissions (cmccabe)
  487. HDFS-6421. Fix vecsum.c compile on BSD and some other systems. (Mit Desai
  488. via Colin Patrick McCabe)
  489. HDFS-6419. TestBookKeeperHACheckpoints#TestSBNCheckpoints fails on trunk.
  490. (Akira AJISAKA via kihwal)
  491. HDFS-6409. Fix typo in log message about NameNode layout version upgrade.
  492. (Chen He via cnauroth)
  493. HDFS-6433. Replace BytesMoved class with AtomicLong.
  494. (Benoy Antony via cnauroth)
  495. HDFS-6438. DeleteSnapshot should be a DELETE request in WebHdfs. (jing9)
  496. HDFS-6423. Diskspace quota usage should be updated when appending data to
  497. partial block. (jing9)
  498. HDFS-6443. Fix MiniQJMHACluster related test failures. (Zesheng Wu via
  499. Arpit Agarwal)
  500. HDFS-6227. ShortCircuitCache#unref should purge ShortCircuitReplicas whose
  501. streams have been closed by java interrupts. (Colin Patrick McCabe via jing9)
  502. HDFS-6442. Fix TestEditLogAutoroll and TestStandbyCheckpoints failure
  503. caused by port conficts. (Zesheng Wu via Arpit Agarwal)
  504. HDFS-6448. BlockReaderLocalLegacy should set socket timeout based on
  505. conf.socketTimeout (liangxie via cmccabe)
  506. HDFS-6453. Use Time#monotonicNow to avoid system clock reset.
  507. (Liang Xie via wang)
  508. HDFS-6461. Use Time#monotonicNow to compute duration in DataNode#shutDown.
  509. (James Thomas via wang)
  510. HDFS-6462. NFS: fsstat request fails with the secure hdfs (brandonli)
  511. HDFS-6404. HttpFS should use a 000 umask for mkdir and create
  512. operations. (yoderme via tucu)
  513. HDFS-6424. blockReport doesn't need to invalidate blocks on SBN. (Ming Ma
  514. via jing9)
  515. HDFS-6497. Make TestAvailableSpaceVolumeChoosingPolicy deterministic
  516. (cmccabe)
  517. HDFS-6500. Snapshot shouldn't be removed silently after renaming to an
  518. existing snapshot. (Nicholas SZE via junping_du)
  519. HDFS-6257. TestCacheDirectives#testExceedsCapacity fails occasionally
  520. (cmccabe)
  521. HDFS-6364. Incorrect check for unknown datanode in Balancer. (Benoy
  522. Antony via Arpit Agarwal)
  523. HDFS-6503. Fix typo of DFSAdmin restoreFailedStorage.
  524. (Zesheng Wu via wheat9)
  525. HDFS-6464. Support multiple xattr.name parameters for WebHDFS getXAttrs.
  526. (Yi Liu via umamahesh)
  527. HDFS-6539. test_native_mini_dfs is skipped in hadoop-hdfs/pom.xml
  528. (decstery via cmccabe)
  529. HDFS-6527. Edit log corruption due to defered INode removal. (kihwal and
  530. jing9 via jing9)
  531. HDFS-6552. add DN storage to a BlockInfo will not replace the different
  532. storage from same DN. (Amir Langer via Arpit Agarwal)
  533. HDFS-6551. Rename with OVERWRITE option may throw NPE when the target
  534. file/directory is a reference INode. (jing9)
  535. HDFS-6439. NFS should not reject NFS requests to the NULL procedure whether
  536. port monitoring is enabled or not. (brandonli)
  537. HDFS-6559. Fix wrong option "dfsadmin -rollingUpgrade start" in the
  538. document. (Akira Ajisaka via Arpit Agarwal)
  539. HDFS-6553. Add missing DeprecationDeltas for NFS Kerberos configurations
  540. (Stephen Chu via brandonli)
  541. HDFS-6563. NameNode cannot save fsimage in certain circumstances when
  542. snapshots are in use. (atm)
  543. HDFS-3848. A Bug in recoverLeaseInternal method of FSNameSystem class
  544. (Hooman Peiro Sajjad and Chen He via kihwal)
  545. HDFS-6549. Add support for accessing the NFS gateway from the AIX NFS
  546. client. (atm)
  547. HDFS-6535. HDFS quota update is wrong when file is appended. (George Wong
  548. via jing9)
  549. HDFS-6222. Remove background token renewer from webhdfs.
  550. (Rushabh Shah and Daryn Sharp via cnauroth)
  551. HDFS-6580. FSNamesystem.mkdirsInt should call the getAuditFileInfo()
  552. wrapper. (Zhilei Xu via wheat9)
  553. HDFS-6587. Bug in TestBPOfferService can cause test failure. (Zhilei Xu
  554. via Arpit Agarwal)
  555. HDFS-6598. Fix a typo in message issued from explorer.js. (Yongjun Zhang
  556. via wheat9)
  557. HDFS-6475. WebHdfs clients fail without retry because incorrect handling
  558. of StandbyException. (Yongjun Zhang via atm)
  559. HADOOP-10701. NFS should not validate the access premission only based on
  560. the user's primary group (Harsh J via atm)
  561. HDFS-6556. Refine XAttr permissions (umamahesh)
  562. HDFS-6601. Issues in finalizing rolling upgrade when there is a layout
  563. version change (kihwal)
  564. HDFS-6418. Regression: DFS_NAMENODE_USER_NAME_KEY missing
  565. (szetszwo via stevel)
  566. HDFS-6558. Missing newline in the description of dfsadmin -rollingUpgrade.
  567. (Chen He via kihwal)
  568. HDFS-6591. while loop is executed tens of thousands of times in Hedged Read
  569. (Liang Xie via cnauroth)
  570. HDFS-6604. The short-circuit cache doesn't correctly time out replicas that
  571. haven't been used in a while (cmccabe)
  572. HDFS-4286. Changes from BOOKKEEPER-203 broken capability of including
  573. bookkeeper-server jar in hidden package of BKJM (Rakesh R via umamahesh)
  574. HDFS-4221. Remove the format limitation point from BKJM documentation as HDFS-3810
  575. closed. (Rakesh R via umamahesh)
  576. HDFS-5411. Update Bookkeeper dependency to 4.2.3. (Rakesh R via umamahesh)
  577. HDFS-6631. TestPread#testHedgedReadLoopTooManyTimes fails intermittently.
  578. (Liang Xie via cnauroth)
  579. HDFS-6647. Edit log corruption when pipeline recovery occurs for deleted
  580. file present in snapshot (kihwal)
  581. HDFS-6378. NFS registration should timeout instead of hanging when
  582. portmap/rpcbind is not available (Abhiraj Butala via brandonli)
  583. HDFS-6703. NFS: Files can be deleted from a read-only mount
  584. (Srikanth Upputuri via brandonli)
  585. HDFS-6422. getfattr in CLI doesn't throw exception or return non-0 return code
  586. when xattr doesn't exist. (Charles Lamb via umamahesh)
  587. HDFS-6696. Name node cannot start if the path of a file under
  588. construction contains ".snapshot". (wang)
  589. HDFS-6312. WebHdfs HA failover is broken on secure clusters.
  590. (daryn via tucu)
  591. HDFS-6618. FSNamesystem#delete drops the FSN lock between removing INodes
  592. from the tree and deleting them from the inode map (kihwal via cmccabe)
  593. HDFS-6622. Rename and AddBlock may race and produce invalid edits (kihwal
  594. via cmccabe)
  595. HDFS-6723. New NN webUI no longer displays decommissioned state for dead node.
  596. (Ming Ma via wheat9)
  597. HDFS-6717. JIRA HDFS-5804 breaks default nfs-gateway behavior for unsecured config
  598. (brandonli)
  599. BREAKDOWN OF HDFS-2006 SUBTASKS AND RELATED JIRAS
  600. HDFS-6299. Protobuf for XAttr and client-side implementation. (Yi Liu via umamahesh)
  601. HDFS-6302. Implement XAttr as a INode feature. (Yi Liu via umamahesh)
  602. HDFS-6309. Javadocs for Xattrs apis in DFSClient and other minor fixups. (Charles Lamb via umamahesh)
  603. HDFS-6258. Namenode server-side storage for XAttrs. (Yi Liu via umamahesh)
  604. HDFS-6303. HDFS implementation of FileContext API for XAttrs. (Yi Liu and Charles Lamb via umamahesh)
  605. HDFS-6324. Shift XAttr helper code out for reuse. (Yi Liu via umamahesh)
  606. HDFS-6301. NameNode: persist XAttrs in fsimage and record XAttrs modifications to edit log.
  607. (Yi Liu via umamahesh)
  608. HDFS-6298. XML based End-to-End test for getfattr and setfattr commands. (Yi Liu via umamahesh)
  609. HDFS-6314. Test cases for XAttrs. (Yi Liu via umamahesh)
  610. HDFS-6344. Maximum limit on the size of an xattr. (Yi Liu via umamahesh)
  611. HDFS-6377. Unify xattr name and value limits into a single limit. (wang)
  612. HDFS-6373. Remove support for extended attributes on symlinks. (Charles Lamb via wang)
  613. HDFS-6283. Write end user documentation for xattrs. (wang)
  614. HDFS-6412. Interface audience and stability annotations missing from
  615. several new classes related to xattrs. (wang)
  616. HDFS-6259. Support extended attributes via WebHDFS. (yliu)
  617. HDFS-6346. Optimize OP_SET_XATTRS by persisting single Xattr entry per setXattr/removeXattr api call
  618. (Yi Liu via umamahesh)
  619. HDFS-6331. ClientProtocol#setXattr should not be annotated idempotent.
  620. (umamahesh via wang)
  621. HDFS-6335. TestOfflineEditsViewer for XAttr. (Yi Liu via umamahesh)
  622. HDFS-6343. fix TestNamenodeRetryCache and TestRetryCacheWithHA failures. (umamahesh)
  623. HDFS-6366. FsImage loading failed with RemoveXattr op (umamahesh)
  624. HDFS-6357. SetXattr should persist rpcIDs for handling retrycache with Namenode restart and HA
  625. (umamahesh)
  626. HDFS-6372. Handle setXattr rpcIDs for OfflineEditsViewer. (umamahesh)
  627. HDFS-6410. DFSClient unwraps AclException in xattr methods, but those
  628. methods cannot throw AclException. (wang)
  629. HDFS-6413. xattr names erroneously handled as case-insensitive.
  630. (Charles Lamb via cnauroth)
  631. HDFS-6414. xattr modification operations are based on state of latest
  632. snapshot instead of current version of inode. (Andrew Wang via cnauroth)
  633. HDFS-6374. setXAttr should require the user to be the owner of the file
  634. or directory (Charles Lamb via wang)
  635. HDFS-6375. Listing extended attributes with the search permission.
  636. (Charles Lamb via wang)
  637. HDFS-6492. Support create-time xattrs and atomically setting multiple
  638. xattrs. (wang)
  639. Release 2.4.1 - 2014-06-23
  640. INCOMPATIBLE CHANGES
  641. NEW FEATURES
  642. IMPROVEMENTS
  643. HDFS-6215. Wrong error message for upgrade. (Kihwal Lee via jeagles)
  644. OPTIMIZATIONS
  645. BUG FIXES
  646. HDFS-6189. Multiple HDFS tests fail on Windows attempting to use a test
  647. root path containing a colon. (cnauroth via szetszwo)
  648. HDFS-6197. Rolling upgrade rollback on Windows can fail attempting to rename
  649. edit log segment files to a destination that already exists. (cnauroth)
  650. HDFS-6198. DataNode rolling upgrade does not correctly identify current
  651. block pool directory and replace with trash on Windows. (cnauroth)
  652. HDFS-6206. Fix NullPointerException in DFSUtil.substituteForWildcardAddress.
  653. (szetszwo)
  654. HDFS-6204. Fix TestRBWBlockInvalidation: change the last sleep to a loop.
  655. (szetszwo)
  656. HDFS-6209. TestValidateConfigurationSettings should use random ports.
  657. (Arpit Agarwal via szetszwo)
  658. HDFS-6208. DataNode caching can leak file descriptors. (cnauroth)
  659. HDFS-6231. DFSClient hangs infinitely if using hedged reads and all eligible
  660. datanodes die. (cnauroth)
  661. HDFS-6234. TestDatanodeConfig#testMemlockLimit fails on Windows due to
  662. invalid file path. (cnauroth)
  663. HDFS-6235. TestFileJournalManager can fail on Windows due to file locking if
  664. tests run out of order. (cnauroth)
  665. HDFS-6229. Race condition in failover can cause RetryCache fail to work.
  666. (jing9)
  667. HDFS-6232. OfflineEditsViewer throws a NPE on edits containing ACL
  668. modifications (ajisakaa via cmccabe)
  669. HDFS-6236. ImageServlet should use Time#monotonicNow to measure latency.
  670. (cnauroth)
  671. HDFS-6245. datanode fails to start with a bad disk even when failed
  672. volumes is set. (Arpit Agarwal)
  673. HDFS-2882. DN continues to start up, even if block pool fails to initialize
  674. (vinayakumarb)
  675. HDFS-6340. DN can't finalize upgrade. (Rahul Singhal via Arpit Agarwal)
  676. HDFS-6329. WebHdfs does not work if HA is enabled on NN but logical URI is
  677. not configured. (kihwal)
  678. HDFS-6313. WebHdfs may use the wrong NN when configured for multiple HA NNs
  679. (kihwal)
  680. HDFS-6326. WebHdfs ACL compatibility is broken. (cnauroth)
  681. HDFS-6361. TestIdUserGroup.testUserUpdateSetting failed due to out of range
  682. nfsnobody Id. (Yongjun Zhang via brandonli)
  683. HDFS-6362. InvalidateBlocks is inconsistent in usage of DatanodeUuid and
  684. StorageID. (Arpit Agarwal)
  685. HDFS-6402. Suppress findbugs warning for failure to override equals and
  686. hashCode in FsAclPermission. (cnauroth)
  687. HDFS-6325. Append should fail if the last block has insufficient number of
  688. replicas (Keith Pak via cos)
  689. HDFS-6397. NN shows inconsistent value in deadnode count.
  690. (Mohammad Kamrul Islam via kihwal)
  691. HDFS-6411. nfs-hdfs-gateway mount raises I/O error and hangs when a
  692. unauthorized user attempts to access it (brandonli)
  693. Release 2.4.0 - 2014-04-07
  694. INCOMPATIBLE CHANGES
  695. NEW FEATURES
  696. HDFS-5698. Use protobuf to serialize / deserialize FSImage. (See breakdown
  697. of tasks below for features and contributors)
  698. HDFS-5776 Support 'hedged' reads in DFSClient (Liang Xie via stack)
  699. HDFS-4685. Implementation of ACLs in HDFS. (See breakdown of tasks below for
  700. features and contributors)
  701. IMPROVEMENTS
  702. HDFS-5781. Use an array to record the mapping between FSEditLogOpCode and
  703. the corresponding byte value. (jing9)
  704. HDFS-5153. Datanode should send block reports for each storage in a
  705. separate message. (Arpit Agarwal)
  706. HDFS-5804. HDFS NFS Gateway fails to mount and proxy when using Kerberos.
  707. (Abin Shahab via jing9)
  708. HDFS-5859. DataNode#checkBlockToken should check block tokens even if
  709. security is not enabled. (cmccabe)
  710. HDFS-5746. Add ShortCircuitSharedMemorySegment (cmccabe)
  711. HDFS-4911. Reduce PeerCache timeout to be commensurate with
  712. dfs.datanode.socket.reuse.keepalive (cmccabe)
  713. HDFS-4370. Fix typo Blanacer in DataNode. (Chu Tong via shv)
  714. HDFS-5929. Add blockpool % usage to HDFS federated nn page.
  715. (Siqi Li via suresh)
  716. HDFS-5810. Unify mmap cache and short-circuit file descriptor cache
  717. (cmccabe)
  718. HDFS-5940. Minor cleanups to ShortCircuitReplica, FsDatasetCache, and
  719. DomainSocketWatcher (cmccabe)
  720. HDFS-5531. Combine the getNsQuota() and getDsQuota() methods in INode.
  721. (szetszwo)
  722. HDFS-5285. Flatten INodeFile hierarchy: Replace INodeFileUnderConstruction
  723. and INodeFileUnderConstructionWithSnapshot with FileUnderContructionFeature.
  724. (jing9 via szetszwo)
  725. HDFS-5286. Flatten INodeDirectory hierarchy: Replace INodeDirectoryWithQuota
  726. with DirectoryWithQuotaFeature. (szetszwo)
  727. HDFS-5537. Remove FileWithSnapshot interface. (jing9 via szetszwo)
  728. HDFS-5554. Flatten INodeFile hierarchy: Replace INodeFileWithSnapshot with
  729. FileWithSnapshotFeature. (jing9 via szetszwo)
  730. HDFS-5647. Merge INodeDirectory.Feature and INodeFile.Feature. (Haohui Mai
  731. via jing9)
  732. HDFS-5632. Flatten INodeDirectory hierarchy: Replace
  733. INodeDirectoryWithSnapshot with DirectoryWithSnapshotFeature.
  734. (jing9 via szetszwo)
  735. HDFS-5715. Use Snapshot ID to indicate the corresponding Snapshot for a
  736. FileDiff/DirectoryDiff. (jing9)
  737. HDFS-5726. Fix compilation error in AbstractINodeDiff for JDK7. (jing9)
  738. HDFS-5973. add DomainSocket#shutdown method (cmccabe)
  739. HDFS-5318. Support read-only and read-write paths to shared replicas.
  740. (Eric Sirianni via Arpit Agarwal)
  741. HDFS-5868. Make hsync implementation pluggable on the DataNode.
  742. (Buddy Taylor via Arpit Agarwal)
  743. HDFS-5768. Consolidate the serialization code in DelegationTokenSecretManager
  744. (Haohui Mai via brandonli)
  745. HDFS-5775. Consolidate the code for serialization in CacheManager
  746. (Haohui Mai via brandonli)
  747. HDFS-5935. New Namenode UI FS browser should throw smarter error messages.
  748. (Travis Thompson via jing9)
  749. HDFS-5939. WebHdfs returns misleading error code and logs nothing if trying
  750. to create a file with no DNs in cluster. (Yongjun Zhang via jing9)
  751. HDFS-6006. Remove duplicate code in FSNameSystem#getFileInfo.
  752. (Akira Ajisaka via cnauroth)
  753. HDFS-6018. Exception recorded in LOG when IPCLoggerChannel#close is called.
  754. (jing9)
  755. HDFS-3969. Small bug fixes and improvements for disk locations API.
  756. (Todd Lipcon and Andrew Wang)
  757. HDFS-6025. Update findbugsExcludeFile.xml. (szetszwo)
  758. HDFS-6030. Remove an unused constructor in INode.java. (yzhang via
  759. cmccabe)
  760. HDFS-4200. Reduce the size of synchronized sections in PacketResponder.
  761. (suresh)
  762. HDFS-5950. The DFSClient and DataNode should use shared memory segments to
  763. communicate short-circuit information. (cmccabe)
  764. HDFS-6046. add dfs.client.mmap.enabled (cmccabe)
  765. HDFS-5321. Clean up the HTTP-related configuration in HDFS (wheat9)
  766. HDFS-5167. Add metrics about the NameNode retry cache. (Tsuyoshi OZAWA via
  767. jing9)
  768. HDFS-6043. Give HDFS daemons NFS3 and Portmap their own OPTS (brandonli)
  769. HDFS-6044. Add property for setting the NFS look up time for users
  770. (brandonli)
  771. HDFS-6061. Allow dfs.datanode.shared.file.descriptor.path to contain
  772. multiple entries and fall back when needed (cmccabe)
  773. HDFS-5986. Capture the number of blocks pending deletion on namenode webUI.
  774. (cnauroth)
  775. HDFS-6070. Cleanup use of ReadStatistics in DFSInputStream. (wang)
  776. HDFS-6055. Change default configuration to limit file name length in HDFS.
  777. (cnauroth)
  778. HDFS-3405. Checkpointing should use HTTP POST or PUT instead of GET-GET
  779. to send merged fsimages. (Vinayakumar B via wang)
  780. HDFS-6085. Improve CacheReplicationMonitor log messages a bit (cmccabe)
  781. HDFS-6072. Clean up dead code of FSImage. (wheat9)
  782. HDFS-6080. Improve NFS gateway performance by making rtmax and wtmax
  783. configurable. (Abin Shahab via brandonli)
  784. HDFS-6084. Namenode UI - "Hadoop" logo link shouldn't go to hadoop
  785. homepage. (Travis Thompson via wheat9)
  786. HDFS-6106. Reduce default for
  787. dfs.namenode.path.based.cache.refresh.interval.ms (cmccabe)
  788. HDFS-6090. Use MiniDFSCluster.Builder instead of deprecated constructors.
  789. (Akira AJISAKA via jing9)
  790. HDFS-6068. Disallow snapshot names that are also invalid directory names.
  791. (sathish via szetszwo)
  792. HDFS-6123. Do not log stack trace for ReplicaAlreadyExistsException and
  793. SocketTimeoutException. (szetszwo)
  794. HDFS-6129. When a replica is not found for deletion, do not throw an
  795. exception. (szetszwo)
  796. HDFS-6138. Add a user guide for how to use viewfs with federation.
  797. (sanjay and szetszwo via szetszwo)
  798. HDFS-6120. Fix and improve safe mode log messages. (Arpit Agarwal)
  799. HDFS-6050. NFS does not handle exceptions correctly in a few places
  800. (brandonli)
  801. HDFS-5138. Support HDFS upgrade in HA. (atm via todd)
  802. HDFS-6124. Add final modifier to class members. (Suresh Srinivas via
  803. Arpit Agarwal)
  804. HDFS-5910. Enhance DataTransferProtocol to allow per-connection choice
  805. of encryption/plain-text. (Benoy Antony via Arpit Agarwal)
  806. HDFS-6150. Add inode id information in the logs to make debugging easier.
  807. (suresh)
  808. OPTIMIZATIONS
  809. HDFS-5790. LeaseManager.findPath is very slow when many leases need recovery
  810. (todd)
  811. BUG FIXES
  812. HDFS-5492. Port HDFS-2069 (Incorrect default trash interval in the
  813. docs) to trunk. (Akira Ajisaka via Arpit Agarwal)
  814. HDFS-5843. DFSClient.getFileChecksum() throws IOException if checksum is
  815. disabled. (Laurent Goujon via jing9)
  816. HDFS-5856. DataNode.checkDiskError might throw NPE.
  817. (Josh Elser via suresh)
  818. HDFS-5828. BlockPlacementPolicyWithNodeGroup can place multiple replicas on
  819. the same node group when dfs.namenode.avoid.write.stale.datanode is true.
  820. (Buddy via junping_du)
  821. HDFS-5767. NFS implementation assumes userName userId mapping to be unique,
  822. which is not true sometimes (Yongjun Zhang via brandonli)
  823. HDFS-5791. TestHttpsFileSystem should use a random port to avoid binding
  824. error during testing (Haohui Mai via brandonli)
  825. HDFS-5709. Improve NameNode upgrade with existing reserved paths and path
  826. components. (Andrew Wang via atm)
  827. HDFS-5881. Fix skip() of the short-circuit local reader(legacy). (kihwal)
  828. HDFS-5895. HDFS cacheadmin -listPools has exit_code of 1 when the command
  829. returns 0 result. (Tassapol Athiapinya via cnauroth)
  830. HDFS-5807. TestBalancerWithNodeGroup.testBalancerWithNodeGroup fails
  831. intermittently. (Chen He via kihwal)
  832. HDFS-5882. TestAuditLogs is flaky (jxiang via cmccabe)
  833. HDFS-5900. Cannot set cache pool limit of "unlimited" via CacheAdmin.
  834. (wang)
  835. HDFS-5886. Potential null pointer deference in RpcProgramNfs3#readlink()
  836. (brandonli)
  837. HDFS-4858. HDFS DataNode to NameNode RPC should timeout.
  838. (Henry Wang via shv)
  839. HDFS-5879. Some TestHftpFileSystem tests do not close streams.
  840. (Gera Shegalov via suresh)
  841. HDFS-5938. Make BlockReaderFactory#BlockReaderPeer a static class to avoid
  842. a findbugs warning. (cmccabe)
  843. HDFS-5891. webhdfs should not try connecting the DN during redirection
  844. (Haohui Mai via brandonli)
  845. HDFS-5904. TestFileStatus fails intermittently. (Mit Desai via kihwal)
  846. HDFS-5941. add dfs.namenode.secondary.https-address and
  847. dfs.namenode.secondary.https-address in hdfs-default.xml.
  848. (Haohui Mai via cnauroth)
  849. HDFS-5913. Nfs3Utils#getWccAttr() should check attr parameter against null
  850. (brandonli)
  851. HDFS-5934. New Namenode UI back button doesn't work as expected
  852. (Travis Thompson via brandonli)
  853. HDFS-5901. NameNode new UI doesn't support IE8 and IE9 on windows 7
  854. (Vinayakumar B via brandonli)
  855. HDFS-5943. 'dfs.namenode.https-address' property is not loaded from
  856. configuration in federation setup. (suresh)
  857. HDFS-3128. Unit tests should not use a test root in /tmp. (wang)
  858. HDFS-5948. TestBackupNode flakes with port in use error. (Haohui Mai
  859. via Arpit Agarwal)
  860. HDFS-5949. New Namenode UI when trying to download a file, the browser
  861. doesn't know the file name. (Haohui Mai via brandonli)
  862. HDFS-5716. Allow WebHDFS to use pluggable authentication filter
  863. (Haohui Mai via brandonli)
  864. HDFS-5953. TestBlockReaderFactory fails if libhadoop.so has not been built.
  865. (Akira Ajisaka via wang)
  866. HDFS-5759. Web UI does not show up during the period of loading FSImage.
  867. (Haohui Mai via Arpit Agarwal)
  868. HDFS-5942. Fix javadoc in OfflineImageViewer. (Akira Ajisaka via cnauroth)
  869. HDFS-5780. TestRBWBlockInvalidation times out intemittently. (Mit Desai
  870. via kihwal)
  871. HDFS-5803. TestBalancer.testBalancer0 fails. (Chen He via kihwal)
  872. HDFS-5893. HftpFileSystem.RangeHeaderUrlOpener uses the default
  873. URLConnectionFactory which does not import SSL certificates. (Haohui Mai via
  874. jing9)
  875. HDFS-5961. OIV cannot load fsimages containing a symbolic link. (kihwal)
  876. HDFS-5483. NN should gracefully handle multiple block replicas on same DN.
  877. (Arpit Agarwal)
  878. HDFS-5742. DatanodeCluster (mini cluster of DNs) fails to start.
  879. (Arpit Agarwal)
  880. HDFS-5979. Typo and logger fix for fsimage PB code. (wang)
  881. HDFS-5962. Mtime and atime are not persisted for symbolic links. (Akira
  882. Ajisaka via kihwal)
  883. HDFS-5944. LeaseManager:findLeaseWithPrefixPath can't handle path like /a/b/
  884. and cause SecondaryNameNode failed do checkpoint (Yunjiong Zhao via brandonli)
  885. HDFS-5982. Need to update snapshot manager when applying editlog for deleting
  886. a snapshottable directory. (jing9)
  887. HDFS-5988. Bad fsimage always generated after upgrade. (wang)
  888. HDFS-5922. DN heartbeat thread can get stuck in tight loop. (Arpit Agarwal)
  889. HDFS-6008. Namenode dead node link is giving HTTP error 500.
  890. (Benoy Antony via cnauroth)
  891. HDFS-5936. MiniDFSCluster does not clean data left behind by
  892. SecondaryNameNode. (Binglin Chang via cnauroth)
  893. HDFS-5339. WebHDFS URI does not accept logical nameservices when security is
  894. enabled. (Haohui Mai via jing9)
  895. HDFS-6033. PBImageXmlWriter incorrectly handles processing cache
  896. directives. (atm)
  897. HDFS-5821. TestHDFSCLI fails for user names with the dash character.
  898. (Gera Shegalov via Arpit Agarwal)
  899. HDFS-5956. A file size is multiplied by the replication factor in 'hdfs oiv
  900. -p FileDistribution' option. (Akira Ajisaka via wheat9)
  901. HDFS-5866. '-maxSize' and '-step' option fail in OfflineImageViewer.
  902. (Akira Ajisaka via wheat9)
  903. HDFS-6040. fix DFSClient issue without libhadoop.so and some other
  904. ShortCircuitShm cleanups (cmccabe)
  905. HDFS-6047 TestPread NPE inside in DFSInputStream hedgedFetchBlockByteRange
  906. (stack)
  907. HDFS-6051. HDFS cannot run on Windows since short-circuit shared memory
  908. segment changes. (cmccabe)
  909. HDFS-5857. TestWebHDFS#testNamenodeRestart fails intermittently with NPE.
  910. (Mit Desai via wheat9)
  911. HDFS-5898. Allow NFS gateway to login/relogin from its kerberos keytab.
  912. (Abin Shahab via atm)
  913. HDFS-6057. DomainSocketWatcher.watcherThread should be marked as daemon
  914. thread (cmccabe)
  915. HDFS-6058. Fix TestHDFSCLI failures after HADOOP-8691 change.
  916. (Akira Ajisaka via wheat9)
  917. HDFS-6062. TestRetryCacheWithHA#testConcat is flaky. (Jing Zhao via wheat9)
  918. HDFS-6059. TestBlockReaderLocal fails if native library is not available.
  919. (Akira AJISAKA via Colin Patrick McCabe)
  920. HDFS-6084. DFSConfigKeys.DFS_BLOCKREPORT_INTERVAL_MSEC_DEFAULT is
  921. not updated with latest block report interval of 6 hrs.
  922. (Vinayakumar B via wheat9)
  923. HDFS-6067. TestPread.testMaxOutHedgedReadPool is flaky (cmccabe)
  924. HDFS-6065. HDFS zero-copy reads should return null on EOF when doing ZCR
  925. (cmccabe)
  926. HDFS-5064. Standby checkpoints should not block concurrent readers.
  927. (atm via wang)
  928. HDFS-6078. TestIncrementalBlockReports is flaky. (Arpit Agarwal)
  929. HDFS-6071. BlockReaderLocal doesn't return -1 on EOF when doing a
  930. zero-length read on a short file (cmccabe)
  931. HDFS-5892. TestDeleteBlockPool fails in branch-2. (Ted Yu via wheat9)
  932. HDFS-6077. Running slive with webhdfs on secure HA cluster fails with unkown
  933. host exception. (jing9)
  934. HDFS-6086. Fix a case where zero-copy or no-checksum reads were not allowed
  935. even when the block was cached (cmccabe)
  936. HDFS-6079. Timeout for getFileBlockStorageLocations does not work. (wang)
  937. HDFS-5705. TestSecondaryNameNodeUpgrade#testChangeNsIDFails may fail due
  938. to ConcurrentModificationException. (Ted Yu via brandonli)
  939. HDFS-6096. TestWebHdfsTokens may timeout. (szetszwo via Arpit Agarwal)
  940. HDFS-5244. TestNNStorageRetentionManager#testPurgeMultipleDirs fails.
  941. (Jinghui Wang via suresh)
  942. HDFS-6097. zero-copy reads are incorrectly disabled on file offsets above
  943. 2GB (cmccabe)
  944. HDFS-6102. Lower the default maximum items per directory to fix PB fsimage
  945. loading. (wang)
  946. HDFS-6094. The same block can be counted twice towards safe mode
  947. threshold. (Arpit Agarwal)
  948. HDFS-6107. When a block can't be cached due to limited space on the
  949. DataNode, that block becomes uncacheable (cmccabe)
  950. HDFS-5516. WebHDFS does not require user name when anonymous http requests
  951. are disallowed. (Miodrag Radulovic via cnauroth)
  952. HDFS-6117. Print file path information in FileNotFoundException on INode
  953. ID mismatch. (suresh)
  954. HDFS-6099. HDFS file system limits not enforced on renames. (cnauroth)
  955. HDFS-6100. DataNodeWebHdfsMethods does not failover in HA mode. (Haohui Mai
  956. via jing9)
  957. HDFS-6105. NN web UI for DN list loads the same jmx page multiple times.
  958. (wheat9)
  959. HDFS-6127. WebHDFS tokens cannot be renewed in HA setup. (wheat9)
  960. HDFS-6140. WebHDFS cannot create a file with spaces in the name after HA
  961. failover changes. (cnauroth)
  962. HDFS-6135. In HDFS upgrade with HA setup, JournalNode cannot handle layout
  963. version bump when rolling back. (jing9)
  964. HDFS-5846. Assigning DEFAULT_RACK in resolveNetworkLocation method can break
  965. data resiliency. (Nikola Vujic via cnauroth)
  966. HDFS-5840. Follow-up to HDFS-5138 to improve error handling during partial
  967. upgrade failures. (atm, jing9 and suresh via jing9)
  968. HDFS-6130. NPE when upgrading namenode from fsimages older than -32.
  969. (wheat9)
  970. HDFS-6115. Call flush() for every append on block scan verification log.
  971. (Vinayakumar B via szetszwo)
  972. HDFS-5672. TestHASafeMode#testSafeBlockTracking fails in trunk. (jing9)
  973. HDFS-6157. Fix the entry point of OfflineImageViewer for hdfs.cmd. (wheat9)
  974. HDFS-6163. Fix a minor bug in the HA upgrade document. (Fengdong Yu via
  975. jing9)
  976. HDFS-6166. Change Balancer socket read timeout to 20 minutes and add
  977. 10 seconds delay after error. (Nathan Roberts via szetszwo)
  978. BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
  979. HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)
  980. HDFS-5738. Serialize INode information in protobuf. (Haohui Mai via jing9)
  981. HDFS-5772. Serialize under-construction file information in FSImage. (jing9)
  982. HDFS-5783. Compute the digest before loading FSImage. (Haohui Mai via jing9)
  983. HDFS-5785. Serialize symlink in protobuf. (Haohui Mai via jing9)
  984. HDFS-5793. Optimize the serialization of PermissionStatus. (Haohui Mai via
  985. jing9)
  986. HDFS-5743. Use protobuf to serialize snapshot information. (jing9)
  987. HDFS-5774. Serialize CachePool directives in protobuf. (Haohui Mai via jing9)
  988. HDFS-5744. Serialize information for token managers in protobuf. (Haohui Mai
  989. via jing9)
  990. HDFS-5824. Add a Type field in Snapshot DiffEntry's protobuf definition.
  991. (jing9)
  992. HDFS-5808. Implement cancellation when saving FSImage. (Haohui Mai via jing9)
  993. HDFS-5826. Update the stored edit logs to be consistent with the changes in
  994. HDFS-5698 branch. (Haohui Mai via jing9)
  995. HDFS-5797. Implement offline image viewer. (Haohui Mai via jing9)
  996. HDFS-5771. Track progress when loading fsimage. (Haohui Mai via cnauroth)
  997. HDFS-5871. Use PBHelper to serialize CacheDirectiveInfoExpirationProto.
  998. (Haohui Mai via jing9)
  999. HDFS-5884. LoadDelegator should use IOUtils.readFully() to read the magic
  1000. header. (Haohui Mai via jing9)
  1001. HDFS-5885. Add annotation for repeated fields in the protobuf definition.
  1002. (Haohui Mai via jing9)
  1003. HDFS-5906. Fixing findbugs and javadoc warnings in the HDFS-5698 branch.
  1004. (Haohui Mai via jing9)
  1005. HDFS-5911. The id of a CacheDirective instance does not get serialized in
  1006. the protobuf-fsimage. (Haohui Mai via jing9)
  1007. HDFS-5915. Refactor FSImageFormatProtobuf to simplify cross section reads.
  1008. (Haohui Mai via cnauroth)
  1009. HDFS-5847. Consolidate INodeReference into a separate section. (jing9)
  1010. HDFS-5959. Fix typo at section name in FSImageFormatProtobuf.java.
  1011. (Akira Ajisaka via suresh)
  1012. HDFS-5981. PBImageXmlWriter generates malformed XML.
  1013. (Haohui Mai via cnauroth)
  1014. HDFS-6089. Standby NN while transitioning to active throws a connection
  1015. refused error when the prior active NN process is suspended.
  1016. (Jing Zhao via Andrew Wang)
  1017. BREAKDOWN OF HDFS-4685 SUBTASKS AND RELATED JIRAS
  1018. HDFS-5596. Implement RPC stubs. (Haohui Mai via cnauroth)
  1019. HDFS-5685. Implement ACL as a INode feature. (Haohui Mai via cnauroth)
  1020. HDFS-5618. NameNode: persist ACLs in fsimage. (Haohui Mai via cnauroth)
  1021. HDFS-5619. NameNode: record ACL modifications to edit log.
  1022. (Haohui Mai via cnauroth)
  1023. HDFS-5673. Implement logic for modification of ACLs. (cnauroth)
  1024. HDFS-5758. NameNode: complete implementation of inode modifications for
  1025. ACLs. (Chris Nauroth via wheat9)
  1026. HDFS-5612. NameNode: change all permission checks to enforce ACLs in
  1027. addition to permissions. (Chris Nauroth via wheat9)
  1028. HDFS-5613. NameNode: implement handling of ACLs in combination with
  1029. symlinks. (Chris Nauroth via wheat9)
  1030. HDFS-5615. NameNode: implement handling of ACLs in combination with sticky
  1031. bit. (Chris Nauroth via wheat9)
  1032. HDFS-5702. FsShell Cli: Add XML based End-to-End test for getfacl and
  1033. setfacl commands. (Vinay via cnauroth)
  1034. HDFS-5608. WebHDFS: implement ACL APIs.
  1035. (Sachin Jose and Renil Joseph via cnauroth)
  1036. HDFS-5614. NameNode: implement handling of ACLs in combination with
  1037. snapshots. (cnauroth)
  1038. HDFS-5858. Refactor common ACL test cases to be run through multiple
  1039. FileSystem implementations. (cnauroth)
  1040. HDFS-5860. Refactor INodeDirectory getDirectoryXFeature methods to use
  1041. common getFeature helper method. (Jing Zhao via cnauroth)
  1042. HDFS-5861. Add CLI test for Ls output for extended ACL marker.
  1043. (Vinay via cnauroth)
  1044. HDFS-5616. NameNode: implement default ACL handling. (cnauroth)
  1045. HDFS-5899. Add configuration flag to disable/enable support for ACLs.
  1046. (cnauroth)
  1047. HDFS-5914. Incorporate ACLs with the changes from HDFS-5698.
  1048. (Haohui Mai via cnauroth)
  1049. HDFS-5625. Write end user documentation for HDFS ACLs. (cnauroth)
  1050. HDFS-5925. ACL configuration flag must only reject ACL API calls, not ACLs
  1051. present in fsimage or edits. (cnauroth)
  1052. HDFS-5923. Do not persist the ACL bit in the FsPermission.
  1053. (Haohui Mai via cnauroth)
  1054. HDFS-5933. Optimize the FSImage layout for ACLs (Haohui Mai via cnauroth)
  1055. HDFS-5932. Ls should display the ACL bit (Chris Nauroth via wheat9)
  1056. HDFS-5937. Fix TestOfflineEditsViewer on HDFS-4685 branch. (cnauroth)
  1057. HDFS-5737. Replacing only the default ACL can fail to copy unspecified base
  1058. entries from the access ACL. (cnauroth)
  1059. HDFS-5739. ACL RPC must allow null name or unspecified permissions in ACL
  1060. entries. (cnauroth)
  1061. HDFS-5799. Make audit logging consistent across ACL APIs. (cnauroth)
  1062. HDFS-5849. Removing ACL from an inode fails if it has only a default ACL.
  1063. (cnauroth)
  1064. HDFS-5623. NameNode: add tests for skipping ACL enforcement when permission
  1065. checks are disabled, user is superuser or user is member of supergroup.
  1066. (cnauroth)
  1067. HDFS-5908. Change AclFeature to capture list of ACL entries in an
  1068. ImmutableList. (cnauroth)
  1069. HDFS-6028. Print clearer error message when user attempts to delete required
  1070. mask entry from ACL. (cnauroth)
  1071. HDFS-6039. Uploading a File under a Dir with default acls throws "Duplicated
  1072. ACLFeature". (cnauroth)
  1073. HDFS-6063. TestAclCLI fails intermittently when running test 24:
  1074. copyFromLocal. (cnauroth)
  1075. HDFS-6069. Quash stack traces when ACLs are disabled. (cnauroth)
  1076. HDFS-5638. HDFS implementation of FileContext API for ACLs.
  1077. (Vinayakumar B via cnauroth)
  1078. BREAKDOWN OF HDFS-5535 ROLLING UPGRADE SUBTASKS AND RELATED JIRAS
  1079. HDFS-5496. Make replication queue initialization asynchronous. (Vinay via
  1080. jing9)
  1081. HDFS-5645. Support upgrade marker in editlog streams. (szetszwo)
  1082. HDFS-5752. Add a new DFSAdmin command to query, start and finalize rolling
  1083. upgrade. (szetszwo)
  1084. HDFS-5786. Support QUERY and FINALIZE actions of rolling upgrade. (szetszwo)
  1085. HDFS-5753. Add new Namenode startup options for downgrade and rollback using
  1086. upgrade marker. (szetszwo)
  1087. HDFS-5835. Add a new option for starting Namenode when rolling upgrade is
  1088. in progress. (szetszwo)
  1089. HDFS-5754. Split LayoutVerion into NameNodeLayoutVersion and
  1090. DataNodeLayoutVersion. (Brandon Li via szetszwo)
  1091. HDFS-5848. Add rolling upgrade status to heartbeat response. (szetszwo)
  1092. HDFS-5890. Avoid NPE in Datanode heartbeat. (Vinay via brandonli)
  1093. HDFS-5869. When starting rolling upgrade or NN restarts, NN should create
  1094. a checkpoint right before the upgrade marker. (szetszwo)
  1095. HDFS-5874. Should not compare DataNode current layout version with that of
  1096. NameNode in DataStrorage. (brandonli)
  1097. HDFS-5889. When starting rolling upgrade, create a fs image for rollback
  1098. so that the standby namenode can create checkpoints during upgrade.
  1099. (szetszwo & jing9)
  1100. HDFS-5907. Add BlockPoolSliceStorage 'trash' to handle block deletions
  1101. during rolling upgrades. (Arpit Agarwal)
  1102. HDFS-5494. Merge Protobuf-based-FSImage code from trunk - fix build
  1103. break after the merge. (Jing Zhao via Arpit Agarwal)
  1104. HDFS-5585. Provide admin commands for data node upgrade (kihwal)
  1105. HDFS-5920. Support rollback of rolling upgrade in NameNode and JournalNodes.
  1106. (jing9)
  1107. HDFS-5945. Add rolling upgrade information to fsimage; and disallow upgrade
  1108. and rolling upgrade to be started simultaneously. (szetszwo & jing9)
  1109. HDFS-5966. Fix rollback of rolling upgrade in NameNode HA setup. (jing9
  1110. via szetszwo)
  1111. HDFS-5974. Fix compilation error, NameNodeLayoutVersion and
  1112. DataNodeLayoutVersion after merge from trunk. (szetszwo)
  1113. HDFS-5963. TestRollingUpgrade#testSecondaryNameNode causes subsequent
  1114. tests to fail. (szetszwo via Arpit Agarwal)
  1115. HDFS-5976. Create unit tests for downgrade and finalize rolling upgrade.
  1116. (Haohui Mai via Arpit Agarwal)
  1117. HDFS-5980. Rollback does not need to load edits. (jing9 via szetszwo)
  1118. HDFS-5984. Fix TestEditLog and TestStandbyCheckpoints. (jing9 via szetszwo)
  1119. HDFS-5985. SimulatedFSDataset#disableAndPurgeTrashStorage should not throw
  1120. UnsupportedOperationException. (jing9 via kihwal)
  1121. HDFS-5987. Fix findbugs warnings in Rolling Upgrade branch. (seztszwo via
  1122. Arpit Agarwal)
  1123. HDFS-5992. Fix NPE in MD5FileUtils and update editsStored for
  1124. TestOfflineEditsViewer. (szetszwo)
  1125. HDFS-5994. Fix TestDataNodeRollingUpgrade. (Arpit Agarwal via szetszwo)
  1126. HDFS-5999. Do not create rollback fsimage when it already exists. (jing9)
  1127. HDFS-6005. Simplify Datanode rollback and downgrade. (Suresh Srinivas via
  1128. Arpit Agarwal)
  1129. HDFS-6004. Change DFSAdmin for rolling upgrade commands. (szetszwo via
  1130. Arpit Agarwal)
  1131. HDFS-5583. Make DN send an OOB Ack on shutdown before restarting. (kihwal)
  1132. HDFS-5778. Add rolling upgrade user document. (szetszwo)
  1133. HDFS-6003. Add the new -rollingUpgrade startup option to the namenode
  1134. usage message. (Vinayakumar B via szetszwo)
  1135. HDFS-6014. Fix findbug warnings introduced by HDFS-5583. (kihwal)
  1136. HDFS-6015. Fix TestBlockRecovery
  1137. #testRaceBetweenReplicaRecoveryAndFinalizeBlock. (kihwal)
  1138. HDFS-5924. Utilize OOB upgrade message processing for writes. (kihwal)
  1139. HDFS-5498. Improve datanode startup time. (kihwal)
  1140. HDFS-6000. Avoid saving namespace when starting rolling upgrade. (jing9)
  1141. HDFS-6017. Query the status of rolling upgrade in the preparation stage in
  1142. TestRollingUpgrade and TestRollingUpgradeRollback. (Haohui Mai via
  1143. Arpit Agarwal)
  1144. HDFS-6020. Fix the five findbugs warnings. (kihwal)
  1145. HDFS-6019. Standby NN might not checkpoint when processing the rolling
  1146. upgrade marker. (Haohui Mai via jing9)
  1147. HDFS-6023. Test whether the standby NN continues to checkpoint after the
  1148. prepare stage. (Haohui Mai via jing9)
  1149. HDFS-6024. Test whether the NN will reject the downgrade if it has a
  1150. fsimage from a newer release. (Haohui Mai via jing9)
  1151. HDFS-6026. Fix TestDFSUpgrade and TestDataNodeRollingUpgrade.
  1152. (jing9 via szetszwo)
  1153. HDFS-6029. Secondary NN fails to checkpoint after -rollingUpgrade prepare.
  1154. (jing9)
  1155. HDFS-6032. -rollingUpgrade query hits NPE after the NN restarts. (Haohui Mai
  1156. via jing9)
  1157. HDFS-6031. Add back the "-rollingUpgrade started" namenode startup option;
  1158. otherwise, namenode cannot start when the layout version is changed.
  1159. (szetszwo)
  1160. HDFS-6034. Use DataNodeLayoutVersion for DN registration check and do not
  1161. verify layout version if there is a rolling upgrade in progress. (szetszwo)
  1162. HDFS-6013. add rollingUpgrade information to latest UI.
  1163. (Vinayakumar B via wheat9)
  1164. HDFS-6042. Fix rolling upgrade documentation and error messages. (szetszwo
  1165. via Arpit Agarwal)
  1166. HDFS-6041. Downgrade/Finalize should rename the rollback image instead of
  1167. purging it. (jing9)
  1168. HDFS-6060. NameNode should not check DataNode layout version (brandonli)
  1169. HDFS-6076. DataNode with SimulatedDataSet should not create
  1170. DatanodeRegistration with namenode layout version and namenode node type.
  1171. (szetszwo)
  1172. HDFS-6038. Allow JournalNode to handle editlog produced by new release with
  1173. future layoutversion. (jing9)
  1174. HDFS-4564. Ensure webhdfs returns correct HTTP response codes for denied
  1175. operations. (daryn via acmurthy)
  1176. Release 2.3.1 - UNRELEASED
  1177. INCOMPATIBLE CHANGES
  1178. NEW FEATURES
  1179. IMPROVEMENTS
  1180. OPTIMIZATIONS
  1181. BUG FIXES
  1182. Release 2.3.0 - 2014-02-18
  1183. INCOMPATIBLE CHANGES
  1184. NEW FEATURES
  1185. HDFS-5122. Support failover and retry in WebHdfsFileSystem for NN HA.
  1186. (Haohui Mai via jing9)
  1187. HDFS-4953. Enable HDFS local reads via mmap.
  1188. (Colin Patrick McCabe via wang).
  1189. HDFS-5342. Provide more information in the FSNamesystem JMX interfaces.
  1190. (Haohui Mai via jing9)
  1191. HDFS-5334. Implement dfshealth.jsp in HTML pages. (Haohui Mai via jing9)
  1192. HDFS-5379. Update links to datanode information in dfshealth.html. (Haohui
  1193. Mai via jing9)
  1194. HDFS-5382. Implement the UI of browsing filesystems in HTML 5 page. (Haohui
  1195. Mai via jing9)
  1196. HDFS-3987. Support webhdfs over HTTPS. (Haohui Mai via jing9)
  1197. HDFS-5444. Choose default web UI based on browser capabilities. (Haohui Mai
  1198. via jing9)
  1199. HDFS-5514. FSNamesystem's fsLock should allow custom implementation (daryn)
  1200. HDFS-2832. Heterogeneous Storages support in HDFS phase 1 - treat DataNode
  1201. as a collection of storages (see breakdown of tasks below for features and
  1202. contributors).
  1203. HDFS-5784. reserve space in edit log header and fsimage header for feature
  1204. flag section (cmccabe)
  1205. HDFS-5703. Add support for HTTPS and swebhdfs to HttpFS. (tucu)
  1206. HDFS-4949. Centralized cache management in HDFS. (wang and cmccabe)
  1207. IMPROVEMENTS
  1208. HDFS-5360. Improvement of usage message of renameSnapshot and
  1209. deleteSnapshot. (Shinichi Yamashita via wang)
  1210. HDFS-5331. make SnapshotDiff.java to a o.a.h.util.Tool interface implementation.
  1211. (Vinayakumar B via umamahesh)
  1212. HDFS-4657. Limit the number of blocks logged by the NN after a block
  1213. report to a configurable value. (Aaron T. Myers via Colin Patrick
  1214. McCabe)
  1215. HDFS-5344. Make LsSnapshottableDir as Tool interface implementation. (Sathish via umamahesh)
  1216. HDFS-5544. Adding Test case For Checking dfs.checksum type as NULL value. (Sathish via umamahesh)
  1217. HDFS-5568. Support includeSnapshots option with Fsck command. (Vinayakumar B via umamahesh)
  1218. HDFS-4983. Numeric usernames do not work with WebHDFS FS. (Yongjun Zhang via
  1219. jing9)
  1220. HDFS-5592. statechangeLog of completeFile should be logged only in case of success.
  1221. (Vinayakumar via umamahesh)
  1222. HDFS-5662. Can't decommission a DataNode due to file's replication factor
  1223. larger than the rest of the cluster size. (brandonli)
  1224. HDFS-5068. Convert NNThroughputBenchmark to a Tool to allow generic options.
  1225. (shv)
  1226. HDFS-5675. Add Mkdirs operation to NNThroughputBenchmark.
  1227. (Plamen Jeliazkov via shv)
  1228. HDFS-5677. Need error checking for HA cluster configuration.
  1229. (Vincent Sheffer via cos)
  1230. HDFS-5825. Use FileUtils.copyFile() to implement DFSTestUtils.copyFile().
  1231. (Haohui Mai via Arpit Agarwal)
  1232. HDFS-5267. Remove volatile from LightWeightHashSet. (Junping Du via llu)
  1233. HDFS-4278. Log an ERROR when DFS_BLOCK_ACCESS_TOKEN_ENABLE config is
  1234. disabled but security is turned on. (Kousuke Saruta via harsh)
  1235. HDFS-5004. Add additional JMX bean for NameNode status data
  1236. (Trevor Lorimer via cos)
  1237. HDFS-4994. Audit log getContentSummary() calls. (Robert Parker via kihwal)
  1238. HDFS-5144. Document time unit to NameNodeMetrics. (Akira Ajisaka via
  1239. suresh)
  1240. HDFS-4491. Parallel testing HDFS. (Andrey Klochkov via cnauroth)
  1241. HDFS-4879. Add "blocked ArrayList" collection to avoid CMS full GCs
  1242. (Todd Lipcon via Colin Patrick McCabe)
  1243. HDFS-4096. Add snapshot information to namenode WebUI. (Haohui Mai via
  1244. jing9)
  1245. HDFS-5188. In BlockPlacementPolicy, reduce the number of chooseTarget(..)
  1246. methods; replace HashMap with Map in parameter declarations and cleanup
  1247. some related code. (szetszwo)
  1248. HDFS-5207. In BlockPlacementPolicy.chooseTarget(..), change the writer
  1249. and the excludedNodes parameter types respectively to Node and Set.
  1250. (Junping Du via szetszwo)
  1251. HDFS-5240. Separate formatting from logging in the audit logger API (daryn)
  1252. HDFS-5191. Revisit zero-copy API in FSDataInputStream to make it more
  1253. intuitive. (Contributed by Colin Patrick McCabe)
  1254. HDFS-5260. Merge zero-copy memory-mapped HDFS client reads to trunk and
  1255. branch-2. (cnauroth)
  1256. HDFS-4517. Cover class RemoteBlockReader with unit tests. (Vadim Bondarev
  1257. and Dennis Y via kihwal)
  1258. HDFS-4512. Cover package org.apache.hadoop.hdfs.server.common with tests.
  1259. (Vadim Bondarev via kihwal)
  1260. HDFS-4510. Cover classes ClusterJspHelper/NamenodeJspHelper with unit
  1261. tests. (Andrey Klochkov via kihwal)
  1262. HDFS-5323. Remove some deadcode in BlockManager (Colin Patrick McCabe)
  1263. HDFS-5338. Add a conf to disable hostname check in datanode registration.
  1264. (szetszwo)
  1265. HDFS-5130. Add test for snapshot related FsShell and DFSAdmin commands.
  1266. (Binglin Chang via jing9)
  1267. HDFS-5374. Remove deadcode in DFSOutputStream. (suresh)
  1268. HDFS-4511. Cover package org.apache.hadoop.hdfs.tools with unit test
  1269. (Andrey Klochkov via jeagles)
  1270. HDFS-4885. Improve the verifyBlockPlacement() API in BlockPlacementPolicy.
  1271. (Junping Du via szetszwo)
  1272. HDFS-5363. Refactor WebHdfsFileSystem: move SPENGO-authenticated connection
  1273. creation to URLConnectionFactory. (Haohui Mai via jing9)
  1274. HDFS-5436. Move HsFtpFileSystem and HFtpFileSystem into org.apache.hdfs.web
  1275. (Haohui Mai via Arpit Agarwal)
  1276. HDFS-5371. Let client retry the same NN when
  1277. "dfs.client.test.drop.namenode.response.number" is enabled. (jing9)
  1278. HDFS-5467. Remove tab characters in hdfs-default.xml.
  1279. (Shinichi Yamashita via Andrew Wang)
  1280. HDFS-5495. Remove further JUnit3 usages from HDFS.
  1281. (Jarek Jarcec Cecho via wang)
  1282. HDFS-5325. Remove WebHdfsFileSystem#ConnRunner. (Haohui Mai via jing9)
  1283. HDFS-5488. Clean up TestHftpURLTimeout. (Haohui Mai via jing9)
  1284. HDFS-5440. Extract the logic of handling delegation tokens in HftpFileSystem
  1285. to the TokenAspect class. (Haohui Mai via jing9)
  1286. HDFS-5487. Introduce unit test for TokenAspect. (Haohui Mai via jing9)
  1287. HDFS-4995. Make getContentSummary less expensive. (kihwal)
  1288. HDFS-5506. Use URLConnectionFactory in DelegationTokenFetcher. (Haohui Mai
  1289. via jing9)
  1290. HDFS-5489. Use TokenAspect in WebHDFSFileSystem. (Haohui Mai via jing9)
  1291. HDFS-5393. Serve bootstrap and jQuery locally. (Haohui Mai via jing9)
  1292. HDFS-5073. TestListCorruptFileBlocks fails intermittently. (Arpit Agarwal)
  1293. HDFS-1386. TestJMXGet fails in jdk7 (jeagles)
  1294. HDFS-5532. Enable the webhdfs by default to support new HDFS web UI. (Vinay
  1295. via jing9)
  1296. HDFS-5525. Inline dust templates for new Web UI. (Haohui Mai via jing9)
  1297. HDFS-5561. FSNameSystem#getNameJournalStatus() in JMX should return plain
  1298. text instead of HTML. (Haohui Mai via jing9)
  1299. HDFS-5581. NameNodeFsck should use only one instance of
  1300. BlockPlacementPolicy. (vinay via cmccabe)
  1301. HDFS-5633. Improve OfflineImageViewer to use less memory. (jing9)
  1302. HDFS-5023. TestSnapshotPathINodes.testAllowSnapshot is failing with jdk7
  1303. (Mit Desai via jeagles)
  1304. HDFS-5637. Try to refeatchToken while local read InvalidToken occurred.
  1305. (Liang Xie via junping_du)
  1306. HDFS-5652. Refactor invalid block token exception handling in DFSInputStream.
  1307. (Liang Xie via junping_du)
  1308. HDFS-5350. Name Node should report fsimage transfer time as a metric.
  1309. (Jimmy Xiang via wang)
  1310. HDFS-5538. URLConnectionFactory should pick up the SSL related configuration
  1311. by default. (Haohui Mai via jing9)
  1312. HDFS-5545. Allow specifying endpoints for listeners in HttpServer. (Haohui
  1313. Mai via jing9)
  1314. HDFS-5536. Implement HTTP policy for Namenode and DataNode. (Haohui Mai via
  1315. jing9)
  1316. HDFS-5312. Generate HTTP / HTTPS URL in DFSUtil#getInfoServer() based on the
  1317. configured http policy. (Haohui Mai via jing9)
  1318. HDFS-5629. Support HTTPS in JournalNode and SecondaryNameNode.
  1319. (Haohui Mai via jing9)
  1320. HDFS-5674. Editlog code cleanup: remove @SuppressWarnings("deprecation") in
  1321. FSEditLogOp; change FSEditLogOpCodes.fromByte(..) to be more efficient; and
  1322. change Some fields in FSEditLog to final. (szetszwo)
  1323. HDFS-5634. Allow BlockReaderLocal to switch between checksumming and not
  1324. (cmccabe)
  1325. HDFS-5663 make the retry time and interval value configurable in openInfo()
  1326. (Liang Xie via stack)
  1327. HDFS-5540. Fix intermittent failure in TestBlocksWithNotEnoughRacks.
  1328. (Binglin Chang via junping_du)
  1329. HDFS-2933. Improve DataNode Web UI Index Page. (Vivek Ganesan via
  1330. Arpit Agarwal)
  1331. HDFS-5695. Clean up TestOfflineEditsViewer and OfflineEditsViewerHelper.
  1332. (Haohui Mai via jing9)
  1333. HDFS-5220. Expose group resolution time as metric (jxiang via cmccabe)
  1334. HDFS-5762. BlockReaderLocal doesn't return -1 on EOF when doing zero-length
  1335. reads (Colin Patrick McCabe)
  1336. HDFS-5766. In DFSInputStream, do not add datanode to deadNodes after
  1337. InvalidEncryptionKeyException in fetchBlockByteRange (Liang Xie via Colin
  1338. Patrick McCabe)
  1339. HDFS-5704. Change OP_UPDATE_BLOCKS with a new OP_ADD_BLOCK. (jing9)
  1340. HDFS-5434. Change block placement policy constructors from package private
  1341. to protected. (Buddy Taylor via Arpit Agarwal)
  1342. HDFS-5788. listLocatedStatus response can be very large. (Nathan Roberts
  1343. via kihwal)
  1344. HDFS-5841. Update HDFS caching documentation with new changes. (wang)
  1345. OPTIMIZATIONS
  1346. HDFS-5239. Allow FSNamesystem lock fairness to be configurable (daryn)
  1347. HDFS-5341. Reduce fsdataset lock duration during directory scanning.
  1348. (Qus-Jiawei via kihwal)
  1349. HDFS-5681. renewLease should not hold fsn write lock. (daryn via Kihwal)
  1350. HDFS-5241. Provide alternate queuing audit logger to reduce logging
  1351. contention (daryn)
  1352. BUG FIXES
  1353. HDFS-5307. Support both HTTP and HTTPS in jsp pages (Haohui Mai via
  1354. brandonli)
  1355. HDFS-5291. Standby namenode after transition to active goes into safemode.
  1356. (jing9)
  1357. HDFS-5317. Go back to DFS Home link does not work on datanode webUI
  1358. (Haohui Mai via brandonli)
  1359. HDFS-5316. Namenode ignores the default https port (Haohui Mai via
  1360. brandonli)
  1361. HDFS-5281. COMMIT request should not block. (brandonli)
  1362. HDFS-5337. should do hsync for a commit request even there is no pending
  1363. writes (brandonli)
  1364. HDFS-5335. Hive query failed with possible race in dfs output stream.
  1365. (Haohui Mai via suresh)
  1366. HDFS-5322. HDFS delegation token not found in cache errors seen on secure HA
  1367. clusters. (jing9)
  1368. HDFS-5329. Update FSNamesystem#getListing() to handle inode path in startAfter
  1369. token. (brandonli)
  1370. HDFS-5330. fix readdir and readdirplus for large directories (brandonli)
  1371. HDFS-5370. Typo in Error Message: different between range in condition
  1372. and range in error message. (Kousuke Saruta via suresh)
  1373. HDFS-5365. Fix libhdfs compile error on FreeBSD9. (Radim Kolar via cnauroth)
  1374. HDFS-5347. Add HDFS NFS user guide. (brandonli)
  1375. HDFS-5403. WebHdfs client cannot communicate with older WebHdfs servers
  1376. post HDFS-5306. (atm)
  1377. HDFS-5171. NFS should create input stream for a file and try to share it
  1378. with multiple read requests. (Haohui Mai via brandonli)
  1379. HDFS-5413. hdfs.cmd does not support passthrough to any arbitrary class.
  1380. (cnauroth)
  1381. HDFS-5433. When reloading fsimage during checkpointing, we should clear
  1382. existing snapshottable directories. (Aaron T. Myers via wang)
  1383. HDFS-5432. TestDatanodeJsp fails on Windows due to assumption that loopback
  1384. address resolves to host name localhost. (cnauroth)
  1385. HDFS-5065. TestSymlinkHdfsDisable fails on Windows. (ivanmi)
  1386. HDFS-4633 TestDFSClientExcludedNodes fails sporadically if excluded nodes
  1387. cache expires too quickly (Chris Nauroth via Sanjay)
  1388. HDFS-5037. Active NN should trigger its own edit log rolls (wang)
  1389. HDFS-5035. getFileLinkStatus and rename do not correctly check permissions
  1390. of symlinks. (Andrew Wang via Colin Patrick McCabe)
  1391. HDFS-5456. NameNode startup progress creates new steps if caller attempts to
  1392. create a counter for a step that doesn't already exist. (cnauroth)
  1393. HDFS-5458. Datanode failed volume threshold ignored if exception is thrown
  1394. in getDataDirsFromURIs. (Mike Mellenthin via wang)
  1395. HDFS-5252. Stable write is not handled correctly in someplace. (brandonli)
  1396. HDFS-5364. Add OpenFileCtx cache. (brandonli)
  1397. HDFS-5469. Add configuration property for the sub-directroy export path
  1398. (brandonli)
  1399. HDFS-5519. COMMIT handler should update the commit status after sync
  1400. (brandonli)
  1401. HDFS-5372. In FSNamesystem, hasReadLock() returns false if the current thread
  1402. holds the write lock (VinayaKumar B via umamahesh)
  1403. HDFS-4516. Client crash after block allocation and NN switch before lease recovery for
  1404. the same file can cause readers to fail forever (VinaayKumar B via umamahesh)
  1405. HDFS-5014. Process register commands with out holding BPOfferService lock.
  1406. (Vinaykumar B via umamahesh)
  1407. HDFS-5288. Close idle connections in portmap (Haohui Mai via brandonli)
  1408. HDFS-5407. Fix typos in DFSClientCache (Haohui Mai via brandonli)
  1409. HDFS-5548. Use ConcurrentHashMap in portmap (Haohui Mai via brandonli)
  1410. HDFS-5577. NFS user guide update (brandonli)
  1411. HDFS-5563. NFS gateway should commit the buffered data when read request comes
  1412. after write to the same file (brandonli)
  1413. HDFS-4997. libhdfs doesn't return correct error codes in most cases (cmccabe)
  1414. HDFS-5587. add debug information when NFS fails to start with duplicate user
  1415. or group names (brandonli)
  1416. HDFS-5590. Block ID and generation stamp may be reused when persistBlocks is
  1417. set to false. (jing9)
  1418. HDFS-5353. Short circuit reads fail when dfs.encrypt.data.transfer is
  1419. enabled. (Colin Patrick McCabe via jing9)
  1420. HDFS-5283. Under construction blocks only inside snapshots should not be
  1421. counted in safemode threshhold. (Vinay via szetszwo)
  1422. HDFS-5257. addBlock() retry should return LocatedBlock with locations else client
  1423. will get AIOBE. (Vinay via jing9)
  1424. HDFS-5427. Not able to read deleted files from snapshot directly under
  1425. snapshottable dir after checkpoint and NN restart. (Vinay via jing9)
  1426. HDFS-5443. Delete 0-sized block when deleting an under-construction file that
  1427. is included in snapshot. (jing9)
  1428. HDFS-5476. Snapshot: clean the blocks/files/directories under a renamed
  1429. file/directory while deletion. (jing9)
  1430. HDFS-5425. Renaming underconstruction file with snapshots can make NN failure on
  1431. restart. (jing9 and Vinay)
  1432. HDFS-5474. Deletesnapshot can make Namenode in safemode on NN restarts.
  1433. (Sathish via jing9)
  1434. HDFS-5504. In HA mode, OP_DELETE_SNAPSHOT is not decrementing the safemode threshold,
  1435. leads to NN safemode. (Vinay via jing9)
  1436. HDFS-5428. Under construction files deletion after snapshot+checkpoint+nn restart
  1437. leads nn safemode. (jing9)
  1438. HDFS-5074. Allow starting up from an fsimage checkpoint in the middle of a
  1439. segment. (Todd Lipcon via atm)
  1440. HDFS-4201. NPE in BPServiceActor#sendHeartBeat. (jxiang via cmccabe)
  1441. HDFS-5666. Fix inconsistent synchronization in BPOfferService (jxiang via cmccabe)
  1442. HDFS-5657. race condition causes writeback state error in NFS gateway (brandonli)
  1443. HDFS-5661. Browsing FileSystem via web ui, should use datanode's fqdn instead of ip
  1444. address. (Benoy Antony via jing9)
  1445. HDFS-5582. hdfs getconf -excludeFile or -includeFile always failed (sathish
  1446. via cmccabe)
  1447. HDFS-5671. Fix socket leak in DFSInputStream#getBlockReader. (JamesLi via umamahesh)
  1448. HDFS-5649. Unregister NFS and Mount service when NFS gateway is shutting down.
  1449. (brandonli)
  1450. HDFS-5789. Some of snapshot APIs missing checkOperation double check in fsn. (umamahesh)
  1451. HDFS-5343. When cat command is issued on snapshot files getting unexpected result.
  1452. (Sathish via umamahesh)
  1453. HDFS-5297. Fix dead links in HDFS site documents. (Akira Ajisaka via
  1454. Arpit Agarwal)
  1455. HDFS-5830. WebHdfsFileSystem.getFileBlockLocations throws
  1456. IllegalArgumentException when accessing another cluster. (Yongjun Zhang via
  1457. Colin Patrick McCabe)
  1458. HDFS-5833. Fix SecondaryNameNode javadoc. (Bangtao Zhou via Arpit Agarwal)
  1459. HDFS-5844. Fix broken link in WebHDFS.apt.vm. (Akira Ajisaka via
  1460. Arpit Agarwal)
  1461. HDFS-5034. Remove debug prints from GetFileLinkInfo (Andrew Wang via Colin
  1462. Patrick McCabe)
  1463. HDFS-4816. transitionToActive blocks if the SBN is doing checkpoint image
  1464. transfer. (Andrew Wang)
  1465. HDFS-5164. deleteSnapshot should check if OperationCategory.WRITE is
  1466. possible before taking write lock. (Colin Patrick McCabe)
  1467. HDFS-5170. BlockPlacementPolicyDefault uses the wrong classname when
  1468. alerting to enable debug logging. (Andrew Wang)
  1469. HDFS-5031. BlockScanner scans the block multiple times. (Vinay via Arpit
  1470. Agarwal)
  1471. HDFS-5266. ElasticByteBufferPool#Key does not implement equals. (cnauroth)
  1472. HDFS-5352. Server#initLog() doesn't close InputStream in httpfs. (Ted Yu via
  1473. jing9)
  1474. HDFS-4376. Fix race conditions in Balancer. (Junping Du via szetszwo)
  1475. HDFS-5375. hdfs.cmd does not expose several snapshot commands. (cnauroth)
  1476. HDFS-5336. DataNode should not output 'StartupProgress' metrics.
  1477. (Akira Ajisaka via cnauroth)
  1478. HDFS-5400. DFS_CLIENT_MMAP_CACHE_THREAD_RUNS_PER_TIMEOUT constant is set
  1479. to the wrong value. (Colin Patrick McCabe)
  1480. HDFS-5075. httpfs-config.sh calls out incorrect env script name
  1481. (Timothy St. Clair via stevel)
  1482. HDFS-5438. Flaws in block report processing can cause data loss. (kihwal)
  1483. HDFS-5502. Fix HTTPS support in HsftpFileSystem. (Haohui Mai via jing9)
  1484. HDFS-5552. Fix wrong information of "Cluster summay" in dfshealth.html.
  1485. (Haohui Mai via jing9)
  1486. HDFS-5533. Symlink delete/create should be treated as DELETE/CREATE in snapshot diff
  1487. report. (Binglin Chang via jing9)
  1488. HDFS-5580. Fix infinite loop in Balancer.waitForMoveCompletion.
  1489. (Binglin Chang via junping_du)
  1490. HDFS-5676. fix inconsistent synchronization of CachingStrategy (cmccabe)
  1491. HDFS-5691. Fix typo in ShortCircuitLocalRead document.
  1492. (Akira Ajisaka via suresh)
  1493. HDFS-5690. DataNode fails to start in secure mode when dfs.http.policy equals to
  1494. HTTP_ONLY. (Haohui Mai via jing9)
  1495. HDFS-5449. WebHdfs compatibility broken between 2.2 and 1.x / 23.x (kihwal)
  1496. HDFS-5756. hadoopRzOptionsSetByteBufferPool does not accept NULL argument,
  1497. contrary to docs. (cmccabe via wang)
  1498. HDFS-5747. Fix NPEs in BlockManager. (Arpit Agarwal)
  1499. HDFS-5710. FSDirectory#getFullPathName should check inodes against null.
  1500. (Uma Maheswara Rao G via jing9)
  1501. HDFS-5579. Under construction files make DataNode decommission take very long
  1502. hours. (zhaoyunjiong via jing9)
  1503. HDFS-5777. Update LayoutVersion for the new editlog op OP_ADD_BLOCK. (jing9)
  1504. HDFS-5800. Fix a typo in DFSClient.renewLease(). (Kousuke Saruta
  1505. via szetszwo)
  1506. HDFS-5748. Too much information shown in the dfs health page.
  1507. (Haohui Mai via brandonli)
  1508. HDFS-5806. balancer should set SoTimeout to avoid indefinite hangs.
  1509. (Nathan Roberts via Andrew Wang).
  1510. HDFS-5728. Block recovery will fail if the metafile does not have crc
  1511. for all chunks of the block (Vinay via kihwal)
  1512. HDFS-5845. SecondaryNameNode dies when checkpointing with cache pools.
  1513. (wang)
  1514. HDFS-5842. Cannot create hftp filesystem when using a proxy user ugi and a doAs
  1515. on a secure cluster. (jing9)
  1516. HDFS-5399. Revisit SafeModeException and corresponding retry policies.
  1517. (Jing Zhao via todd)
  1518. HDFS-5876. SecureDataNodeStarter does not pick up configuration in
  1519. hdfs-site.xml. (Haohui Mai via jing9)
  1520. HDFS-5873. dfs.http.policy should have higher precedence over dfs.https.enable.
  1521. (Haohui Mai via jing9)
  1522. HDFS-5837. dfs.namenode.replication.considerLoad should consider
  1523. decommissioned nodes. (Tao Luo via shv)
  1524. HDFS-5921. Cannot browse file system via NN web UI if any directory has
  1525. the sticky bit set. (atm)
  1526. BREAKDOWN OF HDFS-2832 SUBTASKS AND RELATED JIRAS
  1527. HDFS-4985. Add storage type to the protocol and expose it in block report
  1528. and block locations. (Arpit Agarwal)
  1529. HDFS-5115. Make StorageID a UUID. (Arpit Agarwal)
  1530. HDFS-5000. DataNode configuration should allow specifying storage type.
  1531. (Arpit Agarwal)
  1532. HDFS-4987. Namenode changes to track multiple storages per datanode.
  1533. (szetszwo)
  1534. HDFS-5154. Fix TestBlockManager and TestDatanodeDescriptor after HDFS-4987.
  1535. (Junping Du via szetszwo)
  1536. HDFS-5009. Include storage information in the LocatedBlock. (szetszwo)
  1537. HDFS-5134. Move blockContentsStale, heartbeatedSinceFailover and
  1538. firstBlockReport from DatanodeDescriptor to DatanodeStorageInfo; and
  1539. fix a synchronization problem in DatanodeStorageInfo. (szetszwo)
  1540. HDFS-5157. Add StorageType to FsVolume. (Junping Du via szetszwo)
  1541. HDFS-4990. Change BlockPlacementPolicy to choose storages instead of
  1542. datanodes. (szetszwo)
  1543. HDFS-5232. Protocol changes to transmit StorageUuid. (Arpit Agarwal)
  1544. HDFS-5233. Use Datanode UUID to identify Datanodes. (Arpit Agarwal)
  1545. HDFS-5222. Move block schedule information from DatanodeDescriptor to
  1546. DatanodeStorageInfo. (szetszwo)
  1547. HDFS-4988. Datanode must support all the volumes as individual storages.
  1548. (Arpit Agarwal)
  1549. HDFS-5377. Heartbeats from Datandode should include one storage report
  1550. per storage directory. (Arpit Agarwal)
  1551. HDFS-5398. NameNode changes to process storage reports per storage
  1552. directory. (Arpit Agarwal)
  1553. HDFS-5390. Send one incremental block report per storage directory.
  1554. (Arpit Agarwal)
  1555. HDFS-5401. Fix NPE in Directory Scanner. (Arpit Agarwal)
  1556. HDFS-5417. Fix storage IDs in PBHelper and UpgradeUtilities. (szetszwo)
  1557. HDFS-5214. Fix NPEs in BlockManager and DirectoryScanner. (Arpit Agarwal)
  1558. HDFS-5435. File append fails to initialize storageIDs. (Junping Du via
  1559. Arpit Agarwal)
  1560. HDFS-5437. Fix TestBlockReport and TestBPOfferService failures. (Arpit
  1561. Agarwal)
  1562. HDFS-5447. Fix TestJspHelper. (Arpit Agarwal)
  1563. HDFS-5452. Fix TestReplicationPolicy and TestBlocksScheduledCounter.
  1564. HDFS-5448. Datanode should generate its ID on first registration. (Arpit
  1565. Agarwal)
  1566. HDFS-5448. Fix break caused by previous checkin for HDFS-5448. (Arpit
  1567. Agarwal)
  1568. HDFS-5455. NN should update storageMap on first heartbeat. (Arpit Agarwal)
  1569. HDFS-5457. Fix TestDatanodeRegistration, TestFsck and TestAddBlockRetry.
  1570. (Contributed by szetszwo)
  1571. HDFS-5466. Update storage IDs when the pipeline is updated. (Contributed
  1572. by szetszwo)
  1573. HDFS-5439. Fix TestPendingReplication. (Contributed by Junping Du, Arpit
  1574. Agarwal)
  1575. HDFS-5470. Add back trunk's reportDiff algorithm to the branch.
  1576. (Contributed by szetszwo)
  1577. HDFS-5472. Fix TestDatanodeManager, TestSafeMode and
  1578. TestNNThroughputBenchmark (Contributed by szetszwo)
  1579. HDFS-5475. NN incorrectly tracks more than one replica per DN. (Arpit
  1580. Agarwal)
  1581. HDFS-5481. Fix TestDataNodeVolumeFailure in branch HDFS-2832. (Contributed
  1582. by Junping Du)
  1583. HDFS-5480. Update Balancer for HDFS-2832. (Contributed by szetszwo)
  1584. HDFS-5486. Fix TestNameNodeMetrics for HDFS-2832. (Arpit Agarwal)
  1585. HDFS-5491. Update editsStored for HDFS-2832. (Arpit Agarwal)
  1586. HDFS-5494. Fix findbugs warnings for HDFS-2832. (Arpit Agarwal)
  1587. HDFS-5508. Fix compilation error after merge. (Contributed by szetszwo)
  1588. HDFS-5501. Fix pendingReceivedRequests tracking in BPServiceActor. (Arpit
  1589. Agarwal)
  1590. HDFS-5510. Fix a findbug warning in DataStorage.java on HDFS-2832 branch.
  1591. (Junping Du via Arpit Agarwal)
  1592. HDFS-5515. Fix TestDFSStartupVersions for HDFS-2832. (Arpit Agarwal)
  1593. HDFS-5527. Fix TestUnderReplicatedBlocks on branch HDFS-2832. (Arpit
  1594. Agarwal)
  1595. HDFS-5547. Fix build break after merge from trunk to HDFS-2832. (Arpit
  1596. Agarwal)
  1597. HDFS-5542. Fix TODO and clean up the code in HDFS-2832. (Contributed by
  1598. szetszwo)
  1599. HDFS-5559. Fix TestDatanodeConfig in HDFS-2832. (Contributed by szetszwo)
  1600. HDFS-5484. StorageType and State in DatanodeStorageInfo in NameNode is
  1601. not accurate. (Eric Sirianni via Arpit Agarwal)
  1602. HDFS-5648. Get rid of FsDatasetImpl#perVolumeReplicaMap. (Arpit Agarwal)
  1603. HDFS-5406. Send incremental block reports for all storages in a
  1604. single call. (Arpit Agarwal)
  1605. HDFS-5454. DataNode UUID should be assigned prior to FsDataset
  1606. initialization. (Arpit Agarwal)
  1607. HDFS-5667. Include DatanodeStorage in StorageReport. (Arpit Agarwal)
  1608. BREAKDOWN OF HDFS-4949 SUBTASKS AND RELATED JIRAS
  1609. HDFS-5049. Add JNI mlock support. (Andrew Wang via Colin Patrick McCabe)
  1610. HDFS-5051. Propagate cache status information from the DataNode to the
  1611. NameNode (Andrew Wang via Colin Patrick McCabe)
  1612. HDFS-5052. Add cacheRequest/uncacheRequest support to NameNode.
  1613. (Contributed by Colin Patrick McCabe.)
  1614. HDFS-5050. Add DataNode support for mlock and munlock (contributed by
  1615. Andrew Wang)
  1616. HDFS-5141. Add cache status information to datanode heartbeat. (Contributed
  1617. by Andrew Wang)
  1618. HDFS-5121. Add RPCs for creating and manipulating cache pools.
  1619. (Contributed by Colin Patrick McCabe)
  1620. HDFS-5163. Miscellaneous cache pool RPC fixes (Contributed by Colin Patrick
  1621. McCabe)
  1622. HDFS-5169. hdfs.c: translateZCRException: null pointer deref when
  1623. translating some exceptions (Contributed by Colin Patrick McCabe)
  1624. HDFS-5120. Add command-line support for manipulating cache pools. (cmccabe)
  1625. HDFS-5158. Add command-line support for manipulating cache directives.
  1626. (cmccabe)
  1627. HDFS-5198. NameNodeRpcServer must not send back DNA_FINALIZE in reply to a
  1628. cache report. (cmccabe)
  1629. HDFS-5195. Prevent passing null pointer to mlock and munlock. Contributed
  1630. by Chris Nauroth.
  1631. HDFS-5053. NameNode should invoke DataNode APIs to coordinate caching.
  1632. (Andrew Wang)
  1633. HDFS-5201. NativeIO: consolidate getrlimit into NativeIO#getMemlockLimit.
  1634. (Contributed by Colin Patrick McCabe)
  1635. HDFS-5197. Document dfs.cachereport.intervalMsec in hdfs-default.xml.
  1636. Contributed by Chris Nauroth.
  1637. HDFS-5210. Fix some failing unit tests on HDFS-4949 branch. (Contributed by
  1638. Andrew Wang)
  1639. HDFS-5213. Separate PathBasedCacheEntry and PathBasedCacheDirectiveWithId.
  1640. Contributed by Colin Patrick McCabe.
  1641. HDFS-5236. Change PathBasedCacheDirective APIs to be a single value rather
  1642. than batch. (Contributed by Andrew Wang)
  1643. HDFS-5119. Persist CacheManager state in the edit log. (Contributed by
  1644. Andrew Wang)
  1645. HDFS-5190. Move cache pool related CLI commands to CacheAdmin. (Contributed
  1646. by Andrew Wang)
  1647. HDFS-5309. Fix failing caching unit tests. (Andrew Wang)
  1648. HDFS-5314. Do not expose CachePool type in AddCachePoolOp (Colin Patrick
  1649. McCabe)
  1650. HDFS-5304. Expose if a block replica is cached in getFileBlockLocations.
  1651. (Contributed by Andrew Wang)
  1652. HDFS-5224. Refactor PathBasedCache* methods to use a Path rather than a
  1653. String. Contributed by Chris Nauroth.
  1654. HDFS-5348. Fix error message when dfs.datanode.max.locked.memory is
  1655. improperly configured. (Contributed by Colin Patrick McCabe)
  1656. HDFS-5349. DNA_CACHE and DNA_UNCACHE should be by blockId only (cmccabe)
  1657. HDFS-5358. Add replication field to PathBasedCacheDirective. (Contributed
  1658. by Colin Patrick McCabe)
  1659. HDFS-5359. Allow LightWeightGSet#Iterator to remove elements. (Contributed
  1660. by Colin Patrick McCabe)
  1661. HDFS-5373. hdfs cacheadmin -addDirective short usage does not mention
  1662. -replication parameter. Contributed by Chris Nauroth.
  1663. HDFS-5096. Automatically cache new data added to a cached path (contributed
  1664. by Colin Patrick McCabe)
  1665. HDFS-5383. fix broken caching unit tests (Andrew Wang)
  1666. HDFS-5388. Loading fsimage fails to find cache pools during namenode
  1667. startup (Chris Nauroth via Colin Patrick McCabe)
  1668. HDFS-5203. Concurrent clients that add a cache directive on the same path
  1669. may prematurely uncache each other. (Chris Nauroth via Colin Patrick McCabe)
  1670. HDFS-5378. In CacheReport, don't send genstamp and length on the wire
  1671. (Contributed by Colin Patrick McCabe)
  1672. HDFS-5385. Caching RPCs are AtMostOnce, but do not persist client ID and
  1673. call ID to edit log. (Chris Nauroth via Colin Patrick McCabe)
  1674. HDFS-5404 Resolve regressions in Windows compatibility on HDFS-4949 branch.
  1675. Contributed by Chris Nauroth.
  1676. HDFS-5405. Fix possible RetryCache hang for caching RPC handlers in
  1677. FSNamesystem. (Contributed by Andrew Wang)
  1678. HDFS-5419. Fixup test-patch.sh warnings on HDFS-4949 branch. (wang)
  1679. HDFS-5386. Add feature documentation for datanode caching. Contributed by
  1680. Colin Patrick McCabe.
  1681. HDFS-5468. CacheAdmin help command does not recognize commands (Stephen
  1682. Chu via Colin Patrick McCabe)
  1683. HDFS-5326. add modifyDirective to cacheAdmin (cmccabe)
  1684. HDFS-5394: Fix race conditions in DN caching and uncaching (cmccabe)
  1685. HDFS-5320. Add datanode caching metrics. Contributed by Andrew Wang.
  1686. HDFS-5482. DistributedFileSystem#listPathBasedCacheDirectives must support
  1687. relative paths. Contributed by Colin Patrick McCabe.
  1688. HDFS-5471. CacheAdmin -listPools fails when user lacks permissions to view
  1689. all pools (Andrew Wang via Colin Patrick McCabe)
  1690. HDFS-5450. better API for getting the cached blocks locations. Contributed
  1691. by Andrew Wang.
  1692. HDFS-5485. add command-line support for modifyDirective (cmccabe)
  1693. HDFS-5366. recaching improvements (cmccabe)
  1694. HDFS-5520. loading cache path directives from edit log doesnt update
  1695. nextEntryId (cmccabe)
  1696. HDFS-5512. CacheAdmin -listPools fails with NPE when user lacks permissions
  1697. to view all pools (awang via cmccabe)
  1698. HDFS-5513. CacheAdmin commands fail when using . as the path. Contributed
  1699. by Andrew Wang.
  1700. HDFS-5511. improve CacheManipulator interface to allow better unit testing
  1701. (cmccabe)
  1702. HDFS-5451. Add byte and file statistics to PathBasedCacheEntry. Contributed
  1703. by Colin Patrick McCabe.
  1704. HDFS-5473. Consistent naming of user-visible caching classes and methods
  1705. (cmccabe)
  1706. HDFS-5543. Fix narrow race condition in TestPathBasedCacheRequests
  1707. (cmccabe)
  1708. HDFS-5565. CacheAdmin help should match against non-dashed commands (wang
  1709. via cmccabe)
  1710. HDFS-5556. Add some more NameNode cache statistics, cache pool stats
  1711. (cmccabe)
  1712. HDFS-5562. TestCacheDirectives and TestFsDatasetCache should stub out
  1713. native mlock. Contributed by Colin Patrick McCabe and Akira Ajisaka.
  1714. HDFS-5430. Support TTL on CacheDirectives. Contributed by Andrew Wang.
  1715. HDFS-5555. CacheAdmin commands fail when first listed NameNode is in
  1716. Standby (jxiang via cmccabe)
  1717. HDFS-5626. dfsadmin report shows incorrect values (cmccabe)
  1718. HDFS-5630. Hook up cache directive and pool usage statistics. (wang)
  1719. HDFS-5665. Remove the unnecessary writeLock while initializing CacheManager
  1720. in FsNameSystem Ctor. (Uma Maheswara Rao G via Andrew Wang)
  1721. HDFS-5431. Support cachepool-based limit management in path-based caching.
  1722. (awang via cmccabe)
  1723. HDFS-5679. TestCacheDirectives should handle the case where native code is
  1724. not available. (wang)
  1725. HDFS-5636. Enforce a max TTL per cache pool (awang via cmccabe)
  1726. HDFS-5701. Fix the CacheAdmin -addPool -maxTtl option name. Contributed by
  1727. Stephen Chu.
  1728. HDFS-5708. The CacheManager throws a NPE in the DataNode logs when
  1729. processing cache reports that refer to a block not known to the BlockManager.
  1730. Contributed by Colin Patrick McCabe.
  1731. HDFS-5659. dfsadmin -report doesn't output cache information properly.
  1732. Contributed by Andrew Wang.
  1733. HDFS-5651. Remove dfs.namenode.caching.enabled and improve CRM locking.
  1734. Contributed by Colin Patrick McCabe.
  1735. HDFS-5589. Namenode loops caching and uncaching when data should be
  1736. uncached. (awang via cmccabe)
  1737. HDFS-5724. modifyCacheDirective logging audit log command wrongly as
  1738. addCacheDirective (Uma Maheswara Rao G via Colin Patrick McCabe)
  1739. Release 2.2.0 - 2013-10-13
  1740. INCOMPATIBLE CHANGES
  1741. NEW FEATURES
  1742. HDFS-4817. Make HDFS advisory caching configurable on a per-file basis.
  1743. (Colin Patrick McCabe)
  1744. HDFS-5230. Introduce RpcInfo to decouple XDR classes from the RPC API.
  1745. (Haohui Mai via brandonli)
  1746. IMPROVEMENTS
  1747. HDFS-5246. Make Hadoop nfs server port and mount daemon port
  1748. configurable. (Jinghui Wang via brandonli)
  1749. HDFS-5256. Use guava LoadingCache to implement DFSClientCache. (Haohui Mai
  1750. via brandonli)
  1751. HDFS-5308. Replace HttpConfig#getSchemePrefix with implicit schemes in HDFS
  1752. JSP. (Haohui Mai via jing9)
  1753. OPTIMIZATIONS
  1754. BUG FIXES
  1755. HDFS-5139. Remove redundant -R option from setrep.
  1756. HDFS-5251. Race between the initialization of NameNode and the http
  1757. server. (Haohui Mai via suresh)
  1758. HDFS-5258. Skip tests in TestHDFSCLI that are not applicable on Windows.
  1759. (Chuan Liu via cnauroth)
  1760. HDFS-5186. TestFileJournalManager fails on Windows due to file handle leaks.
  1761. (Chuan Liu via cnauroth)
  1762. HDFS-5268. NFS write commit verifier is not set in a few places (brandonli)
  1763. HDFS-5265. Namenode fails to start when dfs.https.port is unspecified.
  1764. (Haohui Mai via jing9)
  1765. HDFS-5255. Distcp job fails with hsftp when https is enabled in insecure
  1766. cluster. (Arpit Agarwal)
  1767. HDFS-5279. Guard against NullPointerException in NameNode JSP pages before
  1768. initialization of FSNamesystem. (cnauroth)
  1769. HDFS-5289. Race condition in TestRetryCacheWithHA#testCreateSymlink causes
  1770. spurious test failure. (atm)
  1771. HDFS-5300. FSNameSystem#deleteSnapshot() should not check owner in case of
  1772. permissions disabled. (Vinay via jing9)
  1773. HDFS-5306. Datanode https port is not available at the namenode. (Suresh
  1774. Srinivas via brandonli)
  1775. HDFS-5299. DFS client hangs in updatePipeline RPC when failover happened.
  1776. (Vinay via jing9)
  1777. HDFS-5259. Support client which combines appended data with old data
  1778. before sends it to NFS server. (brandonli)
  1779. Release 2.1.1-beta - 2013-09-23
  1780. INCOMPATIBLE CHANGES
  1781. NEW FEATURES
  1782. HDFS-4962 Use enum for nfs constants (Nicholas SZE via jing9)
  1783. HDFS-5071 Change hdfs-nfs parent project to hadoop-project (brandonli)
  1784. HDFS-4763 Add script changes/utility for starting NFS gateway (brandonli)
  1785. HDFS-5076 Add MXBean methods to query NN's transaction information and
  1786. JournalNode's journal status. (jing9)
  1787. HDFS-5104 Support dotdot name in NFS LOOKUP operation (brandonli)
  1788. HDFS-5107 Fix array copy error in Readdir and Readdirplus responses
  1789. (brandonli)
  1790. HDFS-5110 Change FSDataOutputStream to HdfsDataOutputStream for opened
  1791. streams to fix type cast error. (brandonli)
  1792. HDFS-5069 Include hadoop-nfs and hadoop-hdfs-nfs into hadoop dist for
  1793. NFS deployment (brandonli)
  1794. HDFS-4947 Add NFS server export table to control export by hostname or
  1795. IP range (Jing Zhao via brandonli)
  1796. HDFS-5078 Support file append in NFSv3 gateway to enable data streaming
  1797. to HDFS (brandonli)
  1798. HDFS-5136 MNT EXPORT should give the full group list which can mount the
  1799. exports (brandonli)
  1800. HDFS-5118. Provide testing support for DFSClient to drop RPC responses.
  1801. (jing9)
  1802. HDFS-5085. Refactor o.a.h.nfs to support different types of
  1803. authentications. (jing9)
  1804. HDFS-5067 Support symlink operations in NFS gateway. (brandonli)
  1805. HDFS-5199 Add more debug trace for NFS READ and WRITE. (brandonli)
  1806. HDFS-5234 Move RpcFrameDecoder out of the public API.
  1807. (Haohui Mai via brandonli)
  1808. IMPROVEMENTS
  1809. HDFS-4513. Clarify in the WebHDFS REST API that all JSON respsonses may
  1810. contain additional properties. (szetszwo)
  1811. HDFS-5061. Make FSNameSystem#auditLoggers an unmodifiable list.
  1812. (Arpit Agarwal via suresh)
  1813. HDFS-4905. Add appendToFile command to "hdfs dfs". (Arpit Agarwal via
  1814. cnauroth)
  1815. HDFS-4926. Namenode webserver's page has a tooltip that is inconsistent
  1816. with the datanode HTML link. (Vivek Ganesan via jing9)
  1817. HDFS-5047. Supress logging of full stack trace of quota and lease
  1818. exceptions. (Robert Parker via kihwal)
  1819. HDFS-5111. Remove duplicated error message for snapshot commands when
  1820. processing invalid arguments. (jing9)
  1821. HDFS-5045. Add more unit tests for retry cache to cover all AtMostOnce
  1822. methods. (jing9)
  1823. HDFS-3245. Add metrics and web UI for cluster version summary. (Ravi
  1824. Prakash via kihwal)
  1825. HDFS-5128. Allow multiple net interfaces to be used with HA namenode RPC
  1826. server. (kihwal)
  1827. HDFS-5150. Allow per NN SPN for internal SPNEGO. (kihwal)
  1828. HDFS-4680. Audit logging of delegation tokens for MR tracing. (Andrew Wang)
  1829. HDFS-5212. Refactor RpcMessage and NFS3Response to support different
  1830. types of authentication information. (jing9)
  1831. HDFS-4971. Move IO operations out of locking in OpenFileCtx. (brandonli and
  1832. jing9)
  1833. OPTIMIZATIONS
  1834. BUG FIXES
  1835. HDFS-5028. LeaseRenewer throws ConcurrentModificationException when timeout.
  1836. (zhaoyunjiong via szetszwo)
  1837. HDFS-5043. For HdfsFileStatus, set default value of childrenNum to -1
  1838. instead of 0 to avoid confusing applications. (brandonli)
  1839. HDFS-4993. Fsck can fail if a file is renamed or deleted. (Robert Parker
  1840. via kihwal)
  1841. HDFS-5091. Support for spnego keytab separate from the JournalNode keytab
  1842. for secure HA. (jing9)
  1843. HDFS-5055. nn fails to download checkpointed image from snn in some
  1844. setups. (Vinay and suresh via suresh)
  1845. HDFS-4898. BlockPlacementPolicyWithNodeGroup.chooseRemoteRack() fails to
  1846. properly fallback to local rack. (szetszwo)
  1847. HDFS-4632. globStatus using backslash for escaping does not work on Windows.
  1848. (Chuan Liu via cnauroth)
  1849. HDFS-5093. TestGlobPaths should re-use the MiniDFSCluster to avoid failure
  1850. on Windows. (Chuan Liu via cnauroth)
  1851. HDFS-5080. BootstrapStandby not working with QJM when the existing NN is
  1852. active. (jing9)
  1853. HDFS-5099. Namenode#copyEditLogSegmentsToSharedDir should close
  1854. EditLogInputStreams upon finishing. (Chuan Liu via cnauroth)
  1855. HDFS-2994. If lease soft limit is recovered successfully
  1856. the append can fail. (Tao Luo via shv)
  1857. HDFS-5100. TestNamenodeRetryCache fails on Windows due to incorrect cleanup.
  1858. (Chuan Liu via cnauroth)
  1859. HDFS-5103. TestDirectoryScanner fails on Windows. (Chuan Liu via cnauroth)
  1860. HDFS-5102. Snapshot names should not be allowed to contain slash characters.
  1861. (jing9)
  1862. HDFS-5105. TestFsck fails on Windows. (Chuan Liu via arp)
  1863. HDFS-5106. TestDatanodeBlockScanner fails on Windows due to incorrect path
  1864. format. (Chuan Liu via cnauroth)
  1865. HDFS-4594. WebHDFS open sets Content-Length header to what is specified by
  1866. length parameter rather than how much data is actually returned. (cnauroth)
  1867. HDFS-5124. DelegationTokenSecretManager#retrievePassword can cause deadlock
  1868. in NameNode. (Daryn Sharp via jing9)
  1869. HDFS-5132. Deadlock in NameNode between SafeModeMonitor#run and
  1870. DatanodeManager#handleHeartbeat. (kihwal)
  1871. HDFS-5077. NPE in FSNamesystem.commitBlockSynchronization().
  1872. (Plamen Jeliazkov via shv)
  1873. HDFS-5140. Too many safemode monitor threads being created in the standby
  1874. namenode causing it to fail with out of memory error. (jing9)
  1875. HDFS-5159. Secondary NameNode fails to checkpoint if error occurs
  1876. downloading edits on first checkpoint. (atm)
  1877. HDFS-5192. NameNode may fail to start when
  1878. dfs.client.test.drop.namenode.response.number is set. (jing9)
  1879. HDFS-5219. Add configuration keys for retry policy in WebHDFSFileSystem.
  1880. (Haohui Mai via jing9)
  1881. HDFS-5231. Fix broken links in the document of HDFS Federation. (Haohui Mai
  1882. via jing9)
  1883. HDFS-5249. Fix dumper thread which may die silently. (brandonli)
  1884. Release 2.1.0-beta - 2013-08-22
  1885. INCOMPATIBLE CHANGES
  1886. HDFS-4053. Increase the default block size. (eli)
  1887. HDFS-4305. Add a configurable limit on number of blocks per file, and min
  1888. block size. (Andrew Wang via atm)
  1889. HDFS-4434. Provide a mapping from INodeId to INode. (suresh)
  1890. HDFS-2802. Add HDFS Snapshot feature. (See breakdown of tasks below for
  1891. subtasks and contributors)
  1892. HDFS-4866. Protocol buffer support cannot compile under C. (Arpit Agarwal via
  1893. cnauroth)
  1894. NEW FEATURES
  1895. HDFS-1804. Add a new block-volume device choosing policy that looks at
  1896. free space. (atm)
  1897. HDFS-4296. Reserve layout version for release 1.2.0. (suresh)
  1898. HDFS-4334. Add a unique id to INode. (Brandon Li via szetszwo)
  1899. HDFS-4339. Persist inode id in fsimage and editlog. (Brandon Li via
  1900. suresh)
  1901. HDFS-4340. Update addBlock() to inculde inode id as additional argument.
  1902. (Brandon Li via suresh)
  1903. HDFS-4502. JsonUtil.toFileStatus(..) should check if the fileId property
  1904. exists. (Brandon Li via suresh)
  1905. HDFS-2576. Enhances the DistributedFileSystem's create API so that clients
  1906. can specify favored datanodes for a file's blocks. (ddas)
  1907. HDFS-347. DFS read performance suboptimal when client co-located on nodes
  1908. with data. (Colin Patrick McCabe via todd and atm)
  1909. HADOOP-8562. Enhancements to support Hadoop on Windows Server and Windows
  1910. Azure environments. (See breakdown of tasks below for subtasks and
  1911. contributors)
  1912. HDFS-3601. Add BlockPlacementPolicyWithNodeGroup to support block placement
  1913. with 4-layer network topology. (Junping Du via szetszwo)
  1914. HDFS-3495. Update Balancer to support new NetworkTopology with NodeGroup.
  1915. (Junping Du via szetszwo)
  1916. HDFS-4659 Support setting execution bit for regular files (Brandon Li via sanjay)
  1917. HDFS-4762 Provide HDFS based NFSv3 and Mountd implementation (brandonli)
  1918. HDFS-4372. Track NameNode startup progress. (cnauroth)
  1919. HDFS-4373. Add HTTP API for querying NameNode startup progress. (cnauroth)
  1920. HDFS-4374. Display NameNode startup progress in UI. (cnauroth)
  1921. HDFS-4974. Add Idempotent and AtMostOnce annotations to namenode
  1922. protocol methods. (suresh)
  1923. HDFS-4979. Implement retry cache on Namenode. (suresh)
  1924. HDFS-5025. Record ClientId and CallId in EditLog to enable rebuilding
  1925. retry cache in case of HA failover. (Jing Zhao via suresh)
  1926. IMPROVEMENTS
  1927. HDFS-4461. DirectoryScanner: volume path prefix takes up memory for every
  1928. block that is scanned (Colin Patrick McCabe)
  1929. HDFS-4222. NN is unresponsive and loses heartbeats from DNs when
  1930. configured to use LDAP and LDAP has issues. (Xiaobo Peng, suresh)
  1931. HDFS-4304. Make FSEditLogOp.MAX_OP_SIZE configurable. (Colin Patrick
  1932. McCabe via atm)
  1933. HDFS-4518. Finer grained metrics for HDFS capacity.
  1934. (Arpit Agarwal via suresh)
  1935. HDFS-4519. Support overriding jsvc binary and log file locations
  1936. when launching secure datanode. (Chris Nauroth via suresh)
  1937. HDFS-4569. Small image transfer related cleanups.
  1938. (Andrew Wang via suresh)
  1939. HDFS-4521. Invalid network toploogies should not be cached. (Colin Patrick
  1940. McCabe via atm)
  1941. HDFS-4246. The exclude node list should be more forgiving, for each output
  1942. stream. (harsh via atm)
  1943. HDFS-4635. Move BlockManager#computeCapacity to LightWeightGSet. (suresh)
  1944. HDFS-4621. Additional logging to help diagnose slow QJM syncs. (todd)
  1945. HDFS-4618. Default transaction interval for checkpoints is too low. (todd)
  1946. HDFS-4525. Provide an API for knowing that whether file is closed or not.
  1947. (SreeHari via umamahesh)
  1948. HDFS-3940. Add Gset#clear method and clear the block map when namenode is
  1949. shutdown. (suresh)
  1950. HDFS-4679. Namenode operation checks should be done in a consistent
  1951. manner. (suresh)
  1952. HDFS-4693. Some test cases in TestCheckpoint do not clean up after
  1953. themselves. (Arpit Agarwal, suresh via suresh)
  1954. HDFS-3817. Avoid printing SafeModeException stack trace.
  1955. (Brandon Li via suresh)
  1956. HDFS-4124. Refactor INodeDirectory#getExistingPathINodes() to enable
  1957. returning more than INode array. (Jing Zhao via suresh)
  1958. HDFS-4151. Change the methods in FSDirectory to pass INodesInPath instead
  1959. of INode[] as a parameter. (szetszwo)
  1960. HDFS-4129. Add utility methods to dump NameNode in memory tree for
  1961. testing. (szetszwo via suresh)
  1962. HDFS-4152. Add a new class BlocksMapUpdateInfo for the parameter in
  1963. INode.collectSubtreeBlocksAndClear(..). (Jing Zhao via szetszwo)
  1964. HDFS-4206. Change the fields in INode and its subclasses to private.
  1965. (szetszwo)
  1966. HDFS-4215. Remove locking from addToParent(..) since it is used in image
  1967. loading, and add INode.isFile(). (szetszwo)
  1968. HDFS-4243. When replacing an INodeDirectory, the parent pointers of the
  1969. children of the child have to be updated to the new child. (Jing Zhao
  1970. via szetszwo)
  1971. HDFS-4209. Clean up the addNode/addChild/addChildNoQuotaCheck methods in
  1972. FSDirectory and INodeDirectory. (szetszwo)
  1973. HDFS-4346. Add SequentialNumber as a base class for INodeId and
  1974. GenerationStamp. (szetszwo)
  1975. HDFS-4721. Speed up lease recovery by avoiding stale datanodes and choosing
  1976. the datanode with the most recent heartbeat as the primary. (Varun Sharma
  1977. via szetszwo)
  1978. HDFS-4804. WARN when users set the block balanced preference percent below
  1979. 0.5 or above 1.0. (Stephen Chu via atm)
  1980. HDFS-4698. Provide client-side metrics for remote reads, local reads, and
  1981. short-circuit reads. (Colin Patrick McCabe via atm)
  1982. HDFS-3498. Support replica removal in BlockPlacementPolicy and make
  1983. BlockPlacementPolicyDefault extensible for reusing code in subclasses.
  1984. (Junping Du via szetszwo)
  1985. HDFS-4234. Use generic code for choosing datanode in Balancer. (szetszwo)
  1986. HDFS-4880. Print the image and edits file loaded by the namenode in the
  1987. logs. (Arpit Agarwal via suresh)
  1988. HDFS-4914. Use DFSClient.Conf instead of Configuration. (szetszwo)
  1989. HDFS-4883. complete() should verify fileId. (Tao Luo via shv)
  1990. HDFS-4772. Add number of children in HdfsFileStatus. (brandonli)
  1991. HDFS-4932. Avoid a wide line on the name node webUI if we have more Journal
  1992. nodes. (Fengdong Yu via cnauroth)
  1993. HDFS-4908. Reduce snapshot inode memory usage. (szetszwo)
  1994. HDFS-4645. Move from randomly generated block ID to sequentially generated
  1995. block ID. (Arpit Agarwal via szetszwo)
  1996. HDFS-4912. Cleanup FSNamesystem#startFileInternal. (suresh)
  1997. HDFS-4903. Print trash configuration and trash emptier state in
  1998. namenode log. (Arpit Agarwal via suresh)
  1999. HDFS-4992. Make balancer's mover thread count and dispatcher thread count
  2000. configurable. (Max Lapan via szetszwo)
  2001. HDFS-4996. ClientProtocol#metaSave can be made idempotent by overwriting the
  2002. output file instead of appending to it. (cnauroth)
  2003. HADOOP-9418. Add symlink support to DistributedFileSystem (Andrew Wang via
  2004. Colin Patrick McCabe)
  2005. HDFS-5007. Replace hard-coded property keys with DFSConfigKeys fields.
  2006. (Kousuke Saruta via jing9)
  2007. HDFS-5008. Make ClientProtocol#abandonBlock() idempotent. (jing9)
  2008. HADOOP-9760. Move GSet and related classes to common from HDFS.
  2009. (suresh)
  2010. HDFS-5020. Make DatanodeProtocol#blockReceivedAndDeleted idempotent.
  2011. (jing9)
  2012. HDFS-5024. Make DatanodeProtocol#commitBlockSynchronization idempotent.
  2013. (Arpit Agarwal via jing9)
  2014. HDFS-3880. Use Builder to build RPC server in HDFS.
  2015. (Brandon Li via suresh)
  2016. OPTIMIZATIONS
  2017. HDFS-4465. Optimize datanode ReplicasMap and ReplicaInfo. (atm)
  2018. HDFS-5027. On startup, DN should scan volumes in parallel. (atm)
  2019. BUG FIXES
  2020. HDFS-4626. ClientProtocol#getLinkTarget should throw an exception for
  2021. non-symlink and non-existent paths. (Andrew Wang via cmccabe)
  2022. HDFS-4470. Several HDFS tests attempt file operations on invalid HDFS
  2023. paths when running on Windows. (Chris Nauroth via suresh)
  2024. HDFS-4471. Namenode WebUI file browsing does not work with wildcard
  2025. addresses configured. (Andrew Wang via atm)
  2026. HDFS-4342. Directories configured in dfs.namenode.edits.dir.required
  2027. but not in dfs.namenode.edits.dir are silently ignored. (Arpit Agarwal
  2028. via szetszwo)
  2029. HDFS-4482. ReplicationMonitor thread can exit with NPE due to the race
  2030. between delete and replication of same file. (umamahesh)
  2031. HDFS-4269. Datanode rejects all datanode registrations from localhost
  2032. in single-node developer setup on Windows. (Chris Nauroth via suresh)
  2033. HDFS-4235. When outputting XML, OfflineEditsViewer can't handle some edits
  2034. containing non-ASCII strings. (Colin Patrick McCabe via atm)
  2035. HDFS-4541. Set hadoop.log.dir and hadoop.id.str when starting secure
  2036. datanode to write the logs to right dir by default. (Arpit Gupta via
  2037. suresh)
  2038. HDFS-4540. Namenode http server should use the web authentication
  2039. keytab for spnego principal. (Arpit Gupta via suresh)
  2040. HDFS-4544. Error in deleting blocks should not do check disk, for
  2041. all types of errors. (Arpit Agarwal via suresh)
  2042. HDFS-4565. Use DFSUtil.getSpnegoKeytabKey() to get the spnego keytab key
  2043. in secondary namenode and namenode http server. (Arpit Gupta via suresh)
  2044. HDFS-4571. WebHDFS should not set the service hostname on the server side.
  2045. (tucu)
  2046. HDFS-4013. TestHftpURLTimeouts throws NPE. (Chao Shi via suresh)
  2047. HDFS-4592. Default values for access time precision are out of sync between
  2048. hdfs-default.xml and the code. (atm)
  2049. HDFS-4522. LightWeightGSet expects incrementing a volatile to be atomic.
  2050. (Colin Patrick McCabe via atm)
  2051. HDFS-4484. libwebhdfs compilation broken with gcc 4.6.2. (Colin Patrick
  2052. McCabe via atm)
  2053. HDFS-4595. When short circuit read is fails, DFSClient does not fallback
  2054. to regular reads. (suresh)
  2055. HDFS-4583. TestNodeCount fails. (Ivan Mitic via suresh)
  2056. HDFS-4591. HA clients can fail to fail over while Standby NN is performing
  2057. long checkpoint. (atm)
  2058. HDFS-3277. fail over to loading a different FSImage if the first one we
  2059. try to load is corrupt. (Colin Patrick McCabe and Andrew Wang via atm)
  2060. HDFS-4596. Shutting down namenode during checkpointing can lead to md5sum
  2061. error. (Andrew Wang via atm)
  2062. HDFS-4614. FSNamesystem#getContentSummary should use getPermissionChecker
  2063. helper method. (atm)
  2064. HDFS-4620. Documentation for dfs.namenode.rpc-address specifies wrong
  2065. format. (Sandy Ryza via atm)
  2066. HDFS-4609. TestAuditLogs should release log handles between tests.
  2067. (Ivan Mitic via szetszwo)
  2068. HDFS-4598. Fix the default value of ConcatSourcesParam and the WebHDFS doc.
  2069. (szetszwo)
  2070. HDFS-4655. DNA_FINALIZE is logged as being an unknown command by the DN
  2071. when received from the standby NN. (atm)
  2072. HDFS-4656. DN heartbeat loop can be briefly tight. (atm)
  2073. HDFS-4658. Standby NN will log that it has received a block report "after
  2074. becoming active" (atm)
  2075. HDFS-4646. createNNProxyWithClientProtocol ignores configured timeout
  2076. value (Jagane Sundar via cos)
  2077. HDFS-3981. Fix handling of FSN lock in getBlockLocations. (Xiaobo Peng
  2078. and todd via todd)
  2079. HDFS-4676. TestHDFSFileSystemContract should set MiniDFSCluster variable
  2080. to null to free up memory. (suresh)
  2081. HDFS-4669. TestBlockPoolManager fails using IBM java. (Tian Hong Wang via
  2082. suresh)
  2083. HDFS-4643. Fix flakiness in TestQuorumJournalManager. (todd)
  2084. HDFS-4639. startFileInternal() should not increment generation stamp.
  2085. (Plamen Jeliazkov via shv)
  2086. HDFS-4695. TestEditLog leaks open file handles between tests.
  2087. (Ivan Mitic via suresh)
  2088. HDFS-4737. JVM path embedded in fuse binaries. (Sean Mackrory via atm)
  2089. HDFS-4739. NN can miscalculate the number of extra edit log segments to
  2090. retain. (atm)
  2091. HDFS-4745. TestDataTransferKeepalive#testSlowReader has race condition that
  2092. causes sporadic failure. (Chris Nauroth via suresh)
  2093. HDFS-4768. File handle leak in datanode when a block pool is removed.
  2094. (Chris Nauroth via suresh)
  2095. HDFS-4748. MiniJournalCluster#restartJournalNode leaks resources, which
  2096. causes sporadic test failures. (Chris Nauroth via suresh)
  2097. HDFS-4733. Make HttpFS username pattern configurable. (tucu via atm)
  2098. HDFS-4778. Fixes some issues that the first patch on HDFS-2576 missed.
  2099. (ddas)
  2100. HDFS-4785. Concat operation does not remove concatenated files from
  2101. InodeMap. (suresh)
  2102. HDFS-4784. NPE in FSDirectory.resolvePath(). (Brandon Li via suresh)
  2103. HDFS-4810. several HDFS HA tests have timeouts that are too short. (Chris
  2104. Nauroth via atm)
  2105. HDFS-4799. Corrupt replica can be prematurely removed from
  2106. corruptReplicas map. (todd via kihwal)
  2107. HDFS-4751. TestLeaseRenewer#testThreadName flakes. (Andrew Wang via atm)
  2108. HDFS-4533. start-dfs.sh ignores additional parameters besides -upgrade.
  2109. (Fengdong Yu via suresh)
  2110. HDFS-4765. Permission check of symlink deletion incorrectly throws
  2111. UnresolvedLinkException. (Andrew Wang via atm)
  2112. HDFS-4300. TransferFsImage.downloadEditsToStorage should use a tmp file for
  2113. destination. (Andrew Wang via atm)
  2114. HDFS-4813. Add volatile to BlocksMap.blocks so that the replication thread
  2115. can see the updated value. (Jing Zhao via szetszwo)
  2116. HDFS-3180. Add socket timeouts to WebHdfsFileSystem. (Chris Nauroth via
  2117. szetszwo)
  2118. HDFS-4787. Create a new HdfsConfiguration before each TestDFSClientRetries
  2119. testcases. (Tian Hong Wang via atm)
  2120. HDFS-4830. Typo in config settings for AvailableSpaceVolumeChoosingPolicy
  2121. in hdfs-default.xml. (atm)
  2122. HDFS-4824. FileInputStreamCache.close leaves dangling reference to
  2123. FileInputStreamCache.cacheCleaner. (Colin Patrick McCabe via todd)
  2124. HDFS-4298. StorageRetentionManager spews warnings when used with QJM. (atm)
  2125. HDFS-4725. Fix HDFS file handle leaks in FSEditLog, NameNode,
  2126. OfflineEditsBinaryLoader and some tests. (Chris Nauroth via szetszwo)
  2127. HDFS-4825. webhdfs / httpfs tests broken because of min block size change.
  2128. (Andrew Wang via suresh)
  2129. HDFS-4780. Use the correct relogin method for services. (Robert Parker via
  2130. kihwal)
  2131. HDFS-4827. Slight update to the implementation of API for handling favored
  2132. nodes in DFSClient (ddas)
  2133. HDFS-4865. Remove sub resource warning from httpfs log at startup time.
  2134. (ywskycn via tucu)
  2135. HDFS-4240. For nodegroup-aware block placement, when a node is excluded,
  2136. the nodes in the same nodegroup should also be excluded. (Junping Du
  2137. via szetszwo)
  2138. HDFS-4261. Fix bugs in Balaner causing infinite loop and
  2139. TestBalancerWithNodeGroup timeing out. (Junping Du via szetszwo)
  2140. HDFS-4382. Fix typo MAX_NOT_CHANGED_INTERATIONS. (Ted Yu via suresh)
  2141. HDFS-4840. ReplicationMonitor gets NPE during shutdown. (kihwal)
  2142. HDFS-4815. TestRBWBlockInvalidation: Double call countReplicas() to fetch
  2143. corruptReplicas and liveReplicas is not needed. (Tian Hong Wang via atm)
  2144. HADOOP-8957 HDFS tests for AbstractFileSystem#IsValidName should be overridden for
  2145. embedded file systems like ViewFs (Chris Nauroth via Sanjay Radia)
  2146. HDFS-4586. TestDataDirs.testGetDataDirsFromURIs fails with all directories
  2147. in dfs.datanode.data.dir are invalid. (Ivan Mitic via atm)
  2148. HDFS-4845. FSNamesystem.deleteInternal should acquire write-lock before
  2149. changing the inode map. (Arpit Agarwal via szetszwo)
  2150. HDFS-4906. HDFS Output streams should not accept writes after being
  2151. closed. (atm)
  2152. HDFS-4917. Start-dfs.sh cannot pass the parameters correctly.
  2153. (Fengdong Yu via suresh)
  2154. HDFS-4205. fsck fails with symlinks. (jlowe)
  2155. HDFS-4927. CreateEditsLog creates inodes with an invalid inode ID, which then
  2156. cannot be loaded by a namenode. (cnauroth)
  2157. HDFS-4944. WebHDFS cannot create a file path containing characters that must
  2158. be URI-encoded, such as space. (cnauroth)
  2159. HDFS-4888. Refactor and fix FSNamesystem.getTurnOffTip. (Ravi Prakash via
  2160. kihwal)
  2161. HDFS-4943. WebHdfsFileSystem does not work when original file path has
  2162. encoded chars. (Jerry He via szetszwo)
  2163. HDFS-4948. mvn site for hadoop-hdfs-nfs fails. (brandonli)
  2164. HDFS-4887. TestNNThroughputBenchmark exits abruptly. (kihwal)
  2165. HDFS-4980. Incorrect logging.properties file for hadoop-httpfs.
  2166. (Mark Grover via suresh)
  2167. HDFS-5003. TestNNThroughputBenchmark failed caused by existing directories.
  2168. (Xi Fang via cnauroth)
  2169. HDFS-5018. Misspelled DFSConfigKeys#DFS_NAMENODE_STALE_DATANODE_INTERVAL_DEFAULT
  2170. in javadoc of DatanodeInfo#isStale(). (Ted Yu via jing9)
  2171. HDFS-4602. TestBookKeeperHACheckpoints fails. (umamahesh)
  2172. HDFS-5016. Deadlock in pipeline recovery causes Datanode to be marked dead.
  2173. (suresh)
  2174. HDFS-5228. The RemoteIterator returned by DistributedFileSystem.listFiles
  2175. may throw NullPointerException. (szetszwo and cnauroth via szetszwo)
  2176. BREAKDOWN OF HDFS-347 SUBTASKS AND RELATED JIRAS
  2177. HDFS-4353. Encapsulate connections to peers in Peer and PeerServer classes.
  2178. (Colin Patrick McCabe via todd)
  2179. HDFS-4354. Create DomainSocket and DomainPeer and associated unit tests.
  2180. (Colin Patrick McCabe via todd)
  2181. HDFS-4356. BlockReaderLocal should use passed file descriptors rather than paths.
  2182. (Colin Patrick McCabe via todd)
  2183. HDFS-4388. DomainSocket should throw AsynchronousCloseException when appropriate.
  2184. (Colin Patrick McCabe via todd)
  2185. HDFS-4390. Bypass UNIX domain socket unit tests when they cannot be run.
  2186. (Colin Patrick McCabe via todd)
  2187. HDFS-4400. DFSInputStream#getBlockReader: last retries should ignore the cache
  2188. (Colin Patrick McCabe via todd)
  2189. HDFS-4401. Fix bug in DomainSocket path validation
  2190. (Colin Patrick McCabe via todd)
  2191. HDFS-4402. Some small DomainSocket fixes: avoid findbugs warning, change
  2192. log level, etc. (Colin Patrick McCabe via todd)
  2193. HDFS-4418. increase default FileInputStreamCache size (todd)
  2194. HDFS-4416. Rename dfs.datanode.domain.socket.path to dfs.domain.socket.path
  2195. (Colin Patrick McCabe via todd)
  2196. HDFS-4417. Fix case where local reads get disabled incorrectly
  2197. (Colin Patrick McCabe and todd via todd)
  2198. HDFS-4433. Make TestPeerCache not flaky (Colin Patrick McCabe via todd)
  2199. HDFS-4438. TestDomainSocket fails when system umask is set to 0002. (Colin
  2200. Patrick McCabe via atm)
  2201. HDFS-4440. Avoid annoying log message when dfs.domain.socket.path is not
  2202. set. (Colin Patrick McCabe via atm)
  2203. HDFS-4473. Don't create domain socket unless we need it. (Colin Patrick McCabe via atm)
  2204. HDFS-4485. DN should chmod socket path a+w. (Colin Patrick McCabe via atm)
  2205. HDFS-4453. Make a simple doc to describe the usage and design of the
  2206. shortcircuit read feature. (Colin Patrick McCabe via atm)
  2207. HDFS-4496. DFSClient: don't create a domain socket unless we need it (Colin
  2208. Patrick McCabe via todd)
  2209. HDFS-347: style cleanups (Colin Patrick McCabe via atm)
  2210. HDFS-4538. Allow use of legacy blockreader (Colin Patrick McCabe via todd)
  2211. HDFS-4661. A few little code cleanups of some HDFS-347-related code. (Colin
  2212. Patrick McCabe via atm)
  2213. BREAKDOWN OF HADOOP-8562 and HDFS-3602 SUBTASKS AND RELATED JIRAS
  2214. HDFS-4145. Merge hdfs cmd line scripts from branch-1-win. (David Lao,
  2215. Bikas Saha, Lauren Yang, Chuan Liu, Thejas M Nair and Ivan Mitic via suresh)
  2216. HDFS-4163. HDFS distribution build fails on Windows. (Chris Nauroth via
  2217. suresh)
  2218. HDFS-4316. branch-trunk-win contains test code accidentally added during
  2219. work on fixing tests on Windows. (Chris Nauroth via suresh)
  2220. HDFS-4297. Fix issues related to datanode concurrent reading and writing on
  2221. Windows. (Arpit Agarwal, Chuan Liu via suresh)
  2222. HDFS-4573. Fix TestINodeFile on Windows. (Arpit Agarwal via suresh)
  2223. HDFS-4572. Fix TestJournal failures on Windows. (Arpit Agarwal via suresh)
  2224. HDFS-4287. HTTPFS tests fail on Windows. (Chris Nauroth via suresh)
  2225. HDFS-4593. TestSaveNamespace fails on Windows. (Arpit Agarwal via suresh)
  2226. HDFS-4582. TestHostsFiles fails on Windows. (Ivan Mitic via suresh)
  2227. HDFS-4603. TestMiniDFSCluster fails on Windows. (Ivan Mitic via suresh)
  2228. HDFS-4604. TestJournalNode fails on Windows. (Ivan Mitic via suresh)
  2229. HDFS-4607. In TestGetConf.testGetSpecificKey(), use a platform-specific
  2230. line separator; otherwise, it fails on Windows. (Ivan Mitic via szetszwo)
  2231. HDFS-4625. Make TestNNWithQJM#testNewNamenodeTakesOverWriter work on
  2232. Windows. (Ivan Mitic via suresh)
  2233. HDFS-4674. TestBPOfferService fails on Windows due to failure parsing
  2234. datanode data directory as URI. (Chris Nauroth via suresh)
  2235. HDFS-4615. Fix TestDFSShell failures on Windows. (Arpit Agarwal
  2236. via szetszwo)
  2237. HDFS-4584. Skip TestNNWithQJM.testNewNamenodeTakesOverWriter() on Windows.
  2238. (Arpit Agarwal via szetszwo)
  2239. HDFS-4732. Fix TestDFSUpgradeFromImage which fails on Windows due to
  2240. failure to unpack old image tarball that contains hard links.
  2241. (Chris Nauroth via szetszwo)
  2242. HDFS-4741. TestStorageRestore#testStorageRestoreFailure fails on Windows.
  2243. (Arpit Agarwal via suresh)
  2244. HDFS-4743. TestNNStorageRetentionManager fails on Windows.
  2245. (Chris Nauroth via suresh)
  2246. HDFS-4740. Fixes for a few test failures on Windows.
  2247. (Arpit Agarwal via suresh)
  2248. HDFS-4722. TestGetConf#testFederation times out on Windows.
  2249. (Ivan Mitic via suresh)
  2250. HDFS-4705. Address HDFS test failures on Windows because of invalid
  2251. dfs.namenode.name.dir. (Ivan Mitic via suresh)
  2252. HDFS-4734. HDFS Tests that use ShellCommandFencer are broken on Windows.
  2253. (Arpit Agarwal via suresh)
  2254. HDFS-4610. Use common utils FileUtil#setReadable/Writable/Executable and
  2255. FileUtil#canRead/Write/Execute. (Ivan Mitic via suresh)
  2256. HDFS-4677. Editlog should support synchronous writes. (ivanmi)
  2257. HDFS-4752. TestRBWBlockInvalidation fails on Windows due to file locking.
  2258. (Chris Nauroth via suresh)
  2259. HDFS-4783. TestDelegationTokensWithHA#testHAUtilClonesDelegationTokens fails
  2260. on Windows. (cnauroth)
  2261. HDFS-4818. Several HDFS tests that attempt to make directories unusable do
  2262. not work correctly on Windows. (cnauroth)
  2263. BREAKDOWN OF HDFS-2802 HDFS SNAPSHOT SUBTASKS AND RELATED JIRAS
  2264. HDFS-4076. Support snapshot of single files. (szetszwo)
  2265. HDFS-4082. Add editlog opcodes for snapshot create and delete operations.
  2266. (suresh via szetszwo)
  2267. HDFS-4086. Add editlog opcodes to allow and disallow snapshots on a
  2268. directory. (Brandon Li via suresh)
  2269. HDFS-4083. Protocol changes for snapshots. (suresh)
  2270. HDFS-4077. Add support for Snapshottable Directory. (szetszwo via suresh)
  2271. HDFS-4087. Protocol changes for listSnapshots functionality.
  2272. (Brandon Li via suresh)
  2273. HDFS-4079. Add SnapshotManager which maintains a list for all the
  2274. snapshottable directories and supports snapshot methods such as setting a
  2275. directory to snapshottable and creating a snapshot. (szetszwo)
  2276. HDFS-4078. Handle replication in snapshots. (szetszwo)
  2277. HDFS-4084. Provide CLI support to allow and disallow snapshot
  2278. on a directory. (Brondon Li via suresh)
  2279. HDFS-4091. Add snapshot quota to limit the number of snapshots allowed.
  2280. (szetszwo)
  2281. HDFS-4097. Provide CLI support for createSnapshot. (Brandon Li via suresh)
  2282. HDFS-4092. Update file deletion logic for snapshot so that the current inode
  2283. is removed from the circular linked list; and if some blocks at the end of
  2284. the block list no longer belong to any other inode, collect them and update
  2285. the block list. (szetszwo)
  2286. HDFS-4111. Support snapshot of subtrees. (szetszwo via suresh)
  2287. HDFS-4119. Complete the allowSnapshot code and add a test for it. (szetszwo)
  2288. HDFS-4133. Add testcases for testing basic snapshot functionalities.
  2289. (Jing Zhao via suresh)
  2290. HDFS-4116. Add auditlog for some snapshot operations. (Jing Zhao via suresh)
  2291. HDFS-4095. Add some snapshot related metrics. (Jing Zhao via suresh)
  2292. HDFS-4141. Support directory diff - the difference between the current state
  2293. and a previous snapshot of an INodeDirectory. (szetszwo)
  2294. HDFS-4146. Use getter and setter in INodeFileWithLink to access blocks and
  2295. initialize root directory as snapshottable. (szetszwo)
  2296. HDFS-4149. Implement the disallowSnapshot(..) in FSNamesystem and add
  2297. resetSnapshottable(..) to SnapshotManager. (szetszwo)
  2298. HDFS-4147. When there is a snapshot in a subtree, deletion of the subtree
  2299. should fail. (Jing Zhao via szetszwo)
  2300. HDFS-4150. Update the inode in the block map when a snapshotted file or a
  2301. snapshot file is deleted. (Jing Zhao via szetszwo)
  2302. HDFS-4159. Rename should fail when the destination directory is
  2303. snapshottable and has snapshots. (Jing Zhao via szetszwo)
  2304. HDFS-4170. Add snapshot information to INodesInPath. (szetszwo)
  2305. HDFS-4177. Add a snapshot parameter to INodeDirectory.getChildrenList() for
  2306. selecting particular snapshot children list views. (szetszwo)
  2307. HDFS-4148. Disallow write/modify operations on files and directories in a
  2308. snapshot. (Brandon Li via suresh)
  2309. HDFS-4188. Add Snapshot.ID_COMPARATOR for comparing IDs and fix a bug in
  2310. ReadOnlyList.Util.binarySearch(..). (szetszwo)
  2311. HDFS-4187. Add tests for replication handling in snapshots. (Jing Zhao via
  2312. szetszwo)
  2313. HDFS-4196. Support renaming of snapshots. (Jing Zhao via szetszwo)
  2314. HDFS-4175. Additional snapshot tests for more complicated directory
  2315. structure and modifications. (Jing Zhao via suresh)
  2316. HDFS-4293. Fix TestSnapshot failure. (Jing Zhao via suresh)
  2317. HDFS-4317. Change INode and its subclasses to support HDFS-4103. (szetszwo)
  2318. HDFS-4103. Support O(1) snapshot creation. (szetszwo)
  2319. HDFS-4330. Support snapshots up to the snapshot limit. (szetszwo)
  2320. HDFS-4357. Fix a bug that if an inode is replaced, further INode operations
  2321. should apply to the new inode. (Jing Zhao via szetszwo)
  2322. HDFS-4230. Support listing of all the snapshottable directories. (Jing Zhao
  2323. via szetszwo)
  2324. HDFS-4244. Support snapshot deletion. (Jing Zhao via szetszwo)
  2325. HDFS-4245. Include snapshot related operations in TestOfflineEditsViewer.
  2326. (Jing Zhao via szetszwo)
  2327. HDFS-4395. In INodeDirectorySnapshottable's constructor, the passed-in dir
  2328. could be an INodeDirectoryWithSnapshot. (Jing Zhao via szetszwo)
  2329. HDFS-4397. Fix a bug in INodeDirectoryWithSnapshot.Diff.combinePostDiff(..)
  2330. that it may put the wrong node into the deleted list. (szetszwo)
  2331. HDFS-4407. Change INodeDirectoryWithSnapshot.Diff.combinePostDiff(..) to
  2332. merge-sort like and keep the postDiff parameter unmodified. (szetszwo)
  2333. HDFS-4098. Add FileWithSnapshot, INodeFileUnderConstructionWithSnapshot and
  2334. INodeFileUnderConstructionSnapshot for supporting append to snapshotted
  2335. files. (szetszwo)
  2336. HDFS-4126. Add reading/writing snapshot information to FSImage.
  2337. (Jing Zhao via suresh)
  2338. HDFS-4436. Change INode.recordModification(..) to return only the current
  2339. inode and remove the updateCircularList parameter from some methods in
  2340. INodeDirectoryWithSnapshot.Diff. (szetszwo)
  2341. HDFS-4429. When the latest snapshot exists, INodeFileUnderConstruction
  2342. should be replaced with INodeFileWithSnapshot but not INodeFile.
  2343. (Jing Zhao via szetszwo)
  2344. HDFS-4441. Move INodeDirectoryWithSnapshot.Diff and the related classes to a
  2345. package. (szetszwo)
  2346. HDFS-4432. Support INodeFileUnderConstructionWithSnapshot in FSImage
  2347. saving/loading. (Jing Zhao via suresh)
  2348. HDFS-4131. Add capability to namenode to get snapshot diff. (Jing Zhao via
  2349. suresh)
  2350. HDFS-4447. Refactor INodeDirectoryWithSnapshot for supporting general INode
  2351. diff lists. (szetszwo)
  2352. HDFS-4189. Renames the getMutableXxx methods to getXxx4Write and fix a bug
  2353. that some getExistingPathINodes calls should be getINodesInPath4Write.
  2354. (szetszwo)
  2355. HDFS-4361. When listing snapshottable directories, only return those
  2356. where the user has permission to take snapshots. (Jing Zhao via szetszwo)
  2357. HDFS-4464. Combine collectSubtreeBlocksAndClear with deleteDiffsForSnapshot
  2358. and rename it to destroySubtreeAndCollectBlocks. (szetszwo)
  2359. HDFS-4414. Add support for getting snapshot diff from DistributedFileSystem.
  2360. (Jing Zhao via suresh)
  2361. HDFS-4446. Support file snapshots with diff lists. (szetszwo)
  2362. HDFS-4480. Eliminate the file snapshot circular linked list. (szetszwo)
  2363. HDFS-4481. Change fsimage to support snapshot file diffs. (szetszwo)
  2364. HDFS-4500. Refactor snapshot INode methods. (szetszwo)
  2365. HDFS-4487. Fix snapshot diff report for HDFS-4446. (Jing Zhao via szetszwo)
  2366. HDFS-4431. Support snapshot in OfflineImageViewer. (Jing Zhao via szetszwo)
  2367. HDFS-4503. Update computeContentSummary(..), spaceConsumedInTree(..) and
  2368. diskspaceConsumed(..) in INode for snapshot. (szetszwo)
  2369. HDFS-4499. Fix file/directory/snapshot deletion for file diff. (Jing Zhao
  2370. via szetszwo)
  2371. HDFS-4524. Update SnapshotManager#snapshottables when loading fsimage.
  2372. (Jing Zhao via szetszwo)
  2373. HDFS-4520. Support listing snapshots under a snapshottable directory using
  2374. ls. (Jing Zhao via szetszwo)
  2375. HDFS-4514. Add CLI for supporting snapshot rename, diff report, and
  2376. snapshottable directory listing. (Jing Zhao via szetszwo)
  2377. HDFS-4523. Fix INodeFile replacement, TestQuota and javac errors from trunk
  2378. merge. (szetszwo)
  2379. HDFS-4507. Update quota verification for snapshots. (szetszwo)
  2380. HDFS-4545. With snapshots, FSDirectory.unprotectedSetReplication(..) always
  2381. changes file replication but it may or may not changes block replication.
  2382. (szetszwo)
  2383. HDFS-4557. Fix FSDirectory#delete when INode#cleanSubtree returns 0.
  2384. (Jing Zhao via szetszwo)
  2385. HDFS-4579. Annotate snapshot tests. (Arpit Agarwal via suresh)
  2386. HDFS-4574. Move Diff to the util package. (szetszwo)
  2387. HDFS-4563. Update namespace/diskspace usage after deleting snapshots.
  2388. (Jing Zhao via szetszwo)
  2389. HDFS-4144. Create test for all snapshot-related metrics.
  2390. (Jing Zhao via suresh)
  2391. HDFS-4556. Add snapshotdiff and LsSnapshottableDir tools to hdfs script.
  2392. (Arpit Agarwal via szetszwo)
  2393. HDFS-4534. Add INodeReference in order to support rename with snapshots.
  2394. (szetszwo)
  2395. HDFS-4616. Update the FilesDeleted metric while deleting file/dir in the
  2396. current tree. (Jing Zhao via szetszwo)
  2397. HDFS-4627. Fix FSImageFormat#Loader NPE and synchronization issues.
  2398. (Jing Zhao via suresh)
  2399. HDFS-4612. Not to use INode.getParent() when generating snapshot diff
  2400. report. (Jing Zhao via szetszwo)
  2401. HDFS-4636. Update quota usage when deleting files/dirs that were created
  2402. after taking the latest snapshot. (Jing Zhao via szetszwo)
  2403. HDFS-4648. For snapshot deletion, when merging the diff from to-delete
  2404. snapshot to the prior snapshot, make sure files/directories created after
  2405. the prior snapshot get deleted. (Jing Zhao via szetszwo)
  2406. HDFS-4637. INodeDirectory#replaceSelf4Quota may incorrectly convert a newly
  2407. created directory to an INodeDirectoryWithSnapshot. (Jing Zhao via szetszwo)
  2408. HDFS-4611. Update FSImage for INodeReference. (szetszwo)
  2409. HDFS-4647. Rename should call setLocalName after an inode is removed from
  2410. snapshots. (Arpit Agarwal via szetszwo)
  2411. HDFS-4684. Use INode id for image serialization when writing INodeReference.
  2412. (szetszwo)
  2413. HDFS-4675. Fix rename across snapshottable directories. (Jing Zhao via
  2414. szetszwo)
  2415. HDFS-4692. Use timestamp as default snapshot names. (szetszwo)
  2416. HDFS-4666. Define ".snapshot" as a reserved inode name so that users cannot
  2417. create a file/directory with ".snapshot" as the name. If ".snapshot" is
  2418. used in a previous version of HDFS, it must be renamed before upgrade;
  2419. otherwise, upgrade will fail. (szetszwo)
  2420. HDFS-4700. Fix the undo section of rename with snapshots. (Jing Zhao via
  2421. szetszwo)
  2422. HDFS-4529. Disallow concat when one of the src files is in some snapshot.
  2423. (szetszwo)
  2424. HDFS-4550. Refactor INodeDirectory.INodesInPath to a standalone class.
  2425. (szetszwo)
  2426. HDFS-4707. Add snapshot methods to FilterFileSystem and fix findbugs
  2427. warnings. (szetszwo)
  2428. HDFS-4706. Do not replace root inode for disallowSnapshot. (szetszwo)
  2429. HDFS-4717. Change the path parameter type of the snapshot methods in
  2430. HdfsAdmin from String to Path. (szetszwo)
  2431. HDFS-4708. Add snapshot user documentation. (szetszwo)
  2432. HDFS-4726. Fix test failures after merging the INodeId-INode mapping
  2433. from trunk. (Jing Zhao via szetszwo)
  2434. HDFS-4727. Update inodeMap after deleting files/directories/snapshots.
  2435. (Jing Zhao via szetszwo)
  2436. HDFS-4719. Remove AbstractINodeDiff.Factory and move its methods to
  2437. AbstractINodeDiffList. (Arpit Agarwal via szetszwo)
  2438. HDFS-4735. DisallowSnapshot throws IllegalStateException for nested
  2439. snapshottable directories. (Jing Zhao via szetszwo)
  2440. HDFS-4738. Changes AbstractINodeDiff to implement Comparable<Integer>, and
  2441. fix javadoc and other warnings. (szetszwo)
  2442. HDFS-4686. Update quota computation for rename and INodeReference.
  2443. (Jing Zhao via szetszwo)
  2444. HDFS-4729. Fix OfflineImageViewer and permission checking for snapshot
  2445. operations. (Jing Zhao via szetszwo)
  2446. HDFS-4749. Use INodeId to identify the corresponding directory node in
  2447. FSImage saving/loading. (Jing Zhao via szetszwo)
  2448. HDFS-4742. Fix appending to a renamed file with snapshot. (Jing Zhao via
  2449. szetszwo)
  2450. HDFS-4755. Fix AccessControlException message and moves "implements
  2451. LinkedElement" from INode to INodeWithAdditionalFields. (szetszwo)
  2452. HDFS-4650. Fix a bug in FSDirectory and add more unit tests for rename with
  2453. existence of snapshottable directories and snapshots. (Jing Zhao via
  2454. szetszwo)
  2455. HDFS-4650. When passing two non-existing snapshot names to snapshotDiff, it
  2456. returns success if the names are the same. (Jing Zhao via szetszwo)
  2457. HDFS-4767. If a directory is snapshottable, do not replace it when clearing
  2458. quota. (Jing Zhao via szetszwo)
  2459. HDFS-4578. Restrict snapshot IDs to 24-bit wide. (Arpit Agarwal via
  2460. szetszwo)
  2461. HDFS-4773. Fix bugs in quota usage computation and OfflineImageViewer.
  2462. (Jing Zhao via szetszwo)
  2463. HDFS-4760. Update inodeMap after node replacement. (Jing Zhao via szetszwo)
  2464. HDFS-4758. Disallow nested snapshottable directories and unwrap
  2465. RemoteException. (szetszwo)
  2466. HDFS-4781. Fix a NullPointerException when listing .snapshot under
  2467. a non-existing directory. (szetszwo)
  2468. HDFS-4791. Update and fix deletion of reference inode. (Jing Zhao via
  2469. szetszwo)
  2470. HDFS-4798. Update computeContentSummary() for the reference nodes in
  2471. snapshots. (szetszwo)
  2472. HDFS-4800. Fix INodeDirectoryWithSnapshot#cleanDeletedINode. (Jing Zhao via
  2473. szetszwo)
  2474. HDFS-4801. lsSnapshottableDir throws IllegalArgumentException when root is
  2475. snapshottable. (Jing Zhao via szetszwo)
  2476. HDFS-4802. Disallowing snapshot on / twice should throw SnapshotException
  2477. but not IllegalStateException. (Jing Zhao via szetszwo)
  2478. HDFS-4806. In INodeDirectoryWithSnapshot, use isInLatestSnapshot() to
  2479. determine if an added/removed child should be recorded in the snapshot diff.
  2480. (Jing Zhao via szetszwo)
  2481. HDFS-4809. When a QuotaExceededException is thrown during rename, the quota
  2482. usage should be subtracted back. (Jing Zhao via szetszwo)
  2483. HDFS-4842. Identify the correct prior snapshot when deleting a
  2484. snapshot under a renamed subtree. (jing9)
  2485. HDFS-4846. Clean up snapshot CLI commands output stacktrace for invalid
  2486. arguments. (Jing Zhao via brandonli)
  2487. HDFS-4857. Snapshot.Root and AbstractINodeDiff#snapshotINode should not be
  2488. put into INodeMap when loading FSImage. (jing9)
  2489. HDFS-4863. The root directory should be added to the snapshottable
  2490. directory list while loading fsimage. (jing9)
  2491. HDFS-4848. copyFromLocal and renaming a file to ".snapshot" should output
  2492. that ".snapshot" is a reserved name. (Jing Zhao via brandonli)
  2493. HDFS-4826. TestNestedSnapshots times out due to repeated slow edit log
  2494. flushes when running on virtualized disk. (Chris Nauroth via szetszwo)
  2495. HDFS-4876. Fix the javadoc of FileWithSnapshot and move FileDiffList to
  2496. FileWithSnapshot. (szetszwo)
  2497. HDFS-4850. Fix OfflineImageViewer to work on fsimages with empty files or
  2498. snapshots. (jing9)
  2499. HDFS-4877. Snapshot: fix the scenario where a directory is renamed under
  2500. its prior descendant. (jing9)
  2501. HDFS-4873. callGetBlockLocations returns incorrect number of blocks for
  2502. snapshotted files. (jing9)
  2503. HDFS-4819. Update Snapshot doc to clarify that nested snapshots are not
  2504. allowed. (szetszwo)
  2505. HDFS-4902. DFSClient.getSnapshotDiffReport should use string path rather
  2506. than o.a.h.fs.Path. (Binglin Chang via jing9)
  2507. HDFS-4875. Add a test for testing snapshot file length.
  2508. (Arpit Agarwal via jing9)
  2509. HDFS-4841. FsShell commands using secure webhfds fail ClientFinalizer
  2510. shutdown hook. (rkanter via tucu)
  2511. HDFS-4951. FsShell commands using secure httpfs throw exceptions due
  2512. to missing TokenRenewer. (rknater via tucu)
  2513. HDFS-4969. WebhdfsFileSystem expects non-standard WEBHDFS Json element.
  2514. (rkanter via tucu)
  2515. HDFS-4797. BlockScanInfo does not override equals(..) and hashCode()
  2516. consistently. (szetszwo)
  2517. HDFS-4978. Make disallowSnapshot idempotent. (jing9)
  2518. HDFS-5005. Move SnapshotException and SnapshotAccessControlException
  2519. to o.a.h.hdfs.protocol. (jing9)
  2520. HDFS-4982. JournalNode should relogin from keytab before fetching logs
  2521. from other JNs (todd)
  2522. Release 2.0.6-alpha - 08/22/2013
  2523. INCOMPATIBLE CHANGES
  2524. NEW FEATURES
  2525. IMPROVEMENTS
  2526. OPTIMIZATIONS
  2527. Release 2.0.5-alpha - 06/06/2013
  2528. INCOMPATIBLE CHANGES
  2529. NEW FEATURES
  2530. IMPROVEMENTS
  2531. OPTIMIZATIONS
  2532. BUG FIXES
  2533. Release 2.0.4-alpha - 2013-04-25
  2534. INCOMPATIBLE CHANGES
  2535. NEW FEATURES
  2536. IMPROVEMENTS
  2537. OPTIMIZATIONS
  2538. BUG FIXES
  2539. Release 2.0.3-alpha - 2013-02-06
  2540. INCOMPATIBLE CHANGES
  2541. HDFS-4122. Cleanup HDFS logs and reduce the size of logged messages.
  2542. (suresh)
  2543. HDFS-4362. GetDelegationTokenResponseProto does not handle null token.
  2544. (suresh)
  2545. HDFS-4367. GetDataEncryptionKeyResponseProto does not handle null
  2546. response. (suresh)
  2547. HDFS-4364. GetLinkTargetResponseProto does not handle null path. (suresh)
  2548. HDFS-4369. GetBlockKeysResponseProto does not handle null response.
  2549. (suresh)
  2550. HDFS-4451. hdfs balancer command returns exit code 1 on success instead
  2551. of 0. (Joshua Blatt via suresh)
  2552. HDFS-4350. Make enabling of stale marking on read and write paths
  2553. independent. (Andrew Wang via suresh)
  2554. NEW FEATURES
  2555. HDFS-2656. Add libwebhdfs, a pure C client based on WebHDFS.
  2556. (Jaimin D Jetly and Jing Zhao via szetszwo)
  2557. HDFS-3912. Detect and avoid stale datanodes for writes.
  2558. (Jing Zhao via suresh)
  2559. HDFS-4059. Add number of stale DataNodes to metrics. (Jing Zhao via suresh)
  2560. HDFS-4155. libhdfs implementation of hsync API (Liang Xie via todd)
  2561. HDFS-4213. Add an API to hsync for updating the last block length at the
  2562. namenode. (Jing Zhao via szetszwo)
  2563. HDFS-3077. Implement QuorumJournalManager, a distributed mechanism for
  2564. reliably storing HDFS edit logs. See dedicated section below for breakdown
  2565. of subtasks.
  2566. IMPROVEMENTS
  2567. HDFS-3925. Prettify PipelineAck#toString() for printing to a log
  2568. (Andrew Wang via todd)
  2569. HDFS-3939. NN RPC address cleanup. (eli)
  2570. HDFS-3373. Change DFSClient input stream socket cache to global static and
  2571. add a thread to cleanup expired cache entries. (John George via szetszwo)
  2572. HDFS-3896. Add descriptions for dfs.namenode.rpc-address and
  2573. dfs.namenode.servicerpc-address to hdfs-default.xml. (Jeff Lord via atm)
  2574. HDFS-3996. Add debug log removed in HDFS-3873 back. (eli)
  2575. HDFS-3916. libwebhdfs (C client) code cleanups.
  2576. (Colin Patrick McCabe via eli)
  2577. HDFS-3813. Log error message if security and WebHDFS are enabled but
  2578. principal/keytab are not configured. (Stephen Chu via atm)
  2579. HDFS-3483. Better error message when hdfs fsck is run against a ViewFS
  2580. config. (Stephen Fritz via atm)
  2581. HDFS-3682. MiniDFSCluster#init should provide more info when it fails.
  2582. (todd via eli)
  2583. HDFS-4008. TestBalancerWithEncryptedTransfer needs a timeout. (eli)
  2584. HDFS-4007. Rehabilitate bit-rotted unit tests under
  2585. hadoop-hdfs-project/hadoop-hdfs/src/test/unit/
  2586. (Colin Patrick McCabe via todd)
  2587. HDFS-4041. Hadoop HDFS Maven protoc calls must not depend on external
  2588. sh script. (Chris Nauroth via suresh)
  2589. HADOOP-8911. CRLF characters in source and text files.
  2590. (Raja Aluri via suresh)
  2591. HDFS-4037. Rename the getReplication() method in BlockCollection to
  2592. getBlockReplication(). (szetszwo)
  2593. HDFS-4036. Remove "throws UnresolvedLinkException" from
  2594. FSDirectory.unprotectedAddFile(..). (Jing Zhao via szetszwo)
  2595. HDFS-2946. HA: Put a cap on the number of completed edits files retained
  2596. by the NN. (atm)
  2597. HDFS-4029. GenerationStamp should use an AtomicLong. (eli)
  2598. HDFS-4068. DatanodeID and DatanodeInfo member should be private. (eli)
  2599. HDFS-4073. Two minor improvements to FSDirectory. (Jing Zhao via szetszwo)
  2600. HDFS-4074. Remove the unused default constructor from INode. (Brandon Li
  2601. via szetszwo)
  2602. HDFS-4088. Remove "throws QuotaExceededException" from an
  2603. INodeDirectoryWithQuota constructor. (szetszwo)
  2604. HDFS-4099. Clean up replication code and add more javadoc. (szetszwo)
  2605. HDFS-4107. Add utility methods for casting INode to INodeFile and
  2606. INodeFileUnderConstruction. (szetszwo)
  2607. HDFS-4112. A few improvements on INodeDirectory include adding a utility
  2608. method for casting; avoiding creation of new empty lists; cleaning up
  2609. some code and rewriting some javadoc. (szetszwo)
  2610. HDFS-4121. Add namespace declarations in hdfs .proto files for languages
  2611. other than java. (Binglin Chang via suresh)
  2612. HDFS-3573. Supply NamespaceInfo when instantiating JournalManagers.
  2613. (todd and ivank via umamahesh)
  2614. HDFS-3695. Genericize format() to non-file JournalManagers.
  2615. (todd via umamahesh)
  2616. HDFS-3789. JournalManager#format() should be able to throw IOException.
  2617. (Ivan Kelly via umamahesh)
  2618. HDFS-3809. Make BKJM use protobufs for all serialization with ZK.
  2619. (Ivan Kelly via umamhesh)
  2620. HDFS-3916. libwebhdfs testing code cleanup. (Jing Zhao via suresh)
  2621. HDFS-4143. Change blocks to private in INodeFile and renames isLink() to
  2622. isSymlink() in INode. (szetszwo)
  2623. HDFS-4046. Rename ChecksumTypeProto enum NULL since it is illegal in
  2624. C/C++. (Binglin Chang via suresh)
  2625. HDFS-4048. Use ERROR instead of INFO for volume failure logs.
  2626. (Stephen Chu via eli)
  2627. HDFS-1322. Document umask in DistributedFileSystem#mkdirs javadocs.
  2628. (Colin Patrick McCabe via eli)
  2629. HDFS-4038. Override toString() for BookKeeperEditLogInputStream.
  2630. (Vinay via umamahesh)
  2631. HDFS-4214. OfflineEditsViewer should print out the offset at which it
  2632. encountered an error. (Colin Patrick McCabe via atm)
  2633. HDFS-4199. Provide test for HdfsVolumeId. (Ivan A. Veselovsky via atm)
  2634. HDFS-3049. During the normal NN startup process, fall back on a different
  2635. edit log if we see one that is corrupt (Colin Patrick McCabe via todd)
  2636. HDFS-3571. Allow EditLogFileInputStream to read from a remote URL (todd)
  2637. HDFS-4110. Refine a log printed in JNStorage. (Liang Xie via suresh)
  2638. HDFS-4153. Add START_MSG/SHUTDOWN_MSG for JournalNode. (liang xie via atm)
  2639. HDFS-3935. Add JournalNode to the start/stop scripts (Andy Isaacson via todd)
  2640. HDFS-4268. Remove redundant enum NNHAStatusHeartbeat.State. (shv)
  2641. HDFS-3680. Allow customized audit logging in HDFS FSNamesystem. (Marcelo
  2642. Vanzin via atm)
  2643. HDFS-4130. BKJM: The reading for editlog at NN starting using bkjm is not efficient.
  2644. (Han Xiao via umamahesh)
  2645. HDFS-4326. bump up Tomcat version for HttpFS to 6.0.36. (tucu via acmurthy)
  2646. HDFS-4270. Introduce soft and hard limits for max replication so that
  2647. replications of the highest priority are allowed to choose a source datanode
  2648. that has reached its soft limit but not the hard limit. (Derek Dagit via
  2649. szetszwo)
  2650. HADOOP-9173. Add security token protobuf definition to common and
  2651. use it in hdfs. (suresh)
  2652. HDFS-4030. BlockManager excessBlocksCount and
  2653. postponedMisreplicatedBlocksCount should be AtomicLongs. (eli)
  2654. HDFS-4031. Update findbugsExcludeFile.xml to include findbugs 2
  2655. exclusions. (eli)
  2656. HDFS-4033. Miscellaneous findbugs 2 fixes. (eli)
  2657. HDFS-4034. Remove redundant null checks. (eli)
  2658. HDFS-4035. LightWeightGSet and LightWeightHashSet increment a
  2659. volatile without synchronization. (eli)
  2660. HDFS-4032. Specify the charset explicitly rather than rely on the
  2661. default. (eli)
  2662. HDFS-4363. Combine PBHelper and HdfsProtoUtil and remove redundant
  2663. methods. (suresh)
  2664. HDFS-4377. Some trivial DN comment cleanup. (eli)
  2665. HDFS-4381. Document fsimage format details in FSImageFormat class javadoc.
  2666. (Jing Zhao via suresh)
  2667. HDFS-4375. Use token request messages defined in hadoop common.
  2668. (suresh)
  2669. HDFS-4392. Use NetUtils#getFreeSocketPort in MiniDFSCluster.
  2670. (Andrew Purtell via suresh)
  2671. HDFS-4393. Make empty request and responses in protocol translators can be
  2672. static final members. (Brandon Li via suresh)
  2673. HDFS-4403. DFSClient can infer checksum type when not provided by reading
  2674. first byte (todd)
  2675. HDFS-4259. Improve pipeline DN replacement failure message (harsh)
  2676. HDFS-3598. WebHDFS support for file concat. (Plamen Jeliazkov via shv)
  2677. HDFS-4456. Add concat to HttpFS and WebHDFS REST API docs. (plamenj2003 via tucu)
  2678. OPTIMIZATIONS
  2679. HDFS-3429. DataNode reads checksums even if client does not need them (todd)
  2680. BUG FIXES
  2681. HDFS-3919. MiniDFSCluster:waitClusterUp can hang forever.
  2682. (Andy Isaacson via eli)
  2683. HDFS-3924. Multi-byte id in HdfsVolumeId. (Andrew Wang via atm)
  2684. HDFS-3936. MiniDFSCluster shutdown races with BlocksMap usage. (eli)
  2685. HDFS-3951. datanode web ui does not work over HTTPS when datanode is started in secure mode. (tucu)
  2686. HDFS-3949. NameNodeRpcServer#join should join on both client and
  2687. server RPC servers. (eli)
  2688. HDFS-3932. NameNode Web UI broken if the rpc-address is set to the wildcard.
  2689. (Colin Patrick McCabe via eli)
  2690. HDFS-3931. TestDatanodeBlockScanner#testBlockCorruptionPolicy2 is broken.
  2691. (Andy Isaacson via eli)
  2692. HDFS-3964. Make NN log of fs.defaultFS debug rather than info. (eli)
  2693. HDFS-3992. Method org.apache.hadoop.hdfs.TestHftpFileSystem.tearDown()
  2694. sometimes throws NPEs. (Ivan A. Veselovsky via atm)
  2695. HDFS-3753. Tests don't run with native libraries.
  2696. (Colin Patrick McCabe via eli)
  2697. HDFS-4000. TestParallelLocalRead fails with "input ByteBuffers
  2698. must be direct buffers". (Colin Patrick McCabe via eli)
  2699. HDFS-3999. HttpFS OPEN operation expects len parameter, it should be length. (tucu)
  2700. HDFS-4006. TestCheckpoint#testSecondaryHasVeryOutOfDateImage
  2701. occasionally fails due to unexpected exit. (todd via eli)
  2702. HDFS-4018. testMiniDFSClusterWithMultipleNN is missing some
  2703. cluster cleanup. (eli)
  2704. HDFS-4020. TestRBWBlockInvalidation may time out. (eli)
  2705. HDFS-4021. Misleading error message when resources are low on the NameNode.
  2706. (Christopher Conner via atm)
  2707. HDFS-4044. Duplicate ChecksumType definition in HDFS .proto files.
  2708. (Binglin Chang via suresh)
  2709. HDFS-4049. Fix hflush performance regression due to nagling delays
  2710. (todd)
  2711. HDFS-3678. Edit log files are never being purged from 2NN. (atm)
  2712. HDFS-4058. DirectoryScanner may fail with IOOB if the directory
  2713. scanning threads return out of volume order. (eli)
  2714. HDFS-3985. Add timeouts to TestMulitipleNNDataBlockScanner. (todd via eli)
  2715. HDFS-4061. TestBalancer and TestUnderReplicatedBlocks need timeouts. (eli)
  2716. HDFS-3997. OfflineImageViewer incorrectly passes value of imageVersion when
  2717. visiting IS_COMPRESSED element. (Mithun Radhakrishnan via atm)
  2718. HDFS-4055. TestAuditLogs is flaky. (Binglin Chang via eli)
  2719. HDFS-4072. On file deletion remove corresponding blocks pending
  2720. replications. (Jing Zhao via suresh)
  2721. HDFS-4022. Replication not happening for appended block.
  2722. (Vinay via umamahesh)
  2723. HDFS-3948. Do not use hflush in TestWebHDFS.testNamenodeRestart() since the
  2724. out stream returned by WebHdfsFileSystem does not support it. (Jing Zhao
  2725. via szetszwo)
  2726. HDFS-3616. Fix a ConcurrentModificationException bug that BP actor threads
  2727. may not be shutdown properly in DataNode. (Jing Zhao via szetszwo)
  2728. HDFS-4127. Log message is not correct in case of short of replica.
  2729. (Junping Du via suresh)
  2730. HADOOP-8994. TestDFSShell creates file named "noFileHere", making further
  2731. tests hard to understand (Andy Isaacson via daryn)
  2732. HDFS-3804. TestHftpFileSystem fails intermittently with JDK7
  2733. (Trevor Robinson via daryn)
  2734. HDFS-4132. When libwebhdfs is not enabled, nativeMiniDfsClient frees
  2735. uninitialized memory (Colin Patrick McCabe via todd)
  2736. HDFS-1331. dfs -test should work like /bin/test (Andy Isaacson via daryn)
  2737. HDFS-3979. For hsync, datanode should wait for the local sync to complete
  2738. before sending ack. (Lars Hofhansl via szetszwo)
  2739. HDFS-3810. Implement format() for BKJM (Ivan Kelly via umamahesh)
  2740. HDFS-3625. Fix TestBackupNode by properly initializing edit log during
  2741. startup. (Junping Du via todd)
  2742. HDFS-4138. BackupNode startup fails due to uninitialized edit log.
  2743. (Kihwal Lee via shv)
  2744. HDFS-4162. Some malformed and unquoted HTML strings are returned from
  2745. datanode web ui. (Darek Dagit via suresh)
  2746. HDFS-4164. fuse_dfs: add -lrt to the compiler command line on Linux.
  2747. (Colin Patrick McCabe via eli)
  2748. HDFS-3921. NN will prematurely consider blocks missing when entering active
  2749. state while still in safe mode. (atm)
  2750. HDFS-4106. BPServiceActor#lastHeartbeat, lastBlockReport and
  2751. lastDeletedReport should be volatile. (Jing Zhao via suresh)
  2752. HDFS-4139. fuse-dfs RO mode still allows file truncation.
  2753. (Colin Patrick McCabe via eli)
  2754. HDFS-4104. dfs -test -d prints inappropriate error on nonexistent directory
  2755. (Andy Isaacson via daryn)
  2756. HDFS-3623. BKJM: zkLatchWaitTimeout hard coded to 6000. Make use of ZKSessionTimeout instead.
  2757. (umamahesh)
  2758. HDFS-4100. Fix all findbug security warings. (Liang Xie via eli)
  2759. HDFS-3507. DFS#isInSafeMode needs to execute only on Active NameNode.
  2760. (Vinay via atm)
  2761. HDFS-4105. The SPNEGO user for secondary namenode should use the web
  2762. keytab. (Arpit Gupta via jitendra)
  2763. HDFS-4156. Seeking to a negative position should throw an IOE.
  2764. (Eli Reisman via eli)
  2765. HDFS-4171. WebHDFS and HttpFs should accept only valid Unix user
  2766. names. (tucu)
  2767. HDFS-4178. Shell scripts should not close stderr (Andy Isaacson via daryn)
  2768. HDFS-4179. BackupNode: allow reads, fix checkpointing, safeMode. (shv)
  2769. HDFS-4216. Do not ignore QuotaExceededException when adding symlinks.
  2770. (szetszwo)
  2771. HDFS-4242. Map.Entry is incorrectly used in LeaseManager since the behavior
  2772. of it is undefined after the iteration or modifications of the map.
  2773. (szetszwo)
  2774. HDFS-4231. BackupNode: Introduce BackupState. (shv)
  2775. HDFS-4238. Standby namenode should not do purging of shared
  2776. storage edits. (todd)
  2777. HDFS-4282. TestEditLog.testFuzzSequences FAILED in all pre-commit test
  2778. (todd)
  2779. HDFS-4236. Remove artificial limit on username length introduced in
  2780. HDFS-4171. (tucu via suresh)
  2781. HDFS-4279. NameNode does not initialize generic conf keys when started
  2782. with -recover. (Colin Patrick McCabe via atm)
  2783. HDFS-4291. edit log unit tests leave stray test_edit_log_file around
  2784. (Colin Patrick McCabe via todd)
  2785. HDFS-4292. Sanity check not correct in RemoteBlockReader2.newBlockReader
  2786. (Binglin Chang via todd)
  2787. HDFS-4295. Using port 1023 should be valid when starting Secure DataNode
  2788. (Stephen Chu via todd)
  2789. HDFS-4294. Backwards compatibility is not maintained for TestVolumeId.
  2790. (Ivan A. Veselovsky and Robert Parker via atm)
  2791. HDFS-2264. NamenodeProtocol has the wrong value for clientPrincipal in
  2792. KerberosInfo annotation. (atm)
  2793. HDFS-4307. SocketCache should use monotonic time. (Colin Patrick McCabe
  2794. via atm)
  2795. HDFS-4315. DNs with multiple BPs can have BPOfferServices fail to start
  2796. due to unsynchronized map access. (atm)
  2797. HDFS-4140. fuse-dfs handles open(O_TRUNC) poorly. (Colin Patrick McCabe
  2798. via atm)
  2799. HDFS-4308. addBlock() should persist file blocks once.
  2800. (Plamen Jeliazkov via shv)
  2801. HDFS-4347. Avoid infinite waiting checkpoint to complete in TestBackupNode.
  2802. (Plamen Jeliazkov via shv)
  2803. HDFS-4349. Add test for reading files from BackupNode. (shv)
  2804. HDFS-4302. Fix fatal exception when starting NameNode with DEBUG logs
  2805. (Eugene Koontz via todd)
  2806. HDFS-3970. Fix bug causing rollback of HDFS upgrade to result in bad
  2807. VERSION file. (Vinay and Andrew Wang via atm)
  2808. HDFS-4306. PBHelper.convertLocatedBlock miss convert BlockToken. (Binglin
  2809. Chang via atm)
  2810. HDFS-4384. test_libhdfs_threaded gets SEGV if JNIEnv cannot be
  2811. initialized. (Colin Patrick McCabe via eli)
  2812. HDFS-4328. TestLargeBlock#testLargeBlockSize is timing out. (Chris Nauroth
  2813. via atm)
  2814. HDFS-4274. BlockPoolSliceScanner does not close verification log during
  2815. shutdown. (Chris Nauroth via suresh)
  2816. HDFS-1245. Pluggable block id generation. (shv)
  2817. HDFS-4415. HostnameFilter should handle hostname resolution failures and
  2818. continue processing. (Robert Kanter via atm)
  2819. HDFS-4359. Slow RPC responses from NN can prevent metrics collection on
  2820. DNs. (liang xie via atm)
  2821. HDFS-4444. Add space between total transaction time and number of
  2822. transactions in FSEditLog#printStatistics. (Stephen Chu via suresh)
  2823. HDFS-4428. FsDatasetImpl should disclose what the error is when a rename
  2824. fails. (Colin Patrick McCabe via atm)
  2825. HDFS-4452. getAdditionalBlock() can create multiple blocks if the client
  2826. times out and retries. (shv)
  2827. HDFS-4445. All BKJM ledgers are not checked while tailing, So failover will fail.
  2828. (Vinay via umamahesh)
  2829. HDFS-4462. 2NN will fail to checkpoint after an HDFS upgrade from a
  2830. pre-federation version of HDFS. (atm)
  2831. HDFS-4404. Create file failure when the machine of first attempted NameNode
  2832. is down. (Todd Lipcon via atm)
  2833. HDFS-4344. dfshealth.jsp throws NumberFormatException when
  2834. dfs.hosts/dfs.hosts.exclude includes port number. (Andy Isaacson via atm)
  2835. HDFS-4468. Use the new StringUtils methods added by HADOOP-9252 and fix
  2836. TestHDFSCLI and TestQuota. (szetszwo)
  2837. HDFS-4458. In DFSUtil.getNameServiceUris(..), convert default fs URI using
  2838. NetUtils.createSocketAddr(..) for being consistent with other addresses.
  2839. (Binglin Chang via szetszwo)
  2840. BREAKDOWN OF HDFS-3077 SUBTASKS
  2841. HDFS-3077. Quorum-based protocol for reading and writing edit logs.
  2842. (todd, Brandon Li, and Hari Mankude via todd)
  2843. HDFS-3694. Fix getEditLogManifest to fetch httpPort if necessary (todd)
  2844. HDFS-3692. Support purgeEditLogs() call to remotely purge logs on JNs
  2845. (todd)
  2846. HDFS-3693. JNStorage should read its storage info even before a writer
  2847. becomes active (todd)
  2848. HDFS-3725. Fix QJM startup when individual JNs have gaps (todd)
  2849. HDFS-3741. Exhaustive failure injection test for skipped RPCs (todd)
  2850. HDFS-3773. TestNNWithQJM fails after HDFS-3741. (atm)
  2851. HDFS-3793. Implement genericized format() in QJM (todd)
  2852. HDFS-3795. QJM: validate journal dir at startup (todd)
  2853. HDFS-3798. Avoid throwing NPE when finalizeSegment() is called on invalid
  2854. segment (todd)
  2855. HDFS-3799. QJM: handle empty log segments during recovery (todd)
  2856. HDFS-3797. QJM: add segment txid as a parameter to journal() RPC (todd)
  2857. HDFS-3800. improvements to QJM fault testing (todd)
  2858. HDFS-3823. QJM: TestQJMWithFaults fails occasionally because of missed
  2859. setting of HTTP port. (todd and atm)
  2860. HDFS-3826. QJM: Some trivial logging / exception text improvements. (todd
  2861. and atm)
  2862. HDFS-3839. QJM: hadoop-daemon.sh should be updated to accept "journalnode"
  2863. (eli)
  2864. HDFS-3845. Fixes for edge cases in QJM recovery protocol (todd)
  2865. HDFS-3877. QJM: Provide defaults for dfs.journalnode.*address (eli)
  2866. HDFS-3863. Track last "committed" txid in QJM (todd)
  2867. HDFS-3869. Expose non-file journal manager details in web UI (todd)
  2868. HDFS-3884. Journal format() should reset cached values (todd)
  2869. HDFS-3870. Add metrics to JournalNode (todd)
  2870. HDFS-3891. Make selectInputStreams throw IOE instead of RTE (todd)
  2871. HDFS-3726. If a logger misses an RPC, don't retry that logger until next
  2872. segment (todd)
  2873. HDFS-3893. QJM: Make QJM work with security enabled. (atm)
  2874. HDFS-3897. QJM: TestBlockToken fails after HDFS-3893. (atm)
  2875. HDFS-3898. QJM: enable TCP_NODELAY for IPC (todd)
  2876. HDFS-3885. QJM: optimize log sync when JN is lagging behind (todd)
  2877. HDFS-3900. QJM: avoid validating log segments on log rolls (todd)
  2878. HDFS-3901. QJM: send 'heartbeat' messages to JNs even when they are
  2879. out-of-sync (todd)
  2880. HDFS-3899. QJM: Add client-side metrics (todd)
  2881. HDFS-3914. QJM: acceptRecovery should abort current segment (todd)
  2882. HDFS-3915. QJM: Failover fails with auth error in secure cluster (todd)
  2883. HDFS-3906. QJM: quorum timeout on failover with large log segment (todd)
  2884. HDFS-3840. JournalNodes log JournalNotFormattedException backtrace error
  2885. before being formatted (todd)
  2886. HDFS-3894. QJM: testRecoverAfterDoubleFailures can be flaky due to IPC
  2887. client caching (todd)
  2888. HDFS-3926. QJM: Add user documentation for QJM. (atm)
  2889. HDFS-3943. QJM: remove currently-unused md5sum field (todd)
  2890. HDFS-3950. QJM: misc TODO cleanup, improved log messages, etc. (todd)
  2891. HDFS-3955. QJM: Make acceptRecovery() atomic. (todd)
  2892. HDFS-3956. QJM: purge temporary files when no longer within retention
  2893. period (todd)
  2894. HDFS-4004. TestJournalNode#testJournal fails because of test case execution
  2895. order (Chao Shi via todd)
  2896. HDFS-4017. Unclosed FileInputStream in GetJournalEditServlet
  2897. (Chao Shi via todd)
  2898. HDFS-4351. In BlockPlacementPolicyDefault.chooseTarget(..), numOfReplicas
  2899. needs to be updated when avoiding stale nodes. (Andrew Wang via szetszwo)
  2900. HDFS-2908. Add apache license header for StorageReport.java. (Brandon Li
  2901. via tgraves)
  2902. HDFS-4399. Fix RAT warnings by excluding images sub-dir in docs. (Thomas
  2903. Graves via acmurthy)
  2904. Release 2.0.2-alpha - 2012-09-07
  2905. INCOMPATIBLE CHANGES
  2906. HDFS-3446. HostsFileReader silently ignores bad includes/excludes
  2907. (Matthew Jacobs via todd)
  2908. HDFS-3755. Creating an already-open-for-write file with overwrite=true fails
  2909. (todd)
  2910. NEW FEATURES
  2911. HDFS-744. Support hsync in HDFS. (Lars Hofhansl via szetszwo)
  2912. HDFS-3042. Automatic failover support for NameNode HA (todd)
  2913. (see dedicated section below for breakdown of subtasks)
  2914. HDFS-3518. Add a utility method HdfsUtils.isHealthy(uri) for checking if
  2915. the given HDFS is healthy. (szetszwo)
  2916. HDFS-3113. httpfs does not support delegation tokens. (tucu)
  2917. HDFS-3513. HttpFS should cache filesystems. (tucu)
  2918. HDFS-3637. Add support for encrypting the DataTransferProtocol. (atm)
  2919. HDFS-3150. Add option for clients to contact DNs via hostname. (eli)
  2920. HDFS-2793. Add an admin command to trigger an edit log roll. (todd)
  2921. HDFS-3703. Datanodes are marked stale if heartbeat is not received in
  2922. configured timeout and are selected as the last location to read from.
  2923. (Jing Zhao via suresh)
  2924. IMPROVEMENTS
  2925. HDFS-3040. TestMulitipleNNDataBlockScanner is misspelled. (Madhukara Phatak
  2926. via atm)
  2927. HDFS-3390. DFSAdmin should print full stack traces of errors when DEBUG
  2928. logging is enabled. (atm)
  2929. HDFS-3341. Change minimum RPC versions to respective SNAPSHOTs instead of
  2930. final releases. (todd)
  2931. HDFS-3369. Rename {get|set|add}INode(..) methods in BlockManager and
  2932. BlocksMap to {get|set|add}BlockCollection(..). (John George via szetszwo)
  2933. HDFS-3134. harden edit log loader against malformed or malicious input.
  2934. (Colin Patrick McCabe via eli)
  2935. HDFS-3230. Cleanup DatanodeID creation in the tests. (eli)
  2936. HDFS-3401. Cleanup DatanodeDescriptor creation in the tests. (eli)
  2937. HDFS-3400. DNs should be able start with jsvc even if security is disabled.
  2938. (atm via eli)
  2939. HDFS-3404. Make putImage in GetImageServlet infer remote address to fetch
  2940. from request. (atm)
  2941. HDFS-3335. check for edit log corruption at the end of the log
  2942. (Colin Patrick McCabe via todd)
  2943. HDFS-3417. Rename BalancerDatanode#getName to getDisplayName to be
  2944. consistent with Datanode. (eli)
  2945. HDFS-3416. Cleanup DatanodeID and DatanodeRegistration
  2946. constructors used by testing. (eli)
  2947. HDFS-3419. Cleanup LocatedBlock. (eli)
  2948. HDFS-3440. More effectively limit stream memory consumption when reading
  2949. corrupt edit logs (Colin Patrick McCabe via todd)
  2950. HDFS-3438. BootstrapStandby should not require a rollEdits on active node
  2951. (todd)
  2952. HDFS-2885. Remove "federation" from the nameservice config options.
  2953. (Tsz Wo (Nicholas) Sze via eli)
  2954. HDFS-3394. Do not use generic in INodeFile.getLastBlock(): the run-time
  2955. ClassCastException check is useless since generic type information is only
  2956. available in compile-time. (szetszwo)
  2957. HDFS-3454. Balancer unconditionally logs InterruptedException at
  2958. INFO level on shutdown if security is enabled. (eli)
  2959. HDFS-1013. Miscellaneous improvements to HTML markup for web UIs
  2960. (Eugene Koontz via todd)
  2961. HDFS-3052. Change INodeFile and INodeFileUnderConstruction to package
  2962. private. (szetszwo)
  2963. HDFS-3520. Add transfer rate logging to TransferFsImage. (eli)
  2964. HDFS-3504. Support configurable retry policy in DFSClient for RPC
  2965. connections and RPC calls, and add MultipleLinearRandomRetry, a new retry
  2966. policy. (szetszwo)
  2967. HDFS-3372. offlineEditsViewer should be able to read a binary
  2968. edits file with recovery mode. (Colin Patrick McCabe via eli)
  2969. HDFS-3516. Check content-type in WebHdfsFileSystem. (szetszwo)
  2970. HDFS-3535. Audit logging should log denied accesses. (Andy Isaacson via eli)
  2971. HDFS-3481. Refactor HttpFS handling of JAX-RS query string parameters (tucu)
  2972. HDFS-3572. Cleanup code which inits SPNEGO in HttpServer (todd)
  2973. HDFS-3475. Make the replication monitor multipliers configurable.
  2974. (harsh via eli)
  2975. HDFS-3343. Improve metrics for DN read latency (Andrew Wang via todd)
  2976. HDFS-3170. Add more useful metrics for write latency (Matthew Jacobs via
  2977. todd)
  2978. HDFS-3604. Add dfs.webhdfs.enabled to hdfs-default.xml. (eli)
  2979. HDFS-2988. Improve error message when storage directory lock fails
  2980. (Miomir Boljanovic via harsh)
  2981. HDFS-2391. Newly set BalancerBandwidth value is not displayed anywhere.
  2982. (harsh)
  2983. HDFS-3067. NPE in DFSInputStream.readBuffer if read is repeated on
  2984. corrupted block. (Henry Robinson via atm)
  2985. HDFS-3555. idle client socket triggers DN ERROR log
  2986. (should be INFO or DEBUG). (Andy Isaacson via harsh)
  2987. HDFS-3568. fuse_dfs: add support for security. (Colin McCabe via atm)
  2988. HDFS-3629. Fix the typo in the error message about inconsistent
  2989. storage layout version. (Brandon Li via harsh)
  2990. HDFS-3613. GSet prints some INFO level values, which aren't
  2991. really very useful to all (Andrew Wang via harsh)
  2992. HDFS-3611. NameNode prints unnecessary WARNs about edit log normally skipping
  2993. a few bytes. (Colin Patrick McCabe via harsh)
  2994. HDFS-3582. Hook daemon process exit for testing. (eli)
  2995. HDFS-3641. Move server Util time methods to common and use now
  2996. instead of System#currentTimeMillis. (eli)
  2997. HDFS-3633. libhdfs: hdfsDelete should pass JNI_FALSE or JNI_TRUE.
  2998. (Colin Patrick McCabe via eli)
  2999. HDFS-799. libhdfs must call DetachCurrentThread when a thread is destroyed.
  3000. (Colin Patrick McCabe via eli)
  3001. HDFS-3306. fuse_dfs: don't lock release operations.
  3002. (Colin Patrick McCabe via eli)
  3003. HDFS-3612. Single namenode image directory config warning can
  3004. be improved. (Andy Isaacson via harsh)
  3005. HDFS-3606. libhdfs: create self-contained unit test.
  3006. (Colin Patrick McCabe via eli)
  3007. HDFS-3539. libhdfs code cleanups. (Colin Patrick McCabe via eli)
  3008. HDFS-3610. fuse_dfs: Provide a way to use the default (configured) NN URI.
  3009. (Colin Patrick McCabe via eli)
  3010. HDFS-3663. MiniDFSCluster should capture the code path that led to
  3011. the first ExitException. (eli)
  3012. HDFS-3659. Add missing @Override to methods across the hadoop-hdfs
  3013. project. (Brandon Li via harsh)
  3014. HDFS-3537. Move libhdfs and fuse-dfs source to native subdirectories.
  3015. (Colin Patrick McCabe via eli)
  3016. HDFS-3665. Add a test for renaming across file systems via a symlink. (eli)
  3017. HDFS-3666. Plumb more exception messages to terminate. (eli)
  3018. HDFS-3673. libhdfs: fix some compiler warnings. (Colin Patrick McCabe via eli)
  3019. HDFS-3675. libhdfs: follow documented return codes. (Colin Patrick McCabe via eli)
  3020. HDFS-1249. With fuse-dfs, chown which only has owner (or only group)
  3021. argument fails with Input/output error. (Colin Patrick McCabe via eli)
  3022. HDFS-3583. Convert remaining tests to Junit4. (Andrew Wang via atm)
  3023. HDFS-3711. Manually convert remaining tests to JUnit4. (Andrew Wang via atm)
  3024. HDFS-3650. Use MutableQuantiles to provide latency histograms for various
  3025. operations. (Andrew Wang via atm)
  3026. HDFS-3667. Add retry support to WebHdfsFileSystem. (szetszwo)
  3027. HDFS-3291. add test that covers HttpFS working w/ a non-HDFS Hadoop
  3028. filesystem (tucu)
  3029. HDFS-3634. Add self-contained, mavenized fuse_dfs test. (Colin Patrick
  3030. McCabe via atm)
  3031. HDFS-3190. Simple refactors in existing NN code to assist
  3032. QuorumJournalManager extension. (todd)
  3033. HDFS-3276. initializeSharedEdits should have a -nonInteractive flag (todd)
  3034. HDFS-3765. namenode -initializeSharedEdits should be able to initialize
  3035. all shared storages. (Vinay and todd via todd)
  3036. HDFS-3723. Add support -h, -help to all the commands. (Jing Zhao via
  3037. suresh)
  3038. HDFS-3803. Change BlockPoolSliceScanner chatty INFO log to DEBUG.
  3039. (Andrew Purtell via suresh)
  3040. HDFS-3802. StartupOption.name in HdfsServerConstants should be final.
  3041. (Jing Zhao via szetszwo)
  3042. HDFS-3796. Speed up edit log tests by avoiding fsync() (todd)
  3043. HDFS-2963. Console Output is confusing while executing metasave
  3044. (dfsadmin command). (Andrew Wang via eli)
  3045. HDFS-3672. Expose disk-location information for blocks to enable better
  3046. scheduling. (Andrew Wang via atm)
  3047. HDFS-2727. libhdfs should get the default block size from the server.
  3048. (Colin Patrick McCabe via eli)
  3049. HDFS-3832. Remove protocol methods related to DistributedUpgrade. (suresh)
  3050. HDFS-3819. Should check whether invalidate work percentage default value is
  3051. not greater than 1.0f. (Jing Zhao via jitendra)
  3052. HDFS-3177. Update DFSClient and DataXceiver to handle different checkum
  3053. types in file checksum computation. (Kihwal Lee via szetszwo)
  3054. HDFS-3844. Add @Override and remove {@inheritdoc} and unnecessary
  3055. imports. (Jing Zhao via suresh)
  3056. HDFS-3853. Port MiniDFSCluster enableManagedDfsDirsRedundancy
  3057. option to branch-2. (Colin Patrick McCabe via eli)
  3058. HDFS-3871. Change NameNodeProxies to use RetryUtils. (Arun C Murthy
  3059. via szetszwo)
  3060. HDFS-3887. Remove redundant chooseTarget methods in BlockPlacementPolicy.
  3061. (Jing Zhao via szetszwo)
  3062. HDFS-3888. Clean up BlockPlacementPolicyDefault. (Jing Zhao via szetszwo)
  3063. HDFS-3907. Allow multiple users for local block readers. (eli)
  3064. HDFS-3510. Editlog pre-allocation is performed prior to writing edits
  3065. to avoid partial edits case disk out of space. (Colin McCabe via todd)
  3066. HDFS-3910. DFSTestUtil#waitReplication should timeout. (eli)
  3067. HDFS-3920. libwebdhfs string processing and using strerror consistently
  3068. to handle all errors. (Jing Zhao via suresh)
  3069. OPTIMIZATIONS
  3070. HDFS-2982. Startup performance suffers when there are many edit log
  3071. segments. (Colin Patrick McCabe via todd)
  3072. HDFS-2834. Add a ByteBuffer-based read API to DFSInputStream.
  3073. (Henry Robinson via todd)
  3074. HDFS-3110. Use directRead API to reduce the number of buffer copies in
  3075. libhdfs (Henry Robinson via todd)
  3076. HDFS-3697. Enable fadvise readahead by default. (todd)
  3077. HDFS-2421. Improve the concurrency of SerialNumberMap in NameNode.
  3078. (Jing Zhao and Weiyan Wang via szetszwo)
  3079. HDFS-3866. HttpFS POM should have property where to download tomcat from (zero45 via tucu)
  3080. BUG FIXES
  3081. HDFS-3385. The last block of INodeFileUnderConstruction is not
  3082. necessarily a BlockInfoUnderConstruction, so do not cast it in
  3083. FSNamesystem.recoverLeaseInternal(..). (szetszwo)
  3084. HDFS-3414. Balancer does not find NameNode if rpc-address or
  3085. servicerpc-address are not set in client configs. (atm)
  3086. HDFS-3031. Fix complete() and getAdditionalBlock() RPCs to be idempotent
  3087. (todd)
  3088. HDFS-2759. Pre-allocate HDFS edit log files after writing version number.
  3089. (atm)
  3090. HDFS-3413. TestFailureToReadEdits timing out. (atm)
  3091. HDFS-3422. TestStandbyIsHot timeouts too aggressive (todd)
  3092. HDFS-3433. GetImageServlet should allow administrative requestors when
  3093. security is enabled. (atm)
  3094. HDFS-1153. dfsnodelist.jsp should handle invalid input parameters.
  3095. (Ravi Phulari via eli)
  3096. HDFS-3434. InvalidProtocolBufferException when visiting DN
  3097. browseDirectory.jsp (eli)
  3098. HDFS-2800. Fix cancellation of checkpoints in the standby node to be more
  3099. reliable. (todd)
  3100. HDFS-3391. Fix InvalidateBlocks to compare blocks including their
  3101. generation stamps. (todd)
  3102. HDFS-3444. hdfs groups command doesn't work with security enabled. (atm)
  3103. HDFS-2717. BookKeeper Journal output stream doesn't check addComplete rc.
  3104. (Ivan Kelly via umamahesh)
  3105. HDFS-3415. Make sure all layout versions are the same for all storage
  3106. directories in the Namenode. (Brandon Li via szetszwo)
  3107. HDFS-3436. In DataNode.transferReplicaForPipelineRecovery(..), it should
  3108. use the stored generation stamp to check if the block is valid. (Vinay
  3109. via szetszwo)
  3110. HDFS-3460. HttpFS proxyuser validation with Kerberos ON uses full
  3111. principal name. (tucu)
  3112. HDFS-3058. HA: Bring BookKeeperJournalManager up to date with HA changes.
  3113. (Ivan Kelly via umamahesh)
  3114. HDFS-3368. Missing blocks due to bad DataNodes coming up and down. (shv)
  3115. HDFS-3452. BKJM:Switch from standby to active fails and NN gets shut down
  3116. due to delay in clearing of lock. (umamahesh)
  3117. HDFS-3398. Client will not retry when primaryDN is down once it's just got pipeline.
  3118. (Amith D K via umamahesh)
  3119. HDFS-3474. Cleanup Exception handling in BookKeeper journal manager.
  3120. (Ivan Kelly via umamahesh)
  3121. HDFS-3468. Make BKJM-ZK session timeout configurable. (umamahesh)
  3122. HDFS-3423. BKJM: NN startup is failing, when tries to recoverUnfinalizedSegments()
  3123. a bad inProgress_ ZNodes. (Ivan Kelly and Uma via umamahesh)
  3124. HDFS-3441. Race condition between rolling logs at active NN and purging at standby.
  3125. (Rakesh R via umamahesh)
  3126. HDFS-3484. hdfs fsck doesn't work if NN HTTP address is set to
  3127. 0.0.0.0 even if NN RPC address is configured. (atm via eli)
  3128. HDFS-3486. offlineimageviewer can't read fsimage files that contain
  3129. persistent delegation tokens. (Colin Patrick McCabe via eli)
  3130. HDFS-3487. offlineimageviewer should give byte offset information
  3131. when it encounters an exception. (Colin Patrick McCabe via eli)
  3132. HDFS-3442. Incorrect count for Missing Replicas in FSCK report. (Andrew
  3133. Wang via atm)
  3134. HDFS-2025. Go Back to File View link is not working in tail.jsp.
  3135. (Ashish and Sravan via umamahesh)
  3136. HDFS-3501. Checkpointing with security enabled will stop working
  3137. after ticket lifetime expires. (atm via eli)
  3138. HDFS-3266. DFSTestUtil#waitCorruptReplicas doesn't sleep between checks.
  3139. (Madhukara Phatak via atm)
  3140. HDFS-3505. DirectoryScanner does not join all threads in shutdown.
  3141. (Colin Patrick McCabe via eli)
  3142. HDFS-3485. DataTransferThrottler will over-throttle when currentTimeMillis
  3143. jumps (Andy Isaacson via todd)
  3144. HDFS-2914. HA: Standby should not enter safemode when resources are low.
  3145. (Vinay via atm)
  3146. HDFS-3235. MiniDFSClusterManager doesn't correctly support -format option.
  3147. (Henry Robinson via atm)
  3148. HDFS-3514. Add missing TestParallelLocalRead. (Henry Robinson via atm)
  3149. HDFS-3243. TestParallelRead timing out on jenkins. (Henry Robinson via todd)
  3150. HDFS-3490. DatanodeWebHdfsMethods throws NullPointerException if
  3151. NamenodeRpcAddressParam is not set. (szetszwo)
  3152. HDFS-2797. Fix misuses of InputStream#skip in the edit log code.
  3153. (Colin Patrick McCabe via eli)
  3154. HDFS-3517. TestStartup should bind ephemeral ports. (eli)
  3155. HDFS-3522. If a namenode is in safemode, it should throw SafeModeException
  3156. when getBlockLocations has zero locations. (Brandon Li via szetszwo)
  3157. HDFS-3408. BKJM : Namenode format fails, if there is no BK root. (Rakesh R via umamahesh)
  3158. HDFS-3389. Document the BKJM usage in Namenode HA. (umamahesh and Ivan Kelly via umamahesh)
  3159. HDFS-3531. EditLogFileOutputStream#preallocate should check for
  3160. incomplete writes. (Colin Patrick McCabe via eli)
  3161. HDFS-766. Error message not clear for set space quota out of boundary
  3162. values. (Jon Zuanich via atm)
  3163. HDFS-3480. Multiple SLF4J binding warning. (Vinay via eli)
  3164. HDFS-3524. Update TestFileLengthOnClusterRestart for HDFS-3522. (Brandon
  3165. Li via szetszwo)
  3166. HDFS-3559. DFSTestUtil: use Builder class to construct DFSTestUtil
  3167. instances. (Colin Patrick McCabe via atm)
  3168. HDFS-3551. WebHDFS CREATE should use client location for HTTP redirection.
  3169. (szetszwo)
  3170. HDFS-3157. Fix a bug in the case that the generation stamps of the stored
  3171. block in a namenode and the reported block from a datanode do not match.
  3172. (Ashish Singhi via szetszwo)
  3173. HDFS-3575. HttpFS does not log Exception Stacktraces (brocknoland via tucu)
  3174. HDFS-3574. Fix small race and do some cleanup in GetImageServlet (todd)
  3175. HDFS-3581. FSPermissionChecker#checkPermission sticky bit check
  3176. missing range check. (eli)
  3177. HDFS-3541. Deadlock between recovery, xceiver and packet responder.
  3178. (Vinay via umamahesh)
  3179. HDFS-3428. Move DelegationTokenRenewer to common (tucu)
  3180. HDFS-3491. HttpFs does not set permissions correctly (tucu)
  3181. HDFS-3580. incompatible types; no instance(s) of type variable(s) V exist
  3182. so that V conforms to boolean compiling HttpFSServer.java with OpenJDK
  3183. (adi2 via tucu)
  3184. HDFS-3603. Decouple TestHDFSTrash from TestTrash. (Jason Lowe via eli)
  3185. HDFS-711. hdfsUtime does not handle atime = 0 or mtime = 0 correctly.
  3186. (Colin Patrick McCabe via eli)
  3187. HDFS-3548. NamenodeFsck.copyBlock fails to create a Block Reader.
  3188. (Colin Patrick McCabe via eli)
  3189. HDFS-3615. Two BlockTokenSecretManager findbugs warnings. (atm)
  3190. HDFS-470. libhdfs should handle 0-length reads from FSInputStream
  3191. correctly. (Colin Patrick McCabe via eli)
  3192. HDFS-3492. fix some misuses of InputStream#skip.
  3193. (Colin Patrick McCabe via eli)
  3194. HDFS-3609. libhdfs: don't force the URI to look like hdfs://hostname:port.
  3195. (Colin Patrick McCabe via eli)
  3196. HDFS-2966 TestNameNodeMetrics tests can fail under load. (stevel)
  3197. HDFS-3605. Block mistakenly marked corrupt during edit log catchup
  3198. phase of failover. (todd and Brahma Reddy Battula via todd)
  3199. HDFS-3690. BlockPlacementPolicyDefault incorrectly casts LOG. (eli)
  3200. HDFS-3597. SNN fails to start after DFS upgrade. (Andy Isaacson via todd)
  3201. HDFS-3608. fuse_dfs: detect changes in UID ticket cache. (Colin Patrick
  3202. McCabe via atm)
  3203. HDFS-3709. TestStartup tests still binding to the ephemeral port. (eli)
  3204. HDFS-3720. hdfs.h must get packaged. (Colin Patrick McCabe via atm)
  3205. HDFS-3626. Creating file with invalid path can corrupt edit log (todd)
  3206. HDFS-3679. fuse_dfs notrash option sets usetrash. (Conrad Meyer via suresh)
  3207. HDFS-3732. fuse_dfs: incorrect configuration value checked for connection
  3208. expiry timer period. (Colin Patrick McCabe via atm)
  3209. HDFS-3738. TestDFSClientRetries#testFailuresArePerOperation sets incorrect
  3210. timeout config. (atm)
  3211. HDFS-3756. DelegationTokenFetcher creates 2 HTTP connections, the second
  3212. one not properly configured. (tucu)
  3213. HDFS-3579. libhdfs: fix exception handling. (Colin Patrick McCabe via atm)
  3214. HDFS-3754. BlockSender doesn't shutdown ReadaheadPool threads. (eli)
  3215. HDFS-3760. primitiveCreate is a write, not a read. (Andy Isaacson via atm)
  3216. HDFS-3710. libhdfs misuses O_RDONLY/WRONLY/RDWR. (Andy Isaacson via atm)
  3217. HDFS-3721. hsync support broke wire compatibility. (todd and atm)
  3218. HDFS-3758. TestFuseDFS test failing. (Colin Patrick McCabe via eli)
  3219. HDFS-2330. In NNStorage and FSImagePreTransactionalStorageInspector,
  3220. IOExceptions of stream closures can mask root exceptions. (Uma Maheswara
  3221. Rao G via szetszwo)
  3222. HDFS-3790. test_fuse_dfs.c doesn't compile on centos 5. (Colin Patrick
  3223. McCabe via atm)
  3224. HDFS-3658. Fix bugs in TestDFSClientRetries and add more tests. (szetszwo)
  3225. HDFS-3794. WebHDFS OPEN returns the incorrect Content-Length in the HTTP
  3226. header when offset is specified and length is omitted.
  3227. (Ravi Prakash via szetszwo)
  3228. HDFS-3048. Small race in BlockManager#close. (Andy Isaacson via eli)
  3229. HDFS-3194. DataNode block scanner is running too frequently.
  3230. (Andy Isaacson via eli)
  3231. HDFS-3808. fuse_dfs: postpone libhdfs intialization until after fork.
  3232. (Colin Patrick McCabe via atm)
  3233. HDFS-3788. ByteRangeInputStream should not expect HTTP Content-Length header
  3234. when chunked transfer-encoding is used. (szetszwo)
  3235. HDFS-3816. Invalidate work percentage default value should be 0.32f
  3236. instead of 32. (Jing Zhao via suresh)
  3237. HDFS-3707. TestFSInputChecker: improper use of skip.
  3238. (Colin Patrick McCabe via eli)
  3239. HDFS-3830. test_libhdfs_threaded: use forceNewInstance.
  3240. (Colin Patrick McCabe via eli)
  3241. HDFS-3835. Long-lived 2NN cannot perform a checkpoint if security is
  3242. enabled and the NN restarts with outstanding delegation tokens. (atm)
  3243. HDFS-3715. Fix TestFileCreation#testFileCreationNamenodeRestart.
  3244. (Andrew Whang via eli)
  3245. HDFS-3683. Edit log replay progress indicator shows >100% complete. (Plamen
  3246. Jeliazkov via atm)
  3247. HDFS-3731. Release upgrade must handle blocks being written from 1.0.
  3248. (Colin Patrick McCabe via eli)
  3249. HDFS-3856. TestHDFSServerPorts failure is causing surefire fork failure.
  3250. (eli)
  3251. HDFS-3860. HeartbeatManager#Monitor may wrongly hold the writelock of
  3252. namesystem. (Jing Zhao via atm)
  3253. HDFS-3849. When re-loading the FSImage, we should clear the existing
  3254. genStamp and leases. (Colin Patrick McCabe via atm)
  3255. HDFS-3864. NN does not update internal file mtime for OP_CLOSE when reading
  3256. from the edit log. (atm)
  3257. HDFS-3837. Fix DataNode.recoverBlock findbugs warning. (eli)
  3258. HDFS-3733. Audit logs should include WebHDFS access. (Andy Isaacson via
  3259. eli)
  3260. HDFS-2686. Remove DistributedUpgrade related code. (suresh)
  3261. HDFS-3833. TestDFSShell fails on windows due to concurrent file
  3262. read/write. (Brandon Li via suresh)
  3263. HDFS-3466. Get HTTP kerberos principal from the web authentication keytab.
  3264. (omalley)
  3265. HDFS-3879. Fix findbugs warning in TransferFsImage on branch-2. (eli)
  3266. HDFS-3469. start-dfs.sh will start zkfc, but stop-dfs.sh will not stop zkfc similarly.
  3267. (Vinay via umamahesh)
  3268. HDFS-1490. TransferFSImage should timeout (Dmytro Molkov and Vinay via todd)
  3269. HDFS-3828. Block Scanner rescans blocks too frequently.
  3270. (Andy Isaacson via eli)
  3271. HDFS-3895. hadoop-client must include commons-cli (tucu)
  3272. HDFS-2757. Cannot read a local block that's being written to when
  3273. using the local read short circuit. (Jean-Daniel Cryans via eli)
  3274. HDFS-3664. BlockManager race when stopping active services.
  3275. (Colin Patrick McCabe via eli)
  3276. HDFS-3928. MiniDFSCluster should reset the first ExitException on shutdown. (eli)
  3277. HDFS-3938. remove current limitations from HttpFS docs. (tucu)
  3278. HDFS-3944. Httpfs resolveAuthority() is not resolving host correctly. (tucu)
  3279. HDFS-3972. Trash emptier fails in secure HA cluster. (todd via eli)
  3280. HDFS-4443. Remove a trailing '`' character from the HTML code generated by
  3281. NamenodeJspHelper.generateNodeData(..). (Christian Rohling via szetszwo)
  3282. BREAKDOWN OF HDFS-3042 SUBTASKS
  3283. HDFS-2185. HDFS portion of ZK-based FailoverController (todd)
  3284. HDFS-3200. Scope all ZKFC configurations by nameservice (todd)
  3285. HDFS-3223. add zkfc to hadoop-daemon.sh script (todd)
  3286. HDFS-3261. TestHASafeMode fails on HDFS-3042 branch (todd)
  3287. HDFS-3159. Document NN auto-failover setup and configuration (todd)
  3288. HDFS-3412. Fix findbugs warnings in auto-HA branch (todd)
  3289. HDFS-3432. TestDFSZKFailoverController tries to fail over too early (todd)
  3290. HDFS-3902. TestDatanodeBlockScanner#testBlockCorruptionPolicy is broken.
  3291. (Andy Isaacson via eli)
  3292. Release 2.0.0-alpha - 05-23-2012
  3293. INCOMPATIBLE CHANGES
  3294. HDFS-2676. Remove Avro RPC. (suresh)
  3295. HDFS-2303. Unbundle jsvc. (Roman Shaposhnik and Mingjie Lai via eli)
  3296. HDFS-3137. Bump LAST_UPGRADABLE_LAYOUT_VERSION to -16. (eli)
  3297. HDFS-3138. Move DatanodeInfo#ipcPort to DatanodeID. (eli)
  3298. HDFS-3164. Move DatanodeInfo#hostName to DatanodeID. (eli)
  3299. NEW FEATURES
  3300. HDFS-2978. The NameNode should expose name dir statuses via JMX. (atm)
  3301. HDFS-395. DFS Scalability: Incremental block reports. (Tomasz Nykiel
  3302. via hairong)
  3303. HDFS-2517. Add protobuf service for JounralProtocol. (suresh)
  3304. HDFS-2518. Add protobuf service for NamenodeProtocol. (suresh)
  3305. HDFS-2520. Add protobuf service for InterDatanodeProtocol. (suresh)
  3306. HDFS-2519. Add protobuf service for DatanodeProtocol. (suresh)
  3307. HDFS-2581. Implement protobuf service for JournalProtocol. (suresh)
  3308. HDFS-2618. Implement protobuf service for NamenodeProtocol. (suresh)
  3309. HDFS-2629. Implement protobuf service for InterDatanodeProtocol. (suresh)
  3310. HDFS-2636. Implement protobuf service for ClientDatanodeProtocol. (suresh)
  3311. HDFS-2642. Protobuf translators for DatanodeProtocol. (jitendra)
  3312. HDFS-2647. Used protobuf based RPC for InterDatanodeProtocol,
  3313. ClientDatanodeProtocol, JournalProtocol, NamenodeProtocol. (suresh)
  3314. HDFS-2661. Enable protobuf RPC for DatanodeProtocol. (jitendra)
  3315. HDFS-2697. Move RefreshAuthPolicy, RefreshUserMappings, GetUserMappings
  3316. protocol to protocol buffers. (jitendra)
  3317. HDFS-2880. Protobuf changes in DatanodeProtocol to add multiple storages.
  3318. (suresh)
  3319. HDFS-2899. Service protocol changes in DatanodeProtocol to add multiple
  3320. storages. (suresh)
  3321. HDFS-2430. The number of failed or low-resource volumes the NN can tolerate
  3322. should be configurable. (atm)
  3323. HDFS-1623. High Availability Framework for HDFS NN. Contributed by Todd
  3324. Lipcon, Aaron T. Myers, Eli Collins, Uma Maheswara Rao G, Bikas Saha,
  3325. Suresh Srinivas, Jitendra Nath Pandey, Hari Mankude, Brandon Li, Sanjay
  3326. Radia, Mingjie Lai, and Gregory Chanan
  3327. HDFS-2941. Add an administrative command to download a copy of the fsimage
  3328. from the NN. (atm)
  3329. HDFS-2413. Add an API DistributedFileSystem.isInSafeMode() and change
  3330. DistributedFileSystem to @InterfaceAudience.LimitedPrivate.
  3331. (harsh via szetszwo)
  3332. HDFS-3167. CLI-based driver for MiniDFSCluster. (Henry Robinson via atm)
  3333. HDFS-3148. The client should be able to use multiple local interfaces
  3334. for data transfer. (eli)
  3335. HDFS-3000. Add a public API for setting quotas. (atm)
  3336. HDFS-3102. Add CLI tool to initialize the shared-edits dir. (atm)
  3337. HDFS-3004. Implement Recovery Mode. (Colin Patrick McCabe via eli)
  3338. HDFS-3282. Add HdfsDataInputStream as a public API. (umamahesh)
  3339. HDFS-3298. Add HdfsDataOutputStream as a public API. (szetszwo)
  3340. HDFS-234. Integration with BookKeeper logging system. (Ivan Kelly
  3341. via jitendra)
  3342. IMPROVEMENTS
  3343. HDFS-2018. Move all journal stream management code into one place.
  3344. (Ivan Kelly via jitendra)
  3345. HDFS-2223. Untangle depencencies between NN components (todd)
  3346. HDFS-2351. Change Namenode and Datanode to register each of their protocols
  3347. seperately (sanjay)
  3348. HDFS-2337. DFSClient shouldn't keep multiple RPC proxy references (atm)
  3349. HDFS-2181. Separate HDFS Client wire protocol data types (sanjay)
  3350. HDFS-2459. Separate datatypes for Journal Protocol. (suresh)
  3351. HDFS-2480. Separate datatypes for NamenodeProtocol. (suresh)
  3352. HDFS-2489. Move Finalize and Register to separate file out of
  3353. DatanodeCommand.java. (suresh)
  3354. HDFS-2488. Separate datatypes for InterDatanodeProtocol. (suresh)
  3355. HDFS-2496. Separate datatypes for DatanodeProtocol. (suresh)
  3356. HDFS-2479. HDFS Client Data Types in Protocol Buffers (sanjay)
  3357. HADOOP-7862. Hdfs changes to work with HADOOP-7862: Move the support for
  3358. multiple protocols to lower layer so that Writable, PB and Avro can all
  3359. use it. (sanjay)
  3360. HDFS-2597. ClientNameNodeProtocol in Protocol Buffers. (sanjay)
  3361. HDFS-2651. ClientNameNodeProtocol Translators for Protocol Buffers. (sanjay)
  3362. HDFS-2650. Replace @inheritDoc with @Override. (Hari Mankude via suresh).
  3363. HDFS-2669. Enable protobuf rpc for ClientNamenodeProtocol. (sanjay)
  3364. HDFS-2801. Provide a method in client side translators to check for a
  3365. methods supported in underlying protocol. (jitendra)
  3366. HDFS-2895. Remove Writable wire protocol types and translators to
  3367. complete transition to protocol buffers. (suresh)
  3368. HDFS-2992. Edit log failure trace should include transaction ID of
  3369. error. (Colin Patrick McCabe via eli)
  3370. HDFS-2507. Allow saveNamespace operations to be canceled. (todd)
  3371. HDFS-2410. Further cleanup of hardcoded configuration keys and values.
  3372. (suresh)
  3373. HDFS-208. name node should warn if only one dir is listed in dfs.name.dir.
  3374. (Uma Maheswara Rao G via eli)
  3375. HDFS-3003. Remove getHostPortString() from NameNode, replace it with
  3376. NetUtils.getHostPortString(). (Brandon Li via atm)
  3377. HDFS-3014. FSEditLogOp and its subclasses should have toString() method.
  3378. (Sho Shimauchi via atm)
  3379. HDFS-3036. Remove unused method DFSUtil#isDefaultNamenodeAddress. (atm)
  3380. HDFS-2158. Add JournalSet to manage the set of journals. (jitendra)
  3381. HDFS-2334. Add Closeable to JournalManager. (Ivan Kelly via jitendra)
  3382. HDFS-1580. Add interface for generic Write Ahead Logging mechanisms.
  3383. (Ivan Kelly via jitendra)
  3384. HDFS-3060. Bump TestDistributedUpgrade#testDistributedUpgrade timeout (eli)
  3385. HDFS-3021. Use generic type to declare FSDatasetInterface. (szetszwo)
  3386. HDFS-3056. Add a new interface RollingLogs for DataBlockScanner logging.
  3387. (szetszwo)
  3388. HDFS-2731. Add command to bootstrap the Standby Node's name directories
  3389. from the Active NameNode. (todd)
  3390. HDFS-3082. Clean up FSDatasetInterface and change DataNode.data to package
  3391. private. (szetszwo)
  3392. HDFS-3057. httpfs and hdfs launcher scripts should honor CATALINA_HOME
  3393. and HADOOP_LIBEXEC_DIR (rvs via tucu)
  3394. HDFS-3088. Move FSDatasetInterface inner classes to a package. (szetszwo)
  3395. HDFS-3105. Add DatanodeStorage information to block recovery. (szetszwo)
  3396. HDFS-3086. Change Datanode not to send storage list in registration.
  3397. (szetszwo)
  3398. HDFS-3044. fsck move should be non-destructive by default.
  3399. (Colin Patrick McCabe via eli)
  3400. HDFS-3071. haadmin failover command does not provide enough detail when
  3401. target NN is not ready to be active. (todd)
  3402. HDFS-3089. Move FSDatasetInterface and the related classes to a package.
  3403. (szetszwo)
  3404. HDFS-3129. NetworkTopology: add test that getLeaf should check for
  3405. invalid topologies (Colin Patrick McCabe via eli)
  3406. HDFS-3155. Clean up FSDataset implemenation related code. (szetszwo)
  3407. HDFS-3158. LiveNodes member of NameNodeMXBean should list non-DFS used
  3408. space and capacity per DN. (atm)
  3409. HDFS-3172. dfs.upgrade.permission is dead code. (eli)
  3410. HDFS-3171. The DatanodeID "name" field is overloaded. (eli)
  3411. HDFS-3144. Refactor DatanodeID#getName by use. (eli)
  3412. HDFS-3130. Move fsdataset implementation to a package. (szetszwo)
  3413. HDFS-3120. Enable hsync and hflush by default. (eli)
  3414. HDFS-3187. Upgrade guava to 11.0.2 (todd)
  3415. HDFS-3168. Remove unnecessary "throw IOException" and change fields to
  3416. final in FSNamesystem and BlockManager. (szetszwo)
  3417. HDFS-2564. Cleanup unnecessary exceptions thrown and unnecessary casts.
  3418. (Hari Mankude via eli)
  3419. HDFS-3084. FenceMethod.tryFence() and ShellCommandFencer should pass
  3420. namenodeId as well as host:port (todd)
  3421. HDFS-3050. rework OEV to share more code with the NameNode.
  3422. (Colin Patrick McCabe via eli)
  3423. HDFS-3226. Allow GetConf tool to print arbitrary keys (todd)
  3424. HDFS-3204. Minor modification to JournalProtocol.proto to make
  3425. it generic. (suresh)
  3426. HDFS-2505. Add a test to verify getFileChecksum(..) with ViewFS. (Ravi
  3427. Prakash via szetszwo)
  3428. HDFS-3240. Drop log level of "heartbeat: ..." in BPServiceActor to DEBUG
  3429. (todd)
  3430. HDFS-3238. ServerCommand and friends don't need to be writables. (eli)
  3431. HDFS-3094. add -nonInteractive and -force option to namenode -format
  3432. command (Arpit Gupta via todd)
  3433. HDFS-3244. Remove dead writable code from hdfs/protocol. (eli)
  3434. HDFS-3247. Improve bootstrapStandby behavior when original NN is not active
  3435. (todd)
  3436. HDFS-3249. Use ToolRunner.confirmPrompt in NameNode (todd)
  3437. HDFS-3179. Improve the exception message thrown by DataStreamer when
  3438. it failed to add a datanode. (szetszwo)
  3439. HDFS-2983. Relax the build version check to permit rolling upgrades within
  3440. a release. (atm)
  3441. HDFS-3259. NameNode#initializeSharedEdits should populate shared edits dir
  3442. with edit log segments. (atm)
  3443. HDFS-2708. Stats for the # of blocks per DN. (atm)
  3444. HDFS-3279. Move the FSEditLog constructor with @VisibleForTesting to
  3445. TestEditLog. (Arpit Gupta via szetszwo)
  3446. HDFS-3294. Fix code indentation in NamenodeWebHdfsMethods and
  3447. DatanodeWebHdfsMethods. (szetszwo)
  3448. HDFS-3263. HttpFS should read HDFS config from Hadoop site.xml files (tucu)
  3449. HDFS-3206. Miscellaneous xml cleanups for OEV.
  3450. (Colin Patrick McCabe via eli)
  3451. HDFS-3169. TestFsck should test multiple -move operations in a row.
  3452. (Colin Patrick McCabe via eli)
  3453. HDFS-3258. Test for HADOOP-8144 (pseudoSortByDistance in
  3454. NetworkTopology for first rack local node). (Junping Du via eli)
  3455. HDFS-3322. Use HdfsDataInputStream and HdfsDataOutputStream in Hdfs.
  3456. (szetszwo)
  3457. HDFS-3339. Change INode to package private. (John George via szetszwo)
  3458. HDFS-3303. Remove Writable implementation from RemoteEditLogManifest.
  3459. (Brandon Li via szetszwo)
  3460. HDFS-2617. Replaced Kerberized SSL for image transfer and fsck
  3461. with SPNEGO-based solution. (jghoman, omalley, tucu, and atm via eli)
  3462. HDFS-3365. Enable users to disable socket caching in DFS client
  3463. configuration (todd)
  3464. HDFS-3375. Put client name in DataXceiver thread name for readBlock
  3465. and keepalive (todd)
  3466. HDFS-3363. Define BlockCollection and MutableBlockCollection interfaces
  3467. so that INodeFile and INodeFileUnderConstruction do not have to be used in
  3468. block management. (John George via szetszwo)
  3469. HDFS-3211. Add fence(..) and replace NamenodeRegistration with JournalInfo
  3470. and epoch in JournalProtocol. (suresh via szetszwo)
  3471. HDFS-3418. Rename BlockWithLocationsProto datanodeIDs field to storageIDs.
  3472. (eli)
  3473. OPTIMIZATIONS
  3474. HDFS-3024. Improve performance of stringification in addStoredBlock (todd)
  3475. HDFS-2477. Optimize computing the diff between a block report and the
  3476. namenode state. (Tomasz Nykiel via hairong)
  3477. HDFS-2495. Increase granularity of write operations in ReplicationMonitor
  3478. thus reducing contention for write lock. (Tomasz Nykiel via hairong)
  3479. HDFS-2476. More CPU efficient data structure for under-replicated,
  3480. over-replicated, and invalidated blocks. (Tomasz Nykiel via todd)
  3481. HDFS-3378. Remove DFS_NAMENODE_SECONDARY_HTTPS_PORT_KEY and DEFAULT. (eli)
  3482. BUG FIXES
  3483. HDFS-2481. Unknown protocol: org.apache.hadoop.hdfs.protocol.ClientProtocol.
  3484. (sanjay)
  3485. HDFS-2497. Fix TestBackupNode failure. (suresh)
  3486. HDFS-2499. RPC client is created incorrectly introduced in HDFS-2459.
  3487. (suresh)
  3488. HDFS-2526. (Client)NamenodeProtocolTranslatorR23 do not need to keep a
  3489. reference to rpcProxyWithoutRetry (atm)
  3490. HDFS-2532. TestDfsOverAvroRpc timing out in trunk (Uma Maheswara Rao G
  3491. via todd)
  3492. HDFS-2666. Fix TestBackupNode failure. (suresh)
  3493. HDFS-2663. Optional protobuf parameters are not handled correctly. (suresh)
  3494. HDFS-2694. Removal of Avro broke non-PB NN services. (atm)
  3495. HDFS-2687. Tests failing with ClassCastException post protobuf RPC
  3496. changes. (suresh)
  3497. HDFS-2700. Fix failing TestDataNodeMultipleRegistrations in trunk
  3498. (Uma Maheswara Rao G via todd)
  3499. HDFS-2739. SecondaryNameNode doesn't start up. (jitendra)
  3500. HDFS-2768. BackupNode stop can not close proxy connections because
  3501. it is not a proxy instance. (Uma Maheswara Rao G via eli)
  3502. HDFS-2968. Protocol translator for BlockRecoveryCommand broken when
  3503. multiple blocks need recovery. (todd)
  3504. HDFS-3020. Fix editlog to automatically sync when buffer is full. (todd)
  3505. HDFS-3038. Add FSEditLog.metrics to findbugs exclude list. (todd via atm)
  3506. HDFS-2285. BackupNode should reject requests to modify namespace.
  3507. (shv and Uma Maheswara Rao)
  3508. HDFS-2764. TestBackupNode is racy. (atm)
  3509. HDFS-2188. Make FSEditLog create its journals from a list of URIs rather
  3510. than NNStorage. (Ivan Kelly via jitendra)
  3511. HDFS-1765. Block Replication should respect under-replication
  3512. block priority. (Uma Maheswara Rao G via eli)
  3513. HDFS-3093. Fix bug where namenode -format interpreted the -force flag in
  3514. reverse. (todd)
  3515. HDFS-3005. FSVolume.decDfsUsed(..) should be synchronized. (szetszwo)
  3516. HDFS-3099. SecondaryNameNode does not properly initialize metrics system.
  3517. (atm)
  3518. HDFS-3062. Fix bug which prevented MR job submission from creating
  3519. delegation tokens on an HA cluster. (Mingjie Lai via todd)
  3520. HDFS-3083. Cannot run an MR job with HA and security enabled when
  3521. second-listed NN active. (atm)
  3522. HDFS-3100. In BlockSender, throw an exception when it needs to verify
  3523. checksum but the meta data does not exist. (Brandon Li via szetszwo)
  3524. HDFS-3132. Fix findbugs warning on HDFS trunk. (todd)
  3525. HDFS-3156. TestDFSHAAdmin is failing post HADOOP-8202. (atm)
  3526. HDFS-3143. TestGetBlocks.testGetBlocks is failing. (Arpit Gupta via atm)
  3527. HDFS-3142. TestHDFSCLI.testAll is failing. (Brandon Li via atm)
  3528. HDFS-3070. HDFS balancer doesn't ensure that hdfs-site.xml is loaded. (atm)
  3529. HDFS-2995. start-dfs.sh should only start the 2NN for namenodes
  3530. with dfs.namenode.secondary.http-address configured. (eli)
  3531. HDFS-3174. Fix assert in TestPendingDataNodeMessages. (eli)
  3532. HDFS-3199. TestValidateConfigurationSettings is failing. (todd via eli)
  3533. HDFS-3202. NamespaceInfo PB translation drops build version. (atm)
  3534. HDFS-3109. Remove hsqldf exclusions from pom.xml. (Ravi Prakash
  3535. via suresh)
  3536. HDFS-3210. JsonUtil#toJsonMap for for a DatanodeInfo should use
  3537. "ipAddr" instead of "name". (eli)
  3538. HDFS-3208. Bogus entries in hosts files are incorrectly displayed
  3539. in the report. (eli)
  3540. HDFS-3136. Remove SLF4J dependency as HDFS does not need it to fix
  3541. unnecessary warnings. (Jason Lowe via suresh)
  3542. HDFS-3214. InterDatanodeProtocolServerSideTranslatorPB doesn't handle
  3543. null response from initReplicaRecovery (todd)
  3544. HDFS-3234. Accidentally left log message in GetConf after HDFS-3226 (todd)
  3545. HDFS-3236. NameNode does not initialize generic conf keys when started
  3546. with -initializeSharedEditsDir (atm)
  3547. HDFS-3248. bootstrapStandby repeated twice in hdfs namenode usage message
  3548. (Colin Patrick McCabe via todd)
  3549. HDFS-2696. Fix the fuse-fds build. (Bruno Mahé via eli)
  3550. HDFS-3260. TestDatanodeRegistration should set minimum DN version in
  3551. addition to minimum NN version. (atm)
  3552. HDFS-3255. HA DFS returns wrong token service (Daryn Sharp via todd)
  3553. HDFS-3256. HDFS considers blocks under-replicated if topology script is
  3554. configured with only 1 rack. (atm)
  3555. HDFS-2799. Trim fs.checkpoint.dir values. (Amith D K via eli)
  3556. HDFS-2765. TestNameEditsConfigs is incorrectly swallowing IOE. (atm)
  3557. HDFS-3268. FileContext API mishandles token service and incompatible with
  3558. HA (Daryn Sharp via todd)
  3559. HDFS-3284. bootstrapStandby fails in secure cluster (todd)
  3560. HDFS-3165. HDFS Balancer scripts are refering to wrong path of
  3561. hadoop-daemon.sh (Amith D K via eli)
  3562. HDFS-891. DataNode no longer needs to check for dfs.network.script.
  3563. (harsh via eli)
  3564. HDFS-3305. GetImageServlet should consider SBN a valid requestor in a
  3565. secure HA setup. (atm)
  3566. HDFS-3314. HttpFS operation for getHomeDirectory is incorrect. (tucu)
  3567. HDFS-3319. Change DFSOutputStream to not to start a thread in constructors.
  3568. (szetszwo)
  3569. HDFS-3181. Fix a test case in TestLeaseRecovery2. (szetszwo)
  3570. HDFS-3309. HttpFS (Hoop) chmod not supporting octal and sticky bit
  3571. permissions. (tucu)
  3572. HDFS-3326. Append enabled log message uses the wrong variable.
  3573. (Matthew Jacobs via eli)
  3574. HDFS-3336. hdfs launcher script will be better off not special casing
  3575. namenode command with regards to hadoop.security.logger (rvs via tucu)
  3576. HDFS-3330. If GetImageServlet throws an Error or RTE, response should not
  3577. have HTTP "OK" status. (todd)
  3578. HDFS-3351. NameNode#initializeGenericKeys should always set fs.defaultFS
  3579. regardless of whether HA or Federation is enabled. (atm)
  3580. HDFS-3359. DFSClient.close should close cached sockets. (todd)
  3581. HDFS-3350. In INode, add final to compareTo(..), equals(..) and hashCode(),
  3582. and remove synchronized from updatePermissionStatus(..). (szetszwo)
  3583. HDFS-3357. DataXceiver reads from client socket with incorrect/no timeout
  3584. (todd)
  3585. HDFS-3376. DFSClient fails to make connection to DN if there are many
  3586. unusable cached sockets (todd)
  3587. HDFS-3328. NPE in DataNode.getIpcPort. (eli)
  3588. HDFS-3396. FUSE build fails on Ubuntu 12.04. (Colin Patrick McCabe via eli)
  3589. HDFS-3395. NN doesn't start with HA+security enabled and HTTP address
  3590. set to 0.0.0.0. (atm)
  3591. HDFS-3026. HA: Handle failure during HA state transition. (atm)
  3592. HDFS-860. fuse-dfs truncate behavior causes issues with scp.
  3593. (Brian Bockelman via eli)
  3594. BREAKDOWN OF HDFS-1623 SUBTASKS
  3595. HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)
  3596. HDFS-1974. Introduce active and standy states to the namenode. (suresh)
  3597. HDFS-2407. getServerDefaults and getStats don't check operation category (atm)
  3598. HDFS-1973. HA: HDFS clients must handle namenode failover and switch over to
  3599. the new active namenode. (atm)
  3600. HDFS-2301. Start/stop appropriate namenode services when transition to active
  3601. and standby states. (suresh)
  3602. HDFS-2231. Configuration changes for HA namenode. (suresh)
  3603. HDFS-2418. Change ConfiguredFailoverProxyProvider to take advantage of
  3604. HDFS-2231. (atm)
  3605. HDFS-2393. Mark appropriate methods of ClientProtocol with the idempotent
  3606. annotation. (atm)
  3607. HDFS-2523. Small NN fixes to include HAServiceProtocol and prevent NPE on
  3608. shutdown. (todd)
  3609. HDFS-2577. NN fails to start since it tries to start secret manager in
  3610. safemode. (todd)
  3611. HDFS-2582. Scope dfs.ha.namenodes config by nameservice (todd)
  3612. HDFS-2591. MiniDFSCluster support to mix and match federation with HA (todd)
  3613. HDFS-1975. Support for sharing the namenode state from active to standby.
  3614. (jitendra, atm, todd)
  3615. HDFS-1971. Send block report from datanode to both active and standby
  3616. namenodes. (sanjay, todd via suresh)
  3617. HDFS-2616. Change DatanodeProtocol#sendHeartbeat() to return HeartbeatResponse.
  3618. (suresh)
  3619. HDFS-2622. Fix TestDFSUpgrade in HA branch. (todd)
  3620. HDFS-2612. Handle refreshNameNodes in federated HA clusters (todd)
  3621. HDFS-2623. Add test case for hot standby capability (todd)
  3622. HDFS-2626. BPOfferService.verifyAndSetNamespaceInfo needs to be synchronized
  3623. (todd)
  3624. HDFS-2624. ConfiguredFailoverProxyProvider doesn't correctly stop
  3625. ProtocolTranslators (todd)
  3626. HDFS-2625. TestDfsOverAvroRpc failing after introduction of HeartbeatResponse
  3627. type (todd)
  3628. HDFS-2627. Determine DN's view of which NN is active based on heartbeat
  3629. responses (todd)
  3630. HDFS-2634. Standby needs to ingest latest edit logs before transitioning to
  3631. active (todd)
  3632. HDFS-2671. NN should throw StandbyException in response to RPCs in STANDBY
  3633. state (todd)
  3634. HDFS-2680. DFSClient should construct failover proxy with exponential backoff
  3635. (todd)
  3636. HDFS-2683. Authority-based lookup of proxy provider fails if path becomes
  3637. canonicalized (todd)
  3638. HDFS-2689. HA: BookKeeperEditLogInputStream doesn't implement isInProgress()
  3639. (atm)
  3640. HDFS-2602. NN should log newly-allocated blocks without losing BlockInfo (atm)
  3641. HDFS-2667. Fix transition from active to standby (todd)
  3642. HDFS-2684. Fix up some failing unit tests on HA branch (todd)
  3643. HDFS-2679. Add interface to query current state to HAServiceProtocol (eli via
  3644. todd)
  3645. HDFS-2677. Web UI should indicate the NN state. (eli via todd)
  3646. HDFS-2678. When a FailoverProxyProvider is used, DFSClient should not retry
  3647. connection ten times before failing over (atm via todd)
  3648. HDFS-2682. When a FailoverProxyProvider is used, Client should not retry for 45
  3649. times if it is timing out to connect to server. (Uma Maheswara Rao G via todd)
  3650. HDFS-2693. Fix synchronization issues around state transition (todd)
  3651. HDFS-1972. Fencing mechanism for block invalidations and replications (todd)
  3652. HDFS-2714. Fix test cases which use standalone FSNamesystems (todd)
  3653. HDFS-2692. Fix bugs related to failover from/into safe mode. (todd)
  3654. HDFS-2716. Configuration needs to allow different dfs.http.addresses for each
  3655. HA NN (todd)
  3656. HDFS-2720. Fix MiniDFSCluster HA support to work properly on Windows. (Uma
  3657. Maheswara Rao G via todd)
  3658. HDFS-2291. Allow the StandbyNode to make checkpoints in an HA setup. (todd)
  3659. HDFS-2709. Appropriately handle error conditions in EditLogTailer (atm via
  3660. todd)
  3661. HDFS-2730. Refactor shared HA-related test code into HATestUtil class (todd)
  3662. HDFS-2762. Fix TestCheckpoint timing out on HA branch. (Uma Maheswara Rao G via
  3663. todd)
  3664. HDFS-2724. NN web UI can throw NPE after startup, before standby state is
  3665. entered. (todd)
  3666. HDFS-2753. Fix standby getting stuck in safemode when blocks are written while
  3667. SBN is down. (Hari Mankude and todd via todd)
  3668. HDFS-2773. Reading edit logs from an earlier version should not leave blocks in
  3669. under-construction state. (todd)
  3670. HDFS-2775. Fix TestStandbyCheckpoints.testBothNodesInStandbyState failing
  3671. intermittently. (todd)
  3672. HDFS-2766. Test for case where standby partially reads log and then performs
  3673. checkpoint. (atm)
  3674. HDFS-2738. FSEditLog.selectinputStreams is reading through in-progress streams
  3675. even when non-in-progress are requested. (atm)
  3676. HDFS-2789. TestHAAdmin.testFailover is failing (eli)
  3677. HDFS-2747. Entering safe mode after starting SBN can NPE. (Uma Maheswara Rao G
  3678. via todd)
  3679. HDFS-2772. On transition to active, standby should not swallow ELIE. (atm)
  3680. HDFS-2767. ConfiguredFailoverProxyProvider should support NameNodeProtocol.
  3681. (Uma Maheswara Rao G via todd)
  3682. HDFS-2795. Standby NN takes a long time to recover from a dead DN starting up.
  3683. (todd)
  3684. HDFS-2592. Balancer support for HA namenodes. (Uma Maheswara Rao G via todd)
  3685. HDFS-2367. Enable the configuration of multiple HA cluster addresses. (atm)
  3686. HDFS-2812. When becoming active, the NN should treat all leases as freshly
  3687. renewed. (todd)
  3688. HDFS-2737. Automatically trigger log rolls periodically on the active NN. (todd
  3689. and atm)
  3690. HDFS-2820. Add a simple sanity check for HA config (todd)
  3691. HDFS-2688. Add tests for quota tracking in an HA cluster. (todd)
  3692. HDFS-2804. Should not mark blocks under-replicated when exiting safemode (todd)
  3693. HDFS-2807. Service level authorizartion for HAServiceProtocol. (jitendra)
  3694. HDFS-2809. Add test to verify that delegation tokens are honored after
  3695. failover. (jitendra and atm)
  3696. HDFS-2838. NPE in FSNamesystem when in safe mode. (Gregory Chanan via eli)
  3697. HDFS-2805. Add a test for a federated cluster with HA NNs. (Brandon Li via
  3698. jitendra)
  3699. HDFS-2841. HAAdmin does not work if security is enabled. (atm)
  3700. HDFS-2691. Fixes for pipeline recovery in an HA cluster: report RBW replicas
  3701. immediately upon pipeline creation. (todd)
  3702. HDFS-2824. Fix failover when prior NN died just after creating an edit log
  3703. segment. (atm via todd)
  3704. HDFS-2853. HA: NN fails to start if the shared edits dir is marked required
  3705. (atm via eli)
  3706. HDFS-2845. SBN should not allow browsing of the file system via web UI. (Bikas
  3707. Saha via atm)
  3708. HDFS-2742. HA: observed dataloss in replication stress test. (todd via eli)
  3709. HDFS-2870. Fix log level for block debug info in processMisReplicatedBlocks
  3710. (todd)
  3711. HDFS-2859. LOCAL_ADDRESS_MATCHER.match has NPE when called from
  3712. DFSUtil.getSuffixIDs when the host is incorrect (Bikas Saha via todd)
  3713. HDFS-2861. checkpointing should verify that the dfs.http.address has been
  3714. configured to a non-loopback for peer NN (todd)
  3715. HDFS-2860. TestDFSRollback#testRollback is failing. (atm)
  3716. HDFS-2769. HA: When HA is enabled with a shared edits dir, that dir should be
  3717. marked required. (atm via eli)
  3718. HDFS-2863. Failures observed if dfs.edits.dir and shared.edits.dir have same
  3719. directories. (Bikas Saha via atm)
  3720. HDFS-2874. Edit log should log to shared dirs before local dirs. (todd)
  3721. HDFS-2890. DFSUtil#getSuffixIDs should skip unset configurations. (atm)
  3722. HDFS-2792. Make fsck work. (atm)
  3723. HDFS-2808. HA: haadmin should use namenode ids. (eli)
  3724. HDFS-2819. Document new HA-related configs in hdfs-default.xml. (eli)
  3725. HDFS-2752. HA: exit if multiple shared dirs are configured. (eli)
  3726. HDFS-2894. HA: automatically determine the nameservice Id if only one
  3727. nameservice is configured. (eli)
  3728. HDFS-2733. Document HA configuration and CLI. (atm)
  3729. HDFS-2794. Active NN may purge edit log files before standby NN has a chance to
  3730. read them (todd)
  3731. HDFS-2901. Improvements for SBN web UI - not show under-replicated/missing
  3732. blocks. (Brandon Li via jitendra)
  3733. HDFS-2905. HA: Standby NN NPE when shared edits dir is deleted. (Bikas Saha via
  3734. jitendra)
  3735. HDFS-2579. Starting delegation token manager during safemode fails. (todd)
  3736. HDFS-2510. Add HA-related metrics. (atm)
  3737. HDFS-2924. Standby checkpointing fails to authenticate in secure cluster.
  3738. (todd)
  3739. HDFS-2915. HA: TestFailureOfSharedDir.testFailureOfSharedDir() has race
  3740. condition. (Bikas Saha via jitendra)
  3741. HDFS-2912. Namenode not shutting down when shared edits dir is inaccessible.
  3742. (Bikas Saha via atm)
  3743. HDFS-2917. HA: haadmin should not work if run by regular user (eli)
  3744. HDFS-2939. TestHAStateTransitions fails on Windows. (Uma Maheswara Rao G via
  3745. atm)
  3746. HDFS-2947. On startup NN throws an NPE in the metrics system. (atm)
  3747. HDFS-2942. TestActiveStandbyElectorRealZK fails if build dir does not exist.
  3748. (atm)
  3749. HDFS-2948. NN throws NPE during shutdown if it fails to startup (todd)
  3750. HDFS-2909. HA: Inaccessible shared edits dir not getting removed from FSImage
  3751. storage dirs upon error. (Bikas Saha via jitendra)
  3752. HDFS-2934. Allow configs to be scoped to all NNs in the nameservice. (todd)
  3753. HDFS-2935. Shared edits dir property should be suffixed with nameservice and
  3754. namenodeID (todd)
  3755. HDFS-2928. ConfiguredFailoverProxyProvider should not create a NameNode proxy
  3756. with an underlying retry proxy. (Uma Maheswara Rao G via atm)
  3757. HDFS-2955. IllegalStateException during standby startup in getCurSegmentTxId.
  3758. (Hari Mankude via atm)
  3759. HDFS-2937. TestDFSHAAdmin needs tests with MiniDFSCluster. (Brandon Li via
  3760. suresh)
  3761. HDFS-2586. Add protobuf service and implementation for HAServiceProtocol.
  3762. (suresh via atm)
  3763. HDFS-2952. NN should not start with upgrade option or with a pending an
  3764. unfinalized upgrade. (atm)
  3765. HDFS-2974. MiniDFSCluster does not delete standby NN name dirs during format.
  3766. (atm)
  3767. HDFS-2929. Stress test and fixes for block synchronization (todd)
  3768. HDFS-2972. Small optimization building incremental block report (todd)
  3769. HDFS-2973. Re-enable NO_ACK optimization for block deletion. (todd)
  3770. HDFS-2922. HA: close out operation categories (eli)
  3771. HDFS-2993. HA: BackupNode#checkOperation should permit CHECKPOINT operations
  3772. (eli)
  3773. HDFS-2904. Client support for getting delegation tokens. (todd)
  3774. HDFS-3013. HA: NameNode format doesn't pick up
  3775. dfs.namenode.name.dir.NameServiceId configuration (Mingjie Lai via todd)
  3776. HDFS-3019. Fix silent failure of TestEditLogJournalFailures (todd)
  3777. HDFS-2958. Sweep for remaining proxy construction which doesn't go through
  3778. failover path. (atm)
  3779. HDFS-2920. fix remaining TODO items. (atm and todd)
  3780. HDFS-3027. Implement a simple NN health check. (atm)
  3781. HDFS-3023. Optimize entries in edits log for persistBlocks call. (todd)
  3782. HDFS-2979. Balancer should use logical uri for creating failover proxy with HA
  3783. enabled. (atm)
  3784. HDFS-3035. Fix failure of TestFileAppendRestart due to OP_UPDATE_BLOCKS (todd)
  3785. HDFS-3039. Address findbugs and javadoc warnings on branch. (todd via atm)
  3786. Release 0.23.10 - UNRELEASED
  3787. INCOMPATIBLE CHANGES
  3788. NEW FEATURES
  3789. IMPROVEMENTS
  3790. HDFS-5010. Reduce the frequency of getCurrentUser() calls from namenode
  3791. (kihwal)
  3792. HDFS-5346. Avoid unnecessary call to getNumLiveDataNodes() for each block
  3793. during IBR processing (Ravi Prakash via kihwal)
  3794. OPTIMIZATIONS
  3795. BUG FIXES
  3796. HDFS-4998. TestUnderReplicatedBlocks fails intermittently (kihwal)
  3797. HDFS-4329. DFSShell issues with directories with spaces in name (Cristina
  3798. L. Abad via jeagles)
  3799. HDFS-5526. Datanode cannot roll back to previous layout version (kihwal)
  3800. HDFS-5557. Write pipeline recovery for the last packet in the block may
  3801. cause rejection of valid replicas. (kihwal)
  3802. HDFS-5558. LeaseManager monitor thread can crash if the last block is
  3803. complete but another block is not. (kihwal)
  3804. Release 0.23.9 - 2013-07-08
  3805. INCOMPATIBLE CHANGES
  3806. NEW FEATURES
  3807. IMPROVEMENTS
  3808. OPTIMIZATIONS
  3809. BUG FIXES
  3810. HDFS-4867. metaSave NPEs when there are invalid blocks in repl queue.
  3811. (Plamen Jeliazkov and Ravi Prakash via shv)
  3812. HDFS-4862. SafeModeInfo.isManual() returns true when resources are low even
  3813. if it wasn't entered into manually (Ravi Prakash via kihwal)
  3814. HDFS-4832. Namenode doesn't change the number of missing blocks in
  3815. safemode when DNs rejoin or leave (Ravi Prakash via kihwal)
  3816. HDFS-4878. On Remove Block, block is not removed from neededReplications
  3817. queue. (Tao Luo via shv)
  3818. HDFS-4205. fsck fails with symlinks. (jlowe)
  3819. Release 0.23.8 - 2013-06-05
  3820. INCOMPATIBLE CHANGES
  3821. HDFS-4714. Log short messages in Namenode RPC server for exceptions
  3822. meant for clients. (kihwal)
  3823. NEW FEATURES
  3824. IMPROVEMENTS
  3825. OPTIMIZATIONS
  3826. BUG FIXES
  3827. HDFS-4477. Secondary namenode may retain old tokens (daryn via kihwal)
  3828. HDFS-4699. TestPipelinesFailover#testPipelineRecoveryStress fails
  3829. sporadically (Chris Nauroth via kihwal)
  3830. HDFS-4805. Webhdfs client is fragile to token renewal errors
  3831. (daryn via kihwal)
  3832. HDFS-3875. Issue handling checksum errors in write pipeline. (kihwal)
  3833. HDFS-4807. createSocketForPipeline() should not include timeout extension
  3834. on connect. (Cristina L. Abad via kihwal)
  3835. Release 0.23.7 - 2013-04-18
  3836. INCOMPATIBLE CHANGES
  3837. NEW FEATURES
  3838. IMPROVEMENTS
  3839. OPTIMIZATIONS
  3840. HDFS-4532. RPC call queue may fill due to current user lookup (daryn)
  3841. BUG FIXES
  3842. HDFS-4288. NN accepts incremental BR as IBR in safemode (daryn via kihwal)
  3843. HDFS-4495. Allow client-side lease renewal to be retried beyond soft-limit
  3844. (kihwal)
  3845. HDFS-4128. 2NN gets stuck in inconsistent state if edit log replay fails
  3846. in the middle (kihwal via daryn)
  3847. HDFS-4542. Webhdfs doesn't support secure proxy users (Daryn Sharp via
  3848. kihwal)
  3849. HDFS-4560. Webhdfs cannot use tokens obtained by another user (daryn)
  3850. HDFS-4566. Webdhfs token cancelation should use authentication (daryn)
  3851. HDFS-4567. Webhdfs does not need a token for token operations (daryn via
  3852. kihwal)
  3853. HDFS-4577. Webhdfs operations should declare if authentication is required
  3854. (daryn via kihwal)
  3855. HDFS-3344. Unreliable corrupt blocks counting in TestProcessCorruptBlocks
  3856. (kihwal)
  3857. HDFS-3367. WebHDFS doesn't use the logged in user when opening
  3858. connections (daryn)
  3859. HDFS-4581. checkDiskError should not be called on network errors (Rohit
  3860. Kochar via kihwal)
  3861. HDFS-4649. Webhdfs cannot list large directories (daryn via kihwal)
  3862. HDFS-4548. Webhdfs doesn't renegotiate SPNEGO token (daryn via kihwal)
  3863. Release 0.23.6 - 2013-02-06
  3864. INCOMPATIBLE CHANGES
  3865. NEW FEATURES
  3866. IMPROVEMENTS
  3867. OPTIMIZATIONS
  3868. BUG FIXES
  3869. HDFS-4247. saveNamespace should be tolerant of dangling lease (daryn)
  3870. HDFS-4248. Renaming directories may incorrectly remove the paths in leases
  3871. under the tree. (daryn via szetszwo)
  3872. HDFS-4385. Maven RAT plugin is not checking all source files (tgraves)
  3873. HDFS-4426. Secondary namenode shuts down immediately after startup.
  3874. (Arpit Agarwal via suresh)
  3875. Release 0.23.5 - 2012-11-28
  3876. INCOMPATIBLE CHANGES
  3877. HDFS-4080. Add a separate logger for block state change logs to enable turning
  3878. off those logs. (Kihwal Lee via suresh)
  3879. NEW FEATURES
  3880. IMPROVEMENTS
  3881. OPTIMIZATIONS
  3882. HDFS-4075. Reduce recommissioning overhead (Kihwal Lee via daryn)
  3883. HDFS-3990. NN's health report has severe performance problems (daryn)
  3884. HDFS-4181. LeaseManager tries to double remove and prints extra messages
  3885. (Kihwal Lee via daryn)
  3886. BUG FIXES
  3887. HDFS-3829. TestHftpURLTimeouts fails intermittently with JDK7 (Trevor
  3888. Robinson via tgraves)
  3889. HDFS-3824. TestHftpDelegationToken fails intermittently with JDK7 (Trevor
  3890. Robinson via tgraves)
  3891. HDFS-3224. Bug in check for DN re-registration with different storage ID
  3892. (jlowe)
  3893. HDFS-4090. getFileChecksum() result incompatible when called against
  3894. zero-byte files. (Kihwal Lee via daryn)
  3895. HDFS-4172. namenode does not URI-encode parameters when building URI for
  3896. datanode request (Derek Dagit via bobby)
  3897. HDFS-4182. SecondaryNameNode leaks NameCache entries (bobby)
  3898. HDFS-4186. logSync() is called with the write lock held while releasing
  3899. lease (Kihwal Lee via daryn)
  3900. Release 0.23.4
  3901. INCOMPATIBLE CHANGES
  3902. NEW FEATURES
  3903. IMPROVEMENTS
  3904. OPTIMIZATIONS
  3905. BUG FIXES
  3906. HDFS-3831. Failure to renew tokens due to test-sources left in classpath
  3907. (jlowe via bobby)
  3908. Release 0.23.3
  3909. INCOMPATIBLE CHANGES
  3910. NEW FEATURES
  3911. IMPROVEMENTS
  3912. OPTIMIZATIONS
  3913. BUG FIXES
  3914. HDFS-3166. Add timeout to Hftp connections. (Daryn Sharp via szetszwo)
  3915. HDFS-3176. Use MD5MD5CRC32FileChecksum.readFields() in JsonUtil . (Kihwal
  3916. Lee via szetszwo)
  3917. HDFS-2652. Add support for host-based delegation tokens. (Daryn Sharp via
  3918. szetszwo)
  3919. HDFS-3308. Uses canonical URI to select delegation tokens in HftpFileSystem
  3920. and WebHdfsFileSystem. (Daryn Sharp via szetszwo)
  3921. HDFS-3312. In HftpFileSystem, the namenode URI is non-secure but the
  3922. delegation tokens have to use secure URI. (Daryn Sharp via szetszwo)
  3923. HDFS-3318. Use BoundedInputStream in ByteRangeInputStream, otherwise, it
  3924. hangs on transfers >2 GB. (Daryn Sharp via szetszwo)
  3925. HDFS-3321. Fix safe mode turn off tip message. (Ravi Prakash via szetszwo)
  3926. HDFS-3334. Fix ByteRangeInputStream stream leakage. (Daryn Sharp via
  3927. szetszwo)
  3928. HDFS-3331. In namenode, check superuser privilege for setBalancerBandwidth
  3929. and acquire the write lock for finalizeUpgrade. (szetszwo)
  3930. HDFS-3577. In DatanodeWebHdfsMethods, use MessageBodyWriter instead of
  3931. StreamingOutput, otherwise, it will fail to transfer large files.
  3932. (szetszwo)
  3933. HDFS-3646. LeaseRenewer can hold reference to inactive DFSClient
  3934. instances forever. (Kihwal Lee via daryn)
  3935. HDFS-3696. Set chunked streaming mode in WebHdfsFileSystem write operations
  3936. to get around a Java library bug causing OutOfMemoryError. (szetszwo)
  3937. HDFS-3553. Hftp proxy tokens are broken (daryn)
  3938. HDFS-3718. Datanode won't shutdown because of runaway DataBlockScanner
  3939. thread (Kihwal Lee via daryn)
  3940. HDFS-3861. Deadlock in DFSClient (Kihwal Lee via daryn)
  3941. HDFS-3873. Hftp assumes security is disabled if token fetch fails (daryn)
  3942. HDFS-3852. TestHftpDelegationToken is broken after HADOOP-8225 (daryn)
  3943. HDFS-3890. filecontext mkdirs doesn't apply umask as expected
  3944. (Tom Graves via daryn)
  3945. Release 0.23.2 - UNRELEASED
  3946. INCOMPATIBLE CHANGES
  3947. HDFS-2887. FSVolume, is a part of FSDatasetInterface implementation, should
  3948. not be referred outside FSDataset. A new FSVolumeInterface is defined.
  3949. The BlockVolumeChoosingPolicy.chooseVolume(..) method signature is also
  3950. updated. (szetszwo)
  3951. NEW FEATURES
  3952. HDFS-2943. Expose last checkpoint time and transaction stats as JMX
  3953. metrics. (atm)
  3954. IMPROVEMENTS
  3955. HDFS-2931. Switch DataNode's BlockVolumeChoosingPolicy to private-audience.
  3956. (harsh via szetszwo)
  3957. HDFS-2725. hdfs script usage information is missing the information
  3958. about "dfs" command (Prashant Sharma via stevel)
  3959. HDFS-2907. Add a conf property dfs.datanode.fsdataset.factory to make
  3960. FSDataset in Datanode pluggable. (szetszwo)
  3961. HDFS-2985. Improve logging when replicas are marked as corrupt. (todd)
  3962. HDFS-3098. Update and add tests for HADOOP-8173. (Daryn Sharp via szetszwo)
  3963. HDFS-3104. Add tests for HADOOP-8175. (Daryn Sharp via szetszwo)
  3964. HDFS-3066. Cap space usage of default log4j rolling policy.
  3965. (Patrick Hunt via eli)
  3966. OPTIMIZATIONS
  3967. BUG FIXES
  3968. HDFS-2923. Namenode IPC handler count uses the wrong configuration key
  3969. (todd)
  3970. HDFS-2869. Fix an error in the webhdfs docs for the mkdir op (harsh)
  3971. HDFS-776. Fix exception handling in Balancer. (Uma Maheswara Rao G
  3972. via szetszwo)
  3973. HDFS-2815. Namenode sometimes oes not come out of safemode during
  3974. NN crash + restart. (Uma Maheswara Rao via suresh)
  3975. HDFS-2950. Secondary NN HTTPS address should be listed as a
  3976. NAMESERVICE_SPECIFIC_KEY. (todd)
  3977. HDFS-2525. Race between BlockPoolSliceScanner and append. (Brandon Li
  3978. via jitendra)
  3979. HDFS-2938. Recursive delete of a large directory make namenode
  3980. unresponsive. (Hari Mankude via suresh)
  3981. HDFS-2969. ExtendedBlock.equals is incorrectly implemented (todd)
  3982. HDFS-2944. Typo in hdfs-default.xml causes
  3983. dfs.client.block.write.replace-datanode-on-failure.enable to be mistakenly
  3984. disabled. (atm)
  3985. HDFS-2981. In hdfs-default.xml, the default value of
  3986. dfs.client.block.write.replace-datanode-on-failure.enable should be true.
  3987. (szetszwo)
  3988. HDFS-3008. Negative caching of local addrs doesn't work. (eli)
  3989. HDFS-3006. In WebHDFS, when the return body is empty, set the Content-Type
  3990. to application/octet-stream instead of application/json. (szetszwo)
  3991. HDFS-2991. Fix case where OP_ADD would not be logged in append(). (todd)
  3992. HDFS-3012. Exception while renewing delegation token. (Bobby Evans via
  3993. jitendra)
  3994. HDFS-3032. Change DFSClient.renewLease() so that it only retries up to the
  3995. lease soft-limit. (Kihwal Lee via szetszwo)
  3996. HDFS-2038. Update TestHDFSCLI to handle relative paths with globs.
  3997. (Kihwal Lee via szetszwo)
  3998. HDFS-3101. Cannot read empty file using WebHDFS. (szetszwo)
  3999. HDFS-3160. httpfs should exec catalina instead of forking it.
  4000. (Roman Shaposhnik via eli)
  4001. Release 0.23.1 - 2012-02-17
  4002. INCOMPATIBLE CHANGES
  4003. NEW FEATURES
  4004. HDFS-2316. [umbrella] WebHDFS: a complete FileSystem implementation for
  4005. accessing HDFS over HTTP (szetszwo)
  4006. HDFS-2594. Support getDelegationTokens and createSymlink in WebHDFS.
  4007. (szetszwo)
  4008. HDFS-2545. Change WebHDFS to support multiple namenodes in federation.
  4009. (szetszwo)
  4010. HDFS-2178. Contributing Hoop to HDFS, replacement for HDFS proxy with
  4011. read/write capabilities. (tucu)
  4012. IMPROVEMENTS
  4013. HDFS-2560. Refactor BPOfferService to be a static inner class (todd)
  4014. HDFS-2544. Hadoop scripts unconditionally source
  4015. "$bin"/../libexec/hadoop-config.sh. (Bruno Mahé via tomwhite)
  4016. HDFS-2543. HADOOP_PREFIX cannot be overridden. (Bruno Mahé via tomwhite)
  4017. HDFS-2562. Refactor DN configuration variables out of DataNode class
  4018. (todd)
  4019. HDFS-2563. Some cleanup in BPOfferService. (todd)
  4020. HDFS-2568. Use a set to manage child sockets in XceiverServer.
  4021. (harsh via eli)
  4022. HDFS-2454. Move maxXceiverCount check to before starting the
  4023. thread in dataXceiver. (harsh via eli)
  4024. HDFS-2570. Add descriptions for dfs.*.https.address in hdfs-default.xml.
  4025. (eli)
  4026. HDFS-2536. Remove unused imports. (harsh via eli)
  4027. HDFS-2566. Move BPOfferService to be a non-inner class. (todd)
  4028. HDFS-2552. Add Forrest doc for WebHDFS REST API. (szetszwo)
  4029. HDFS-2587. Add apt doc for WebHDFS REST API. (szetszwo)
  4030. HDFS-2604. Add a log message to show if WebHDFS is enabled and a
  4031. configuration section in the forrest doc. (szetszwo)
  4032. HDFS-2511. Add dev script to generate HDFS protobufs. (tucu)
  4033. HDFS-2654. Make BlockReaderLocal not extend RemoteBlockReader2. (eli)
  4034. HDFS-2675. Reduce warning verbosity when double-closing edit logs
  4035. (todd)
  4036. HDFS-2335. DataNodeCluster and NNStorage always pull fresh entropy.
  4037. (Uma Maheswara Rao G via eli)
  4038. HDFS-2574. Remove references to some deprecated properties in conf
  4039. templates and defaults files. (Joe Crobak via harsh)
  4040. HDFS-2722. HttpFs should not be using an int for block size. (harsh)
  4041. HDFS-2710. Add HDFS tests related to HADOOP-7933. (sid via suresh)
  4042. HDFS-2349. Corruption detected during block transfers between DNs
  4043. should log a WARN instead of INFO. (harsh)
  4044. HDFS-2729. Update BlockManager's comments regarding the invalid block
  4045. set (harsh)
  4046. HDFS-2726. Fix a logging issue under DFSClient's createBlockOutputStream
  4047. method (harsh)
  4048. HDFS-554. Use System.arraycopy in BlockInfo.ensureCapacity. (harsh)
  4049. HDFS-1314. Make dfs.blocksize accept size-indicating prefixes.
  4050. (Sho Shimauchi via harsh)
  4051. HDFS-69. Improve the 'dfsadmin' commandline help. (harsh)
  4052. HDFS-2788. HdfsServerConstants#DN_KEEPALIVE_TIMEOUT is dead code. (eli)
  4053. HDFS-362. FSEditLog should not writes long and short as UTF8, and should
  4054. not use ArrayWritable for writing non-array items. (Uma Maheswara Rao G
  4055. via szetszwo)
  4056. HDFS-2803. Add logging to LeaseRenewer for better lease expiration debugging.
  4057. (Jimmy Xiang via todd)
  4058. HDFS-2817. Combine the two TestSafeMode test suites. (todd)
  4059. HDFS-2818. Fix a missing space issue in HDFS webapps' title tags.
  4060. (Devaraj K via harsh)
  4061. HDFS-2397. Undeprecate SecondaryNameNode. (eli)
  4062. HDFS-2814 NamenodeMXBean does not account for svn revision in the version
  4063. information. (Hitesh Shah via jitendra)
  4064. HDFS-2784. Update hftp and hdfs for host-based token support.
  4065. (Kihwal Lee via jitendra)
  4066. HDFS-2785. Update webhdfs and httpfs for host-based token support.
  4067. (Robert Joseph Evans via jitendra)
  4068. HDFS-2868. Expose xceiver counts via the DataNode MXBean. (harsh)
  4069. HDFS-3139. Minor Datanode logging improvement. (eli)
  4070. OPTIMIZATIONS
  4071. HDFS-2130. Switch default checksum to CRC32C. (todd)
  4072. HDFS-2533. Remove needless synchronization on some FSDataSet methods.
  4073. (todd)
  4074. HDFS-2129. Simplify BlockReader to not inherit from FSInputChecker.
  4075. (todd)
  4076. HDFS-2246. Enable reading a block directly from local file system
  4077. for a client on the same node as the block file. (Andrew Purtell,
  4078. Suresh Srinivas and Jitendra Nath Pandey via szetszwo)
  4079. HDFS-2825. Add test hook to turn off the writer preferring its local
  4080. DN. (todd)
  4081. HDFS-2826. Add test case for HDFS-1476 (safemode can initialize
  4082. replication queues before exiting) (todd)
  4083. HDFS-2864. Remove some redundant methods and the constant METADATA_VERSION
  4084. from FSDataset. (szetszwo)
  4085. HDFS-2879. Change FSDataset to package private. (szetszwo)
  4086. BUG FIXES
  4087. HDFS-2541. For a sufficiently large value of blocks, the DN Scanner
  4088. may request a random number with a negative seed value. (harsh via eli)
  4089. HDFS-2502. hdfs-default.xml should include dfs.name.dir.restore.
  4090. (harsh via eli)
  4091. HDFS-2567. When 0 DNs are available, show a proper error when
  4092. trying to browse DFS via web UI. (harsh via eli)
  4093. HDFS-2575. DFSTestUtil may create empty files (todd)
  4094. HDFS-2588. hdfs jsp pages missing DOCTYPE. (Dave Vronay via mattf)
  4095. HDFS-2590. Fix the missing links in the WebHDFS forrest doc. (szetszwo)
  4096. HDFS-2596. TestDirectoryScanner doesn't test parallel scans. (eli)
  4097. HDFS-2606. webhdfs client filesystem impl must set the content-type
  4098. header for create/append. (tucu)
  4099. HDFS-2614. hadoop dist tarball is missing hdfs headers. (tucu)
  4100. HDFS-2653. DFSClient should cache whether addrs are non-local when
  4101. short-circuiting is enabled. (eli)
  4102. HDFS-2649. eclipse:eclipse build fails for hadoop-hdfs-httpfs.
  4103. (Jason Lowe via eli)
  4104. HDFS-2640. Javadoc generation hangs. (tomwhite)
  4105. HDFS-2553. Fix BlockPoolSliceScanner spinning in a tight loop (Uma
  4106. Maheswara Rao G via todd)
  4107. HDFS-2658. HttpFS introduced 70 javadoc warnings. (tucu)
  4108. HDFS-2706. Use configuration for blockInvalidateLimit if it is set.
  4109. (szetszwo)
  4110. HDFS-2646. Hadoop HttpFS introduced 4 findbug warnings. (tucu)
  4111. HDFS-2657. TestHttpFSServer and TestServerWebApp are failing on trunk.
  4112. (tucu)
  4113. HDFS-2705. HttpFS server should check that upload requests have correct
  4114. content-type. (tucu)
  4115. HDFS-2707. HttpFS should read the hadoop-auth secret from a file
  4116. instead inline from the configuration. (tucu)
  4117. HDFS-2790. FSNamesystem.setTimes throws exception with wrong
  4118. configuration name in the message. (Arpit Gupta via eli)
  4119. HDFS-2810. Leases not getting renewed properly by clients (todd)
  4120. HDFS-2751. Datanode may incorrectly drop OS cache behind reads
  4121. even for short reads. (todd)
  4122. HDFS-2816. Fix missing license header in httpfs findbugsExcludeFile.xml.
  4123. (hitesh via tucu)
  4124. HDFS-2822. processMisReplicatedBlock incorrectly identifies
  4125. under-construction blocks as under-replicated. (todd)
  4126. HDFS-442. dfsthroughput in test jar throws NPE (harsh)
  4127. HDFS-2836. HttpFSServer still has 2 javadoc warnings in trunk.
  4128. (revans2 via tucu)
  4129. HDFS-2837. mvn javadoc:javadoc not seeing LimitedPrivate class
  4130. (revans2 via tucu)
  4131. HDFS-2840. TestHostnameFilter should work with localhost or
  4132. localhost.localdomain (tucu)
  4133. HDFS-2791. If block report races with closing of file, replica is
  4134. incorrectly marked corrupt. (todd)
  4135. HDFS-2827. When the parent of a directory is the root, renaming the
  4136. directory results in leases updated incorrectly. (Uma Maheswara Rao G
  4137. via szetszwo)
  4138. HDFS-2835. Fix findbugs and javadoc issue with GetConf.java.
  4139. (suresh)
  4140. HDFS-2889. getNumCurrentReplicas is package private but should be public on
  4141. 0.23 (see HDFS-2408). (Gregory Chanan via atm)
  4142. HDFS-2893. The start/stop scripts don't start/stop the 2NN when
  4143. using the default configuration. (eli)
  4144. Release 0.23.0 - 2011-11-01
  4145. INCOMPATIBLE CHANGES
  4146. HDFS-1526. Dfs client name for a map/reduce task should be unique
  4147. among threads. (hairong)
  4148. HDFS-1536. Improve HDFS WebUI. (hairong)
  4149. HDFS-2210. Remove hdfsproxy. (eli)
  4150. HDFS-1073. Redesign the NameNode's storage layout for image checkpoints
  4151. and edit logs to introduce transaction IDs and be more robust.
  4152. Please see HDFS-1073 section below for breakout of individual patches.
  4153. NEW FEATURES
  4154. HDFS-1359. Add BlockPoolID to Block. (suresh)
  4155. HDFS-1365. Federation: propose ClusterID and BlockPoolID format
  4156. (Tanping via boryas)
  4157. HDFS-1394. Federation: modify -format option for namenode to generated
  4158. new blockpool id and accept newcluster (boryas)
  4159. HDFS-1400. Federation: DataTransferProtocol uses ExtendedBlockPool to
  4160. include BlockPoolID in the protocol. (suresh)
  4161. HDFS-1428. Federation : add cluster ID and block pool ID into
  4162. Name node web UI(Tanping via boryas)
  4163. HDFS-1450. Federation: Introduce block pool ID into FSDatasetInterface.
  4164. (suresh)
  4165. HDFS-1632. Federation: data node storage structure changes and
  4166. introduce block pool storage. (Tanping via suresh)
  4167. HDFS-1634. Federation: Convert single threaded DataNode into
  4168. per BlockPool thread model.(boryas)
  4169. HDFS-1637. Federation: FSDataset in Datanode should be created after
  4170. initial handshake with namenode. (boryas and jitendra)
  4171. HDFS-1653. Federation: Block received message from datanode sends invalid
  4172. DatanodeRegistration. (Tanping via suresh)
  4173. HDFS-1645. Federation: DatanodeCommond.Finalize needs to include
  4174. BlockPoolId. (suresh)
  4175. HDFS-1638. Federation: DataNode.handleDiskError needs to inform
  4176. ALL namenodes if a disk failed (boryas)
  4177. HDFS-1647. Federation: Multiple namenode configuration. (jitendra)
  4178. HDFS-1639. Federation: Add block pool management to FSDataset. (suresh)
  4179. HDFS-1648. Federation: Only DataStorage must be locked using in_use.lock
  4180. and no locks must be associated with BlockPoolStorage. (Tanping via suresh)
  4181. HDFS-1641. Federation: Datanode fields that are no longer used should
  4182. be removed (boryas)
  4183. HDFS-1642. Federation: add Datanode.getDNRegistration(String bpid)
  4184. method (boryas)
  4185. HDFS-1643. Federation: remove namenode argument from DataNode
  4186. constructor (boryas)
  4187. HDFS-1657. Federation: Tests that corrupt block files fail due to changed
  4188. file path in federation. (suresh)
  4189. HDFS-1661. Federation: Remove unnecessary TODO:FEDERATION comments.
  4190. (jitendra)
  4191. HDFS-1660. Federation: Datanode doesn't start with two namenodes (boryas)
  4192. HDFS-1650. Federation: TestReplication fails. (Tanping via suresh)
  4193. HDFS-1651. Federation: Tests fail due to null pointer exception in
  4194. Datnode#shutdown() method. (Tanping via suresh)
  4195. HDFS-1649. Federation: Datanode command to refresh namenode list at
  4196. the datanode. (jitendra)
  4197. HDFS-1646. Federation: MiniDFSClsuter#waitActive() waits for ever
  4198. with the introduction of BPOfferService in datanode. (suresh)
  4199. HDFS-1659. Federation: BPOfferService exits after one iteration
  4200. incorrectly. (Tanping via suresh)
  4201. HDFS-1654. Federation: Fix TestDFSUpgrade and TestDFSRollback failures.
  4202. (suresh)
  4203. HDFS-1668. Federation: Datanodes sends block pool usage information
  4204. to the namenode in heartbeat. (suresh)
  4205. HDFS-1669. Federation: Fix TestHftpFileSystem failure. (suresh)
  4206. HDFS-1670. Federation: remove dnRegistration from Datanode (boryas)
  4207. HDFS-1662. Federation: fix unit test case, TestCheckpoint
  4208. and TestDataNodeMXBean (tanping via boryas)
  4209. HDFS-1671. Federation: shutdown in DataNode should be able to
  4210. shutdown individual BP threads as well as the whole DN (boryas).
  4211. HDFS-1663. Federation: Rename getPoolId() everywhere to
  4212. getBlockPoolId() (tanping via boryas)
  4213. HDFS-1652. FederationL Add support for multiple namenodes in
  4214. MiniDFSCluster. (suresh)
  4215. HDFS-1672. Federation: refactor stopDatanode(name) to work
  4216. with multiple Block Pools (boryas)
  4217. HDFS-1687. Federation: DirectoryScanner changes for
  4218. federation (Matt Foley via boryas)
  4219. HDFS-1626. Make BLOCK_INVALIDATE_LIMIT configurable. (szetszwo)
  4220. HDFS-1655. Federation: DatablockScanner should scan blocks for
  4221. all the block pools. (jitendra)
  4222. HDFS-1664. Federation: Add block pool storage usage to Namenode WebUI.
  4223. (Tanping via suresh)
  4224. HDFS-1674. Federation: Rename BlockPool class to BlockPoolSlice.
  4225. (jghoman, Tanping via suresh)
  4226. HDFS-1673. Federation: Datanode changes to track block token secret per
  4227. namenode. (suresh)
  4228. HDFS-1677. Federation: Fix TestFsck and TestListCorruptFileBlocks
  4229. failures. (Tanping via suresh)
  4230. HDFS-1678. Federation: Remove unnecessary #getBlockpool()
  4231. for NameNodeMXBean in FSNameSystem. (Tanping via Suresh)
  4232. HDFS-1688. Federation: Fix failures in fault injection tests,
  4233. TestDiskError, TestDatanodeRestart and TestDFSTartupVersions. (suresh)
  4234. HDFS-1696. Federation: when build version doesn't match -
  4235. datanode should wait (keep connecting) untill NN comes up
  4236. with the right version (boryas)
  4237. HDFS-1681. Balancer: support per pool and per node policies. (szetszwo)
  4238. HDFS-1695. Federation: Fix testOIV and TestDatanodeUtils
  4239. (jhoman and tanping via boryas)
  4240. HDFS:1699. Federation: Fix failure of TestBlockReport.
  4241. (Matt Foley via suresh)
  4242. HDFS-1698. Federation: TestOverReplicatedBlocks and TestWriteToReplica
  4243. failing. (jhoman and jitendra)
  4244. HDFS-1701. Federation: Fix TestHeartbeathandling.
  4245. (Erik Steffl and Tanping Wang via suresh)
  4246. HDFS-1693. Federation: Fix TestDFSStorageStateRecovery failure. (suresh)
  4247. HDFS-1694. Federation: SimulatedFSDataset changes to work with
  4248. federation and multiple block pools. (suresh)
  4249. HDFS-1689. Federation: Configuration for namenodes. (suresh and jitendra)
  4250. HDFS-1682. Change Balancer CLI for multiple namenodes and balancing
  4251. policy. (szetszwo)
  4252. HDFS-1697. Federation: fix TestBlockRecovery (boryas)
  4253. HDFS-1702. Federation: fix TestBackupNode and TestRefreshNamendoes
  4254. failures. (suresh)
  4255. HDFS-1706. Federation: TestFileAppend2, TestFileAppend3 and
  4256. TestBlockTokenWithDFS failing. (jitendra)
  4257. HDFS-1704. Federation: Add a tool that lists namenodes, secondary and
  4258. backup from configuration file. (suresh)
  4259. HDFS-1711. Federation: create method for updating machine name in
  4260. DataNode.java (boryas)
  4261. HDFS-1712. Federation: when looking up datanode we should use machineNmae
  4262. (in testOverReplicatedBlocks) (boryas)
  4263. HDFS-1709. Federation: Error "nnaddr url param is null" when clicking on a
  4264. node from NN Live Node Link. (jitendra)
  4265. HDFS-1714. Federation: refactor upgrade object in DataNode (boryas)
  4266. HDFS-1715. Federation: warning/error not generated when datanode sees
  4267. inconsistent/different Cluster ID between namenodes (boryas)
  4268. HDFS-1715. Federation: warning/error not generated when datanode sees
  4269. inconsistent/different Cluster ID between namenodes (boryas)
  4270. HDFS-1716. Federation: Add decommission tests for federated namenodes.
  4271. (suresh)
  4272. HDFS-1713. Federation: Prevent DataBlockScanner from running in tight loop.
  4273. (jitendra)
  4274. HDFS-1721. Federation: Configuration for principal names should not be
  4275. namenode specific. (jitendra)
  4276. HDFS-1717. Federation: FSDataset volumeMap access is not synchronized
  4277. correctly. (suresh)
  4278. HDFS-1722. Federation: Add flag to MiniDFSCluser to differentiate between
  4279. federation and non-federation modes. (boryas via suresh)
  4280. HDFS-1718. Federation: MiniDFSCluster#waitActive() bug causes some tests
  4281. to fail. (suresh)
  4282. HDFS-1719. Federation: Fix TestDFSRemove that fails intermittently.
  4283. (suresh)
  4284. HDFS-1720. Federation: FSVolumeSet volumes is not synchronized correctly.
  4285. (suresh)
  4286. HDFS-1700. Federation: fsck needs to work with federation changes.
  4287. (Matt Foley via suresh)
  4288. HDFS-1482. Add listCorruptFileBlocks to DistributedFileSystem.
  4289. (Patrick Kling via hairong)
  4290. HDFS-1448. Add a new tool Offline Edits Viewer (oev). (Erik Steffl
  4291. via szetszwo)
  4292. HDFS-1735. Federation: merge FSImage change in federation to
  4293. FSImage+NNStorage refactoring in trunk. (suresh)
  4294. HDFS-1737. Federation: Update the layout version for federation
  4295. changes. (suresh)
  4296. HDFS-1744. Federation: Add new layout version to offline image viewer
  4297. and edits viewer. (suresh)
  4298. HDFS-1745. Federation: Fix fault injection test failures. (suresh)
  4299. HDFS-1746. Federation: TestFileAppend3 fails intermittently. (jitendra)
  4300. HDFS-1703. Improve start/stop scripts and add decommission tool for
  4301. federation. (Tanping Wang, Erik Steffl via suresh)
  4302. HDFS-1749. Federation: TestListCorruptFileBlocks failing in federation
  4303. branch. (jitendra)
  4304. HDFS-1754. Federation: testFsck fails. (boryas)
  4305. HDFS-1755. Federation: The BPOfferService must always connect to namenode
  4306. as the login user. (jitendra)
  4307. HDFS-1675. Support transferring RBW between datanodes. (szetszwo)
  4308. HDFS-1791. Federation: Add command to delete block pool directories
  4309. from a datanode. (jitendra)
  4310. HDFS-1761. Add a new DataTransferProtocol operation, Op.TRANSFER_BLOCK,
  4311. for transferring RBW/Finalized with acknowledgement and without using RPC.
  4312. (szetszwo)
  4313. HDFS-1813. Federation: Authentication using BlockToken in RPC to datanode
  4314. fails. (jitendra)
  4315. HDFS-1630. Support fsedits checksum. (hairong)
  4316. HDFS-1606. Provide a stronger data guarantee in the write pipeline by
  4317. adding a new datanode when an existing datanode failed. (szetszwo)
  4318. HDFS-1442. Api to get delegation token in Hdfs class. (jitendra)
  4319. HDFS-1070. Speedup namenode image loading and saving by storing only
  4320. local file names. (hairong)
  4321. HDFS-1751. Intrinsic limits for HDFS files, directories (daryn via boryas).
  4322. HDFS-1873. Federation: Add cluster management web console.
  4323. (Tanping Wang via suresh)
  4324. HDFS 1911 HDFS tests for the newly added viewfs
  4325. HDFS-1814. Add "hdfs groups" command to query the server-side groups
  4326. resolved for a user. (Aaron T. Myers via todd)
  4327. HDFS-1914. Federation: namenode storage directories must be configurable
  4328. specific to name service. (suresh)
  4329. HDFS-1963. Create RPM and Debian packages for HDFS. Changes deployment
  4330. layout to be consistent across the binary tgz, rpm, and deb.
  4331. (Eric Yang via omalley)
  4332. HDFS-2058. Change Data Transfer wire protocol to use protocol buffers.
  4333. (todd)
  4334. HDFS-2055. Add hflush support to libhdfs. (Travis Crawford via eli)
  4335. HDFS-2083. Query JMX statistics over http via JMXJsonServlet. (tanping)
  4336. HDFS-2156. Make hdfs and mapreduce rpm only depend on the same major
  4337. version for common and hdfs. (eyang via omalley)
  4338. HDFS-2202. Add a new DFSAdmin command to set balancer bandwidth of
  4339. datanodes without restarting. (Eric Payne via szetszwo)
  4340. HDFS-2284. Add a new FileSystem, webhdfs://, for supporting write Http
  4341. access to HDFS. (szetszwo)
  4342. HDFS-2317. Support read access to HDFS in WebHDFS. (szetszwo)
  4343. HDFS-2338. Add configuration option to enable/disable WebHDFS.
  4344. (jitendra via szetszwo)
  4345. HDFS-2318. Provide authentication to WebHDFS using SPNEGO and delegation
  4346. tokens. (szetszwo)
  4347. HDFS-2340. Support getFileBlockLocations and getDelegationToken in WebHDFS.
  4348. (szetszwo)
  4349. HDFS-2348. Support getContentSummary and getFileChecksum in WebHDFS.
  4350. (szetszwo)
  4351. HDFS-2385. Support renew and cancel delegation tokens in WebHDFS.
  4352. (szetszwo)
  4353. HDFS-2539. Support doAs and GETHOMEDIRECTORY in WebHDFS.
  4354. (szetszwo)
  4355. IMPROVEMENTS
  4356. HDFS-1875. MiniDFSCluster hard-codes dfs.datanode.address to localhost
  4357. (Eric Payne via mattf)
  4358. HDFS-2019. Fix all the places where Java method File.list is used with
  4359. FileUtil.list API (Bharath Mundlapudi via mattf)
  4360. HDFS-1934. Fix NullPointerException when certain File APIs return null
  4361. (Bharath Mundlapudi via mattf)
  4362. HDFS-1510. Added test-patch.properties required by test-patch.sh (nigel)
  4363. HDFS-1628. Display full path in AccessControlException. (John George
  4364. via szetszwo)
  4365. HDFS-1707. Federation: Failure in browsing data on new namenodes.
  4366. (jitendra)
  4367. HDFS-1683. Test Balancer with multiple NameNodes. (szetszwo)
  4368. HDFS-1547. Improve decommission mechanism. (suresh)
  4369. HDFS-2143. Federation: In cluster web console, add link to namenode page
  4370. that displays live and dead datanodes. (Ravi Prakash via suresh)
  4371. HDFS-1588. Remove hardcoded strings for configuration keys, "dfs.hosts"
  4372. and "dfs.hosts.exlude". (Erik Steffl via suresh)
  4373. HDFS-1481. NameNode should validate fsimage before rolling. (hairong)
  4374. HDFS-1506. Refactor fsimage loading code. (hairong)
  4375. HDFS-1533. A more elegant FileSystem#listCorruptFileBlocks API
  4376. (HDFS portion) (Patrick Kling via hairong)
  4377. HDFS-1476. listCorruptFileBlocks should be functional while the
  4378. name node is in safe mode. (Patrick Kling via hairong)
  4379. HDFS-1534. Fix some incorrect logs in FSDirectory. (eli)
  4380. HDFS-1539. A config option for the datanode to fsycn a block file
  4381. when block is completely written. (dhruba)
  4382. HDFS-1335. HDFS side change of HADDOP-6904: RPC compatibility. (hairong)
  4383. HDFS-1557. Separate Storage from FSImage. (Ivan Kelly via jitendra)
  4384. HDFS-560 Enhancements/tuning to hadoop-hdfs/build.xml
  4385. HDFS-1629. Add a method to BlockPlacementPolicy for keeping the chosen
  4386. nodes in the output array. (szetszwo)
  4387. HDFS-1731. Allow using a file to exclude certain tests from build (todd)
  4388. HDFS-1736. Remove the dependency from DatanodeJspHelper to FsShell.
  4389. (Daryn Sharp via szetszwo)
  4390. HDFS-780. Revive TestFuseDFS. (eli)
  4391. HDFS-1445. Batch the calls in DataStorage to FileUtil.createHardLink().
  4392. (Matt Foley via jghoman)
  4393. HDFS-1763. Replace hard-coded option strings with variables from
  4394. DFSConfigKeys. (eli)
  4395. HDFS-1541. Not marking datanodes dead when namenode in safemode.
  4396. (hairong)
  4397. HDFS-1120. Make DataNode's block-to-device placement policy pluggable
  4398. (Harsh J Chouraria via todd)
  4399. HDFS-1785. In BlockReceiver and DataXceiver, clientName.length() is used
  4400. multiple times for determining whether the source is a client or a
  4401. datanode. (szetszwo)
  4402. HDFS-1789. Refactor frequently used codes from DFSOutputStream and
  4403. DataXceiver. (szetszwo)
  4404. HDFS-1767. Namenode ignores non-initial block report from datanodes
  4405. when in safemode during startup. (Matt Foley via suresh)
  4406. HDFS-1817. Move pipeline_Fi_[39-51] from TestFiDataTransferProtocol
  4407. to TestFiPipelineClose. (szetszwo)
  4408. HDFS-1760. In FSDirectory.getFullPathName(..), it is better to return "/"
  4409. for root directory instead of an empty string. (Daryn Sharp via szetszwo)
  4410. HDFS-1833. Reduce repeated string constructions and unnecessary fields,
  4411. and fix comments in BlockReceiver.PacketResponder. (szetszwo)
  4412. HDFS-1486. Generalize CLITest structure and interfaces to faciliate
  4413. upstream adoption (e.g. for web testing). (cos)
  4414. HDFS-1844. Move "fs -help" shell command tests from HDFS to COMMOM; see
  4415. also HADOOP-7230. (Daryn Sharp via szetszwo)
  4416. HDFS-1840. In DFSClient, terminate the lease renewing thread when all files
  4417. being written are closed for a grace period, and start a new thread when
  4418. new files are opened for write. (szetszwo)
  4419. HDFS-1854. make failure message more useful in
  4420. DFSTestUtil.waitReplication(). (Matt Foley via eli)
  4421. HDFS-1562. Add rack policy tests. (eli)
  4422. HDFS-1856. TestDatanodeBlockScanner waits forever, errs without giving
  4423. information. (Matt Foley via eli)
  4424. HDFS-1295. Improve namenode restart times by short-circuiting the
  4425. first block reports from datanodes. (Matt Foley via suresh)
  4426. Corrected merge error in DataNode.java. (Matt Foley)
  4427. HDFS-1843. Discover file not found early for file append.
  4428. (Bharath Mundlapudi via jitendra)
  4429. HDFS-1862. Improve test reliability of HDFS-1594. (Aaron T. Myers via eli)
  4430. HDFS-1846. Preallocate edit log with OP_INVALID instead of zero bytes
  4431. to ensure blocks are actually allocated. (Aaron T. Myers via todd)
  4432. HDFS-1741. Provide a minimal pom file to allow integration of HDFS into Sonar
  4433. analysis (cos)
  4434. HDFS-1870. Move and rename DFSClient.LeaseChecker to a seperated class
  4435. LeaseRenewer. (szetszwo)
  4436. HDFS-1866. Document dfs.datanode.max.transfer.threads in hdfs-default.xml
  4437. (Harsh J Chouraria via todd)
  4438. HDFS-1890. Improve the name, class and value type of the map
  4439. LeaseRenewer.pendingCreates. (szetszwo)
  4440. HDFS-1865. Share LeaseRenewer among DFSClients so that there is only a
  4441. LeaseRenewer thread per namenode per user. (szetszwo)
  4442. HDFS-1906. Remove logging exception stack trace in client logs when one of
  4443. the datanode targets to read from is not reachable. (suresh)
  4444. HDFS-1378. Edit log replay should track and report file offsets in case of
  4445. errors. (Aaron T. Myers and Todd Lipcon via todd)
  4446. HDFS-1917. Separate hdfs jars from common in ivy configuration. (Eric Yang
  4447. via szetszwo)
  4448. HDFS-1899. GenericTestUtils.formatNamenode should be moved to DFSTestUtil
  4449. (Ted Yu via todd)
  4450. HDFS-1117. Metrics 2.0 HDFS instrumentation. (Luke Lu via suresh)
  4451. HDFS-1946. HDFS part of HADOOP-7291. (eli)
  4452. HDFS-1945. Removed the deprecated fields in DataTransferProtocol.
  4453. (szetszwo)
  4454. HDFS-1730. Use DaemonFactory from common and delete it from HDFS.
  4455. (Tanping via suresh)
  4456. HDFS-1573. Add useful tracing information to Lease Renewer thread names
  4457. (todd)
  4458. HDFS-1939. In ivy.xml, test conf should not extend common conf.
  4459. (Eric Yang via szetszwo)
  4460. HDFS-1332 Include more information in exceptions and debug messages
  4461. when BlockPlacementPolicy cannot be satisfied. (Ted Yu via szetszwo)
  4462. HDFS-1958. Confirmation should be more lenient of user input when
  4463. formatting the NameNode. (todd)
  4464. HDFS-1905. Improve namenode -format command by not making -clusterId
  4465. parameter mandatory. (Bharath Mundlapudi via suresh)
  4466. HDFS-1877. Add a new test for concurrent read and write. (CW Chung
  4467. via szetszwo)
  4468. HDFS-1959. Better error message for missing namenode directory. (eli)
  4469. HDFS-1996. ivy: hdfs test jar should be independent to common test jar.
  4470. (Eric Yang via szetszwo)
  4471. HDFS-1812. TestHDFSCLI should clean up cluster in teardown method.
  4472. (Uma Maheswara Rao G via todd)
  4473. HDFS-1884. Improve TestDFSStorageStateRecovery to properly throw in the
  4474. case of errors. (Aaron T. Myers via todd)
  4475. HDFS-1727. fsck command should display command usage if user passes any
  4476. illegal argument. (Sravan Kumar via todd)
  4477. HDFS-1636. If dfs.name.dir points to an empty dir, namenode format
  4478. shouldn't require confirmation. (Harsh J Chouraria via todd)
  4479. HDFS-1966. Encapsulate individual DataTransferProtocol op headers.
  4480. (szetszwo)
  4481. HDFS-2024. Format TestWriteRead source codes. (CW Chung via szetszwo)
  4482. HDFS-1968. Enhance TestWriteRead to support position/sequential read,
  4483. append, truncate and verbose options. (CW Chung via szetszwo)
  4484. HDFS-1986. Add option to get http/https address from
  4485. DFSUtil#getInfoServer(). (Tanping via suresh)
  4486. HDFS-2029. In TestWriteRead, check visible length immediately after
  4487. openning the file and fix code style. (John George via szetszwo)
  4488. HDFS-2040. Only build libhdfs if a flag is passed. (eli)
  4489. HDFS-1586. Add InterfaceAudience and InterfaceStability annotations to
  4490. MiniDFSCluster. (suresh)
  4491. HDFS-2003. Separate FSEditLog reading logic from edit log memory state
  4492. building logic. (Ivan Kelly via todd)
  4493. HDFS-2066. Create a package and individual class files for
  4494. DataTransferProtocol. (szetszwo)
  4495. HADOOP-7106. Reorganize project SVN layout to "unsplit" the projects.
  4496. (todd, nigel)
  4497. HDFS-2046. Force entropy to come from non-true random for tests. (todd)
  4498. HDFS-2073. Add @Override annotation to NameNode. (suresh)
  4499. HDFS-420. Fuse-dfs should cache fs handles. (Brian Bockelman and eli)
  4500. HDFS-1568. Improve the log messages in DataXceiver. (Joey Echeverria via
  4501. szetszwo)
  4502. HDFS-2100. Improve TestStorageRestore. (atm)
  4503. HDFS-2092. Remove some object references to Configuration in DFSClient.
  4504. (Bharath Mundlapudi via szetszwo)
  4505. HDFS-2087. Declare methods in DataTransferProtocol interface, and change
  4506. Sender and Receiver to implement the interface. (szetszwo)
  4507. HDFS-1723. quota errors messages should use the same scale. (Jim Plush via
  4508. atm)
  4509. HDFS-2110. StreamFile and ByteRangeInputStream cleanup. (eli)
  4510. HDFS-2107. Move block management code from o.a.h.h.s.namenode to a new
  4511. package o.a.h.h.s.blockmanagement. (szetszwo)
  4512. HDFS-2109. Store uMask as member variable to DFSClient.Conf. (Bharath
  4513. Mundlapudi via szetszwo)
  4514. HDFS-2111. Add tests for ensuring that the DN will start with a few bad
  4515. data directories. (Harsh J Chouraria via todd)
  4516. HDFS-2134. Move DecommissionManager to the blockmanagement package.
  4517. (szetszwo)
  4518. HDFS-1977. Stop using StringUtils.stringifyException().
  4519. (Bharath Mundlapudi via jitendra)
  4520. HDFS-2131. Add new tests for the -overwrite/-f option in put and
  4521. copyFromLocal by HADOOP-7361. (Uma Maheswara Rao G via szetszwo)
  4522. HDFS-2140. Move Host2NodesMap to the blockmanagement package. (szetszwo)
  4523. HDFS-2154. In TestDFSShell, use TEST_ROOT_DIR and fix some deprecated
  4524. warnings. (szetszwo)
  4525. HDFS-2153. Move DFSClientAdapter to test and fix some javac warnings in
  4526. OfflineEditsViewerHelper. (szetszwo)
  4527. HDFS-2159. Deprecate DistributedFileSystem.getClient() and fixed the
  4528. deprecated warnings in DFSAdmin. (szetszwo)
  4529. HDFS-2157. Improve header comment in o.a.h.hdfs.server.namenode.NameNode.
  4530. (atm via eli)
  4531. HDFS-2147. Move cluster network topology to block management and fix some
  4532. javac warnings. (szetszwo)
  4533. HDFS-2141. Remove NameNode roles Active and Standby (they become
  4534. states of the namenode). (suresh)
  4535. HDFS-2161. Move createNamenode(..), createClientDatanodeProtocolProxy(..)
  4536. and Random object creation to DFSUtil; move DFSClient.stringifyToken(..)
  4537. to DelegationTokenIdentifier. (szetszwo)
  4538. HDFS-1774. Small optimization to FSDataset. (Uma Maheswara Rao G via eli)
  4539. HDFS-2167. Move dnsToSwitchMapping and hostsReader from FSNamesystem to
  4540. DatanodeManager. (szetszwo)
  4541. HDFS-2116. Use Mokito in TestStreamFile and TestByteRangeInputStream.
  4542. (Plamen Jeliazkov via shv)
  4543. HDFS-2112. Move ReplicationMonitor to block management. (Uma Maheswara
  4544. Rao G via szetszwo)
  4545. HDFS-1739. Add available volume size to the error message when datanode
  4546. throws DiskOutOfSpaceException. (Uma Maheswara Rao G via szetszwo)
  4547. HDFS-2144. If SNN shuts down during initialization it does not log the
  4548. cause. (Ravi Prakash via atm)
  4549. HDFS-2180. Refactor NameNode HTTP server into new class. (todd)
  4550. HDFS-2198. Remove hardcoded configuration keys. (suresh)
  4551. HDFS-2149. Move EditLogOp serialization formats into FsEditLogOp
  4552. implementations. (Ivan Kelly via todd)
  4553. HDFS-2191. Move datanodeMap from FSNamesystem to DatanodeManager.
  4554. (szetszwo)
  4555. HDFS-2200. Change FSNamesystem.LOG to package private. (szetszwo)
  4556. HDFS-2195. Refactor StorageDirectory to not be an non-static inner class.
  4557. (todd via eli)
  4558. HDFS-2212. Refactor double-buffering code out of EditLogOutputStreams.
  4559. (todd via eli)
  4560. HDFS-2199. Move blockTokenSecretManager from FSNamesystem to BlockManager.
  4561. (Uma Maheswara Rao G via szetszwo)
  4562. HDFS-2187. Make EditLogInputStream act like an iterator over FSEditLogOps
  4563. (Ivan Kelly and todd via todd)
  4564. HDFS-2225. Refactor edit log file management so it's not in classes
  4565. which should be generic to the type of edit log storage. (Ivan Kelly
  4566. via todd)
  4567. HDFS-2108. Move datanode heartbeat handling from namenode package to
  4568. blockmanagement package. (szetszwo)
  4569. HDFS-2226. Clean up counting of operations in FSEditLogLoader (todd)
  4570. HDFS-2228. Move block and datanode code from FSNamesystem to
  4571. BlockManager and DatanodeManager. (szetszwo)
  4572. HDFS-2238. In NamenodeFsck.toString(), uses StringBuilder.(..) instead of
  4573. string concatenation. (Uma Maheswara Rao G via szetszwo)
  4574. HDFS-2230. ivy to resolve/retrieve latest common-tests jar published by
  4575. hadoop common maven build. (gkesavan)
  4576. HDFS-2227. getRemoteEditLogManifest should pull its information from
  4577. FileJournalManager during checkpoint process (Ivan Kelly and Todd Lipcon
  4578. via todd)
  4579. HDFS-2239. Reduce access levels of the fields and methods in FSNamesystem.
  4580. (szetszwo)
  4581. HDFS-2241. Remove implementing FSConstants interface to just get the
  4582. constants from the interface. (suresh)
  4583. HDFS-2237. Change UnderReplicatedBlocks from public to package private.
  4584. (szetszwo)
  4585. HDFS-2233. Add WebUI tests with URI reserved chars. (eli)
  4586. HDFS-2265. Remove unnecessary BlockTokenSecretManager fields/methods from
  4587. BlockManager. (szetszwo)
  4588. HDFS-2260. Refactor BlockReader into an interface and implementation.
  4589. (todd)
  4590. HDFS-2096. Mavenization of hadoop-hdfs (Alejandro Abdelnur via tomwhite)
  4591. HDFS-2273. Refactor BlockManager.recentInvalidateSets to a new class.
  4592. (szetszwo)
  4593. HDFS-2266. Add Namesystem and SafeMode interfaces to avoid directly
  4594. referring to FSNamesystem in BlockManager. (szetszwo)
  4595. HDFS-1217. Change some NameNode methods from public to package private.
  4596. (Laxman via szetszwo)
  4597. HDFS-2332. Add test for HADOOP-7629 (using an immutable FsPermission
  4598. object as an RPC parameter fails). (todd)
  4599. HDFS-2363. Move datanodes size printing from FSNamesystem.metasave(..)
  4600. to BlockManager. (Uma Maheswara Rao G via szetszwo)
  4601. HDFS-2209. Make MiniDFS easier to embed in other apps. (stevel)
  4602. HDFS-2205. Log message for failed connection to datanode is not
  4603. followed by a success message. (Ravi Prakash via stevel)
  4604. HDFS-2401. Running a set of methods in a Single Test Class.
  4605. (Jonathan Eagles via mahadev)
  4606. HDFS-2471. Add federation documentation. (suresh)
  4607. HDFS-2485. Improve code layout and constants in UnderReplicatedBlocks
  4608. (stevel)
  4609. HDFS-2356. Support case insensitive query parameter names in WebHDFS.
  4610. (szetszwo)
  4611. HDFS-2368. Move SPNEGO conf properties from hdfs-default.xml to
  4612. hdfs-site.xml. (szetszwo)
  4613. HDFS-2395. Add a root element in the JSON responses of WebHDFS.
  4614. (szetszwo)
  4615. HDFS-2427. Change the default permission in WebHDFS to 755 and add range
  4616. check/validation for all parameters. (szetszwo)
  4617. HDFS-2501. Add version prefix and root methods to WebHDFS. (szetszwo)
  4618. HDFS-1869. mkdirs should use the supplied permission for all of the created
  4619. directories. (Daryn Sharp via szetszwo)
  4620. HDFS-2355. Federation: enable using the same configuration file across
  4621. all the nodes in the cluster. (suresh)
  4622. HDFS-2371. Refactor BlockSender.java for better readability. (suresh)
  4623. HDFS-2493. Remove reference to FSNamesystem in blockmanagement classes.
  4624. (szetszwo)
  4625. HDFS-2294. Download of commons-daemon TAR should not be under target (tucu)
  4626. HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be
  4627. fetched. (tucu)
  4628. HDFS-2436. Change FSNamesystem.setTimes(..) for allowing setting times on
  4629. directories. (Uma Maheswara Rao G via szetszwo)
  4630. HDFS-2512. Add textual error message to data transfer protocol responses
  4631. (todd)
  4632. HDFS-2521. Remove custom checksum headers from data transfer protocol
  4633. (todd)
  4634. HDFS-2308. NamenodeProtocol.endCheckpoint is vestigial and can be removed.
  4635. (eli)
  4636. OPTIMIZATIONS
  4637. HDFS-1458. Improve checkpoint performance by avoiding unnecessary image
  4638. downloads and loading. (hairong)
  4639. HDFS-1601. Pipeline ACKs are sent as lots of tiny TCP packets (todd)
  4640. HDFS-1826. NameNode should save image to name directories in parallel
  4641. during upgrade. (Matt Foley via hairong)
  4642. HDFS-2030. Improve usability of namenode -upgrade command.
  4643. (Bharath Mundlapudi via suresh)
  4644. HDFS-2056. Update fetchdt usage. (Tanping Wang via jitendra)
  4645. HDFS-2118. Couple dfs data dir improvements. (eli)
  4646. HDFS-2500. Avoid file system operations in BPOfferService thread while
  4647. processing deletes. (todd)
  4648. HDFS-2465. Add HDFS support for fadvise readahead and drop-behind. (todd)
  4649. BUG FIXES
  4650. HDFS-2347. Fix checkpointTxnCount's comment about editlog size.
  4651. (Uma Maheswara Rao G via mattf)
  4652. HDFS-2011. Removal and restoration of storage directories on checkpointing
  4653. failure doesn't work properly. (Ravi Prakash via mattf)
  4654. HDFS-1955. FSImage.doUpgrade() was made too fault-tolerant by HDFS-1826.
  4655. (mattf)
  4656. HDFS-2061. Two minor bugs in BlockManager block report processing. (mattf)
  4657. HDFS-1449. Fix test failures - ExtendedBlock must return
  4658. block file name in #getBlockName(). (suresh)
  4659. HDFS-1680. Fix TestBalancer. (szetszwo)
  4660. HDFS-1705. Balancer command throws NullPointerException. (suresh via
  4661. szetszwo)
  4662. HDFS-1559. Add missing UGM overrides to TestRefreshUserMappings
  4663. (Todd Lipcon via eli)
  4664. HDFS-1585. Fix build after HDFS-1547 (todd)
  4665. HDFS-1684. Balancer cannot start with with multiple namenodes. (szetszwo)
  4666. HDFS-1516. mvn-install is broken after 0.22 branch creation. (cos)
  4667. HDFS-1360. TestBlockRecovery should bind ephemeral ports.
  4668. (Todd Lipcon via hairong)
  4669. HDFS-1551. Fix pom templates dependency list (gkesavan)
  4670. HDFS-1509. A savenamespace command writes the fsimage and edits into
  4671. all configured directories. (dhruba)
  4672. HDFS-1540. Make Datanode handle errors from RPC calls to namenode
  4673. more elegantly. (dhruba)
  4674. HDFS-1463. Accesstime of a file is not updated in safeMode. (dhruba)
  4675. HDFS-863. Potential deadlock in TestOverReplicatedBlocks.
  4676. (Ken Goodhope via jghoman)
  4677. HDFS-1607. Fix referenced to misspelled method name getProtocolSigature
  4678. (todd)
  4679. HDFS-1610. Fix TestClientProtocolWithDelegationToken and TestBlockToken
  4680. on trunk after HADOOP-6904 (todd)
  4681. HDFS-1600. Fix release audit warnings on trunk. (todd)
  4682. HDFS-1691. Remove a duplicated static initializer for reading default
  4683. configurations in DFSck. (Alexey Diomin via szetszwo)
  4684. HDFS-1748. Balancer utilization classification is incomplete. (szetszwo)
  4685. HDFS-1738. change hdfs jmxget to return an empty string instead of
  4686. null when an attribute value is not available (tanping vi boryas)
  4687. HDFS-1757. Don't compile fuse-dfs by default. (eli)
  4688. HDFS-1770. TestFiRename fails due to invalid block size. (eli)
  4689. HDFS-1797. Fix new findbugs warning introduced by HDFS-1120 (todd)
  4690. HDFS-1611. Fix up some log messages in DFSClient and MBean registration
  4691. (Uma Maheswara Rao G via todd)
  4692. HDFS-1543. Reduce dev. cycle time by moving system testing artifacts from
  4693. default build and push to maven for HDFS (Luke Lu via cos)
  4694. HDFS-1818. TestHDFSCLI is failing on trunk after HADOOP-7202.
  4695. (Aaron T. Myers via todd)
  4696. HDFS-1828. TestBlocksWithNotEnoughRacks intermittently fails assert.
  4697. (Matt Foley via eli)
  4698. HDFS-1824. delay instantiation of file system object until it is
  4699. needed (linked to HADOOP-7207) (boryas)
  4700. HDFS-1831. Fix append bug in FileContext and implement CreateFlag
  4701. check (related to HADOOP-7223). (suresh)
  4702. HDFS-1594. When the disk becomes full Namenode is getting shutdown and
  4703. not able to recover. (Aaron T. Myers via eli)
  4704. HDFS-1822. Handle editlog opcode conflict with 0.20.203 during upgrade,
  4705. by throwing an error to indicate the editlog needs to be empty.
  4706. (suresh)
  4707. HDFS-1808. TestBalancer waits forever, errs without giving information.
  4708. (Matt Foley via eli)
  4709. HDFS-1829. TestNodeCount waits forever, errs without giving information.
  4710. (Matt Foley via eli)
  4711. HDFS-1860. when renewing/canceling DelegationToken over http we need to
  4712. pass exception information back to the caller.(boryas)
  4713. HDFS-1871. Mapreduce build fails due to MiniDFSCluster change from
  4714. HDFS-1052. (suresh)
  4715. HDFS-1876. One MiniDFSCluster constructor ignores numDataNodes parameter
  4716. (todd)
  4717. HDFS-1773. Do not show decommissioned datanodes, which are not in both
  4718. include and exclude lists, on web and JMX interfaces.
  4719. (Tanping Wang via szetszwo)
  4720. HDFS-1888. MiniDFSCluster#corruptBlockOnDatanodes() access must be
  4721. public. (suresh)
  4722. HDFS-1889. incorrect path in start/stop dfs script. (John George via eli)
  4723. HDFS-1891. Disable IPV6 for junit tests to fix TestBackupNode failure.
  4724. (suresh)
  4725. HDFS-1898. Tests failing on trunk due to use of NameNode.format.
  4726. (todd via eli)
  4727. HDFS-1902. Fix setrep path display for TestHDFSCLI. (Daryn Sharp
  4728. via szetszwo)
  4729. HDFS-1827. Fix timeout problem in TestBlockReplacement. (Matt Foley
  4730. via szetszwo)
  4731. HDFS-1908. Fix a NullPointerException in fi.DataTransferTestUtil.
  4732. (szetszwo)
  4733. HDFS-1912. Update tests for FsShell standardized error messages.
  4734. (Daryn Sharp via szetszwo)
  4735. HDFS-1903. Fix path display for rm/rmr in TestHDFSCLI and TestDFSShell.
  4736. (Daryn Sharp via szetszwo)
  4737. HDFS-1627. Fix NullPointerException in Secondary NameNode. (hairong)
  4738. HDFS-1928. Fix path display for touchz in TestHDFSCLI.
  4739. (Daryn Sharp via todd)
  4740. HDFS-1938. Fix ivy-retrieve-hdfs dependence in build.xml and aop.xml.
  4741. (Eric Yang via szetszwo)
  4742. HDFS-1929. TestEditLogFileOutputStream fails if running on same host as NN
  4743. (Aaron T. Myers via todd)
  4744. HDFS-1933. Update TestDFSShell for improved "test" shell command. (Daryn
  4745. Sharp via todd)
  4746. HDFS-1931. Update TestDFSShell for improved "du" shell command. (Daryn
  4747. Sharp via todd)
  4748. HDFS-1439. HDFS Federation: Fix compilation error in TestFiHftp. (suresh)
  4749. HDFS-1881. Federation: after taking snapshot the current directory
  4750. of datanode is empty. (Tanping Wang via suresh)
  4751. HDFS-1927. Fix a bug which causes ip=null in NameNode audit log.
  4752. (John George via szetszwo)
  4753. HDFS-1953. Federation: Change name node mxbean name in cluster web
  4754. console. (Tanping Wang via suresh)
  4755. HDFS-1922. Fix recurring failure of TestJMXGet (Luke Lu via todd)
  4756. HDFS-1371. One bad node can incorrectly flag many files as corrupt.
  4757. (Tanping Wang via jitendra)
  4758. HDFS-1943. Fail to start datanode while start-dfs.sh is executed by
  4759. root user. (Wei Yongjun via jghoman)
  4760. HDFS-1983. Fix path display for copy and rm commands in TestHDFSCLI and
  4761. TestDFSShell. (Daryn Sharp via todd)
  4762. HDFS-1999. Tests use deprecated configs. (Aaron T. Myers via eli)
  4763. HDFS-1592. Datanode startup doesn't honor volumes.tolerated.
  4764. (Bharath Mundlapudi via jitendra)
  4765. HDFS-1920. libhdfs does not build for ARM processors.
  4766. (Trevor Robinson via eli)
  4767. HDFS-1936. Layout version change from HDFS-1822 causes upgrade failure.
  4768. (suresh)
  4769. HDFS-2021. Update numBytesAcked before sending the ack in PacketResponder.
  4770. (John George via szetszwo)
  4771. HDFS-2020. Fix TestDFSUpgradeFromImage by removing the use of DataNode
  4772. as a singleton. (suresh via todd)
  4773. HDFS-2022. ant binary should build libhdfs. (Eric Yang via eli)
  4774. HDFS-2014. Change HDFS scripts to work in developer enviroment post
  4775. RPM packaging changes. (Eric Yang via suresh)
  4776. HDFS-1995. Federation: Minor bug fixes and modification cluster web UI.
  4777. (Tanping Wang via suresh)
  4778. HDFS-1907. Fix position read for reading still-being-written file in
  4779. DFSInputStream. (John George via szetszwo)
  4780. HDFS-1923. In TestFiDataTransferProtocol2, reduce random sleep time period
  4781. and increase the number of datanodes. (szetszwo)
  4782. HDFS-1149. Lease reassignment should be persisted to the edit log.
  4783. (Aaron T. Myers via todd)
  4784. HDFS-1998. Federation: Make refresh-namenodes.sh refresh all the
  4785. namenode. (Tanping Wang via suresh)
  4786. HDFS-2041. OP_CONCAT_DELETE doesn't properly restore modification time
  4787. of the concatenated file when edit logs are replayed. (todd)
  4788. HDFS-2063. libhdfs test is broken. (Eric Yang via eli)
  4789. HDFS-2067. Bump DATA_TRANSFER_VERSION constant in trunk after introduction
  4790. of protocol buffers in the protocol. (szetszwo via todd)
  4791. HDFS-2069. Incorrect default trash interval value in the docs.
  4792. (Harsh J Chouraria via eli)
  4793. HDFS-1942. Datanode must exist when all the block pool service threads
  4794. exit. (Bharath Mundlapudi via suresh)
  4795. HDFS-1656. Fixes an issue to do with fetching of delegation tokens in
  4796. HftpFileSystem. Contributed by Kan Zhang.
  4797. HDFS-1692. In secure mode, Datanode process doesn't exit when disks
  4798. fail. (Bharath Mundlapudi via suresh)
  4799. HDFS-1734. 'Chunk size to view' option is not working in Name Node UI.
  4800. (Uma Maheswara Rao G via jitendra)
  4801. HDFS-2086. If the include hosts list contains host names, after restarting
  4802. namenode, data nodes registration is denied. Contributed by Tanping Wang.
  4803. HDFS-2082. SecondaryNameNode web interface doesn't show the right info. (atm)
  4804. HDFS-1321. If service port and main port are the same, there is no clear
  4805. log message explaining the issue. (Jim Plush via atm)
  4806. HDFS-1381. HDFS javadocs hard-code references to dfs.namenode.name.dir and
  4807. dfs.datanode.data.dir parameters (Jim Plush via atm)
  4808. HDFS-2053. Bug in INodeDirectory#computeContentSummary warning.
  4809. (Michael Noll via eli)
  4810. HDFS-1990. Fix resource leaks in BlockReceiver.close(). (Uma Maheswara
  4811. Rao G via szetszwo)
  4812. HDFS-2034. Length in DFSInputStream.getBlockRange(..) becomes -ve when
  4813. reading only from a currently being written block. (John George via
  4814. szetszwo)
  4815. HDFS-2132. Potential resource leak in EditLogFileOutputStream.close. (atm)
  4816. HDFS-2120. on reconnect, DN can connect to NN even with different source
  4817. versions. (John George via atm)
  4818. HDFS-2152. TestWriteConfigurationToDFS causing the random failures. (Uma
  4819. Maheswara Rao G via atm)
  4820. HDFS-2114. re-commission of a decommissioned node does not delete
  4821. excess replicas. (John George via mattf)
  4822. HDFS-1776. Bug in Concat code. (Bharath Mundlapudi via Dmytro Molkov)
  4823. HDFS-2196. Make ant build system work with hadoop-common JAR generated
  4824. by Maven. (Alejandro Abdelnur via tomwhite)
  4825. HDFS-2245. Fix a NullPointerException in BlockManager.chooseTarget(..).
  4826. (szetszwo)
  4827. HDFS-2229. Fix a deadlock in namenode by enforcing lock acquisition
  4828. ordering. (szetszwo)
  4829. HDFS-2235. Encode servlet paths. (eli)
  4830. HDFS-2186. DN volume failures on startup are not counted. (eli)
  4831. HDFS-2240. Fix a deadlock in LeaseRenewer by enforcing lock acquisition
  4832. ordering. (szetszwo)
  4833. HDFS-73. DFSOutputStream does not close all the sockets.
  4834. (Uma Maheswara Rao G via eli)
  4835. HDFS-1257. Fix a race condition on BlockManager.recentInvalidateSets.
  4836. (Eric Payne via szetszwo)
  4837. HDFS-2267. DataXceiver thread name incorrect while waiting on op during
  4838. keepalive. (todd)
  4839. HDFS-1480. All replicas of a block can end up on the same rack when
  4840. some datanodes are decommissioning. (todd)
  4841. HDFS-2286. DataXceiverServer logs AsynchronousCloseException at shutdown
  4842. (todd)
  4843. HDFS-2289. Ensure jsvc is bundled with the HDFS distribution artifact.
  4844. (Alejandro Abdelnur via acmurthy)
  4845. HDFS-2323. start-dfs.sh script fails for tarball install (tomwhite)
  4846. HDFS-2412. Add backwards-compatibility layer for renamed FSConstants
  4847. class (todd)
  4848. HDFS-2414. Fix TestDFSRollback to avoid spurious failures. (todd)
  4849. HDFS-2422. The NN should tolerate the same number of low-resource volumes
  4850. as failed volumes (atm)
  4851. HDFS-2467. HftpFileSystem uses incorrect compare for finding delegation
  4852. tokens. (omalley)
  4853. HDFS-2331. Fix WebHdfsFileSystem compilation problems for a bug in JDK
  4854. version < 1.6.0_26. (Abhijit Suresh Shingate via szetszwo)
  4855. HDFS-2333. Change DFSOutputStream back to package private, otherwise,
  4856. there are two SC_START_IN_CTOR findbugs warnings. (szetszwo)
  4857. HDFS-2366. Initialize WebHdfsFileSystem.ugi in object construction.
  4858. (szetszwo)
  4859. HDFS-2361. hftp is broken, fixed username checks in JspHelper. (jitendra)
  4860. HDFS-2403. NamenodeWebHdfsMethods.generateDelegationToken(..) does not use
  4861. the renewer parameter. (szetszwo)
  4862. HDFS-2409. _HOST in dfs.web.authentication.kerberos.principal. (jitendra)
  4863. HDFS-2404. WebHDFS liststatus json response is not correct. (suresh)
  4864. HDFS-2441. Remove the Content-Type set by HttpServer.QuotingInputFilter in
  4865. WebHDFS responses. (szetszwo)
  4866. HDFS-2428. Convert com.sun.jersey.api.ParamException$QueryParamException
  4867. to IllegalArgumentException and response it as http BAD_REQUEST in WebHDFS.
  4868. (szetszwo)
  4869. HDFS-2424. Added a root element "HdfsFileStatuses" for the response
  4870. of WebHDFS listStatus. (szetszwo)
  4871. MAPREDUCE-2764. Fix renewal of dfs delegation tokens. (Owen via jitendra)
  4872. HDFS-2439. Fix NullPointerException in WebHDFS when opening a non-existing
  4873. file or creating a file without specifying the replication parameter.
  4874. (szetszwo)
  4875. HDFS-2453. Fix http response code for partial content in WebHDFS, added
  4876. getDefaultBlockSize() and getDefaultReplication() in WebHdfsFileSystem
  4877. and cleared content type in ExceptionHandler. (szetszwo)
  4878. HDFS-2411. The the auth to local mappings are not being respected, with
  4879. WebHDFS enabled. (jitendra)
  4880. HDFS-2494. Close the streams and DFSClient in DatanodeWebHdfsMethods.
  4881. (Uma Maheswara Rao G via szetszwo)
  4882. HDFS-2298. Fix TestDfsOverAvroRpc by changing ClientProtocol to
  4883. not include multiple methods of the same name. (cutting)
  4884. HDFS-2432. WebHDFS: response FORBIDDEN when setReplication on non-files;
  4885. clear umask before creating a flie; throw IllegalArgumentException if
  4886. setOwner with both owner and group empty; throw FileNotFoundException if
  4887. getFileStatus on non-existing files; fix bugs in getBlockLocations; and
  4888. changed getFileChecksum json response root to "FileChecksum". (szetszwo)
  4889. HDFS-2065. Add null checks in DFSClient.getFileChecksum(..). (Uma
  4890. Maheswara Rao G via szetszwo)
  4891. HDFS-2416. distcp with a WebHDFS uri on a secure cluster fails. (jitendra)
  4892. HDFS-2527. WebHDFS: remove the use of "Range" header in Open; use ugi
  4893. username if renewer parameter is null in GetDelegationToken; response OK
  4894. when setting replication for non-files; rename GETFILEBLOCKLOCATIONS to
  4895. GET_BLOCK_LOCATIONS and state that it is a private unstable API; replace
  4896. isDirectory and isSymlink with enum {FILE, DIRECTORY, SYMLINK} in
  4897. HdfsFileStatus JSON object. (szetszwo)
  4898. HDFS-2528. WebHDFS: set delegation kind to WEBHDFS and add a HDFS token
  4899. when http requests are redirected to datanode. (szetszwo)
  4900. HDFS-2540. WebHDFS: change "Expect: 100-continue" to two-step write; change
  4901. "HdfsFileStatus" and "localName" respectively to "FileStatus" and
  4902. "pathSuffix" in JSON response. (szetszwo)
  4903. BREAKDOWN OF HDFS-1073 SUBTASKS
  4904. HDFS-1521. Persist transaction ID on disk between NN restarts.
  4905. (Ivan Kelly and Todd Lipcon via todd)
  4906. HDFS-1538. Refactor more startup and image loading code out of FSImage.
  4907. (todd)
  4908. HDFS-1729. Add code to detect valid length of an edits file. (todd)
  4909. HDFS-1793. Add code to inspect a storage directory with txid-based
  4910. filenames (todd)
  4911. HDFS-1794. Add code to list which edit logs are available on a remote NN
  4912. (todd)
  4913. HDFS-1858. Add state management variables to FSEditLog (Ivan Kelly and Todd
  4914. Lipcon via todd)
  4915. HDFS-1859. Add some convenience functions to iterate over edit log streams
  4916. (Ivan Kelly and Todd Lipcon via todd)
  4917. HDFS-1894. Add constants for LAYOUT_VERSIONs in edits log branch (todd)
  4918. HDFS-1892. Fix EditLogFileInputStream.getValidLength to be aware of
  4919. OP_INVALID filler (todd)
  4920. HDFS-1799. Refactor log rolling and filename management out of FSEditLog
  4921. (Ivan Kelly and Todd Lipcon via todd)
  4922. HDFS-1801. Remove use of timestamps to identify checkpoints and logs (todd)
  4923. HDFS-1930. TestDFSUpgrade failing in HDFS-1073 branch (todd)
  4924. HDFS-1800. Extend image checksumming to function with multiple fsimage
  4925. files per directory. (todd)
  4926. HDFS-1725. Set storage directories only at FSImage construction (Ivan Kelly
  4927. via todd)
  4928. HDFS-1926. Remove references to StorageDirectory from JournalManager
  4929. interface (Ivan Kelly via todd)
  4930. HDFS-1893. Change edit logs and images to be named based on txid (todd)
  4931. HDFS-1985. Clean up image transfer servlet (todd)
  4932. HDFS-1984. Enable multiple secondary namenodes to run simultaneously (todd)
  4933. HDFS-1987. Re-enable TestCheckpoint.testSecondaryImageDownload which was
  4934. not running previously. (todd)
  4935. HDFS-1993. TestCheckpoint needs to clean up between cases (todd)
  4936. HDFS-1992. Remove vestiges of NNStorageListener. (todd)
  4937. HDFS-1991. Some refactoring of Secondary NameNode to be able to share more
  4938. code with the BackupNode or CheckpointNode. (todd)
  4939. HDFS-1994. Fix race conditions when running two rapidly checkpointing
  4940. Secondary NameNodes. (todd)
  4941. HDFS-2001. Remove use of previous.checkpoint and lastcheckpoint.tmp
  4942. directories (todd)
  4943. HDFS-2015. Remove checkpointTxId from VERSION file. (todd)
  4944. HDFS-2016. Add infrastructure to remove or archive old and unneeded storage
  4945. files within the name directories. (todd)
  4946. HDFS-2047. Improve TestNamespace and TestEditLog in HDFS-1073 branch.
  4947. (todd)
  4948. HDFS-2048. Add upgrade tests and fix upgrade from 0.22 with corrupt image.
  4949. (todd)
  4950. HDFS-2027. Image inspector should return finalized logs before unfinalized
  4951. logs. (todd)
  4952. HDFS-2074. Determine edit log validity by truly reading and validating
  4953. transactions. (todd)
  4954. HDFS-2085. Finalize in-progress edit logs at startup. (todd)
  4955. HDFS-2026. SecondaryNameNode should properly handle the case where the
  4956. NameNode is reformatted. (todd)
  4957. HDFS-2077. Address checkpoint upload when one of the storage dirs is failed
  4958. (todd)
  4959. HDFS-2078. NameNode should not clear directory when restoring removed
  4960. storage. (todd)
  4961. HDFS-2088. Move edits log archiving logic into FSEditLog/JournalManager
  4962. (todd)
  4963. HDFS-2093. Handle case where an entirely empty log is left during NN crash
  4964. (todd)
  4965. HDFS-2102. Zero-pad edits filename to make them lexically sortable. (Ivan
  4966. Kelly via todd)
  4967. HDFS-2010. Fix NameNode to exit if all edit streams become inaccessible.
  4968. (atm via todd)
  4969. HDFS-2123. Checkpoint interval should be based on txn count, not size.
  4970. (todd)
  4971. HDFS-1979. Fix backupnode for new edits/image layout. (todd)
  4972. HDFS-2101. Fix remaining unit tests for new storage filenames. (todd)
  4973. HDFS-2133. Address remaining TODOs and pre-merge cleanup on HDFS-1073
  4974. branch. (todd)
  4975. HDFS-1780. Reduce need to rewrite FSImage on startup. (todd)
  4976. HDFS-2104. Add a flag to the 2NN to format its checkpoint dirs on startup.
  4977. (todd)
  4978. HDFS-2135. Fix regression of HDFS-1955 in HDFS-1073 branch. (todd)
  4979. HDFS-2160. Fix CreateEditsLog test tool in HDFS-1073 branch. (todd)
  4980. HDFS-2168. Reenable TestEditLog.testFailedOpen and fix exposed bug. (todd)
  4981. HDFS-2169. Clean up TestCheckpoint and remove TODOs (todd)
  4982. HDFS-2170. Address remaining TODOs in HDFS-1073 branch. (todd)
  4983. HDFS-2172. Address findbugs and javadoc warnings in HDFS-1073 branch.
  4984. (todd)
  4985. HDFS-2445. Ensure failed tests exit with proper error code. (Jonathan
  4986. Eagles via acmurthy)
  4987. Release 0.22.1 - Unreleased
  4988. INCOMPATIBLE CHANGES
  4989. NEW FEATURES
  4990. IMPROVEMENTS
  4991. OPTIMIZATIONS
  4992. HDFS-2718. Optimize OP_ADD in edits loading. (shv)
  4993. HDFS-2886. CreateEditLogs should generate a realistic edit log. (shv)
  4994. BUG FIXES
  4995. HDFS-2877. If locking of a storage dir fails, it will remove the other
  4996. NN's lock file on exit. (todd)
  4997. Release 0.22.0 - 2011-11-29
  4998. INCOMPATIBLE CHANGES
  4999. HDFS-1825. Remove thriftfs contrib. (nigel via eli)
  5000. NEW FEATURES
  5001. HDFS-992. Re-factor block access token implementation to conform to the
  5002. generic Token interface in Common (Kan Zhang and Jitendra Pandey via jghoman)
  5003. HDFS-599. Allow NameNode to have a seprate port for service requests from
  5004. client requests. (Dmytro Molkov via hairong)
  5005. HDFS-1004. Update NN to support Kerberized SSL from HADOOP-6584.
  5006. (jghoman and Kan Zhang via jghoman)
  5007. HDFS-1005. Fsck security. (borya and Kan Zhang via jghoman)
  5008. HDFS-1006. getImage/putImage http requests should be https for the case
  5009. of security enabled. (borya and jghoman via jghoman)
  5010. HDFS-1033. In secure clusters, NN and SNN should verify that the remote
  5011. principal during image and edits transfer. (jghoman)
  5012. HDFS-1023. Allow http server to start as regular principal if https
  5013. principal not defined. (jghoman)
  5014. HDFS-1150. Verify datanodes' identities to clients in secure clusters.
  5015. (jghoman)
  5016. HDFS-1330. Make RPCs to DataNodes timeout. (hairong)
  5017. Added additional unit tests per HADOOP-6889. (John George via mattf)
  5018. HDFS-202. HDFS support of listLocatedStatus introduced in HADOOP-6870.
  5019. HDFS piggyback block locations to each file status when listing a
  5020. directory. (hairong)
  5021. HDFS-1361. Add -fileStatus operation to NNThroughputBenchmark. (shv)
  5022. HDFS-1435. Provide an option to store fsimage compressed. (hairong)
  5023. HDFS-903. Support fsimage validation through MD5 checksum. (hairong)
  5024. HDFS-1457. Provide an option to throttle image transmission between
  5025. pimary and secondary NameNodes. (Yifei Lu and hairong via hairong)
  5026. HDFS-1164. TestHdfsProxy is failing. (Todd Lipcon via cos)
  5027. HDFS-811. Add metrics, failure reporting and additional tests for HDFS-457.
  5028. (eli)
  5029. HDFS-895. Allow hflush/sync to occur in parallel with new writes
  5030. to the file. (Todd Lipcon via hairong)
  5031. HDFS-528. Add ability for safemode to wait for a minimum number of
  5032. live datanodes (Todd Lipcon via eli)
  5033. HDFS-1753. Resource Leak in StreamFile. (Uma Maheswara Rao G via eli)
  5034. IMPROVEMENTS
  5035. HDFS-1304. Add a new unit test for HftpFileSystem.open(..). (szetszwo)
  5036. HDFS-1096. fix for prev. commit. (boryas)
  5037. HDFS-1096. allow dfsadmin/mradmin refresh of superuser proxy group
  5038. mappings (boryas)
  5039. HDFS-1146. Javadoc for getDelegationTokenSecretManager in FSNamesystem (jnp via boryas)
  5040. HDFS-1132. Refactor TestFileStatus (Eli Collins via cos)
  5041. HDFS-1163. normalize property names for JT/NN kerberos principal
  5042. names in configuration (from HADOOP 6633) (boryas)
  5043. HDFS-1003. authorization checks for inter-server protocol
  5044. (based on HADOOP-6600) (boryas)
  5045. HDFS-1061. Memory footprint optimization for INodeFile object.
  5046. (Bharath Mundlapudi via jghoman)
  5047. HDFS-1079. Throw exceptions as specified by the AbstractFileSystem
  5048. in HDFS implemenation and protocols. (suresh)
  5049. HDFS-1112. Edit log buffer should not grow unfoundedly. (hairong)
  5050. HDFS-1119. Introduce a GSet interface to BlocksMap. (szetszwo)
  5051. HDFS-1184. Replace tabs in code with spaces. (Jeff Ames via jghoman)
  5052. HDFS-1185. Remove duplicate now() functions in DataNode, FSNamesysetm.
  5053. (Jeff Ames via jghoman)
  5054. HDFS-1183. Remove some duplicate code in NamenodeJspHelper.java.
  5055. (Jeff Ames via jghoman)
  5056. HDFS-1190. Remove unused getNamenode() method from DataNode.
  5057. (Jeff Ames via jghoman)
  5058. HDFS-1110. Reuses objects for commonly used file names in namenode to
  5059. reduce the heap usage. (suresh)
  5060. HDFS-752. Add interfaces classification to to HDFS source code. (suresh)
  5061. HDFS-947. An Hftp read request is redirected to a datanode that has
  5062. the most replicas of the blocks in the file. (Dmytro Molkov via dhruba)
  5063. HDFS-1272. Fixes to take care of the changes in HADOOP-6845.
  5064. (Jitendra Pandey via ddas)
  5065. HDFS-1298 - Add support in HDFS for new statistics added in FileSystem
  5066. to track the file system operations. (suresh)
  5067. HDFS-1201. The HDFS component for HADOOP-6632.
  5068. (Kan Zhang & Jitendra Pandey via ddas)
  5069. HDFS-1307 Add start time, end time and total time taken for FSCK to
  5070. FSCK report (suresh)
  5071. HDFS-1302. The HDFS side of the changes corresponding to HADOOP-6861.
  5072. (Jitendra Pandey & Owen O'Malley via ddas)
  5073. HDFS-1315. Add fsck event to audit log and remove other audit log events
  5074. corresponding to FSCK listStatus and open calls. (suresh)
  5075. HDFS-1178. The NameNode servlets should not use RPC to connect to the
  5076. NameNode. (Kan Zhang via jghoman)
  5077. HDFS-1130. Adds dfs.cluster.administrator ACL configuration that can
  5078. be used to control who can view the default hdfs servlets. (ddas)
  5079. HDFS-1297. Fix some comments. (Jeff Ames via jghoman)
  5080. HDFS-330. Datanode Web UIs should provide robots.txt.
  5081. (Allen Wittenauer via jghoman)
  5082. HDFS-881. Refactor DataNode Packet header into DataTransferProtocol.
  5083. (Todd Lipcon via jghoman)
  5084. HDFS-1036. docs for fetchdt
  5085. HDFS-1318. Add JMX interface for read access to namenode and datanode
  5086. web UI information. (Tanping Wang via suresh).
  5087. HDFS-1356. Provide information as to whether or not security is
  5088. enabled on web interface for NameNode (boryas)
  5089. HDFS-1205. FSDatasetAsyncDiskService should name its threads.
  5090. (Todd Lipcon via eli)
  5091. HDFS-1111. Introduce getCorruptFileBlocks() for fsck. (Sriram Rao via shv)
  5092. HDFS-1395. Add @Override to FSDataset methods that implement
  5093. FSDatasetInterface methods. (suresh)
  5094. HDFS-1383. Improve the error messages when using hftp://. (szetszwo)
  5095. HDFS-1093. Change the FSNamesystem lock to a read/write lock. (dhruba)
  5096. HDFS-1407. Change DataTransferProtocol methods to use Block instead
  5097. of individual elements of Block. (suresh)
  5098. HDFS-1417. Add @Override to SimulatedFSDataset methods that implement
  5099. FSDatasetInterface methods. (suresh)
  5100. HDFS-1426. Remove unused method BlockInfo#listCount. (hairong)
  5101. HDFS-1472. Allow programmatic access to fsck output.
  5102. (Ramkumar Vadali via dhruba)
  5103. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  5104. latest test-patch.sh script (gkesavan)
  5105. HDFS-1462. Refactor edit log loading to a separate class from edit log writing.
  5106. (Todd Lipcon via eli)
  5107. HDFS-1485. Fix typo in BlockPlacementPolicy. (Jingguo Yao via shv)
  5108. HDFS-1035. Generate Eclipse's .classpath file from Ivy config. (nigel)
  5109. HDFS-1408. Herriot NN and DN clients should vend statistics. (cos)
  5110. HDFS-1491 Update Hdfs to match the change of methods from protected to public
  5111. in AbstractFileSystem (Hadoop-6903) (sanjay)
  5112. HDFS-1160. Improve some FSDataset warnings and comments. (eli)
  5113. HDFS-556. Provide info on failed volumes in the web ui. (eli)
  5114. HDFS-697. Enable asserts for tests by default. (eli)
  5115. HDFS-1187. Modify fetchdt to allow renewing and canceling token.
  5116. (Owen O'Malley and Kan Zhang via jghoman)
  5117. HDFS-1387. Update HDFS permissions guide for security. (Todd Lipcon via eli)
  5118. HDFS-455. Make NN and DN handle in a intuitive way comma-separated
  5119. configuration strings. (Michele Catasta via eli)
  5120. HDFS-1071. savenamespace should write the fsimage to all configured
  5121. fs.name.dir in parallel (Dmytro Molkov via jghoman)
  5122. HDFS-1055. Improve thread naming for DataXceivers.
  5123. (Todd Lipcon and Ramkumar Vadali via eli).
  5124. HDFS-718. Configuration parameter to prevent accidental formatting of
  5125. HDFS filesystem. (Andrew Ryan via jghoman)
  5126. HDFS-1500. TestOfflineImageViewer failing on trunk. (Todd Lipcon
  5127. via hairong)
  5128. HDFS-1483. DFSClient.getBlockLocations should indicate if corresponding
  5129. blocks are corrupt. (Patrick Kling via hairong)
  5130. HDFS-259. Remove intentionally corrupt 0.13 directory layout creation.
  5131. (Todd Lipcon via eli)
  5132. HDFS-1513. Fix a number of warnings. (eli)
  5133. HDFS-1473. Refactor storage management into separate classes than fsimage
  5134. file reading/writing. (Todd Lipcon via eli)
  5135. HDFS-1582. Remove auto-generated native build files. (rvs via eli)
  5136. HDFS-1456. Provide builder for constructing instances of MiniDFSCluster.
  5137. (jghoman)
  5138. HDFS-1861. Rename dfs.datanode.max.xcievers and bump its default value.
  5139. (eli)
  5140. HDFS-1052. HDFS Federation - Merge of umbrella jira changes from
  5141. HDFS-1052 branch into trunk.
  5142. HDFS-1835. DataNode should not depend on SHA1PRNG secure random generator
  5143. to generate a storage ID. (John Carrino via todd)
  5144. HDFS-1947. DFSClient should use mapreduce.task.attempt.id. (eli)
  5145. HDFS-1957. Add documentation for HFTP. (Ari Rabkin via todd)
  5146. HDFS-1454. Update the documentation to reflect that clients don't write
  5147. blocks to local disk before copying to HDFS. (Harsh J Chouraria via todd)
  5148. HDFS-1980. Move build/webapps deeper in the build directory heirarchy
  5149. to aid eclipse users. (todd)
  5150. HDFS-1619. Remove AC_TYPE* from the libhdfs. (Roman Shaposhnik via eli)
  5151. HDFS-1948 Forward port 'hdfs-1520 lightweight namenode operation to
  5152. trigger lease recovery' (stack)
  5153. HDFS-1954. Improved corrupt files warning on NameNode web UI.
  5154. (Patrick Hunt via shv)
  5155. HDFS-1409. BackupNode registration throwing
  5156. UnsupportedActionException("register") instead of "journal".
  5157. (Ching-Shen Chen via shv)
  5158. HDFS-2054 BlockSender.sendChunk() prints ERROR for connection closures
  5159. encountered during transferToFully() (Kihwal Lee via stack)
  5160. OPTIMIZATIONS
  5161. HDFS-1140. Speedup INode.getPathComponents. (Dmytro Molkov via shv)
  5162. HDFS-1081. Performance regression in
  5163. DistributedFileSystem::getFileBlockLocations in secure systems (jghoman)
  5164. HDFS-1114. Implement LightWeightGSet for BlocksMap in order to reduce
  5165. NameNode memory footprint. (szetszwo)
  5166. HDFS-1320. Add LOG.isDebugEnabled() guard for each LOG.debug(..).
  5167. (Erik Steffl via szetszwo)
  5168. HDFS-1368. Add a block counter to DatanodeDescriptor. (hairong)
  5169. HDFS-1434. Refactor Datanode#startDataNode method into smaller methods.
  5170. (suresh)
  5171. HDFS-941. The DFS client should cache and reuse open sockets to datanodes
  5172. while performing reads. (bc Wong and Todd Lipcon via todd)
  5173. BUG FIXES
  5174. HDFS-1039. Adding test for JspHelper.getUGI(jnp via boryas)
  5175. HDFS-1019. Incorrect default values for delegation tokens in
  5176. hdfs-default.xml (jnp via boryas)
  5177. HDFS-1039. Service should be set in the token in JspHelper.getUGI(jnp via boryas)
  5178. HDFS-1038. FIX. A test missed in a previous commit for this JIRA. (boryas)
  5179. HDFS-1038. In nn_browsedfscontent.jsp fetch delegation token only
  5180. if security is enabled. (jnp via boryas)
  5181. HDFS-1044. Cannot submit mapreduce job from secure client to
  5182. unsecure sever (boryas)
  5183. HDFS-1021. specify correct server principal for RefreshAuthorizationPolicyProtocol
  5184. and RefreshUserToGroupMappingsProtocol protocols in DFSAdmin (for HADOOP-6612) (boryas)
  5185. HDFS-970. fsync fsimage to disk before closing fsimage file.
  5186. (Todd Lipcon via dhruba)
  5187. HDFS-1027. Update copyright year to 2010. (Ravi Phulari via jghoman)
  5188. HDFS-1080. SecondaryNameNode image transfer should use the defined http
  5189. address rather than local ip address. (jghoman)
  5190. HDFS-1198. Resolving cross-realm principals. (Jitendra Pandey via jghoman)
  5191. HDFS-1118. Fix socketleak on DFSClient. (Zheng Shao via dhruba)
  5192. HDFS-1192. refreshSuperUserGroupsConfiguration should use server side
  5193. configuration for the refresh (for HADOOP-6815) (boryas)
  5194. HDFS-1036. in DelegationTokenFetch dfs.getURI returns no port (boryas)
  5195. HDFS-1017. browsedfs jsp should call JspHelper.getUGI rather
  5196. than using createRemoteUser() (jnp via boryas)
  5197. HDFS-1250. Namenode should reject block reports and block received
  5198. requests from dead datanodes (suresh)
  5199. HDFS-1145. When NameNode is shutdown it does not try to exit
  5200. safemode anymore. (dhruba)
  5201. HDFS-1202. DataBlockScanner throws NPE when updated before
  5202. initialized. (Todd Lipcon via dhruba)
  5203. HDFS-882. Datanode logs the hostname and port its listening on.
  5204. (Steve Loughran via dhruba)
  5205. HDFS-1238. ant eclipse-files has drifted again, (jghoman)
  5206. HDFS-1045. In secure clusters, re-login is necessary for https
  5207. clients before opening connections. (jghoman)
  5208. HDFS-1289. Datanode secure mode is broken. (Kan Zhang via jghoman)
  5209. HDFS-1007. HFTP needs to be updated to use delegation tokens (boryas)
  5210. HDFS-1085. HFTP read may fail silently on the client side if there is an
  5211. exception on the server side. (szetszwo)
  5212. HDFS-1308. job conf key for the services name of DelegationToken for HFTP
  5213. url is constructed incorrectly in HFTPFileSystem (boryas)
  5214. HDFS-1319. Fix location of re-login for secondary namenode from HDFS-999.
  5215. (jghoman)
  5216. HDFS-1317. Remove the FILEPATH_PATTERN from hdfsproxy.AuthorizationFilter.
  5217. (Rohini Palaniswamy via szetszwo)
  5218. HDFS-912. sed in build.xml on Solaris fails. (Allen Wittenauer via jghoman)
  5219. HDFS-1296. using delegation token over hftp for long running
  5220. clients (boryas)
  5221. HDFS-1334. open in HftpFileSystem does not add delegation tokens to the url.
  5222. (Jitendra Pandey via jghoman)
  5223. HDFS-1301. TestHDFSProxy need to use server side conf for ProxyUser
  5224. stuff. (boryas)
  5225. HDFS-1340. When security is turned off, there is a potential XSS attack.
  5226. This patch fixes it by removing delegationtoken string from the URL,
  5227. before returning a response to the client. (Jitendra Pandey via ddas)
  5228. HDFS-1347. TestDelegationToken uses mortbay.log for logging (boryas)
  5229. HDFS-1157. Modifications introduced by HDFS-1150 are breaking aspect's
  5230. bindings (cos)
  5231. HDFS-1349. Remove empty java files. (Eli Collins)
  5232. HDFS-1340. A null delegation token is appended to the url if security
  5233. is disabled when browsing filesystem. (boryas)
  5234. HDFS-1352. Fix jsvc.location. (Eli Collins via jghoman)
  5235. HDFS-1284. TestBlockToken fails. (Kan Zhang via jghoman)
  5236. HDFS-1355. ant veryclean (clean-cache) doesn't clean enough.
  5237. (Luke Lu via jghoman)
  5238. HDFS-1353. Remove most of getBlockLocation optimization. (jghoman)
  5239. HDFS-1369. Invalid javadoc reference in FSDatasetMBean.java (Eli Collins)
  5240. HDFS-829. hdfsJniHelper.c: #include <error.h> is not portable.
  5241. (Allen Wittenauer via jghoman)
  5242. HDFS-1310. The ClientDatanodeProtocol proxy should be stopped in
  5243. DFSInputStream.readBlockLength(..). (sam rash via szetszwo)
  5244. HDFS-1357. HFTP traffic served by DataNode shouldn't use service port
  5245. on NameNode. (Kan Zhang via jghoman)
  5246. HDFS-1419. HDFS Federation: Three test cases need minor modification after
  5247. the new block id change (Tanping Wang via suresh)
  5248. HDFS-96. HDFS supports blocks larger than 2 GB.
  5249. (Patrick Kling via dhruba)
  5250. HDFS-1433. Fix test failures - TestPread and TestFileLimit. (suresh)
  5251. HDFS-1364. Makes long running HFTP-based applications do relogins
  5252. if necessary. (Jitendra Pandey via ddas)
  5253. HDFS-1399. Distinct minicluster services (e.g. NN and JT) overwrite each
  5254. other's service policies. (Aaron T. Myers via tomwhite)
  5255. HDFS-1440. Fix TestComputeInvalidateWork failure. (suresh)
  5256. HDFS-1498. FSDirectory#unprotectedConcat calls setModificationTime
  5257. on a file. (eli)
  5258. HDFS-1625. Ignore disk space values in TestDataNodeMXBean. (szetszwo)
  5259. HDFS-1850. DN should transmit absolute failed volume count rather than
  5260. increments to the NN. (eli)
  5261. HDFS-671. Documentation change for updated configuration keys.
  5262. (tomwhite via eli)
  5263. HDFS-1544. Ivy resolve force mode should be turned off by default.
  5264. (Luke Lu via tomwhite)
  5265. HDFS-1615. seek() on closed DFS input stream throws NullPointerException
  5266. (Scott Carey via todd)
  5267. HDFS-1897. Documentation refers to removed option dfs.network.script
  5268. (Andrew Whang via todd)
  5269. HDFS-1621. Fix references to hadoop-common-${version} in build.xml
  5270. (Jolly Chen via todd)
  5271. HDFS-1505. saveNamespace appears to succeed even if all directories fail
  5272. to save. (Aaron T. Myers via todd)
  5273. HDFS-1921. saveNamespace can cause NN to be unable to come up on restart
  5274. (Matt Foley via todd)
  5275. HDFS-1925. SafeModeInfo should use the correct constant instead of a
  5276. hard-coded value for its default. (Joey Echeverria via todd)
  5277. HDFS-1575. Viewing block from web UI is broken. (Aaron T. Myers via todd)
  5278. HDFS-1932. Ensure that HDFS configuration deprecations are set up in every
  5279. spot that HDFS configurations are loaded. (Jolly Chen via todd)
  5280. HDFS-1952. FSEditLog.open() appears to succeed even if all EDITS
  5281. directories fail. (Andrew Wang via todd)
  5282. HDFS-1965. IPCs done using block token-based tickets can't reuse
  5283. connections (todd)
  5284. HDFS-1978. All but first option in LIBHDFS_OPTS is ignored. (eli)
  5285. HDFS-1964. Fix incorrect HTML unescaping in DatanodeJspHelper
  5286. (Aaron T. Myers via todd)
  5287. HDFS-1997. Image transfer process misreports client side exceptions.
  5288. (todd via eli)
  5289. HDFS-2000. Missing deprecation for io.bytes.per.checksum.
  5290. (Aaron T. Myers vie eli)
  5291. HDFS-977. DataNode.createInterDataNodeProtocolProxy() guards a log
  5292. at the wrong level. (Harsh J Chouraria via todd)
  5293. HDFS-1969. Running rollback on new-version namenode destroys the
  5294. namespace. (todd)
  5295. HDFS-2039. TestNameNodeMetrics uses a bad test root path, preventing it
  5296. from running inside Eclipse. (todd)
  5297. HDFS-988. saveNamespace race can corrupt the edits log. (eli)
  5298. HDFS-2071. Use of isConnected() in DataXceiver is invalid. (Kihwal Lee
  5299. via todd)
  5300. HDFS-1981. NameNode does not saveNamespace() when editsNew is empty.
  5301. (Uma Maheswara Rao G via shv)
  5302. HDFS-2258. Reset lease limits to default values in TestLeaseRecovery2. (shv)
  5303. HDFS-2232. Generalize regular expressions in TestHDFSCLI.
  5304. (Plamen Jeliazkov via shv)
  5305. HDFS-2290. Block with corrupt replica is not getting replicated.
  5306. (Benoy Antony via shv)
  5307. HDFS-2012. Balancer incorrectly treats nodes whose utilization equals
  5308. avgUtilization. (Uma Maheswara Rao G via shv)
  5309. HDFS-2491. TestBalancer can fail when datanode utilization and
  5310. avgUtilization is exactly same. (Uma Maheswara Rao G via shv)
  5311. HDFS-2452. OutOfMemoryError in DataXceiverServer takes down the DataNode
  5312. (Uma Maheswara Rao via cos)
  5313. HDFS-2002. Incorrect computation of needed blocks in getTurnOffTip().
  5314. (Plamen Jeliazkov via shv)
  5315. HDFS-2573. TestFiDataXceiverServer is failing, not testing OOME (cos)
  5316. HDFS-2514. Link resolution bug for intermediate symlinks with
  5317. relative targets. (eli)
  5318. HDFS-1786. Some cli test cases expect a "null" message
  5319. (Uma Maheswara Rao G via todd)
  5320. HDFS-1855. TestDatanodeBlockScanner.testBlockCorruptionRecoveryPolicy()
  5321. part 2 fails in two different ways. (Matt Foley via eli)
  5322. HDFS-2346. TestHost2NodesMap & TestReplicasMap will fail depending upon
  5323. execution order of test methods (Laxman, Uma Maheswara Rao G via shv)
  5324. HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)
  5325. Release 0.21.1 - Unreleased
  5326. HDFS-1466. TestFcHdfsSymlink relies on /tmp/test not existing. (eli)
  5327. HDFS-874. TestHDFSFileContextMainOperations fails on weirdly
  5328. configured DNS hosts. (Todd Lipcon via eli)
  5329. HDFS-1507. TestAbandonBlock should abandon a block. (eli)
  5330. HDFS-1487. FSDirectory.removeBlock() should update diskspace count
  5331. of the block owner node (Zhong Wang via eli).
  5332. HDFS-1467. Append pipeline never succeeds with more than one replica.
  5333. (Todd Lipcon via eli)
  5334. HDFS-1167. New property for local conf directory in system-test-hdfs.xml
  5335. file. (Vinay Thota via cos)
  5336. HDFS-1503. TestSaveNamespace fails. (Todd Lipcon via cos)
  5337. HDFS-1524. Image loader should make sure to read every byte in image file.
  5338. (hairong)
  5339. HDFS-1523. TestLargeBlock is failing on trunk. (cos)
  5340. HDFS-1502. TestBlockRecovery triggers NPE in assert. (hairong via cos)
  5341. HDFS-1532. Exclude Findbugs warning in FSImageFormat$Saver. (Todd Lipcon
  5342. via cos)
  5343. HDFS-1527. SocketOutputStream.transferToFully fails for blocks >= 2GB on
  5344. 32 bit JVM. (Patrick Kling via cos)
  5345. HDFS-1531. Clean up stack traces due to duplicate MXBean registration.
  5346. (Todd Lipcon via cos)
  5347. HDFS-613. TestBalancer and TestBlockTokenWithDFS fail Balancer assert.
  5348. (Todd Lipcon via cos)
  5349. HDFS-1511. 98 Release Audit warnings on trunk and branch-0.22.
  5350. (jghoman)
  5351. HDFS-1560. dfs.data.dir permissions should default to 700.
  5352. (Todd Lipcon via eli)
  5353. HDFS-1550. NPE when listing a file with no location. (hairong)
  5354. HDFS-1542. Add test for HADOOP-7082, a deadlock writing Configuration to
  5355. HDFS. (todd)
  5356. HDFS-1504. FSImageSaver should catch all exceptions, not just IOE. (todd)
  5357. HDFS-884. DataNode throws IOException if all data directories are
  5358. unavailable. (Steve Loughran and shv)
  5359. HDFS-1591. HDFS part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  5360. HDFS-900. Corrupt replicas are not processed correctly in block report (shv)
  5361. HDFS-1529. Incorrect handling of interrupts in waitForAckedSeqno can cause
  5362. deadlock (todd)
  5363. HDFS-1597. Batched edit log syncs can reset synctxid and throw assertions
  5364. (todd)
  5365. HDFS-1602. Fix HADOOP-4885 for it is doesn't work as expected. (boryas)
  5366. HDFS-1618. configure files that are generated as part of the released
  5367. tarball need to have executable bit set (Roman Shaposhnik via cos)
  5368. HDFS-981. test-contrib fails due to test-cactus failure (cos)
  5369. HDFS-1001. DataXceiver and BlockReader disagree on when to send/recv
  5370. CHECKSUM_OK. (bc Wong via eli)
  5371. HDFS-1781. Fix the path for jsvc in bin/hdfs. (John George via szetszwo)
  5372. HDFS-1782. Fix an NPE in FSNamesystem.startFileInternal(..).
  5373. (John George via szetszwo)
  5374. HDFS-1821. Fix username resolution in NameNode.createSymlink(..) and
  5375. FSDirectory.addSymlink(..). (John George via szetszwo)
  5376. HDFS-1806. TestBlockReport.blockReport_08() and _09() are timing-dependent
  5377. and likely to fail on fast servers. (Matt Foley via eli)
  5378. HDFS-1845. Symlink comes up as directory after namenode restart.
  5379. (John George via eli)
  5380. HDFS-1666. Disable failing hdfsproxy test TestAuthorizationFilter (todd)
  5381. HDFS-1823. start-dfs.sh script fails if HADOOP_HOME is not set.
  5382. (tomwhite via eli)
  5383. Release 0.21.1 - Unreleased
  5384. HDFS-1411. Correct backup node startup command in hdfs user guide.
  5385. (Ching-Shen Chen via shv)
  5386. BUG FIXES
  5387. HDFS-1363. Eliminate second synchronized sections in appendFile(). (shv)
  5388. HDFS-1413. Fix broken links to HDFS Wiki. (shv)
  5389. HDFS-1420. Clover build doesn't generate per-test coverage (cos)
  5390. HDFS-1444. Test related code of build.xml is error-prone and needs to be
  5391. re-aligned. (cos)
  5392. HDFS-1343. Instrumented build should be concentrated in one build area (cos)
  5393. HDFS-1452. ant compile-contrib is broken (cos)
  5394. HDFS-1474. ant binary-system is broken (cos)
  5395. HDFS-1292. Allow artifacts to be published to the staging Apache Nexus
  5396. Maven Repository. (Giridharan Kesavan via tomwhite)
  5397. HDFS-1552. Remove java5 dependencies from build. (cos)
  5398. HDFS-1189. Quota counts missed between clear quota and set quota.
  5399. (John George via szetszwo)
  5400. HDFS-1665. Balancer misuses dfs.heartbeat.interval as milliseconds.
  5401. (szetszwo)
  5402. HDFS-1728. SecondaryNameNode.checkpointSize is in bytes but not in MB.
  5403. (szetszwo)
  5404. HDFS-1206. TestFiHFlush fails intermittently. (cos)
  5405. HDFS-1548. Fault-injection tests are executed multiple times if invoked
  5406. with run-test-hdfs-fault-inject target (cos)
  5407. HDFS-1552. Remove java5 dependencies from build. (cos)
  5408. HDFS-996. JUnit tests should never depend on anything in conf (cos)
  5409. HDFS-1612. Update HDFS design documentation for append, quota, symlink,
  5410. block placement and checkpoint/backup node features. (Joe Crobak
  5411. via szetszwo)
  5412. HDFS-1596. Replace fs.checkpoint.* with dfs.namenode.checkpoint.*
  5413. in documentations. (Harsh J Chouraria via szetszwo)
  5414. Release 0.21.0 - 2010-08-13
  5415. INCOMPATIBLE CHANGES
  5416. HDFS-538. Per the contract elucidated in HADOOP-6201, throw
  5417. FileNotFoundException from FileSystem::listStatus rather than returning
  5418. null. (Jakob Homan via cdouglas)
  5419. HDFS-602. DistributedFileSystem mkdirs throws FileAlreadyExistsException
  5420. instead of FileNotFoundException. (Boris Shkolnik via suresh)
  5421. HDFS-544. Add a "rbw" subdir to DataNode data directory. (hairong)
  5422. HDFS-576. Block report includes under-construction replicas. (shv)
  5423. HDFS-636. SafeMode counts complete blocks only. (shv)
  5424. HDFS-644. Lease recovery, concurrency support. (shv)
  5425. HDFS-570. Get last block length from a data-node when opening a file
  5426. being written to. (Tsz Wo (Nicholas), SZE via shv)
  5427. HDFS-657. Remove unused legacy data-node protocol methods. (shv)
  5428. HDFS-658. Block recovery for primary data-node. (shv)
  5429. HDFS-660. Remove deprecated methods from InterDatanodeProtocol. (shv)
  5430. HDFS-512. Block.equals() and compareTo() compare blocks based
  5431. only on block Ids, ignoring generation stamps. (shv)
  5432. HDFS-873. Configuration specifies data-node storage directories as URIs.
  5433. (shv)
  5434. HDFS-905. Use the new UserGroupInformation from HDFS-6299.
  5435. (jghoman via omalley)
  5436. HDFS-984. Persistent delegation tokens. (Jitendra Pandey via shv)
  5437. HDFS-1016. HDFS side change for HADOOP-6569. This jira changes the
  5438. error message on the screen when cat a directory or a
  5439. non-existent file. (hairong)
  5440. NEW FEATURES
  5441. HDFS-1134. Large-scale Automated Framework. (cos)
  5442. HDFS-436. Introduce AspectJ framework for HDFS code and tests.
  5443. (Konstantin Boudnik via szetszwo)
  5444. HDFS-447. Add LDAP lookup to hdfsproxy. (Zhiyong Zhang via cdouglas)
  5445. HDFS-459. Introduce Job History Log Analyzer. (shv)
  5446. HDFS-461. Tool to analyze file size distribution in HDFS. (shv)
  5447. HDFS-492. Add two JSON JSP pages to the Namenode for providing corrupt
  5448. blocks/replicas information. (Bill Zeller via szetszwo)
  5449. HDFS-578. Add support for new FileSystem method for clients to get server
  5450. defaults. (Kan Zhang via suresh)
  5451. HDFS-595. umask settings in configuration may now use octal or symbolic
  5452. instead of decimal. (Jakob Homan via suresh)
  5453. HADOOP-6234. Updated hadoop-core and test jars to propagate new option
  5454. dfs.umaskmode in configuration. (Jakob Homan via suresh)
  5455. HDFS-235. Add support for byte ranges in HftpFileSystem to serve
  5456. range of bytes from a file. (Bill Zeller via suresh)
  5457. HDFS-385. Add support for an experimental API that allows a module external
  5458. to HDFS to specify how HDFS blocks should be placed. (dhruba)
  5459. HADOOP-4952. Update hadoop-core and test jars to propagate new FileContext
  5460. file system application interface. (Sanjay Radia via suresh).
  5461. HDFS-567. Add block forensics contrib tool to print history of corrupt and
  5462. missing blocks from the HDFS logs.
  5463. (Bill Zeller, Jitendra Nath Pandey via suresh).
  5464. HDFS-610. Support o.a.h.fs.FileContext. (Sanjay Radia via szetszwo)
  5465. HDFS-536. Support hflush at DFSClient. (hairong)
  5466. HDFS-517. Introduce BlockInfoUnderConstruction to reflect block replica
  5467. states while writing. (shv)
  5468. HDFS-565. Introduce block committing logic during new block allocation
  5469. and file close. (shv)
  5470. HDFS-537. DataNode exposes a replica's meta info to BlockReceiver for the
  5471. support of dfs writes/hflush. It also updates a replica's bytes received,
  5472. bytes on disk, and bytes acked after receiving a packet. (hairong)
  5473. HDFS-585. Datanode should serve up to visible length of a replica for read
  5474. requests. (szetszwo)
  5475. HDFS-604. Block report processing for append. (shv)
  5476. HDFS-619. Support replica recovery initialization in datanode for the new
  5477. append design. (szetszwo)
  5478. HDFS-592. Allow clients to fetch a new generation stamp from NameNode for
  5479. pipeline recovery. (hairong)
  5480. HDFS-624. Support a new algorithm for pipeline recovery and pipeline setup
  5481. for append. (hairong)
  5482. HDFS-627. Support replica update in data-node.
  5483. (Tsz Wo (Nicholas), SZE and Hairong Kuang via shv)
  5484. HDFS-642. Support pipeline close and close error recovery. (hairong)
  5485. HDFS-631. Rename configuration keys towards API standardization and
  5486. backward compatibility. (Jitendra Nath Pandey via suresh)
  5487. HDFS-669. Add unit tests framework (Mockito) (cos, Eli Collins)
  5488. HDFS-731. Support new Syncable interface in HDFS. (hairong)
  5489. HDFS-702. Add HDFS implementation of AbstractFileSystem.
  5490. (Sanjay Radio via suresh)
  5491. HDFS-758. Add decommissioning status page to Namenode Web UI.
  5492. (Jitendra Nath Pandey via suresh)
  5493. HDFS-814. Add an api to get the visible length of a DFSDataInputStream.
  5494. (szetszwo)
  5495. HDFS-654. Add support new atomic rename functionality in HDFS for
  5496. supporting rename in FileContext. (suresh)
  5497. HDFS-222. Support for concatenating of files into a single file
  5498. without copying. (Boris Shkolnik via hairong)
  5499. HDFS-933. Adds Delegation token based authentication in the NameNode.
  5500. (Kan Zhang via ddas)
  5501. HDFS-935. Adds a real user component in Delegation token.
  5502. (Jitendra Nath Pandey via ddas)
  5503. HDFS-245. Adds a symlink implementation to HDFS. This complements the new
  5504. symlink feature added in HADOOP-6421 (Eli Collins via Sanjay Radia)
  5505. HDFS-1009. Support Kerberos authorization in HDFSProxy. (Srikanth
  5506. Sundarrajan via szetszwo)
  5507. HDFS-1091. Implement listStatus that returns an iterator of FileStatus.
  5508. (hairong)
  5509. IMPROVEMENTS
  5510. HDFS-381. Remove blocks from DataNode maps when corresponding file
  5511. is deleted. (Suresh Srinivas via rangadi)
  5512. HDFS-377. Separate codes which implement DataTransferProtocol.
  5513. (szetszwo)
  5514. HDFS-396. NameNode image and edits directories are specified as URIs.
  5515. (Luca Telloli via rangadi)
  5516. HDFS-444. Allow to change probability levels dynamically in the fault
  5517. injection framework. (Konstantin Boudnik via szetszwo)
  5518. HDFS-352. Documentation for saveNamespace command. (Ravi Phulari via shv)
  5519. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  5520. build #12. (Giridharan Kesavan)
  5521. HDFS-204. Add a new metrics FilesInGetListingOps to the Namenode.
  5522. (Jitendra Nath Pandey via szetszwo)
  5523. HDFS-278. HDFS Outputstream close does not hang forever. (dhruba)
  5524. HDFS-443. Add a new metrics numExpiredHeartbeats to the Namenode.
  5525. (Jitendra Nath Pandey via szetszwo)
  5526. HDFS-475. Add new ant targets for fault injection jars and tests.
  5527. (Konstantin Boudnik via szetszwo)
  5528. HDFS-458. Create a new ant target, run-commit-test. (Jakob Homan
  5529. via szetszwo)
  5530. HDFS-493. Change build.xml so that the fault-injected tests are executed
  5531. only by the run-test-*-fault-inject targets. (Konstantin Boudnik via
  5532. szetszwo)
  5533. HDFS-446. Improvements to Offline Image Viewer. (Jakob Homan via shv)
  5534. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  5535. (gkesavan)
  5536. HDFS-501. Use enum to define the constants in DataTransferProtocol.
  5537. (szetszwo)
  5538. HDFS-508. Factor out BlockInfo from BlocksMap. (shv)
  5539. HDFS-510. Rename DatanodeBlockInfo to be ReplicaInfo.
  5540. (Jakob Homan & Hairong Kuang via shv)
  5541. HDFS-500. Deprecate NameNode methods deprecated in NameNodeProtocol.
  5542. (Jakob Homan via shv)
  5543. HDFS-514. Change DFSClient.namenode from public to private. (Bill Zeller
  5544. via szetszwo)
  5545. HDFS-496. Use PureJavaCrc32 in HDFS. (Todd Lipcon via szetszwo)
  5546. HDFS-511. Remove redundant block searches in BlockManager. (shv)
  5547. HDFS-504. Update the modification time of a file when the file
  5548. is closed. (Chun Zhang via dhruba)
  5549. HDFS-498. Add development guide and documentation for the fault injection
  5550. framework. (Konstantin Boudnik via szetszwo)
  5551. HDFS-524. Further DataTransferProtocol code refactoring. (szetszwo)
  5552. HDFS-529. Use BlockInfo instead of Block to avoid redundant block searches
  5553. in BlockManager. (shv)
  5554. HDFS-530. Refactor TestFileAppend* to remove code duplication.
  5555. (Konstantin Boudnik via szetszwo)
  5556. HDFS-451. Add fault injection tests for DataTransferProtocol. (szetszwo)
  5557. HDFS-409. Add more access token tests. (Kan Zhang via szetszwo)
  5558. HDFS-546. DatanodeDescriptor iterates blocks as BlockInfo. (shv)
  5559. HDFS-457. Do not shutdown datanode if some, but not all, volumes fail.
  5560. (Boris Shkolnik via szetszwo)
  5561. HDFS-548. TestFsck takes nearly 10 minutes to run. (hairong)
  5562. HDFS-539. Refactor fault injeciton pipeline test util for future reuse.
  5563. (Konstantin Boudnik via szetszwo)
  5564. HDFS-552. Change TestFiDataTransferProtocol to junit 4 and add a few new
  5565. tests. (szetszwo)
  5566. HDFS-563. Simplify the codes in FSNamesystem.getBlockLocations(..).
  5567. (szetszwo)
  5568. HDFS-581. Introduce an iterator over blocks in the block report array.(shv)
  5569. HDFS-549. Add a new target, run-with-fault-inject-testcaseonly, which
  5570. allows an execution of non-FI tests in FI-enable environment. (Konstantin
  5571. Boudnik via szetszwo)
  5572. HDFS-173. Namenode will not block until a large directory deletion
  5573. completes. It allows other operations when the deletion is in progress.
  5574. (suresh)
  5575. HDFS-551. Create new functional test for a block report. (Konstantin
  5576. Boudnik via hairong)
  5577. HDFS-288. Redundant computation in hashCode() implementation.
  5578. (szetszwo via tomwhite)
  5579. HDFS-412. Hadoop JMX usage makes Nagios monitoring impossible.
  5580. (Brian Bockelman via tomwhite)
  5581. HDFS-472. Update hdfsproxy documentation. Adds a setup guide and design
  5582. document. (Zhiyong Zhang via cdouglas)
  5583. HDFS-617. Support non-recursive create(). (Kan Zhang via szetszwo)
  5584. HDFS-618. Support non-recursive mkdir(). (Kan Zhang via szetszwo)
  5585. HDFS-574. Split the documentation between the subprojects.
  5586. (Corinne Chandel via omalley)
  5587. HDFS-598. Eclipse launch task for HDFS. (Eli Collins via tomwhite)
  5588. HDFS-641. Move all of the components that depend on map/reduce to
  5589. map/reduce. (omalley)
  5590. HDFS-509. Redesign DataNode volumeMap to include all types of Replicas.
  5591. (hairong)
  5592. HDFS-562. Add a test for NameNode.getBlockLocations(..) to check read from
  5593. un-closed file. (szetszwo)
  5594. HDFS-543. Break FSDatasetInterface#writToBlock() into writeToRemporary,
  5595. writeToRBW, ad append. (hairong)
  5596. HDFS-603. Add a new interface, Replica, which is going to replace the use
  5597. of Block in datanode. (szetszwo)
  5598. HDFS-589. Change block write protocol to support pipeline recovery.
  5599. (hairong)
  5600. HDFS-652. Replace BlockInfo.isUnderConstruction() with isComplete() (shv)
  5601. HDFS-648. Change some methods in AppendTestUtil to public. (Konstantin
  5602. Boudnik via szetszwo)
  5603. HDFS-662. Unnecessary info message from DFSClient. (hairong)
  5604. HDFS-518. Create new tests for Append's hflush. (Konstantin Boudnik
  5605. via szetszwo)
  5606. HDFS-688. Add configuration resources to DFSAdmin. (shv)
  5607. HDFS-29. Validate the consistency of the lengths of replica and its file
  5608. in replica recovery. (szetszwo)
  5609. HDFS-680. Add new access method to a copy of a block's replica. (shv)
  5610. HDFS-704. Unify build property names to facilitate cross-projects
  5611. modifications (cos)
  5612. HDFS-705. Create an adapter to access some of package-private methods of
  5613. DataNode from tests (cos)
  5614. HDFS-710. Add actions with constraints to the pipeline fault injection
  5615. tests and change SleepAction to support uniform random sleeping over an
  5616. interval. (szetszwo)
  5617. HDFS-713. Need to properly check the type of the test class from an aspect
  5618. (cos)
  5619. HDFS-716. Define a pointcut for pipeline close and add a few fault
  5620. injection tests to simulate out of memory problem. (szetszwo)
  5621. HDFS-719. Add 6 fault injection tests for pipeline close to simulate slow
  5622. datanodes and disk errors. (szetszwo)
  5623. HDFS-616. Create functional tests for new design of the block report. (cos)
  5624. HDFS-584. Fail the fault-inject build if any advices are mis-bound. (cos)
  5625. HDFS-730. Add 4 fault injection tests to simulate non-responsive datanode
  5626. and out-of-memory problem for pipeline close ack. (szetszwo)
  5627. HDFS-728. Create a comprehensive functional test for append. (hairong)
  5628. HDFS-736. commitBlockSynchronization() updates block GS and length
  5629. in-place. (shv)
  5630. HADOOP-5107. Use Maven ant tasks to publish the subproject jars.
  5631. (Giridharan Kesavan via omalley)
  5632. HDFS-521. Create new tests for pipeline (cos)
  5633. HDFS-764. Places the Block Access token implementation in hdfs project.
  5634. (Kan Zhang via ddas)
  5635. HDFS-787. Upgrade some libraries to be consistent with common and
  5636. mapreduce. (omalley)
  5637. HDFS-519. Create new tests for lease recovery (cos)
  5638. HDFS-804. New unit tests for concurrent lease recovery (cos)
  5639. HDFS-813. Enable the append test in TestReadWhileWriting. (szetszwo)
  5640. HDFS-145. Cleanup inconsistent block length handling code in
  5641. FSNameSystem#addStoredBlock. (hairong)
  5642. HDFS-127. Reset failure count in DFSClient for each block acquiring
  5643. operation. (Igor Bolotin via szetszwo)
  5644. HDFS-520. Create new tests for block recovery. (hairong)
  5645. HDFS-1067. Create block recovery tests that handle errors. (hairong)
  5646. HDFS-1107. Turn on append by default. (shv)
  5647. HDFS-968. Use StringBuilder instead of StringBuffer for better
  5648. performance. (Kay Kay via suresh)
  5649. HDFS-703. Replace current fault injection implementation with one
  5650. from (cos)
  5651. HDFS-754. Reduce ivy console output to observable level (cos)
  5652. HDFS-832. HDFS side of HADOOP-6222. (cos)
  5653. HDFS-840. Change tests to use FileContext test helper introduced in
  5654. HADOOP-6394. (Jitendra Nath Pandey via suresh)
  5655. HDFS-685. Use the user-to-groups mapping service in the NameNode.
  5656. (boryas, acmurthy)
  5657. HDFS-755. Read multiple checksum chunks at once in DFSInputStream.
  5658. (Todd Lipcon via tomwhite)
  5659. HDFS-786. Implement getContentSummary in HftpFileSystem.
  5660. (Tsz Wo (Nicholas), SZE via cdouglas)
  5661. HDFS-587. Add support for specifying queue name in mapreduce tests.
  5662. (Erik Steffl via suresh)
  5663. HDFS-902 Move contrib/raid to MapReduce. (Eli Collins via omalley)
  5664. HDFS-800. The last block of a file under construction may change to the
  5665. COMPLETE state in response to getAdditionalBlock or completeFileInternal.
  5666. (hairong)
  5667. HDFS-899. Delegation Token Implementation
  5668. and corresponding changes in Namenode and DFS Api to issue,
  5669. renew and cancel delegation tokens. (jnp via boryas)
  5670. HDFS-844. Log the filename when file locking fails. (tomwhite)
  5671. HDFS-914. Refactor DFSOutputStream and DFSInputStream out of DFSClient.
  5672. (Todd Lipcon via tomwhite)
  5673. HDFS-949. Move DelegationToken into Common so that it can be used by
  5674. MapReduce. (omalley)
  5675. HDFS-930. Better error message for DATA_TRANSFER_VERSION mismatched.
  5676. (Kay Kay via szetszwo)
  5677. HDFS-986. Delegation token renewing and cancelling should provide
  5678. meaningful exceptions when there are failures instead of returning
  5679. false. (omalley)
  5680. HADOOP-6579. Upgrade the commons-codec library to 1.4. (omalley)
  5681. HDFS-991. Allow authentication to the web ui via a delegation token.
  5682. (omalley)
  5683. HDFS-994. Allow fetching of delegation token from NameNode for hftp.
  5684. (Jakob Homan via acmurthy)
  5685. HDFS-998. Quote blocks streamed through jsps. (cdouglas)
  5686. HDFS-729. NameNode API to list files that have missing blocks.
  5687. (Rodrigo Schmidt via dhruba)
  5688. HDFS-850. The WebUI display more details about namenode memory usage.
  5689. (Dmytro Molkov via dhruba)
  5690. HDFS-826. The DFSOutputStream has a API that returns the number of
  5691. active datanode(s) in the current pipeline. (dhruba)
  5692. HDFS-985. HDFS should issue multiple RPCs for listing a large
  5693. directory. (hairong)
  5694. HDFS-1043. NNThroughputBenchmark modifications to support benchmarking of
  5695. server-side user group resolution. (shv)
  5696. HDFS-892. Optionally use Avro reflection for Namenode RPC. This
  5697. is not a complete implementation yet, but rather a starting point.
  5698. (cutting)
  5699. HDFS-854. Datanode should scan devices in parallel to generate
  5700. block report. (Dmytro Molkov via jhoman)
  5701. HDFS-1032. fsck has an option to list corrupt files.
  5702. (Andre Oriai via dhruba)
  5703. HDFS-1024. SecondaryNameNode verifies size of fsimage and edits file.
  5704. (Dmytro Molkov via dhruba)
  5705. HDFS-1011. hdfsproxy: Improve log messages by restoring the previous
  5706. thread name. (Srikanth Sundarrajan via szetszwo)
  5707. HDFS-997. Allow datanode storage directory permissions to be configurable.
  5708. (Luke Lu via cdouglas)
  5709. HDFS-1012. hdfsproxy: Support for fully qualified HDFS path in addition to
  5710. simple unqualified path. (Srikanth Sundarrajan via szetszwo)
  5711. HDFS-993. Namenode should issue a delegation token only for kerberos
  5712. authenticated clients.(jnp via boryas)
  5713. HDFS-1087. Modify audit log to use a StringBuilder rather than a Formatter.
  5714. (cdouglas)
  5715. HDFS-1083. Update TestHDFSCLI not to expect exception class name
  5716. in error messages. (suresh)
  5717. HDFS-1099. Add test for umask backward compatibility. (suresh)
  5718. HDFS-1092. Use logging rather than System.err in MiniDFSCluster.
  5719. (Kay Kay via jghoman)
  5720. HDFS-1047. Install/deploy source jars to Maven repo.
  5721. (Patrick Angeles via jghoman)
  5722. HDFS-666. Unit test for FsShell -text. (cdouglas via jghoman)
  5723. HDFS-1054. Remove unnecessary sleep after failure in nextBlockOutputStream.
  5724. (Todd Lipcon via jghoman)
  5725. HDFS-921. Convert TestDFSClientRetries::testNotYetReplicatedErrors
  5726. to Mockito. (jghoman)
  5727. HDFS-1100. Override unwrapException in TestFcHdfsSymlink to test
  5728. symlink API conformance. (Eli Collins via suresh).
  5729. HDFS-1089. Remove uses of FileContext#isFile, isDirectory, and exists.
  5730. (Eli Collins via hairong)
  5731. HDFS-1028. Efficient splitting of path components reduces the time
  5732. to load in fsimage by 20%. (Dmytro Molkov via dhruba)
  5733. HDFS-1109. HFTP supports filenames that contains the character "+".
  5734. (Dmytro Molkov via dhruba)
  5735. HDFS-853. The HDFS webUI displays the balanced-ness of the cluster.
  5736. (Dmytro Molkov via dhruba)
  5737. HDFS-1126. Change HDFS to depend on Hadoop 'common' artifacts instead
  5738. of 'core'. (tomwhite)
  5739. HDFS-995. Replace usage of FileStatus#isDir(). (Eli Collins via
  5740. tomwhite)
  5741. HDFS-1161. Make DN minimum valid volumes configurable.
  5742. (Eli Collins via tomwhite)
  5743. HDFS-1181. Move configuration and script files post split. (tomwhite)
  5744. HDFS-1170. Add more assertions to TestLargeDirectoryDelete.
  5745. (Steve Loughran via tomwhite)
  5746. HDFS-1199. Extract a subset of tests for smoke (DOA) validation. (cos)
  5747. HDFS-1174. New properties for suspend and resume process. (Vinay Thota via
  5748. cos)
  5749. HDFS-1277. [Herriot] New property for multi user list. (Vinay Thota via
  5750. cos)
  5751. HDFS-806. Add new unit tests to the 10-mins 'run-commit-test' target (cos)
  5752. OPTIMIZATIONS
  5753. HDFS-946. NameNode should not return full path name when lisitng a
  5754. diretory or getting the status of a file. (hairong)
  5755. BUG FIXES
  5756. HDFS-76. Better error message to users when commands fail because of
  5757. lack of quota. Allow quota to be set even if the limit is lower than
  5758. current consumption. (Boris Shkolnik via rangadi)
  5759. HADOOP-4687. HDFS is split from Hadoop Core. It is a subproject under
  5760. Hadoop (Owen O'Malley)
  5761. HADOOP-6096. Fix Eclipse project and classpath files following project
  5762. split. (tomwhite)
  5763. HDFS-195. Handle expired tokens when write pipeline is reestablished.
  5764. (Kan Zhang via rangadi)
  5765. HDFS-181. Validate src path in FSNamesystem.getFileInfo(..). (Todd
  5766. Lipcon via szetszwo)
  5767. HDFS-441. Remove TestFTPFileSystem. (szetszwo)
  5768. HDFS-440. Fix javadoc broken links in DFSClient. (szetszwo)
  5769. HDFS-480. Fix a typo in the jar name in build.xml.
  5770. (Konstantin Shvachko via gkesavan)
  5771. HDFS-438. Check for NULL before invoking GenericArgumentParser in
  5772. DataNode. (Raghu Angadi)
  5773. HDFS-415. BlockReceiver hangs in case of certain runtime exceptions.
  5774. (Konstantin Boudnik via rangadi)
  5775. HDFS-462. loadFSImage should close edits file. (Jakob Homan via shv)
  5776. HDFS-489. Update TestHDFSCLI for the -skipTrash option in rm. (Jakob Homan
  5777. via szetszwo)
  5778. HDFS-445. pread() does not pick up changes to block locations.
  5779. (Kan Zhang via rangadi)
  5780. HDFS-463. CreateEditLog utility broken after HDFS-396 (URI for
  5781. FSImage). (Suresh Srinivas via rangadi)
  5782. HDFS-484. Fix bin-package and package target to package jar files.
  5783. (gkesavan)
  5784. HDFS-490. Eliminate the deprecated warnings introduced by H-5438.
  5785. (He Yongqiang via szetszwo)
  5786. HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
  5787. (Suresh Srinivas via shv)
  5788. HDFS-534. Include avro in ivy. (szetszwo)
  5789. HDFS-532. Allow applications to know that a read request failed
  5790. because block is missing. (dhruba)
  5791. HDFS-561. Fix write pipeline READ_TIMEOUT in DataTransferProtocol.
  5792. (Kan Zhang via szetszwo)
  5793. HDFS-553. BlockSender reports wrong failed position in ChecksumException.
  5794. (hairong)
  5795. HDFS-568. Set mapred.job.tracker.retire.jobs to false in
  5796. src/test/mapred-site.xml for mapreduce tests to run. (Amareshwari
  5797. Sriramadasu via szetszwo)
  5798. HDFS-15. All replicas end up on 1 rack. (Jitendra Nath Pandey via hairong)
  5799. HDFS-586. TestBlocksWithNotEnoughRacks sometimes fails.
  5800. (Jitendra Nath Pandey via hairong)
  5801. HADOOP-6243. Fixed a NullPointerException in handling deprecated keys.
  5802. (Sreekanth Ramakrishnan via yhemanth)
  5803. HDFS-605. Do not run fault injection tests in the run-test-hdfs-with-mr
  5804. target. (Konstantin Boudnik via szetszwo)
  5805. HDFS-606. Fix ConcurrentModificationException in invalidateCorruptReplicas()
  5806. (shv)
  5807. HDFS-601. TestBlockReport obtains data directories directly from
  5808. MiniHDFSCluster. (Konstantin Boudnik via shv)
  5809. HDFS-614. TestDatanodeBlockScanner obtains data directories directly from
  5810. MiniHDFSCluster. (shv)
  5811. HDFS-612. Remove the use of org.mortbay.log.Log in FSDataset. (szetszwo)
  5812. HDFS-622. checkMinReplication should count live nodes only. (shv)
  5813. HDFS-629. Remove ReplicationTargetChooser.java along with fixing
  5814. import warnings generated by Eclipse. (dhruba)
  5815. HDFS-637. DataNode sends a Success ack when block write fails. (hairong)
  5816. HDFS-640. Fixed TestHDFSFileContextMainOperations.java build failure. (suresh)
  5817. HDFS-547. TestHDFSFileSystemContract#testOutputStreamClosedTwice
  5818. sometimes fails with CloseByInterruptException. (hairong)
  5819. HDFS-588. Fix TestFiDataTransferProtocol and TestAppend2 failures. (shv)
  5820. HDFS-550. DataNode restarts may introduce corrupt/duplicated/lost replicas
  5821. when handling detached replicas. (hairong)
  5822. HDFS-659. If the the last block is not complete, update its length with
  5823. one of its replica's length stored in datanode. (szetszwo)
  5824. HDFS-649. Check null pointers for DataTransferTest. (Konstantin Boudnik
  5825. via szetszwo)
  5826. HDFS-661. DataNode upgrade fails on non-existant current directory.
  5827. (hairong)
  5828. HDFS-597. Mofication introduced by HDFS-537 breakes an advice binding in
  5829. FSDatasetAspects. (Konstantin Boudnik via szetszwo)
  5830. HDFS-665. TestFileAppend2 sometimes hangs. (hairong)
  5831. HDFS-676. Fix NPE in FSDataset.updateReplicaUnderRecovery() (shv)
  5832. HDFS-673. BlockReceiver#PacketResponder should not remove a packet from
  5833. the ack queue before its ack is sent. (hairong)
  5834. HDFS-682. Fix bugs in TestBlockUnderConstruction. (szetszwo)
  5835. HDFS-668. TestFileAppend3#TC7 sometimes hangs. (hairong)
  5836. HDFS-679. Appending to a partial chunk incorrectly assumes the
  5837. first packet fills up the partial chunk. (hairong)
  5838. HDFS-722. Fix callCreateBlockWriteStream pointcut in FSDatasetAspects.
  5839. (szetszwo)
  5840. HDFS-690. TestAppend2#testComplexAppend failed on "Too many open files".
  5841. (hairong)
  5842. HDFS-725. Support the build error fix for HADOOP-6327. (Sanjay Radia via
  5843. szetszwo)
  5844. HDFS-625. Fix NullPointerException thrown from ListPathServlet. (suresh)
  5845. HDFS-735. TestReadWhileWriting has wrong line termination symbols (cos)
  5846. HDFS-691. Fix an overflow error in DFSClient.DFSInputStream.available().
  5847. (szetszwo)
  5848. HDFS-733. TestBlockReport fails intermittently. (cos)
  5849. HDFS-774. Intermittent race condition in TestFiPipelines (cos)
  5850. HDFS-741. TestHFlush test doesn't seek() past previously written part of
  5851. the file (cos, szetszwo)
  5852. HDFS-706. Intermittent failures in TestFiHFlush (cos)
  5853. HDFS-646. Fix test-patch failure by adding test-contrib ant target.
  5854. (gkesavan)
  5855. HDFS-791. Build is broken after HDFS-787 patch has been applied (cos)
  5856. HDFS-792. TestHDFSCLI is failing. (Todd Lipcon via cos)
  5857. HDFS-781. Namenode metrics PendingDeletionBlocks is not decremented.
  5858. (Suresh)
  5859. HDFS-192. Fix TestBackupNode failures. (shv)
  5860. HDFS-797. TestHDFSCLI much slower after HDFS-265 merge. (Todd Lipcon via cos)
  5861. HDFS-824. Stop lease checker in TestReadWhileWriting. (szetszwo)
  5862. HDFS-823. CheckPointer should use addInternalServlet for image-fetching
  5863. servlet (jghoman)
  5864. HDFS-456. Fix URI generation for windows file paths. (shv)
  5865. HDFS-812. FSNamesystem#internalReleaseLease throws NullPointerException on
  5866. a single-block file's lease recovery. (cos)
  5867. HDFS-724. Pipeline hangs if one of the block receiver is not responsive.
  5868. (hairong)
  5869. HDFS-564. Adding pipeline tests 17-35. (hairong)
  5870. HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
  5871. (hairong)
  5872. HDFS-762. Balancer causes Null Pointer Exception.
  5873. (Cristian Ivascu via dhruba)
  5874. HDFS-868. Fix link to Hadoop Upgrade Wiki. (Chris A. Mattmann via shv)
  5875. HDFS-880. TestNNLeaseRecovery fails on windows (cos, shv)
  5876. HDFS-699. Primary datanode should compare replicas' on disk lengths.
  5877. (hairong)
  5878. HDFS-897. Fix a bug related to generation stamp comparison in
  5879. ReplicasMap. (suresh)
  5880. HDFS-793. Data node should receive the whole packet ack message before it
  5881. constructs and sends its own ack message for the packet. (hairong)
  5882. HDFS-101. DFS write pipeline: DFSClient sometimes does not detect second
  5883. datanode failure. (hairong)
  5884. HDFS-822. Appends to already-finalized blocks can rename across volumes.
  5885. (hairong)
  5886. HDFS-1046. Fix Tomcat version in hdfsproxy/build.xml. (Srikanth
  5887. Sundarrajan via szetszwo)
  5888. HDFS-1072. Fix TestReadWhileWriting failure. (Erik Steffl via shv)
  5889. HDFS-913. Rename fault injection test TestRename.java to TestFiRename.java
  5890. to include it in tests run by ant target run-test-hdfs-fault-inject.
  5891. (suresh)
  5892. HDFS-695. RaidNode should read in configuration from hdfs-site.xml.
  5893. (dhruba)
  5894. HDFS-726. Eclipse .classpath template has outdated jar files and is
  5895. missing some new ones. (cos)
  5896. HDFS-750. Fix build failure due to TestRename. (suresh)
  5897. HDFS-712. Move libhdfs from mapreduce subproject to hdfs subproject.
  5898. (Eli Collins via dhruba)
  5899. HDFS-757. Enable Unit test for HDFS Raid. (dhruba)
  5900. HDFS-611. Prevent DataNode heartbeat times from increasing even when
  5901. the DataNode has many blocks to delete. (Zheng Shao via dhruba)
  5902. HDFS-751. Fix TestCrcCorruption to pick up the correct datablocks to
  5903. corrupt. (dhruba)
  5904. HDFS-763. Fix slightly misleading report from DataBlockScanner
  5905. about corrupted scans. (dhruba)
  5906. HDFS-727. bug setting block size hdfsOpenFile (Eli Collins via cos)
  5907. HDFS-756. libhdfs unit tests do not run. (Eli Collins via cos)
  5908. HDFS-783. libhdfs tests brakes code coverage runs with Clover (cos)
  5909. HDFS-785. Add Apache license to several namenode unit tests.
  5910. (Ravi Phulari via jghoman)
  5911. HDFS-802. Update Eclipse configuration to match changes to Ivy
  5912. configuration (Edwin Chan via cos)
  5913. HDFS-423. Unbreak FUSE build and fuse_dfs_wrapper.sh (Eli Collins via cos)
  5914. HDFS-825. Build fails to pull latest hadoop-core-* artifacts (cos)
  5915. HDFS-94. The Heap Size printed in the NameNode WebUI is accurate.
  5916. (Dmytro Molkov via dhruba)
  5917. HDFS-767. An improved retry policy when the DFSClient is unable to fetch a
  5918. block from the datanode. (Ning Zhang via dhruba)
  5919. HDFS-775. FSDataset calls getCapacity() twice. (stevel)
  5920. HDFS-885. Datanode toString() NPEs on null dnRegistration. (stevel)
  5921. HDFS-877. Client-driven block verification not functioning. (Todd
  5922. Lipcon via hairong)
  5923. HDFS-630. In DFSOutputStream.nextBlockOutputStream(), the client can
  5924. exclude specific datanodes when locating the next block.
  5925. (Cosmin Lehene via Stack)
  5926. HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
  5927. problems for Eclipse compilation. (jghoman)
  5928. HDFS-927 DFSInputStream retries too many times for new block locations
  5929. (Todd Lipcon via Stack)
  5930. HDFS-938. Replace calls to UGI.getUserName() with UGI.getShortUserName()
  5931. (jghoman)
  5932. HDFS-894. DatanodeID.ipcPort is not updated when existing node
  5933. re-registers. (Todd Lipcon via tomwhite)
  5934. HDFS-965. Split TestDelegationToken in to two parts and fix configuration
  5935. to allow proxy users in the test. (Jitendra Pandey via omalley)
  5936. HDFS-999. Secondary namenode should login using kerberos if security is
  5937. configured (boryas)
  5938. HDFS-856. Hardcoded replication level for new files in fuse-dfs.
  5939. (Brian Bockelman via tomwhite)
  5940. HDFS-857. Incorrect type for fuse-dfs capacity can cause "df" to return
  5941. negative values on 32-bit machines. (Brian Bockelman via tomwhite)
  5942. HDFS-858. Incorrect return codes for fuse-dfs. (Brian Bockelman via
  5943. tomwhite)
  5944. HDFS-859. fuse-dfs utime behavior causes issues with tar.
  5945. (Brian Bockelman via tomwhite)
  5946. HDFS-861. fuse-dfs does not support O_RDWR. (Brian Bockelman via tomwhite)
  5947. HDFS-961. dfs_readdir incorrectly parses paths. (Eli Collins via tomwhite)
  5948. HDFS-1015. Fix intermittent failure in TestSecurityTokenEditLog.
  5949. (Jitendra Nath Pandey via suresh)
  5950. HDFS-939. libhdfs test is broken. (Eli Collins via tomwhite)
  5951. HDFS-1074. hdfsproxy: Fix bugs in TestProxyUtil. (Srikanth Sundarrajan
  5952. via szetszwo)
  5953. HDFS-481. hdfsproxy: Bug Fixes + HdfsProxy to use proxy user to
  5954. impresonate the real user. (Srikanth Sundarrajan via szetszwo)
  5955. HDFS-482. Move HsftpFileSystem's ssl.client.do.not.authenticate.server
  5956. configuration setting to ssl-client.xml. (Srikanth Sundarrajan via
  5957. szetszwo)
  5958. HDFS-1010. hdfsproxy: Retrieve groups from UnixUserGroupInformation
  5959. instead of LdapEntry. (Srikanth Sundarrajan via szetszwo)
  5960. HDFS-466. hdfs_write infinite loop when dfs fails and cannot write
  5961. files > 2 GB. (Pete Wyckoff via tomwhite)
  5962. HDFS-651. HDFS Docs - fix listing of docs in the doc menu.
  5963. (Corinne Chandel via tomwhite)
  5964. HDFS-1014. Error in reading delegation tokens from edit logs.
  5965. (Jitendra Nath Pandey via jhoman)
  5966. HDFS-1088. Prevent renaming a symbolik link to its target.
  5967. (Eli Collins via suresh)
  5968. HDFS-966. NameNode does not recovers lease when it is in safemode.
  5969. (dhruba)
  5970. HDFS-833. Datanode shutdown should log problems with Storage.unlockAll()
  5971. (Steve Loughran via dhruba)
  5972. HDFS-1101. TestDiskError.testLocalDirs() fails. (cdouglas via jghoman)
  5973. HDFS-1031. Enhance the webUi to list a few of the corrupted files in HDFS.
  5974. (Andre Orian via dhruba)
  5975. HDFS-1078. Create static and dynamic versions of libhdfs.
  5976. (Sam Rash via dhruba)
  5977. HDFS-1104. Fsck triggers full GC on NameNode. (hairong)
  5978. HDFS-1141. Closing a file is successful only if the client still has a
  5979. valid lease. (Todd Lipcon via dhruba)
  5980. HDFS-1138. Prevent erroneous updation of modification time of a directory
  5981. when fsimage loads. (Dmytro Molkov via dhruba)
  5982. HDFS-1000. Updates libhdfs to the new API for UGI (ddas)
  5983. HDFS-609. Create a file with the append flag does not work in HDFS.
  5984. (tomwhite)
  5985. HDFS-1255. Fix failing test-libhdfs.sh test. (tomwhite)
  5986. HDFS-1256. libhdfs is missing from the tarball. (tomwhite)
  5987. HDFS-1057. Concurrent readers hit ChecksumExceptions if following a
  5988. writer to very end of file. (sam rash via hairong)
  5989. HDFS-1212. Harmonize HDFS JAR library versions with Common. (tomwhite)
  5990. HDFS-1159. clean-cache target removes wrong ivy cache (cos)
  5991. HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
  5992. mvn-deploy task leading to unstable mapreduce build (Giridharan
  5993. Kesavan via cos)
  5994. HDFS-1299. 'compile-fault-inject' never should be called directly. (cos)
  5995. HDFS-1311. Running tests with 'testcase' cause triple execution of the
  5996. same test case (Cos)
  5997. HDFS-1267. fuse-dfs does not compile. (Devaraj Das via tomwhite)
  5998. HDFS-1598. Directory listing on hftp:// does not show .*.crc files.
  5999. (szetszwo)
  6000. HDFS-1750. ListPathsServlet should not use HdfsFileStatus.getLocalName()
  6001. to get file name since it may return an empty string. (szetszwo)
  6002. Release 0.20.3 - Unreleased
  6003. IMPROVEMENTS
  6004. BUG FIXES
  6005. HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
  6006. the first datanode fails. (szetszwo)
  6007. HDFS-909. Wait until edits syncing is finishes before purging edits.
  6008. (Todd Lipcon via shv)
  6009. HDFS-1258. Clearing namespace quota on "/" corrupts fs image.
  6010. (Aaron T. Myers via szetszwo)
  6011. HDFS-1406. TestCLI fails on Ubuntu with default /etc/hosts. (cos)
  6012. Release 0.20.203.0 - 2011-5-11
  6013. IMPROVEMENTS
  6014. HADOOP-7259. Contrib modules should include the build.properties from
  6015. the enclosing hadoop directory. (omalley)
  6016. BUG FIXES
  6017. HDFS-132. Fix namenode to not report files deleted metrics for deletions
  6018. done while replaying edits during startup. (suresh & shv)
  6019. HDFS-955. New implementation of saveNamespace() to avoid loss of edits
  6020. when name-node fails during saving. (shv)
  6021. Release 0.20.2 - 2009-09-01
  6022. IMPROVEMENTS
  6023. HDFS-737. Add full path name of the file to the block information and
  6024. summary of total number of files, blocks, live and deadnodes to
  6025. metasave output. (Jitendra Nath Pandey via suresh)
  6026. HDFS-919. Create test to validate the BlocksVerified metric (Gary Murry
  6027. via cos)
  6028. HDFS-907. Add tests for getBlockLocations and totalLoad metrics.
  6029. (Ravi Phulari via cos)
  6030. BUG FIXES
  6031. HDFS-686. NullPointerException is thrown while merging edit log and image.
  6032. (hairong)
  6033. HDFS-677. Rename failure when both source and destination quota exceeds
  6034. results in deletion of source. (suresh)
  6035. HDFS-709. Fix TestDFSShell failure due to rename bug introduced by
  6036. HDFS-677. (suresh)
  6037. HDFS-579. Fix DfsTask to follow the semantics of 0.19, regarding non-zero
  6038. return values as failures. (Christian Kunz via cdouglas)
  6039. HDFS-723. Fix deadlock in DFSClient#DFSOutputStream. (hairong)
  6040. HDFS-596. Fix memory leak in hdfsFreeFileInfo() for libhdfs.
  6041. (Zhang Bingjun via dhruba)
  6042. HDFS-185. Disallow chown, chgrp, chmod, setQuota, and setSpaceQuota when
  6043. name-node is in safemode. (Ravi Phulari via shv)
  6044. HDFS-187. Initialize secondary namenode http address in TestStartup.
  6045. (Todd Lipcon via szetszwo)
  6046. HDFS-464. Fix memory leaks in libhdfs. (Christian Kunz via suresh)
  6047. HDFS-1377. Quota bug for partial blocks allows quotas to be violated. (eli)
  6048. Release 0.20.1 - 2009-09-01
  6049. IMPROVEMENTS
  6050. HDFS-438. Improve help message for space quota command. (Raghu Angadi)
  6051. BUG FIXES
  6052. HDFS-167. Fix a bug in DFSClient that caused infinite retries on write.
  6053. (Bill Zeller via szetszwo)
  6054. HDFS-527. Remove/deprecate unnecessary DFSClient constructors. (szetszwo)
  6055. HDFS-525. The SimpleDateFormat object in ListPathsServlet is not thread
  6056. safe. (Suresh Srinivas and cdouglas)
  6057. HDFS-761. Fix failure to process rename operation from edits log due to
  6058. quota verification. (suresh)