1
0

CHANGES.txt 347 KB

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