CHANGES.txt 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253
  1. Hadoop HDFS Change Log
  2. Branch-2802 Snapshot (Unreleased)
  3. NEW FEATURES
  4. HDFS-4076. Support snapshot of single files. (szetszwo)
  5. HDFS-4082. Add editlog opcodes for snapshot create and delete operations.
  6. (suresh via szetszwo)
  7. Trunk (Unreleased)
  8. INCOMPATIBLE CHANGES
  9. HDFS-3034. Remove the deprecated DFSOutputStream.sync() method. (szetszwo)
  10. NEW FEATURES
  11. HDFS-3125. Add JournalService to enable Journal Daemon. (suresh)
  12. HDFS-3601. Add BlockPlacementPolicyWithNodeGroup to support block placement
  13. with 4-layer network topology. (Junping Du via szetszwo)
  14. HDFS-3077. Implement QuorumJournalManager, a distributed mechanism for
  15. reliably storing HDFS edit logs. See dedicated section below for breakdown
  16. of subtasks.
  17. IMPROVEMENTS
  18. HDFS-1620. Rename HdfsConstants -> HdfsServerConstants, FSConstants ->
  19. HdfsConstants. (Harsh J Chouraria via atm)
  20. HDFS-2197. Refactor RPC call implementations out of NameNode class (todd)
  21. HDFS-2572. Remove unnecessary double-check in DN#getHostName. (harsh)
  22. HDFS-2857. Cleanup BlockInfo class. (suresh)
  23. HDFS-2786. Fix host-based token incompatibilities in DFSUtil. (Kihwal Lee
  24. via jitendra)
  25. HDFS-2486. Remove unnecessary priority level checks in
  26. UnderReplicatedBlocks. (Uma Maheswara Rao G via szetszwo)
  27. HDFS-2878. Fix TestBlockRecovery and move it back into main test directory.
  28. (todd)
  29. HDFS-2655. BlockReaderLocal#skip performs unnecessary IO.
  30. (Brandon Li via jitendra)
  31. HDFS-3009. Remove duplicate code in DFSClient#isLocalAddress by using
  32. NetUtils. (Hari Mankude via suresh)
  33. HDFS-3002. TestNameNodeMetrics need not wait for metrics update.
  34. (suresh)
  35. HDFS-3016. Security in unit tests. (Jaimin Jetly via jitendra)
  36. HDFS-3030. Remove getProtocolVersion and getProtocolSignature from translators.
  37. (jitendra)
  38. HDFS-2976. Remove unnecessary method (tokenRefetchNeeded) in DFSClient.
  39. HDFS-3111. Missing license headers in trunk. (umamahesh)
  40. HDFS-3091. Update the usage limitations of ReplaceDatanodeOnFailure policy in
  41. the config description for the smaller clusters. (szetszwo via umamahesh)
  42. HDFS-309. FSEditLog should log progress during replay. (Sho Shimauchi
  43. via todd)
  44. HDFS-3131. Improve TestStorageRestore. (Brandon Li via atm)
  45. HDFS-3178. Add states and state handler for journal synchronization in
  46. JournalService. (szetszwo)
  47. HDFS-3273. Refactor BackupImage and FSEditLog, and rename
  48. JournalListener.rollLogs(..) to startLogSegment(..). (szetszwo)
  49. HDFS-3292. Remove the deprecated DiskStatus, getDiskStatus(), getRawUsed()
  50. and getRawCapacity() from DistributedFileSystem. (Arpit Gupta via szetszwo)
  51. HADOOP-8285. HDFS changes for Use ProtoBuf for RpcPayLoadHeader. (sanjay
  52. radia)
  53. HDFS-2743. Streamline usage of bookkeeper journal manager.
  54. (Ivan Kelly via umamahesh)
  55. HDFS-3293. Add toString(), equals(..) and hashCode() to JournalInfo.
  56. (Hari Mankude via szetszwo)
  57. HDFS-3197. Incorrect class comments in a few tests. (Andy Isaacson via eli)
  58. HDFS-3476. Correct the default used in TestDFSClientRetries.busyTest()
  59. after HDFS-3462 (harsh)
  60. HDFS-3040. TestMulitipleNNDataBlockScanner is misspelled. (Madhukara Phatak
  61. via atm)
  62. HDFS-3049. During the normal NN startup process, fall back on a different
  63. edit log if we see one that is corrupt (Colin Patrick McCabe via todd)
  64. HDFS-3478. Test quotas with Long.Max_Value. (Sujay Rau via eli)
  65. HDFS-3498. Support replica removal in BlockPlacementPolicy and make
  66. BlockPlacementPolicyDefault extensible for reusing code in subclasses.
  67. (Junping Du via szetszwo)
  68. HDFS-3571. Allow EditLogFileInputStream to read from a remote URL (todd)
  69. HDFS-3510. Editlog pre-allocation is performed prior to writing edits
  70. to avoid partial edits case disk out of space.(Colin McCabe via suresh)
  71. HDFS-3573. Supply NamespaceInfo when instantiating JournalManagers (todd)
  72. HDFS-3630 Modify TestPersistBlocks to use both flush and hflush (sanjay)
  73. HDFS-3768. Exception in TestJettyHelper is incorrect.
  74. (Eli Reisman via jghoman)
  75. HDFS-3695. Genericize format() to non-file JournalManagers. (todd)
  76. HDFS-3789. JournalManager#format() should be able to throw IOException
  77. (Ivan Kelly via todd)
  78. HDFS-3723. Add support -h, -help to all the commands. (Jing Zhao via
  79. suresh)
  80. HDFS-3803. Change BlockPoolSliceScanner chatty INFO log to DEBUG.
  81. (Andrew Purtell via suresh)
  82. HDFS-3817. Avoid printing SafeModeException stack trace.
  83. (Brandon Li via suresh)
  84. HDFS-3819. Should check whether invalidate work percentage default value is
  85. not greater than 1.0f. (Jing Zhao via jitendra)
  86. HDFS-3844. Add @Override and remove {@inheritdoc} and unnecessary
  87. imports. (Jing Zhao via suresh)
  88. HDFS-3851. DFSOutputStream class code cleanup. (Jing Zhao via suresh)
  89. HDFS-2580. NameNode#main(...) can make use of GenericOptionsParser. (harsh)
  90. HDFS-3880. Use Builder to build RPC server in HDFS.
  91. (Brandon Li vias suresh)
  92. HDFS-2127. Add a test that ensure AccessControlExceptions contain
  93. a full path. (Stephen Chu via eli)
  94. HDFS-3995. Use DFSTestUtil.createFile() for file creation and
  95. writing in test cases. (Jing Zhao via suresh)
  96. HDFS-3735. NameNode WebUI should allow sorting live datanode list by fields
  97. Block Pool Used, Block Pool Used(%) and Failed Volumes.
  98. (Brahma Reddy Battula via suresh)
  99. HDFS-4052. BlockManager#invalidateWork should print log outside the lock.
  100. (Jing Zhao via suresh)
  101. OPTIMIZATIONS
  102. BUG FIXES
  103. HDFS-2299. TestOfflineEditsViewer is failing on trunk. (Uma Maheswara Rao G
  104. via atm)
  105. HDFS-2310. TestBackupNode fails since HADOOP-7524 went in.
  106. (Ivan Kelly via todd)
  107. HDFS-2313. Rat excludes has a typo for excluding editsStored files. (atm)
  108. HDFS-2314. MRV1 test compilation broken after HDFS-2197 (todd)
  109. HDFS-46. Change default namespace quota of root directory from
  110. Integer.MAX_VALUE to Long.MAX_VALUE. (Uma Maheswara Rao G via szetszwo)
  111. HDFS-2373. Commands using WebHDFS and hftp print unnecessary debug
  112. info on the console with security enabled. (Arpit Gupta via suresh)
  113. HDFS-2776. Missing interface annotation on JournalSet.
  114. (Brandon Li via jitendra)
  115. HDFS-2908. Add apache license header for StorageReport.java. (Brandon Li
  116. via jitendra)
  117. HDFS-3037. TestMulitipleNNDataBlockScanner#testBlockScannerAfterRestart is
  118. racy. (atm)
  119. HDFS-2966. TestNameNodeMetrics tests can fail under load. (stevel)
  120. HDFS-3116. Typo in fetchdt error message. (AOE Takashi via atm)
  121. HDFS-3126. Journal stream from Namenode to BackupNode needs to have
  122. timeout. (Hari Mankude via suresh)
  123. HDFS-3121. Add HDFS tests for HADOOP-8014 change. (John George via
  124. suresh)
  125. HDFS-3119. Overreplicated block is not deleted even after the replication
  126. factor is reduced after sync follwed by closing that file. (Ashish Singhi
  127. via umamahesh)
  128. HDFS-3265. PowerPc Build error. (Kumar Ravi via mattf)
  129. HDFS-2312. FSNamesystem javadoc incorrectly says its for DNs. (harsh)
  130. HDFS-3163. TestHDFSCLI.testAll fails if the user name is not all lowercase.
  131. (Brandon Li via atm)
  132. HDFS-3368. Missing blocks due to bad DataNodes coming up and down. (shv)
  133. HDFS-3462. TestDFSClientRetries.busyTest() should restore default
  134. xceiver count in the config. (Madhukara Phatak via harsh)
  135. HDFS-3550. Fix raid javadoc warnings. (Jason Lowe via daryn)
  136. HDFS-3549. Fix dist tar build fails in hadoop-hdfs-raid project. (Jason Lowe via daryn)
  137. HDFS-3541. Deadlock between recovery, xceiver and packet responder (Vinay via umamahesh)
  138. HDFS-3482. hdfs balancer throws ArrayIndexOutOfBoundsException
  139. if option is specified without values. ( Madhukara Phatak via umamahesh)
  140. HDFS-3614. Revert unused MiniDFSCluster constructor from HDFS-3049.
  141. (acmurthy via eli)
  142. HDFS-3625. Fix TestBackupNode by properly initializing edit log during
  143. startup. (Junping Du via todd)
  144. HDFS-3792. Fix two findbugs introduced by HDFS-3695 (todd)
  145. HDFS-3827. TestHASafeMode#assertSafemode method should be made static.
  146. (Jing Zhao via suresh)
  147. HDFS-3834. Remove unused static fields NAME, DESCRIPTION and Usage from
  148. Command. (Jing Zhao via suresh)
  149. HADOOP-8158. Interrupting hadoop fs -put from the command line
  150. causes a LeaseExpiredException. (daryn via harsh)
  151. BREAKDOWN OF HDFS-3077 SUBTASKS
  152. HDFS-3077. Quorum-based protocol for reading and writing edit logs.
  153. (todd, Brandon Li, and Hari Mankude via todd)
  154. HDFS-3694. Fix getEditLogManifest to fetch httpPort if necessary (todd)
  155. HDFS-3692. Support purgeEditLogs() call to remotely purge logs on JNs
  156. (todd)
  157. HDFS-3693. JNStorage should read its storage info even before a writer
  158. becomes active (todd)
  159. HDFS-3725. Fix QJM startup when individual JNs have gaps (todd)
  160. HDFS-3741. Exhaustive failure injection test for skipped RPCs (todd)
  161. HDFS-3773. TestNNWithQJM fails after HDFS-3741. (atm)
  162. HDFS-3793. Implement genericized format() in QJM (todd)
  163. HDFS-3795. QJM: validate journal dir at startup (todd)
  164. HDFS-3798. Avoid throwing NPE when finalizeSegment() is called on invalid
  165. segment (todd)
  166. HDFS-3799. QJM: handle empty log segments during recovery (todd)
  167. HDFS-3797. QJM: add segment txid as a parameter to journal() RPC (todd)
  168. HDFS-3800. improvements to QJM fault testing (todd)
  169. HDFS-3823. QJM: TestQJMWithFaults fails occasionally because of missed
  170. setting of HTTP port. (todd and atm)
  171. HDFS-3826. QJM: Some trivial logging / exception text improvements. (todd
  172. and atm)
  173. HDFS-3839. QJM: hadoop-daemon.sh should be updated to accept "journalnode"
  174. (eli)
  175. HDFS-3845. Fixes for edge cases in QJM recovery protocol (todd)
  176. HDFS-3877. QJM: Provide defaults for dfs.journalnode.*address (eli)
  177. HDFS-3863. Track last "committed" txid in QJM (todd)
  178. HDFS-3869. Expose non-file journal manager details in web UI (todd)
  179. HDFS-3884. Journal format() should reset cached values (todd)
  180. HDFS-3870. Add metrics to JournalNode (todd)
  181. HDFS-3891. Make selectInputStreams throw IOE instead of RTE (todd)
  182. HDFS-3726. If a logger misses an RPC, don't retry that logger until next
  183. segment (todd)
  184. HDFS-3893. QJM: Make QJM work with security enabled. (atm)
  185. HDFS-3897. QJM: TestBlockToken fails after HDFS-3893. (atm)
  186. HDFS-3898. QJM: enable TCP_NODELAY for IPC (todd)
  187. HDFS-3885. QJM: optimize log sync when JN is lagging behind (todd)
  188. HDFS-3900. QJM: avoid validating log segments on log rolls (todd)
  189. HDFS-3901. QJM: send 'heartbeat' messages to JNs even when they are
  190. out-of-sync (todd)
  191. HDFS-3899. QJM: Add client-side metrics (todd)
  192. HDFS-3914. QJM: acceptRecovery should abort current segment (todd)
  193. HDFS-3915. QJM: Failover fails with auth error in secure cluster (todd)
  194. HDFS-3906. QJM: quorum timeout on failover with large log segment (todd)
  195. HDFS-3840. JournalNodes log JournalNotFormattedException backtrace error
  196. before being formatted (todd)
  197. HDFS-3894. QJM: testRecoverAfterDoubleFailures can be flaky due to IPC
  198. client caching (todd)
  199. HDFS-3926. QJM: Add user documentation for QJM. (atm)
  200. HDFS-3943. QJM: remove currently-unused md5sum field (todd)
  201. HDFS-3950. QJM: misc TODO cleanup, improved log messages, etc. (todd)
  202. HDFS-3955. QJM: Make acceptRecovery() atomic. (todd)
  203. HDFS-3956. QJM: purge temporary files when no longer within retention
  204. period (todd)
  205. HDFS-4004. TestJournalNode#testJournal fails because of test case execution
  206. order (Chao Shi via todd)
  207. HDFS-4017. Unclosed FileInputStream in GetJournalEditServlet
  208. (Chao Shi via todd)
  209. Release 2.0.3-alpha - Unreleased
  210. INCOMPATIBLE CHANGES
  211. NEW FEATURES
  212. HDFS-2656. Add libwebhdfs, a pure C client based on WebHDFS.
  213. (Jaimin D Jetly and Jing Zhao via szetszwo)
  214. HDFS-3912. Detect and avoid stale datanodes for writes.
  215. (Jing Zhao via suresh)
  216. HDFS-4059. Add number of stale DataNodes to metrics. (Jing Zhao via suresh)
  217. IMPROVEMENTS
  218. HDFS-3925. Prettify PipelineAck#toString() for printing to a log
  219. (Andrew Wang via todd)
  220. HDFS-3939. NN RPC address cleanup. (eli)
  221. HDFS-3373. Change DFSClient input stream socket cache to global static and
  222. add a thread to cleanup expired cache entries. (John George via szetszwo)
  223. HDFS-3896. Add descriptions for dfs.namenode.rpc-address and
  224. dfs.namenode.servicerpc-address to hdfs-default.xml. (Jeff Lord via atm)
  225. HDFS-3996. Add debug log removed in HDFS-3873 back. (eli)
  226. HDFS-3916. libwebhdfs (C client) code cleanups.
  227. (Colin Patrick McCabe via eli)
  228. HDFS-3813. Log error message if security and WebHDFS are enabled but
  229. principal/keytab are not configured. (Stephen Chu via atm)
  230. HDFS-3483. Better error message when hdfs fsck is run against a ViewFS
  231. config. (Stephen Fritz via atm)
  232. HDFS-3682. MiniDFSCluster#init should provide more info when it fails.
  233. (todd via eli)
  234. HDFS-4008. TestBalancerWithEncryptedTransfer needs a timeout. (eli)
  235. HDFS-4007. Rehabilitate bit-rotted unit tests under
  236. hadoop-hdfs-project/hadoop-hdfs/src/test/unit/
  237. (Colin Patrick McCabe via todd)
  238. HDFS-4041. Hadoop HDFS Maven protoc calls must not depend on external
  239. sh script. (Chris Nauroth via suresh)
  240. HADOOP-8911. CRLF characters in source and text files.
  241. (Raja Aluri via suresh)
  242. HDFS-4037. Rename the getReplication() method in BlockCollection to
  243. getBlockReplication(). (szetszwo)
  244. HDFS-4036. Remove "throw UnresolvedLinkException" from
  245. FSDirectory.unprotectedAddFile(..). (Jing Zhao via szetszwo)
  246. HDFS-2946. HA: Put a cap on the number of completed edits files retained
  247. by the NN. (atm)
  248. HDFS-4029. GenerationStamp should use an AtomicLong. (eli)
  249. HDFS-4068. DatanodeID and DatanodeInfo member should be private. (eli)
  250. HDFS-4073. Two minor improvements to FSDirectory. (Jing Zhao via szetszwo)
  251. HDFS-4074. Remove the unused default constructor from INode. (Brandon Li
  252. via szetszwo)
  253. HDFS-4053. Increase the default block size. (eli)
  254. OPTIMIZATIONS
  255. BUG FIXES
  256. HDFS-3919. MiniDFSCluster:waitClusterUp can hang forever.
  257. (Andy Isaacson via eli)
  258. HDFS-3924. Multi-byte id in HdfsVolumeId. (Andrew Wang via atm)
  259. HDFS-3936. MiniDFSCluster shutdown races with BlocksMap usage. (eli)
  260. HDFS-3951. datanode web ui does not work over HTTPS when datanode is started in secure mode. (tucu)
  261. HDFS-3949. NameNodeRpcServer#join should join on both client and
  262. server RPC servers. (eli)
  263. HDFS-3932. NameNode Web UI broken if the rpc-address is set to the wildcard.
  264. (Colin Patrick McCabe via eli)
  265. HDFS-3931. TestDatanodeBlockScanner#testBlockCorruptionPolicy2 is broken.
  266. (Andy Isaacson via eli)
  267. HDFS-3964. Make NN log of fs.defaultFS debug rather than info. (eli)
  268. HDFS-3992. Method org.apache.hadoop.hdfs.TestHftpFileSystem.tearDown()
  269. sometimes throws NPEs. (Ivan A. Veselovsky via atm)
  270. HDFS-3753. Tests don't run with native libraries.
  271. (Colin Patrick McCabe via eli)
  272. HDFS-4000. TestParallelLocalRead fails with "input ByteBuffers
  273. must be direct buffers". (Colin Patrick McCabe via eli)
  274. HDFS-3999. HttpFS OPEN operation expects len parameter, it should be length. (tucu)
  275. HDFS-4006. TestCheckpoint#testSecondaryHasVeryOutOfDateImage
  276. occasionally fails due to unexpected exit. (todd via eli)
  277. HDFS-4003. test-patch should build the common native libs before
  278. running hdfs tests. (Colin Patrick McCabe via eli)
  279. HDFS-4018. testMiniDFSClusterWithMultipleNN is missing some
  280. cluster cleanup. (eli)
  281. HDFS-4020. TestRBWBlockInvalidation may time out. (eli)
  282. HDFS-4021. Misleading error message when resources are low on the NameNode.
  283. (Christopher Conner via atm)
  284. HDFS-4044. Duplicate ChecksumType definition in HDFS .proto files.
  285. (Binglin Chang via suresh)
  286. HDFS-4049. Fix hflush performance regression due to nagling delays
  287. (todd)
  288. HDFS-3678. Edit log files are never being purged from 2NN. (atm)
  289. HDFS-4058. DirectoryScanner may fail with IOOB if the directory
  290. scanning threads return out of volume order. (eli)
  291. HDFS-3985. Add timeouts to TestMulitipleNNDataBlockScanner. (todd via eli)
  292. HDFS-4061. TestBalancer and TestUnderReplicatedBlocks need timeouts. (eli)
  293. HDFS-3997. OfflineImageViewer incorrectly passes value of imageVersion when
  294. visiting IS_COMPRESSED element. (Mithun Radhakrishnan via atm)
  295. HDFS-4055. TestAuditLogs is flaky. (Binglin Chang via eli)
  296. Release 2.0.2-alpha - 2012-09-07
  297. INCOMPATIBLE CHANGES
  298. HDFS-3446. HostsFileReader silently ignores bad includes/excludes
  299. (Matthew Jacobs via todd)
  300. HDFS-3755. Creating an already-open-for-write file with overwrite=true fails
  301. (todd)
  302. NEW FEATURES
  303. HDFS-744. Support hsync in HDFS. (Lars Hofhansl via szetszwo)
  304. HDFS-3042. Automatic failover support for NameNode HA (todd)
  305. (see dedicated section below for breakdown of subtasks)
  306. HDFS-3518. Add a utility method HdfsUtils.isHealthy(uri) for checking if
  307. the given HDFS is healthy. (szetszwo)
  308. HDFS-3113. httpfs does not support delegation tokens. (tucu)
  309. HDFS-3513. HttpFS should cache filesystems. (tucu)
  310. HDFS-3637. Add support for encrypting the DataTransferProtocol. (atm)
  311. HDFS-3150. Add option for clients to contact DNs via hostname. (eli)
  312. HDFS-2793. Add an admin command to trigger an edit log roll. (todd)
  313. HDFS-3703. Datanodes are marked stale if heartbeat is not received in
  314. configured timeout and are selected as the last location to read from.
  315. (Jing Zhao via suresh)
  316. IMPROVEMENTS
  317. HDFS-3390. DFSAdmin should print full stack traces of errors when DEBUG
  318. logging is enabled. (atm)
  319. HDFS-3341. Change minimum RPC versions to respective SNAPSHOTs instead of
  320. final releases. (todd)
  321. HDFS-3369. Rename {get|set|add}INode(..) methods in BlockManager and
  322. BlocksMap to {get|set|add}BlockCollection(..). (John George via szetszwo)
  323. HDFS-3134. harden edit log loader against malformed or malicious input.
  324. (Colin Patrick McCabe via eli)
  325. HDFS-3230. Cleanup DatanodeID creation in the tests. (eli)
  326. HDFS-3401. Cleanup DatanodeDescriptor creation in the tests. (eli)
  327. HDFS-3400. DNs should be able start with jsvc even if security is disabled.
  328. (atm via eli)
  329. HDFS-3404. Make putImage in GetImageServlet infer remote address to fetch
  330. from request. (atm)
  331. HDFS-3335. check for edit log corruption at the end of the log
  332. (Colin Patrick McCabe via todd)
  333. HDFS-3417. Rename BalancerDatanode#getName to getDisplayName to be
  334. consistent with Datanode. (eli)
  335. HDFS-3416. Cleanup DatanodeID and DatanodeRegistration
  336. constructors used by testing. (eli)
  337. HDFS-3419. Cleanup LocatedBlock. (eli)
  338. HDFS-3440. More effectively limit stream memory consumption when reading
  339. corrupt edit logs (Colin Patrick McCabe via todd)
  340. HDFS-3438. BootstrapStandby should not require a rollEdits on active node
  341. (todd)
  342. HDFS-2885. Remove "federation" from the nameservice config options.
  343. (Tsz Wo (Nicholas) Sze via eli)
  344. HDFS-3394. Do not use generic in INodeFile.getLastBlock(): the run-time
  345. ClassCastException check is useless since generic type information is only
  346. available in compile-time. (szetszwo)
  347. HDFS-3454. Balancer unconditionally logs InterruptedException at
  348. INFO level on shutdown if security is enabled. (eli)
  349. HDFS-1013. Miscellaneous improvements to HTML markup for web UIs
  350. (Eugene Koontz via todd)
  351. HDFS-3052. Change INodeFile and INodeFileUnderConstruction to package
  352. private. (szetszwo)
  353. HDFS-3520. Add transfer rate logging to TransferFsImage. (eli)
  354. HDFS-3504. Support configurable retry policy in DFSClient for RPC
  355. connections and RPC calls, and add MultipleLinearRandomRetry, a new retry
  356. policy. (szetszwo)
  357. HDFS-3372. offlineEditsViewer should be able to read a binary
  358. edits file with recovery mode. (Colin Patrick McCabe via eli)
  359. HDFS-3516. Check content-type in WebHdfsFileSystem. (szetszwo)
  360. HDFS-3535. Audit logging should log denied accesses. (Andy Isaacson via eli)
  361. HDFS-3481. Refactor HttpFS handling of JAX-RS query string parameters (tucu)
  362. HDFS-3572. Cleanup code which inits SPNEGO in HttpServer (todd)
  363. HDFS-3475. Make the replication monitor multipliers configurable.
  364. (harsh via eli)
  365. HDFS-3343. Improve metrics for DN read latency (Andrew Wang via todd)
  366. HDFS-3170. Add more useful metrics for write latency (Matthew Jacobs via
  367. todd)
  368. HDFS-3604. Add dfs.webhdfs.enabled to hdfs-default.xml. (eli)
  369. HDFS-2988. Improve error message when storage directory lock fails
  370. (Miomir Boljanovic via harsh)
  371. HDFS-2391. Newly set BalancerBandwidth value is not displayed anywhere.
  372. (harsh)
  373. HDFS-3067. NPE in DFSInputStream.readBuffer if read is repeated on
  374. corrupted block. (Henry Robinson via atm)
  375. HDFS-3555. idle client socket triggers DN ERROR log
  376. (should be INFO or DEBUG). (Andy Isaacson via harsh)
  377. HDFS-3568. fuse_dfs: add support for security. (Colin McCabe via atm)
  378. HDFS-3629. Fix the typo in the error message about inconsistent
  379. storage layout version. (Brandon Li via harsh)
  380. HDFS-3613. GSet prints some INFO level values, which aren't
  381. really very useful to all (Andrew Wang via harsh)
  382. HDFS-3611. NameNode prints unnecessary WARNs about edit log normally skipping
  383. a few bytes. (Colin Patrick McCabe via harsh)
  384. HDFS-3582. Hook daemon process exit for testing. (eli)
  385. HDFS-3641. Move server Util time methods to common and use now
  386. instead of System#currentTimeMillis. (eli)
  387. HDFS-3633. libhdfs: hdfsDelete should pass JNI_FALSE or JNI_TRUE.
  388. (Colin Patrick McCabe via eli)
  389. HDFS-799. libhdfs must call DetachCurrentThread when a thread is destroyed.
  390. (Colin Patrick McCabe via eli)
  391. HDFS-3306. fuse_dfs: don't lock release operations.
  392. (Colin Patrick McCabe via eli)
  393. HDFS-3612. Single namenode image directory config warning can
  394. be improved. (Andy Isaacson via harsh)
  395. HDFS-3606. libhdfs: create self-contained unit test.
  396. (Colin Patrick McCabe via eli)
  397. HDFS-3539. libhdfs code cleanups. (Colin Patrick McCabe via eli)
  398. HDFS-3610. fuse_dfs: Provide a way to use the default (configured) NN URI.
  399. (Colin Patrick McCabe via eli)
  400. HDFS-3663. MiniDFSCluster should capture the code path that led to
  401. the first ExitException. (eli)
  402. HDFS-3659. Add missing @Override to methods across the hadoop-hdfs
  403. project. (Brandon Li via harsh)
  404. HDFS-3537. Move libhdfs and fuse-dfs source to native subdirectories.
  405. (Colin Patrick McCabe via eli)
  406. HDFS-3665. Add a test for renaming across file systems via a symlink. (eli)
  407. HDFS-3666. Plumb more exception messages to terminate. (eli)
  408. HDFS-3673. libhdfs: fix some compiler warnings. (Colin Patrick McCabe via eli)
  409. HDFS-3675. libhdfs: follow documented return codes. (Colin Patrick McCabe via eli)
  410. HDFS-1249. With fuse-dfs, chown which only has owner (or only group)
  411. argument fails with Input/output error. (Colin Patrick McCabe via eli)
  412. HDFS-3583. Convert remaining tests to Junit4. (Andrew Wang via atm)
  413. HDFS-3711. Manually convert remaining tests to JUnit4. (Andrew Wang via atm)
  414. HDFS-3650. Use MutableQuantiles to provide latency histograms for various
  415. operations. (Andrew Wang via atm)
  416. HDFS-3667. Add retry support to WebHdfsFileSystem. (szetszwo)
  417. HDFS-3291. add test that covers HttpFS working w/ a non-HDFS Hadoop
  418. filesystem (tucu)
  419. HDFS-3634. Add self-contained, mavenized fuse_dfs test. (Colin Patrick
  420. McCabe via atm)
  421. HDFS-3190. Simple refactors in existing NN code to assist
  422. QuorumJournalManager extension. (todd)
  423. HDFS-3276. initializeSharedEdits should have a -nonInteractive flag (todd)
  424. HDFS-3765. namenode -initializeSharedEdits should be able to initialize
  425. all shared storages. (Vinay and todd via todd)
  426. HDFS-3802. StartupOption.name in HdfsServerConstants should be final.
  427. (Jing Zhao via szetszwo)
  428. HDFS-3796. Speed up edit log tests by avoiding fsync() (todd)
  429. HDFS-2963. Console Output is confusing while executing metasave
  430. (dfsadmin command). (Andrew Wang via eli)
  431. HDFS-3672. Expose disk-location information for blocks to enable better
  432. scheduling. (Andrew Wang via atm)
  433. HDFS-2727. libhdfs should get the default block size from the server.
  434. (Colin Patrick McCabe via eli)
  435. HDFS-2686. Remove DistributedUpgrade related code. (suresh)
  436. HDFS-3832. Remove protocol methods related to DistributedUpgrade. (suresh)
  437. HDFS-3177. Update DFSClient and DataXceiver to handle different checkum
  438. types in file checksum computation. (Kihwal Lee via szetszwo)
  439. HDFS-3871. Change NameNodeProxies to use RetryUtils. (Arun C Murthy
  440. via szetszwo)
  441. HDFS-3887. Remove redundant chooseTarget methods in BlockPlacementPolicy.
  442. (Jing Zhao via szetszwo)
  443. HDFS-3888. Clean up BlockPlacementPolicyDefault. (Jing Zhao via szetszwo)
  444. HDFS-3907. Allow multiple users for local block readers. (eli)
  445. HDFS-3910. DFSTestUtil#waitReplication should timeout. (eli)
  446. OPTIMIZATIONS
  447. HDFS-2982. Startup performance suffers when there are many edit log
  448. segments. (Colin Patrick McCabe via todd)
  449. HDFS-2834. Add a ByteBuffer-based read API to DFSInputStream.
  450. (Henry Robinson via todd)
  451. HDFS-3110. Use directRead API to reduce the number of buffer copies in
  452. libhdfs (Henry Robinson via todd)
  453. HDFS-3697. Enable fadvise readahead by default. (todd)
  454. HDFS-2421. Improve the concurrency of SerialNumberMap in NameNode.
  455. (Jing Zhao and Weiyan Wang via szetszwo)
  456. HDFS-3866. HttpFS POM should have property where to download tomcat from (zero45 via tucu)
  457. BUG FIXES
  458. HDFS-3385. The last block of INodeFileUnderConstruction is not
  459. necessarily a BlockInfoUnderConstruction, so do not cast it in
  460. FSNamesystem.recoverLeaseInternal(..). (szetszwo)
  461. HDFS-3414. Balancer does not find NameNode if rpc-address or
  462. servicerpc-address are not set in client configs. (atm)
  463. HDFS-3031. Fix complete() and getAdditionalBlock() RPCs to be idempotent
  464. (todd)
  465. HDFS-2759. Pre-allocate HDFS edit log files after writing version number.
  466. (atm)
  467. HDFS-3413. TestFailureToReadEdits timing out. (atm)
  468. HDFS-3422. TestStandbyIsHot timeouts too aggressive (todd)
  469. HDFS-3433. GetImageServlet should allow administrative requestors when
  470. security is enabled. (atm)
  471. HDFS-1153. dfsnodelist.jsp should handle invalid input parameters.
  472. (Ravi Phulari via eli)
  473. HDFS-3434. InvalidProtocolBufferException when visiting DN
  474. browseDirectory.jsp (eli)
  475. HDFS-2800. Fix cancellation of checkpoints in the standby node to be more
  476. reliable. (todd)
  477. HDFS-3391. Fix InvalidateBlocks to compare blocks including their
  478. generation stamps. (todd)
  479. HDFS-3444. hdfs groups command doesn't work with security enabled. (atm)
  480. HDFS-3415. Make sure all layout versions are the same for all storage
  481. directories in the Namenode. (Brandon Li via szetszwo)
  482. HDFS-3436. In DataNode.transferReplicaForPipelineRecovery(..), it should
  483. use the stored generation stamp to check if the block is valid. (Vinay
  484. via szetszwo)
  485. HDFS-3460. HttpFS proxyuser validation with Kerberos ON uses full
  486. principal name. (tucu)
  487. HDFS-3484. hdfs fsck doesn't work if NN HTTP address is set to
  488. 0.0.0.0 even if NN RPC address is configured. (atm via eli)
  489. HDFS-3486. offlineimageviewer can't read fsimage files that contain
  490. persistent delegation tokens. (Colin Patrick McCabe via eli)
  491. HDFS-3487. offlineimageviewer should give byte offset information
  492. when it encounters an exception. (Colin Patrick McCabe via eli)
  493. HDFS-3442. Incorrect count for Missing Replicas in FSCK report. (Andrew
  494. Wang via atm)
  495. HDFS-3501. Checkpointing with security enabled will stop working
  496. after ticket lifetime expires. (atm via eli)
  497. HDFS-3266. DFSTestUtil#waitCorruptReplicas doesn't sleep between checks.
  498. (Madhukara Phatak via atm)
  499. HDFS-3505. DirectoryScanner does not join all threads in shutdown.
  500. (Colin Patrick McCabe via eli)
  501. HDFS-3485. DataTransferThrottler will over-throttle when currentTimeMillis
  502. jumps (Andy Isaacson via todd)
  503. HDFS-2914. HA: Standby should not enter safemode when resources are low.
  504. (Vinay via atm)
  505. HDFS-3235. MiniDFSClusterManager doesn't correctly support -format option.
  506. (Henry Robinson via atm)
  507. HDFS-3514. Add missing TestParallelLocalRead. (Henry Robinson via atm)
  508. HDFS-3243. TestParallelRead timing out on jenkins. (Henry Robinson via todd)
  509. HDFS-3490. DatanodeWebHdfsMethods throws NullPointerException if
  510. NamenodeRpcAddressParam is not set. (szetszwo)
  511. HDFS-2797. Fix misuses of InputStream#skip in the edit log code.
  512. (Colin Patrick McCabe via eli)
  513. HDFS-3517. TestStartup should bind ephemeral ports. (eli)
  514. HDFS-3522. If a namenode is in safemode, it should throw SafeModeException
  515. when getBlockLocations has zero locations. (Brandon Li via szetszwo)
  516. HDFS-3408. BKJM : Namenode format fails, if there is no BK root. (Rakesh R via umamahesh)
  517. HDFS-3389. Document the BKJM usage in Namenode HA. (umamahesh and Ivan Kelly via umamahesh)
  518. HDFS-3531. EditLogFileOutputStream#preallocate should check for
  519. incomplete writes. (Colin Patrick McCabe via eli)
  520. HDFS-766. Error message not clear for set space quota out of boundary
  521. values. (Jon Zuanich via atm)
  522. HDFS-3480. Multiple SLF4J binding warning. (Vinay via eli)
  523. HDFS-3524. Update TestFileLengthOnClusterRestart for HDFS-3522. (Brandon
  524. Li via szetszwo)
  525. HDFS-3559. DFSTestUtil: use Builder class to construct DFSTestUtil
  526. instances. (Colin Patrick McCabe via atm)
  527. HDFS-3551. WebHDFS CREATE should use client location for HTTP redirection.
  528. (szetszwo)
  529. HDFS-3157. Fix a bug in the case that the generation stamps of the stored
  530. block in a namenode and the reported block from a datanode do not match.
  531. (Ashish Singhi via szetszwo)
  532. HDFS-3575. HttpFS does not log Exception Stacktraces (brocknoland via tucu)
  533. HDFS-3574. Fix small race and do some cleanup in GetImageServlet (todd)
  534. HDFS-3581. FSPermissionChecker#checkPermission sticky bit check
  535. missing range check. (eli)
  536. HDFS-3428. Move DelegationTokenRenewer to common (tucu)
  537. HDFS-3491. HttpFs does not set permissions correctly (tucu)
  538. HDFS-3580. incompatible types; no instance(s) of type variable(s) V exist
  539. so that V conforms to boolean compiling HttpFSServer.java with OpenJDK
  540. (adi2 via tucu)
  541. HDFS-3603. Decouple TestHDFSTrash from TestTrash. (Jason Lowe via eli)
  542. HDFS-711. hdfsUtime does not handle atime = 0 or mtime = 0 correctly.
  543. (Colin Patrick McCabe via eli)
  544. HDFS-3548. NamenodeFsck.copyBlock fails to create a Block Reader.
  545. (Colin Patrick McCabe via eli)
  546. HDFS-3615. Two BlockTokenSecretManager findbugs warnings. (atm)
  547. HDFS-470. libhdfs should handle 0-length reads from FSInputStream
  548. correctly. (Colin Patrick McCabe via eli)
  549. HDFS-3492. fix some misuses of InputStream#skip.
  550. (Colin Patrick McCabe via eli)
  551. HDFS-3609. libhdfs: don't force the URI to look like hdfs://hostname:port.
  552. (Colin Patrick McCabe via eli)
  553. HDFS-3605. Block mistakenly marked corrupt during edit log catchup
  554. phase of failover. (todd and Brahma Reddy Battula via todd)
  555. HDFS-3690. BlockPlacementPolicyDefault incorrectly casts LOG. (eli)
  556. HDFS-3597. SNN fails to start after DFS upgrade. (Andy Isaacson via todd)
  557. HDFS-3608. fuse_dfs: detect changes in UID ticket cache. (Colin Patrick
  558. McCabe via atm)
  559. HDFS-3709. TestStartup tests still binding to the ephemeral port. (eli)
  560. HDFS-3720. hdfs.h must get packaged. (Colin Patrick McCabe via atm)
  561. HDFS-3626. Creating file with invalid path can corrupt edit log (todd)
  562. HDFS-3679. fuse_dfs notrash option sets usetrash. (Conrad Meyer via suresh)
  563. HDFS-3732. fuse_dfs: incorrect configuration value checked for connection
  564. expiry timer period. (Colin Patrick McCabe via atm)
  565. HDFS-3738. TestDFSClientRetries#testFailuresArePerOperation sets incorrect
  566. timeout config. (atm)
  567. HDFS-3756. DelegationTokenFetcher creates 2 HTTP connections, the second
  568. one not properly configured. (tucu)
  569. HDFS-3579. libhdfs: fix exception handling. (Colin Patrick McCabe via atm)
  570. HDFS-3754. BlockSender doesn't shutdown ReadaheadPool threads. (eli)
  571. HDFS-3760. primitiveCreate is a write, not a read. (Andy Isaacson via atm)
  572. HDFS-3710. libhdfs misuses O_RDONLY/WRONLY/RDWR. (Andy Isaacson via atm)
  573. HDFS-3721. hsync support broke wire compatibility. (todd and atm)
  574. HDFS-3758. TestFuseDFS test failing. (Colin Patrick McCabe via eli)
  575. HDFS-2330. In NNStorage and FSImagePreTransactionalStorageInspector,
  576. IOExceptions of stream closures can mask root exceptions. (Uma Maheswara
  577. Rao G via szetszwo)
  578. HDFS-3790. test_fuse_dfs.c doesn't compile on centos 5. (Colin Patrick
  579. McCabe via atm)
  580. HDFS-3658. Fix bugs in TestDFSClientRetries and add more tests. (szetszwo)
  581. HDFS-3794. WebHDFS OPEN returns the incorrect Content-Length in the HTTP
  582. header when offset is specified and length is omitted.
  583. (Ravi Prakash via szetszwo)
  584. HDFS-3048. Small race in BlockManager#close. (Andy Isaacson via eli)
  585. HDFS-3194. DataNode block scanner is running too frequently.
  586. (Andy Isaacson via eli)
  587. HDFS-3808. fuse_dfs: postpone libhdfs intialization until after fork.
  588. (Colin Patrick McCabe via atm)
  589. HDFS-3788. ByteRangeInputStream should not expect HTTP Content-Length header
  590. when chunked transfer-encoding is used. (szetszwo)
  591. HDFS-3816. Invalidate work percentage default value should be 0.32f
  592. instead of 32. (Jing Zhao via suresh)
  593. HDFS-3707. TestFSInputChecker: improper use of skip.
  594. (Colin Patrick McCabe via eli)
  595. HDFS-3830. test_libhdfs_threaded: use forceNewInstance.
  596. (Colin Patrick McCabe via eli)
  597. HDFS-3835. Long-lived 2NN cannot perform a checkpoint if security is
  598. enabled and the NN restarts with outstanding delegation tokens. (atm)
  599. HDFS-3715. Fix TestFileCreation#testFileCreationNamenodeRestart.
  600. (Andrew Whang via eli)
  601. HDFS-3731. 2.0 release upgrade must handle blocks being written from 1.0.
  602. (Colin Patrick McCabe via eli)
  603. HDFS-3683. Edit log replay progress indicator shows >100% complete. (Plamen
  604. Jeliazkov via atm)
  605. HDFS-3856. TestHDFSServerPorts failure is causing surefire fork failure.
  606. (eli)
  607. HDFS-3860. HeartbeatManager#Monitor may wrongly hold the writelock of
  608. namesystem. (Jing Zhao via atm)
  609. HDFS-3849. When re-loading the FSImage, we should clear the existing
  610. genStamp and leases. (Colin Patrick McCabe via atm)
  611. HDFS-3864. NN does not update internal file mtime for OP_CLOSE when reading
  612. from the edit log. (atm)
  613. HDFS-3837. Fix DataNode.recoverBlock findbugs warning. (eli)
  614. HDFS-3733. Audit logs should include WebHDFS access. (Andy Isaacson via
  615. eli)
  616. HDFS-3466. Get HTTP kerberos principal from the web authentication keytab.
  617. (omalley)
  618. HDFS-3469. start-dfs.sh will start zkfc, but stop-dfs.sh will not stop zkfc similarly.
  619. (Vinay via umamahesh)
  620. HDFS-1490. TransferFSImage should timeout (Dmytro Molkov and Vinay via todd)
  621. HDFS-3828. Block Scanner rescans blocks too frequently.
  622. (Andy Isaacson via eli)
  623. HDFS-3809. Make BKJM use protobufs for all serialization with ZK.(Ivan Kelly via umamahesh)
  624. HDFS-3895. hadoop-client must include commons-cli (tucu)
  625. HDFS-2757. Cannot read a local block that's being written to when
  626. using the local read short circuit. (Jean-Daniel Cryans via eli)
  627. HDFS-3664. BlockManager race when stopping active services.
  628. (Colin Patrick McCabe via eli)
  629. HDFS-3928. MiniDFSCluster should reset the first ExitException on shutdown. (eli)
  630. HDFS-3938. remove current limitations from HttpFS docs. (tucu)
  631. HDFS-3944. Httpfs resolveAuthority() is not resolving host correctly. (tucu)
  632. HDFS-3972. Trash emptier fails in secure HA cluster. (todd via eli)
  633. BREAKDOWN OF HDFS-3042 SUBTASKS
  634. HDFS-2185. HDFS portion of ZK-based FailoverController (todd)
  635. HDFS-3200. Scope all ZKFC configurations by nameservice (todd)
  636. HDFS-3223. add zkfc to hadoop-daemon.sh script (todd)
  637. HDFS-3261. TestHASafeMode fails on HDFS-3042 branch (todd)
  638. HDFS-3159. Document NN auto-failover setup and configuration (todd)
  639. HDFS-3412. Fix findbugs warnings in auto-HA branch (todd)
  640. HDFS-3432. TestDFSZKFailoverController tries to fail over too early (todd)
  641. HDFS-3833. TestDFSShell fails on windows due to concurrent file
  642. read/write. (Brandon Li via suresh)
  643. HDFS-3902. TestDatanodeBlockScanner#testBlockCorruptionPolicy is broken.
  644. (Andy Isaacson via eli)
  645. Release 2.0.0-alpha - 05-23-2012
  646. INCOMPATIBLE CHANGES
  647. HDFS-2676. Remove Avro RPC. (suresh)
  648. HDFS-2303. Unbundle jsvc. (Roman Shaposhnik and Mingjie Lai via eli)
  649. HDFS-3137. Bump LAST_UPGRADABLE_LAYOUT_VERSION to -16. (eli)
  650. HDFS-3138. Move DatanodeInfo#ipcPort to DatanodeID. (eli)
  651. HDFS-3164. Move DatanodeInfo#hostName to DatanodeID. (eli)
  652. NEW FEATURES
  653. HDFS-2978. The NameNode should expose name dir statuses via JMX. (atm)
  654. HDFS-395. DFS Scalability: Incremental block reports. (Tomasz Nykiel
  655. via hairong)
  656. HDFS-2517. Add protobuf service for JounralProtocol. (suresh)
  657. HDFS-2518. Add protobuf service for NamenodeProtocol. (suresh)
  658. HDFS-2520. Add protobuf service for InterDatanodeProtocol. (suresh)
  659. HDFS-2519. Add protobuf service for DatanodeProtocol. (suresh)
  660. HDFS-2581. Implement protobuf service for JournalProtocol. (suresh)
  661. HDFS-2618. Implement protobuf service for NamenodeProtocol. (suresh)
  662. HDFS-2629. Implement protobuf service for InterDatanodeProtocol. (suresh)
  663. HDFS-2636. Implement protobuf service for ClientDatanodeProtocol. (suresh)
  664. HDFS-2642. Protobuf translators for DatanodeProtocol. (jitendra)
  665. HDFS-2647. Used protobuf based RPC for InterDatanodeProtocol,
  666. ClientDatanodeProtocol, JournalProtocol, NamenodeProtocol. (suresh)
  667. HDFS-2661. Enable protobuf RPC for DatanodeProtocol. (jitendra)
  668. HDFS-2697. Move RefreshAuthPolicy, RefreshUserMappings, GetUserMappings
  669. protocol to protocol buffers. (jitendra)
  670. HDFS-2880. Protobuf changes in DatanodeProtocol to add multiple storages.
  671. (suresh)
  672. HDFS-2899. Service protocol changes in DatanodeProtocol to add multiple
  673. storages. (suresh)
  674. HDFS-2430. The number of failed or low-resource volumes the NN can tolerate
  675. should be configurable. (atm)
  676. HDFS-1623. High Availability Framework for HDFS NN. Contributed by Todd
  677. Lipcon, Aaron T. Myers, Eli Collins, Uma Maheswara Rao G, Bikas Saha,
  678. Suresh Srinivas, Jitendra Nath Pandey, Hari Mankude, Brandon Li, Sanjay
  679. Radia, Mingjie Lai, and Gregory Chanan
  680. HDFS-2941. Add an administrative command to download a copy of the fsimage
  681. from the NN. (atm)
  682. HDFS-2413. Add an API DistributedFileSystem.isInSafeMode() and change
  683. DistributedFileSystem to @InterfaceAudience.LimitedPrivate.
  684. (harsh via szetszwo)
  685. HDFS-3167. CLI-based driver for MiniDFSCluster. (Henry Robinson via atm)
  686. HDFS-3148. The client should be able to use multiple local interfaces
  687. for data transfer. (eli)
  688. HDFS-3000. Add a public API for setting quotas. (atm)
  689. HDFS-3102. Add CLI tool to initialize the shared-edits dir. (atm)
  690. HDFS-3004. Implement Recovery Mode. (Colin Patrick McCabe via eli)
  691. HDFS-3282. Add HdfsDataInputStream as a public API. (umamahesh)
  692. HDFS-3298. Add HdfsDataOutputStream as a public API. (szetszwo)
  693. HDFS-234. Integration with BookKeeper logging system. (Ivan Kelly
  694. via jitendra)
  695. IMPROVEMENTS
  696. HDFS-2018. Move all journal stream management code into one place.
  697. (Ivan Kelly via jitendra)
  698. HDFS-2223. Untangle depencencies between NN components (todd)
  699. HDFS-2351. Change Namenode and Datanode to register each of their protocols
  700. seperately (sanjay)
  701. HDFS-2337. DFSClient shouldn't keep multiple RPC proxy references (atm)
  702. HDFS-2181. Separate HDFS Client wire protocol data types (sanjay)
  703. HDFS-2459. Separate datatypes for Journal Protocol. (suresh)
  704. HDFS-2480. Separate datatypes for NamenodeProtocol. (suresh)
  705. HDFS-2489. Move Finalize and Register to separate file out of
  706. DatanodeCommand.java. (suresh)
  707. HDFS-2488. Separate datatypes for InterDatanodeProtocol. (suresh)
  708. HDFS-2496. Separate datatypes for DatanodeProtocol. (suresh)
  709. HDFS-2479. HDFS Client Data Types in Protocol Buffers (sanjay)
  710. HADOOP-7862. Hdfs changes to work with HADOOP-7862: Move the support for
  711. multiple protocols to lower layer so that Writable, PB and Avro can all
  712. use it. (sanjay)
  713. HDFS-2597. ClientNameNodeProtocol in Protocol Buffers. (sanjay)
  714. HDFS-2651. ClientNameNodeProtocol Translators for Protocol Buffers. (sanjay)
  715. HDFS-2650. Replace @inheritDoc with @Override. (Hari Mankude via suresh).
  716. HDFS-2669. Enable protobuf rpc for ClientNamenodeProtocol. (sanjay)
  717. HDFS-2801. Provide a method in client side translators to check for a
  718. methods supported in underlying protocol. (jitendra)
  719. HDFS-2895. Remove Writable wire protocol types and translators to
  720. complete transition to protocol buffers. (suresh)
  721. HDFS-2992. Edit log failure trace should include transaction ID of
  722. error. (Colin Patrick McCabe via eli)
  723. HDFS-2507. Allow saveNamespace operations to be canceled. (todd)
  724. HDFS-2410. Further cleanup of hardcoded configuration keys and values.
  725. (suresh)
  726. HDFS-208. name node should warn if only one dir is listed in dfs.name.dir.
  727. (Uma Maheswara Rao G via eli)
  728. HDFS-3003. Remove getHostPortString() from NameNode, replace it with
  729. NetUtils.getHostPortString(). (Brandon Li via atm)
  730. HDFS-3014. FSEditLogOp and its subclasses should have toString() method.
  731. (Sho Shimauchi via atm)
  732. HDFS-3036. Remove unused method DFSUtil#isDefaultNamenodeAddress. (atm)
  733. HDFS-2158. Add JournalSet to manage the set of journals. (jitendra)
  734. HDFS-2334. Add Closeable to JournalManager. (Ivan Kelly via jitendra)
  735. HDFS-1580. Add interface for generic Write Ahead Logging mechanisms.
  736. (Ivan Kelly via jitendra)
  737. HDFS-3060. Bump TestDistributedUpgrade#testDistributedUpgrade timeout (eli)
  738. HDFS-3021. Use generic type to declare FSDatasetInterface. (szetszwo)
  739. HDFS-3056. Add a new interface RollingLogs for DataBlockScanner logging.
  740. (szetszwo)
  741. HDFS-2731. Add command to bootstrap the Standby Node's name directories
  742. from the Active NameNode. (todd)
  743. HDFS-3082. Clean up FSDatasetInterface and change DataNode.data to package
  744. private. (szetszwo)
  745. HDFS-3057. httpfs and hdfs launcher scripts should honor CATALINA_HOME
  746. and HADOOP_LIBEXEC_DIR (rvs via tucu)
  747. HDFS-3088. Move FSDatasetInterface inner classes to a package. (szetszwo)
  748. HDFS-3105. Add DatanodeStorage information to block recovery. (szetszwo)
  749. HDFS-3086. Change Datanode not to send storage list in registration.
  750. (szetszwo)
  751. HDFS-3044. fsck move should be non-destructive by default.
  752. (Colin Patrick McCabe via eli)
  753. HDFS-3071. haadmin failover command does not provide enough detail when
  754. target NN is not ready to be active. (todd)
  755. HDFS-3089. Move FSDatasetInterface and the related classes to a package.
  756. (szetszwo)
  757. HDFS-3129. NetworkTopology: add test that getLeaf should check for
  758. invalid topologies (Colin Patrick McCabe via eli)
  759. HDFS-3155. Clean up FSDataset implemenation related code. (szetszwo)
  760. HDFS-3158. LiveNodes member of NameNodeMXBean should list non-DFS used
  761. space and capacity per DN. (atm)
  762. HDFS-3172. dfs.upgrade.permission is dead code. (eli)
  763. HDFS-3171. The DatanodeID "name" field is overloaded. (eli)
  764. HDFS-3144. Refactor DatanodeID#getName by use. (eli)
  765. HDFS-3130. Move fsdataset implementation to a package. (szetszwo)
  766. HDFS-3120. Enable hsync and hflush by default. (eli)
  767. HDFS-3187. Upgrade guava to 11.0.2 (todd)
  768. HDFS-3168. Remove unnecessary "throw IOException" and change fields to
  769. final in FSNamesystem and BlockManager. (szetszwo)
  770. HDFS-2564. Cleanup unnecessary exceptions thrown and unnecessary casts.
  771. (Hari Mankude via eli)
  772. HDFS-3084. FenceMethod.tryFence() and ShellCommandFencer should pass
  773. namenodeId as well as host:port (todd)
  774. HDFS-3050. rework OEV to share more code with the NameNode.
  775. (Colin Patrick McCabe via eli)
  776. HDFS-3226. Allow GetConf tool to print arbitrary keys (todd)
  777. HDFS-3204. Minor modification to JournalProtocol.proto to make
  778. it generic. (suresh)
  779. HDFS-2505. Add a test to verify getFileChecksum(..) with ViewFS. (Ravi
  780. Prakash via szetszwo)
  781. HDFS-3240. Drop log level of "heartbeat: ..." in BPServiceActor to DEBUG
  782. (todd)
  783. HDFS-3238. ServerCommand and friends don't need to be writables. (eli)
  784. HDFS-3094. add -nonInteractive and -force option to namenode -format
  785. command (Arpit Gupta via todd)
  786. HDFS-3244. Remove dead writable code from hdfs/protocol. (eli)
  787. HDFS-3247. Improve bootstrapStandby behavior when original NN is not active
  788. (todd)
  789. HDFS-3249. Use ToolRunner.confirmPrompt in NameNode (todd)
  790. HDFS-3179. Improve the exception message thrown by DataStreamer when
  791. it failed to add a datanode. (szetszwo)
  792. HDFS-2983. Relax the build version check to permit rolling upgrades within
  793. a release. (atm)
  794. HDFS-3259. NameNode#initializeSharedEdits should populate shared edits dir
  795. with edit log segments. (atm)
  796. HDFS-2708. Stats for the # of blocks per DN. (atm)
  797. HDFS-3279. Move the FSEditLog constructor with @VisibleForTesting to
  798. TestEditLog. (Arpit Gupta via szetszwo)
  799. HDFS-3294. Fix code indentation in NamenodeWebHdfsMethods and
  800. DatanodeWebHdfsMethods. (szetszwo)
  801. HDFS-3263. HttpFS should read HDFS config from Hadoop site.xml files (tucu)
  802. HDFS-3206. Miscellaneous xml cleanups for OEV.
  803. (Colin Patrick McCabe via eli)
  804. HDFS-3169. TestFsck should test multiple -move operations in a row.
  805. (Colin Patrick McCabe via eli)
  806. HDFS-3258. Test for HADOOP-8144 (pseudoSortByDistance in
  807. NetworkTopology for first rack local node). (Junping Du via eli)
  808. HDFS-3322. Use HdfsDataInputStream and HdfsDataOutputStream in Hdfs.
  809. (szetszwo)
  810. HDFS-3339. Change INode to package private. (John George via szetszwo)
  811. HDFS-3303. Remove Writable implementation from RemoteEditLogManifest.
  812. (Brandon Li via szetszwo)
  813. HDFS-2617. Replaced Kerberized SSL for image transfer and fsck
  814. with SPNEGO-based solution. (jghoman, omalley, tucu, and atm via eli)
  815. HDFS-3365. Enable users to disable socket caching in DFS client
  816. configuration (todd)
  817. HDFS-3375. Put client name in DataXceiver thread name for readBlock
  818. and keepalive (todd)
  819. HDFS-3363. Define BlockCollection and MutableBlockCollection interfaces
  820. so that INodeFile and INodeFileUnderConstruction do not have to be used in
  821. block management. (John George via szetszwo)
  822. HDFS-3211. Add fence(..) and replace NamenodeRegistration with JournalInfo
  823. and epoch in JournalProtocol. (suresh via szetszwo)
  824. HDFS-3418. Rename BlockWithLocationsProto datanodeIDs field to storageIDs.
  825. (eli)
  826. OPTIMIZATIONS
  827. HDFS-3024. Improve performance of stringification in addStoredBlock (todd)
  828. HDFS-2477. Optimize computing the diff between a block report and the
  829. namenode state. (Tomasz Nykiel via hairong)
  830. HDFS-2495. Increase granularity of write operations in ReplicationMonitor
  831. thus reducing contention for write lock. (Tomasz Nykiel via hairong)
  832. HDFS-2476. More CPU efficient data structure for under-replicated,
  833. over-replicated, and invalidated blocks. (Tomasz Nykiel via todd)
  834. HDFS-3378. Remove DFS_NAMENODE_SECONDARY_HTTPS_PORT_KEY and DEFAULT. (eli)
  835. BUG FIXES
  836. HDFS-2481. Unknown protocol: org.apache.hadoop.hdfs.protocol.ClientProtocol.
  837. (sanjay)
  838. HDFS-2497. Fix TestBackupNode failure. (suresh)
  839. HDFS-2499. RPC client is created incorrectly introduced in HDFS-2459.
  840. (suresh)
  841. HDFS-2526. (Client)NamenodeProtocolTranslatorR23 do not need to keep a
  842. reference to rpcProxyWithoutRetry (atm)
  843. HDFS-2532. TestDfsOverAvroRpc timing out in trunk (Uma Maheswara Rao G
  844. via todd)
  845. HDFS-2666. Fix TestBackupNode failure. (suresh)
  846. HDFS-2663. Optional protobuf parameters are not handled correctly. (suresh)
  847. HDFS-2694. Removal of Avro broke non-PB NN services. (atm)
  848. HDFS-2687. Tests failing with ClassCastException post protobuf RPC
  849. changes. (suresh)
  850. HDFS-2700. Fix failing TestDataNodeMultipleRegistrations in trunk
  851. (Uma Maheswara Rao G via todd)
  852. HDFS-2739. SecondaryNameNode doesn't start up. (jitendra)
  853. HDFS-2768. BackupNode stop can not close proxy connections because
  854. it is not a proxy instance. (Uma Maheswara Rao G via eli)
  855. HDFS-2968. Protocol translator for BlockRecoveryCommand broken when
  856. multiple blocks need recovery. (todd)
  857. HDFS-3020. Fix editlog to automatically sync when buffer is full. (todd)
  858. HDFS-3038. Add FSEditLog.metrics to findbugs exclude list. (todd via atm)
  859. HDFS-2285. BackupNode should reject requests to modify namespace.
  860. (shv and Uma Maheswara Rao)
  861. HDFS-2764. TestBackupNode is racy. (atm)
  862. HDFS-2188. Make FSEditLog create its journals from a list of URIs rather
  863. than NNStorage. (Ivan Kelly via jitendra)
  864. HDFS-1765. Block Replication should respect under-replication
  865. block priority. (Uma Maheswara Rao G via eli)
  866. HDFS-3093. Fix bug where namenode -format interpreted the -force flag in
  867. reverse. (todd)
  868. HDFS-3005. FSVolume.decDfsUsed(..) should be synchronized. (szetszwo)
  869. HDFS-3099. SecondaryNameNode does not properly initialize metrics system.
  870. (atm)
  871. HDFS-3062. Fix bug which prevented MR job submission from creating
  872. delegation tokens on an HA cluster. (Mingjie Lai via todd)
  873. HDFS-3083. Cannot run an MR job with HA and security enabled when
  874. second-listed NN active. (atm)
  875. HDFS-3100. In BlockSender, throw an exception when it needs to verify
  876. checksum but the meta data does not exist. (Brandon Li via szetszwo)
  877. HDFS-3132. Fix findbugs warning on HDFS trunk. (todd)
  878. HDFS-3156. TestDFSHAAdmin is failing post HADOOP-8202. (atm)
  879. HDFS-3143. TestGetBlocks.testGetBlocks is failing. (Arpit Gupta via atm)
  880. HDFS-3142. TestHDFSCLI.testAll is failing. (Brandon Li via atm)
  881. HDFS-3070. HDFS balancer doesn't ensure that hdfs-site.xml is loaded. (atm)
  882. HDFS-2995. start-dfs.sh should only start the 2NN for namenodes
  883. with dfs.namenode.secondary.http-address configured. (eli)
  884. HDFS-3174. Fix assert in TestPendingDataNodeMessages. (eli)
  885. HDFS-3199. TestValidateConfigurationSettings is failing. (todd via eli)
  886. HDFS-3202. NamespaceInfo PB translation drops build version. (atm)
  887. HDFS-3109. Remove hsqldf exclusions from pom.xml. (Ravi Prakash
  888. via suresh)
  889. HDFS-3210. JsonUtil#toJsonMap for for a DatanodeInfo should use
  890. "ipAddr" instead of "name". (eli)
  891. HDFS-3208. Bogus entries in hosts files are incorrectly displayed
  892. in the report. (eli)
  893. HDFS-3136. Remove SLF4J dependency as HDFS does not need it to fix
  894. unnecessary warnings. (Jason Lowe via suresh)
  895. HDFS-3214. InterDatanodeProtocolServerSideTranslatorPB doesn't handle
  896. null response from initReplicaRecovery (todd)
  897. HDFS-3234. Accidentally left log message in GetConf after HDFS-3226 (todd)
  898. HDFS-3236. NameNode does not initialize generic conf keys when started
  899. with -initializeSharedEditsDir (atm)
  900. HDFS-3248. bootstrapStandby repeated twice in hdfs namenode usage message
  901. (Colin Patrick McCabe via todd)
  902. HDFS-2696. Fix the fuse-fds build. (Bruno Mahé via eli)
  903. HDFS-3260. TestDatanodeRegistration should set minimum DN version in
  904. addition to minimum NN version. (atm)
  905. HDFS-3255. HA DFS returns wrong token service (Daryn Sharp via todd)
  906. HDFS-3256. HDFS considers blocks under-replicated if topology script is
  907. configured with only 1 rack. (atm)
  908. HDFS-2799. Trim fs.checkpoint.dir values. (Amith D K via eli)
  909. HDFS-2765. TestNameEditsConfigs is incorrectly swallowing IOE. (atm)
  910. HDFS-3268. FileContext API mishandles token service and incompatible with
  911. HA (Daryn Sharp via todd)
  912. HDFS-3284. bootstrapStandby fails in secure cluster (todd)
  913. HDFS-3165. HDFS Balancer scripts are refering to wrong path of
  914. hadoop-daemon.sh (Amith D K via eli)
  915. HDFS-891. DataNode no longer needs to check for dfs.network.script.
  916. (harsh via eli)
  917. HDFS-3305. GetImageServlet should consider SBN a valid requestor in a
  918. secure HA setup. (atm)
  919. HDFS-3314. HttpFS operation for getHomeDirectory is incorrect. (tucu)
  920. HDFS-3319. Change DFSOutputStream to not to start a thread in constructors.
  921. (szetszwo)
  922. HDFS-3181. Fix a test case in TestLeaseRecovery2. (szetszwo)
  923. HDFS-3309. HttpFS (Hoop) chmod not supporting octal and sticky bit
  924. permissions. (tucu)
  925. HDFS-3326. Append enabled log message uses the wrong variable.
  926. (Matthew Jacobs via eli)
  927. HDFS-3336. hdfs launcher script will be better off not special casing
  928. namenode command with regards to hadoop.security.logger (rvs via tucu)
  929. HDFS-3330. If GetImageServlet throws an Error or RTE, response should not
  930. have HTTP "OK" status. (todd)
  931. HDFS-3351. NameNode#initializeGenericKeys should always set fs.defaultFS
  932. regardless of whether HA or Federation is enabled. (atm)
  933. HDFS-3359. DFSClient.close should close cached sockets. (todd)
  934. HDFS-3350. In INode, add final to compareTo(..), equals(..) and hashCode(),
  935. and remove synchronized from updatePermissionStatus(..). (szetszwo)
  936. HDFS-3357. DataXceiver reads from client socket with incorrect/no timeout
  937. (todd)
  938. HDFS-3376. DFSClient fails to make connection to DN if there are many
  939. unusable cached sockets (todd)
  940. HDFS-3328. NPE in DataNode.getIpcPort. (eli)
  941. HDFS-3396. FUSE build fails on Ubuntu 12.04. (Colin Patrick McCabe via eli)
  942. HDFS-3395. NN doesn't start with HA+security enabled and HTTP address
  943. set to 0.0.0.0. (atm)
  944. HDFS-3026. HA: Handle failure during HA state transition. (atm)
  945. HDFS-860. fuse-dfs truncate behavior causes issues with scp.
  946. (Brian Bockelman via eli)
  947. BREAKDOWN OF HDFS-1623 SUBTASKS
  948. HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)
  949. HDFS-1974. Introduce active and standy states to the namenode. (suresh)
  950. HDFS-2407. getServerDefaults and getStats don't check operation category (atm)
  951. HDFS-1973. HA: HDFS clients must handle namenode failover and switch over to
  952. the new active namenode. (atm)
  953. HDFS-2301. Start/stop appropriate namenode services when transition to active
  954. and standby states. (suresh)
  955. HDFS-2231. Configuration changes for HA namenode. (suresh)
  956. HDFS-2418. Change ConfiguredFailoverProxyProvider to take advantage of
  957. HDFS-2231. (atm)
  958. HDFS-2393. Mark appropriate methods of ClientProtocol with the idempotent
  959. annotation. (atm)
  960. HDFS-2523. Small NN fixes to include HAServiceProtocol and prevent NPE on
  961. shutdown. (todd)
  962. HDFS-2577. NN fails to start since it tries to start secret manager in
  963. safemode. (todd)
  964. HDFS-2582. Scope dfs.ha.namenodes config by nameservice (todd)
  965. HDFS-2591. MiniDFSCluster support to mix and match federation with HA (todd)
  966. HDFS-1975. Support for sharing the namenode state from active to standby.
  967. (jitendra, atm, todd)
  968. HDFS-1971. Send block report from datanode to both active and standby
  969. namenodes. (sanjay, todd via suresh)
  970. HDFS-2616. Change DatanodeProtocol#sendHeartbeat() to return HeartbeatResponse.
  971. (suresh)
  972. HDFS-2622. Fix TestDFSUpgrade in HA branch. (todd)
  973. HDFS-2612. Handle refreshNameNodes in federated HA clusters (todd)
  974. HDFS-2623. Add test case for hot standby capability (todd)
  975. HDFS-2626. BPOfferService.verifyAndSetNamespaceInfo needs to be synchronized
  976. (todd)
  977. HDFS-2624. ConfiguredFailoverProxyProvider doesn't correctly stop
  978. ProtocolTranslators (todd)
  979. HDFS-2625. TestDfsOverAvroRpc failing after introduction of HeartbeatResponse
  980. type (todd)
  981. HDFS-2627. Determine DN's view of which NN is active based on heartbeat
  982. responses (todd)
  983. HDFS-2634. Standby needs to ingest latest edit logs before transitioning to
  984. active (todd)
  985. HDFS-2671. NN should throw StandbyException in response to RPCs in STANDBY
  986. state (todd)
  987. HDFS-2680. DFSClient should construct failover proxy with exponential backoff
  988. (todd)
  989. HDFS-2683. Authority-based lookup of proxy provider fails if path becomes
  990. canonicalized (todd)
  991. HDFS-2689. HA: BookKeeperEditLogInputStream doesn't implement isInProgress()
  992. (atm)
  993. HDFS-2602. NN should log newly-allocated blocks without losing BlockInfo (atm)
  994. HDFS-2667. Fix transition from active to standby (todd)
  995. HDFS-2684. Fix up some failing unit tests on HA branch (todd)
  996. HDFS-2679. Add interface to query current state to HAServiceProtocol (eli via
  997. todd)
  998. HDFS-2677. Web UI should indicate the NN state. (eli via todd)
  999. HDFS-2678. When a FailoverProxyProvider is used, DFSClient should not retry
  1000. connection ten times before failing over (atm via todd)
  1001. HDFS-2682. When a FailoverProxyProvider is used, Client should not retry for 45
  1002. times if it is timing out to connect to server. (Uma Maheswara Rao G via todd)
  1003. HDFS-2693. Fix synchronization issues around state transition (todd)
  1004. HDFS-1972. Fencing mechanism for block invalidations and replications (todd)
  1005. HDFS-2714. Fix test cases which use standalone FSNamesystems (todd)
  1006. HDFS-2692. Fix bugs related to failover from/into safe mode. (todd)
  1007. HDFS-2716. Configuration needs to allow different dfs.http.addresses for each
  1008. HA NN (todd)
  1009. HDFS-2720. Fix MiniDFSCluster HA support to work properly on Windows. (Uma
  1010. Maheswara Rao G via todd)
  1011. HDFS-2291. Allow the StandbyNode to make checkpoints in an HA setup. (todd)
  1012. HDFS-2709. Appropriately handle error conditions in EditLogTailer (atm via
  1013. todd)
  1014. HDFS-2730. Refactor shared HA-related test code into HATestUtil class (todd)
  1015. HDFS-2762. Fix TestCheckpoint timing out on HA branch. (Uma Maheswara Rao G via
  1016. todd)
  1017. HDFS-2724. NN web UI can throw NPE after startup, before standby state is
  1018. entered. (todd)
  1019. HDFS-2753. Fix standby getting stuck in safemode when blocks are written while
  1020. SBN is down. (Hari Mankude and todd via todd)
  1021. HDFS-2773. Reading edit logs from an earlier version should not leave blocks in
  1022. under-construction state. (todd)
  1023. HDFS-2775. Fix TestStandbyCheckpoints.testBothNodesInStandbyState failing
  1024. intermittently. (todd)
  1025. HDFS-2766. Test for case where standby partially reads log and then performs
  1026. checkpoint. (atm)
  1027. HDFS-2738. FSEditLog.selectinputStreams is reading through in-progress streams
  1028. even when non-in-progress are requested. (atm)
  1029. HDFS-2789. TestHAAdmin.testFailover is failing (eli)
  1030. HDFS-2747. Entering safe mode after starting SBN can NPE. (Uma Maheswara Rao G
  1031. via todd)
  1032. HDFS-2772. On transition to active, standby should not swallow ELIE. (atm)
  1033. HDFS-2767. ConfiguredFailoverProxyProvider should support NameNodeProtocol.
  1034. (Uma Maheswara Rao G via todd)
  1035. HDFS-2795. Standby NN takes a long time to recover from a dead DN starting up.
  1036. (todd)
  1037. HDFS-2592. Balancer support for HA namenodes. (Uma Maheswara Rao G via todd)
  1038. HDFS-2367. Enable the configuration of multiple HA cluster addresses. (atm)
  1039. HDFS-2812. When becoming active, the NN should treat all leases as freshly
  1040. renewed. (todd)
  1041. HDFS-2737. Automatically trigger log rolls periodically on the active NN. (todd
  1042. and atm)
  1043. HDFS-2820. Add a simple sanity check for HA config (todd)
  1044. HDFS-2688. Add tests for quota tracking in an HA cluster. (todd)
  1045. HDFS-2804. Should not mark blocks under-replicated when exiting safemode (todd)
  1046. HDFS-2807. Service level authorizartion for HAServiceProtocol. (jitendra)
  1047. HDFS-2809. Add test to verify that delegation tokens are honored after
  1048. failover. (jitendra and atm)
  1049. HDFS-2838. NPE in FSNamesystem when in safe mode. (Gregory Chanan via eli)
  1050. HDFS-2805. Add a test for a federated cluster with HA NNs. (Brandon Li via
  1051. jitendra)
  1052. HDFS-2841. HAAdmin does not work if security is enabled. (atm)
  1053. HDFS-2691. Fixes for pipeline recovery in an HA cluster: report RBW replicas
  1054. immediately upon pipeline creation. (todd)
  1055. HDFS-2824. Fix failover when prior NN died just after creating an edit log
  1056. segment. (atm via todd)
  1057. HDFS-2853. HA: NN fails to start if the shared edits dir is marked required
  1058. (atm via eli)
  1059. HDFS-2845. SBN should not allow browsing of the file system via web UI. (Bikas
  1060. Saha via atm)
  1061. HDFS-2742. HA: observed dataloss in replication stress test. (todd via eli)
  1062. HDFS-2870. Fix log level for block debug info in processMisReplicatedBlocks
  1063. (todd)
  1064. HDFS-2859. LOCAL_ADDRESS_MATCHER.match has NPE when called from
  1065. DFSUtil.getSuffixIDs when the host is incorrect (Bikas Saha via todd)
  1066. HDFS-2861. checkpointing should verify that the dfs.http.address has been
  1067. configured to a non-loopback for peer NN (todd)
  1068. HDFS-2860. TestDFSRollback#testRollback is failing. (atm)
  1069. HDFS-2769. HA: When HA is enabled with a shared edits dir, that dir should be
  1070. marked required. (atm via eli)
  1071. HDFS-2863. Failures observed if dfs.edits.dir and shared.edits.dir have same
  1072. directories. (Bikas Saha via atm)
  1073. HDFS-2874. Edit log should log to shared dirs before local dirs. (todd)
  1074. HDFS-2890. DFSUtil#getSuffixIDs should skip unset configurations. (atm)
  1075. HDFS-2792. Make fsck work. (atm)
  1076. HDFS-2808. HA: haadmin should use namenode ids. (eli)
  1077. HDFS-2819. Document new HA-related configs in hdfs-default.xml. (eli)
  1078. HDFS-2752. HA: exit if multiple shared dirs are configured. (eli)
  1079. HDFS-2894. HA: automatically determine the nameservice Id if only one
  1080. nameservice is configured. (eli)
  1081. HDFS-2733. Document HA configuration and CLI. (atm)
  1082. HDFS-2794. Active NN may purge edit log files before standby NN has a chance to
  1083. read them (todd)
  1084. HDFS-2901. Improvements for SBN web UI - not show under-replicated/missing
  1085. blocks. (Brandon Li via jitendra)
  1086. HDFS-2905. HA: Standby NN NPE when shared edits dir is deleted. (Bikas Saha via
  1087. jitendra)
  1088. HDFS-2579. Starting delegation token manager during safemode fails. (todd)
  1089. HDFS-2510. Add HA-related metrics. (atm)
  1090. HDFS-2924. Standby checkpointing fails to authenticate in secure cluster.
  1091. (todd)
  1092. HDFS-2915. HA: TestFailureOfSharedDir.testFailureOfSharedDir() has race
  1093. condition. (Bikas Saha via jitendra)
  1094. HDFS-2912. Namenode not shutting down when shared edits dir is inaccessible.
  1095. (Bikas Saha via atm)
  1096. HDFS-2917. HA: haadmin should not work if run by regular user (eli)
  1097. HDFS-2939. TestHAStateTransitions fails on Windows. (Uma Maheswara Rao G via
  1098. atm)
  1099. HDFS-2947. On startup NN throws an NPE in the metrics system. (atm)
  1100. HDFS-2942. TestActiveStandbyElectorRealZK fails if build dir does not exist.
  1101. (atm)
  1102. HDFS-2948. NN throws NPE during shutdown if it fails to startup (todd)
  1103. HDFS-2909. HA: Inaccessible shared edits dir not getting removed from FSImage
  1104. storage dirs upon error. (Bikas Saha via jitendra)
  1105. HDFS-2934. Allow configs to be scoped to all NNs in the nameservice. (todd)
  1106. HDFS-2935. Shared edits dir property should be suffixed with nameservice and
  1107. namenodeID (todd)
  1108. HDFS-2928. ConfiguredFailoverProxyProvider should not create a NameNode proxy
  1109. with an underlying retry proxy. (Uma Maheswara Rao G via atm)
  1110. HDFS-2955. IllegalStateException during standby startup in getCurSegmentTxId.
  1111. (Hari Mankude via atm)
  1112. HDFS-2937. TestDFSHAAdmin needs tests with MiniDFSCluster. (Brandon Li via
  1113. suresh)
  1114. HDFS-2586. Add protobuf service and implementation for HAServiceProtocol.
  1115. (suresh via atm)
  1116. HDFS-2952. NN should not start with upgrade option or with a pending an
  1117. unfinalized upgrade. (atm)
  1118. HDFS-2974. MiniDFSCluster does not delete standby NN name dirs during format.
  1119. (atm)
  1120. HDFS-2929. Stress test and fixes for block synchronization (todd)
  1121. HDFS-2972. Small optimization building incremental block report (todd)
  1122. HDFS-2973. Re-enable NO_ACK optimization for block deletion. (todd)
  1123. HDFS-2922. HA: close out operation categories (eli)
  1124. HDFS-2993. HA: BackupNode#checkOperation should permit CHECKPOINT operations
  1125. (eli)
  1126. HDFS-2904. Client support for getting delegation tokens. (todd)
  1127. HDFS-3013. HA: NameNode format doesn't pick up
  1128. dfs.namenode.name.dir.NameServiceId configuration (Mingjie Lai via todd)
  1129. HDFS-3019. Fix silent failure of TestEditLogJournalFailures (todd)
  1130. HDFS-2958. Sweep for remaining proxy construction which doesn't go through
  1131. failover path. (atm)
  1132. HDFS-2920. fix remaining TODO items. (atm and todd)
  1133. HDFS-3027. Implement a simple NN health check. (atm)
  1134. HDFS-3023. Optimize entries in edits log for persistBlocks call. (todd)
  1135. HDFS-2979. Balancer should use logical uri for creating failover proxy with HA
  1136. enabled. (atm)
  1137. HDFS-3035. Fix failure of TestFileAppendRestart due to OP_UPDATE_BLOCKS (todd)
  1138. HDFS-3039. Address findbugs and javadoc warnings on branch. (todd via atm)
  1139. Release 0.23.5 - UNRELEASED
  1140. INCOMPATIBLE CHANGES
  1141. NEW FEATURES
  1142. IMPROVEMENTS
  1143. OPTIMIZATIONS
  1144. BUG FIXES
  1145. HDFS-3829. TestHftpURLTimeouts fails intermittently with JDK7 (Trevor
  1146. Robinson via tgraves)
  1147. HDFS-3824. TestHftpDelegationToken fails intermittently with JDK7 (Trevor
  1148. Robinson via tgraves)
  1149. HDFS-3224. Bug in check for DN re-registration with different storage ID
  1150. (jlowe)
  1151. Release 0.23.4 - UNRELEASED
  1152. INCOMPATIBLE CHANGES
  1153. NEW FEATURES
  1154. IMPROVEMENTS
  1155. OPTIMIZATIONS
  1156. BUG FIXES
  1157. HDFS-3831. Failure to renew tokens due to test-sources left in classpath
  1158. (jlowe via bobby)
  1159. Release 0.23.3
  1160. INCOMPATIBLE CHANGES
  1161. NEW FEATURES
  1162. IMPROVEMENTS
  1163. OPTIMIZATIONS
  1164. BUG FIXES
  1165. HDFS-3166. Add timeout to Hftp connections. (Daryn Sharp via szetszwo)
  1166. HDFS-3176. Use MD5MD5CRC32FileChecksum.readFields() in JsonUtil . (Kihwal
  1167. Lee via szetszwo)
  1168. HDFS-2652. Add support for host-based delegation tokens. (Daryn Sharp via
  1169. szetszwo)
  1170. HDFS-3308. Uses canonical URI to select delegation tokens in HftpFileSystem
  1171. and WebHdfsFileSystem. (Daryn Sharp via szetszwo)
  1172. HDFS-3312. In HftpFileSystem, the namenode URI is non-secure but the
  1173. delegation tokens have to use secure URI. (Daryn Sharp via szetszwo)
  1174. HDFS-3318. Use BoundedInputStream in ByteRangeInputStream, otherwise, it
  1175. hangs on transfers >2 GB. (Daryn Sharp via szetszwo)
  1176. HDFS-3321. Fix safe mode turn off tip message. (Ravi Prakash via szetszwo)
  1177. HDFS-3334. Fix ByteRangeInputStream stream leakage. (Daryn Sharp via
  1178. szetszwo)
  1179. HDFS-3331. In namenode, check superuser privilege for setBalancerBandwidth
  1180. and acquire the write lock for finalizeUpgrade. (szetszwo)
  1181. HDFS-3577. In DatanodeWebHdfsMethods, use MessageBodyWriter instead of
  1182. StreamingOutput, otherwise, it will fail to transfer large files.
  1183. (szetszwo)
  1184. HDFS-3646. LeaseRenewer can hold reference to inactive DFSClient
  1185. instances forever. (Kihwal Lee via daryn)
  1186. HDFS-3696. Set chunked streaming mode in WebHdfsFileSystem write operations
  1187. to get around a Java library bug causing OutOfMemoryError. (szetszwo)
  1188. HDFS-3553. Hftp proxy tokens are broken (daryn)
  1189. HDFS-3718. Datanode won't shutdown because of runaway DataBlockScanner
  1190. thread (Kihwal Lee via daryn)
  1191. HDFS-3861. Deadlock in DFSClient (Kihwal Lee via daryn)
  1192. HDFS-3873. Hftp assumes security is disabled if token fetch fails (daryn)
  1193. HDFS-3852. TestHftpDelegationToken is broken after HADOOP-8225 (daryn)
  1194. HDFS-3890. filecontext mkdirs doesn't apply umask as expected
  1195. (Tom Graves via daryn)
  1196. Release 0.23.2 - UNRELEASED
  1197. INCOMPATIBLE CHANGES
  1198. HDFS-2887. FSVolume, is a part of FSDatasetInterface implementation, should
  1199. not be referred outside FSDataset. A new FSVolumeInterface is defined.
  1200. The BlockVolumeChoosingPolicy.chooseVolume(..) method signature is also
  1201. updated. (szetszwo)
  1202. NEW FEATURES
  1203. HDFS-2943. Expose last checkpoint time and transaction stats as JMX
  1204. metrics. (atm)
  1205. IMPROVEMENTS
  1206. HDFS-2931. Switch DataNode's BlockVolumeChoosingPolicy to private-audience.
  1207. (harsh via szetszwo)
  1208. HDFS-2725. hdfs script usage information is missing the information
  1209. about "dfs" command (Prashant Sharma via stevel)
  1210. HDFS-2907. Add a conf property dfs.datanode.fsdataset.factory to make
  1211. FSDataset in Datanode pluggable. (szetszwo)
  1212. HDFS-2985. Improve logging when replicas are marked as corrupt. (todd)
  1213. HDFS-3098. Update and add tests for HADOOP-8173. (Daryn Sharp via szetszwo)
  1214. HDFS-3104. Add tests for HADOOP-8175. (Daryn Sharp via szetszwo)
  1215. HDFS-3066. Cap space usage of default log4j rolling policy.
  1216. (Patrick Hunt via eli)
  1217. OPTIMIZATIONS
  1218. BUG FIXES
  1219. HDFS-2923. Namenode IPC handler count uses the wrong configuration key
  1220. (todd)
  1221. HDFS-2869. Fix an error in the webhdfs docs for the mkdir op (harsh)
  1222. HDFS-776. Fix exception handling in Balancer. (Uma Maheswara Rao G
  1223. via szetszwo)
  1224. HDFS-2815. Namenode sometimes oes not come out of safemode during
  1225. NN crash + restart. (Uma Maheswara Rao via suresh)
  1226. HDFS-2950. Secondary NN HTTPS address should be listed as a
  1227. NAMESERVICE_SPECIFIC_KEY. (todd)
  1228. HDFS-2525. Race between BlockPoolSliceScanner and append. (Brandon Li
  1229. via jitendra)
  1230. HDFS-2938. Recursive delete of a large directory make namenode
  1231. unresponsive. (Hari Mankude via suresh)
  1232. HDFS-2969. ExtendedBlock.equals is incorrectly implemented (todd)
  1233. HDFS-2944. Typo in hdfs-default.xml causes
  1234. dfs.client.block.write.replace-datanode-on-failure.enable to be mistakenly
  1235. disabled. (atm)
  1236. HDFS-2981. In hdfs-default.xml, the default value of
  1237. dfs.client.block.write.replace-datanode-on-failure.enable should be true.
  1238. (szetszwo)
  1239. HDFS-3008. Negative caching of local addrs doesn't work. (eli)
  1240. HDFS-3006. In WebHDFS, when the return body is empty, set the Content-Type
  1241. to application/octet-stream instead of application/json. (szetszwo)
  1242. HDFS-2991. Fix case where OP_ADD would not be logged in append(). (todd)
  1243. HDFS-3012. Exception while renewing delegation token. (Bobby Evans via
  1244. jitendra)
  1245. HDFS-3032. Change DFSClient.renewLease() so that it only retries up to the
  1246. lease soft-limit. (Kihwal Lee via szetszwo)
  1247. HDFS-2038. Update TestHDFSCLI to handle relative paths with globs.
  1248. (Kihwal Lee via szetszwo)
  1249. HDFS-3101. Cannot read empty file using WebHDFS. (szetszwo)
  1250. HDFS-3160. httpfs should exec catalina instead of forking it.
  1251. (Roman Shaposhnik via eli)
  1252. Release 0.23.1 - 2012-02-17
  1253. INCOMPATIBLE CHANGES
  1254. NEW FEATURES
  1255. HDFS-2316. [umbrella] WebHDFS: a complete FileSystem implementation for
  1256. accessing HDFS over HTTP (szetszwo)
  1257. HDFS-2594. Support getDelegationTokens and createSymlink in WebHDFS.
  1258. (szetszwo)
  1259. HDFS-2545. Change WebHDFS to support multiple namenodes in federation.
  1260. (szetszwo)
  1261. HDFS-2178. Contributing Hoop to HDFS, replacement for HDFS proxy with
  1262. read/write capabilities. (tucu)
  1263. IMPROVEMENTS
  1264. HDFS-2560. Refactor BPOfferService to be a static inner class (todd)
  1265. HDFS-2544. Hadoop scripts unconditionally source
  1266. "$bin"/../libexec/hadoop-config.sh. (Bruno Mahé via tomwhite)
  1267. HDFS-2543. HADOOP_PREFIX cannot be overridden. (Bruno Mahé via tomwhite)
  1268. HDFS-2562. Refactor DN configuration variables out of DataNode class
  1269. (todd)
  1270. HDFS-2563. Some cleanup in BPOfferService. (todd)
  1271. HDFS-2568. Use a set to manage child sockets in XceiverServer.
  1272. (harsh via eli)
  1273. HDFS-2454. Move maxXceiverCount check to before starting the
  1274. thread in dataXceiver. (harsh via eli)
  1275. HDFS-2570. Add descriptions for dfs.*.https.address in hdfs-default.xml.
  1276. (eli)
  1277. HDFS-2536. Remove unused imports. (harsh via eli)
  1278. HDFS-2566. Move BPOfferService to be a non-inner class. (todd)
  1279. HDFS-2552. Add Forrest doc for WebHDFS REST API. (szetszwo)
  1280. HDFS-2587. Add apt doc for WebHDFS REST API. (szetszwo)
  1281. HDFS-2604. Add a log message to show if WebHDFS is enabled and a
  1282. configuration section in the forrest doc. (szetszwo)
  1283. HDFS-2511. Add dev script to generate HDFS protobufs. (tucu)
  1284. HDFS-2654. Make BlockReaderLocal not extend RemoteBlockReader2. (eli)
  1285. HDFS-2675. Reduce warning verbosity when double-closing edit logs
  1286. (todd)
  1287. HDFS-2335. DataNodeCluster and NNStorage always pull fresh entropy.
  1288. (Uma Maheswara Rao G via eli)
  1289. HDFS-2574. Remove references to some deprecated properties in conf
  1290. templates and defaults files. (Joe Crobak via harsh)
  1291. HDFS-2722. HttpFs should not be using an int for block size. (harsh)
  1292. HDFS-2710. Add HDFS tests related to HADOOP-7933. (sid via suresh)
  1293. HDFS-2349. Corruption detected during block transfers between DNs
  1294. should log a WARN instead of INFO. (harsh)
  1295. HDFS-2729. Update BlockManager's comments regarding the invalid block
  1296. set (harsh)
  1297. HDFS-2726. Fix a logging issue under DFSClient's createBlockOutputStream
  1298. method (harsh)
  1299. HDFS-554. Use System.arraycopy in BlockInfo.ensureCapacity. (harsh)
  1300. HDFS-1314. Make dfs.blocksize accept size-indicating prefixes.
  1301. (Sho Shimauchi via harsh)
  1302. HDFS-69. Improve the 'dfsadmin' commandline help. (harsh)
  1303. HDFS-2788. HdfsServerConstants#DN_KEEPALIVE_TIMEOUT is dead code. (eli)
  1304. HDFS-362. FSEditLog should not writes long and short as UTF8, and should
  1305. not use ArrayWritable for writing non-array items. (Uma Maheswara Rao G
  1306. via szetszwo)
  1307. HDFS-2803. Add logging to LeaseRenewer for better lease expiration debugging.
  1308. (Jimmy Xiang via todd)
  1309. HDFS-2817. Combine the two TestSafeMode test suites. (todd)
  1310. HDFS-2818. Fix a missing space issue in HDFS webapps' title tags.
  1311. (Devaraj K via harsh)
  1312. HDFS-2397. Undeprecate SecondaryNameNode. (eli)
  1313. HDFS-2814 NamenodeMXBean does not account for svn revision in the version
  1314. information. (Hitesh Shah via jitendra)
  1315. HDFS-2784. Update hftp and hdfs for host-based token support.
  1316. (Kihwal Lee via jitendra)
  1317. HDFS-2785. Update webhdfs and httpfs for host-based token support.
  1318. (Robert Joseph Evans via jitendra)
  1319. HDFS-2868. Expose xceiver counts via the DataNode MXBean. (harsh)
  1320. HDFS-3139. Minor Datanode logging improvement. (eli)
  1321. OPTIMIZATIONS
  1322. HDFS-2130. Switch default checksum to CRC32C. (todd)
  1323. HDFS-2533. Remove needless synchronization on some FSDataSet methods.
  1324. (todd)
  1325. HDFS-2129. Simplify BlockReader to not inherit from FSInputChecker.
  1326. (todd)
  1327. HDFS-2246. Enable reading a block directly from local file system
  1328. for a client on the same node as the block file. (Andrew Purtell,
  1329. Suresh Srinivas and Jitendra Nath Pandey via szetszwo)
  1330. HDFS-2825. Add test hook to turn off the writer preferring its local
  1331. DN. (todd)
  1332. HDFS-2826. Add test case for HDFS-1476 (safemode can initialize
  1333. replication queues before exiting) (todd)
  1334. HDFS-2864. Remove some redundant methods and the constant METADATA_VERSION
  1335. from FSDataset. (szetszwo)
  1336. HDFS-2879. Change FSDataset to package private. (szetszwo)
  1337. BUG FIXES
  1338. HDFS-2541. For a sufficiently large value of blocks, the DN Scanner
  1339. may request a random number with a negative seed value. (harsh via eli)
  1340. HDFS-2502. hdfs-default.xml should include dfs.name.dir.restore.
  1341. (harsh via eli)
  1342. HDFS-2567. When 0 DNs are available, show a proper error when
  1343. trying to browse DFS via web UI. (harsh via eli)
  1344. HDFS-2575. DFSTestUtil may create empty files (todd)
  1345. HDFS-2588. hdfs jsp pages missing DOCTYPE. (Dave Vronay via mattf)
  1346. HDFS-2590. Fix the missing links in the WebHDFS forrest doc. (szetszwo)
  1347. HDFS-2596. TestDirectoryScanner doesn't test parallel scans. (eli)
  1348. HDFS-2606. webhdfs client filesystem impl must set the content-type
  1349. header for create/append. (tucu)
  1350. HDFS-2614. hadoop dist tarball is missing hdfs headers. (tucu)
  1351. HDFS-2653. DFSClient should cache whether addrs are non-local when
  1352. short-circuiting is enabled. (eli)
  1353. HDFS-2649. eclipse:eclipse build fails for hadoop-hdfs-httpfs.
  1354. (Jason Lowe via eli)
  1355. HDFS-2640. Javadoc generation hangs. (tomwhite)
  1356. HDFS-2553. Fix BlockPoolSliceScanner spinning in a tight loop (Uma
  1357. Maheswara Rao G via todd)
  1358. HDFS-2658. HttpFS introduced 70 javadoc warnings. (tucu)
  1359. HDFS-2706. Use configuration for blockInvalidateLimit if it is set.
  1360. (szetszwo)
  1361. HDFS-2646. Hadoop HttpFS introduced 4 findbug warnings. (tucu)
  1362. HDFS-2657. TestHttpFSServer and TestServerWebApp are failing on trunk.
  1363. (tucu)
  1364. HDFS-2705. HttpFS server should check that upload requests have correct
  1365. content-type. (tucu)
  1366. HDFS-2707. HttpFS should read the hadoop-auth secret from a file
  1367. instead inline from the configuration. (tucu)
  1368. HDFS-2790. FSNamesystem.setTimes throws exception with wrong
  1369. configuration name in the message. (Arpit Gupta via eli)
  1370. HDFS-2810. Leases not getting renewed properly by clients (todd)
  1371. HDFS-2751. Datanode may incorrectly drop OS cache behind reads
  1372. even for short reads. (todd)
  1373. HDFS-2816. Fix missing license header in httpfs findbugsExcludeFile.xml.
  1374. (hitesh via tucu)
  1375. HDFS-2822. processMisReplicatedBlock incorrectly identifies
  1376. under-construction blocks as under-replicated. (todd)
  1377. HDFS-442. dfsthroughput in test jar throws NPE (harsh)
  1378. HDFS-2836. HttpFSServer still has 2 javadoc warnings in trunk.
  1379. (revans2 via tucu)
  1380. HDFS-2837. mvn javadoc:javadoc not seeing LimitedPrivate class
  1381. (revans2 via tucu)
  1382. HDFS-2840. TestHostnameFilter should work with localhost or
  1383. localhost.localdomain (tucu)
  1384. HDFS-2791. If block report races with closing of file, replica is
  1385. incorrectly marked corrupt. (todd)
  1386. HDFS-2827. When the parent of a directory is the root, renaming the
  1387. directory results in leases updated incorrectly. (Uma Maheswara Rao G
  1388. via szetszwo)
  1389. HDFS-2835. Fix findbugs and javadoc issue with GetConf.java.
  1390. (suresh)
  1391. HDFS-2889. getNumCurrentReplicas is package private but should be public on
  1392. 0.23 (see HDFS-2408). (Gregory Chanan via atm)
  1393. HDFS-2893. The start/stop scripts don't start/stop the 2NN when
  1394. using the default configuration. (eli)
  1395. Release 0.23.0 - 2011-11-01
  1396. INCOMPATIBLE CHANGES
  1397. HDFS-1526. Dfs client name for a map/reduce task should be unique
  1398. among threads. (hairong)
  1399. HDFS-1536. Improve HDFS WebUI. (hairong)
  1400. HDFS-2210. Remove hdfsproxy. (eli)
  1401. HDFS-1073. Redesign the NameNode's storage layout for image checkpoints
  1402. and edit logs to introduce transaction IDs and be more robust.
  1403. Please see HDFS-1073 section below for breakout of individual patches.
  1404. NEW FEATURES
  1405. HDFS-1359. Add BlockPoolID to Block. (suresh)
  1406. HDFS-1365. Federation: propose ClusterID and BlockPoolID format
  1407. (Tanping via boryas)
  1408. HDFS-1394. Federation: modify -format option for namenode to generated
  1409. new blockpool id and accept newcluster (boryas)
  1410. HDFS-1400. Federation: DataTransferProtocol uses ExtendedBlockPool to
  1411. include BlockPoolID in the protocol. (suresh)
  1412. HDFS-1428. Federation : add cluster ID and block pool ID into
  1413. Name node web UI(Tanping via boryas)
  1414. HDFS-1450. Federation: Introduce block pool ID into FSDatasetInterface.
  1415. (suresh)
  1416. HDFS-1632. Federation: data node storage structure changes and
  1417. introduce block pool storage. (Tanping via suresh)
  1418. HDFS-1634. Federation: Convert single threaded DataNode into
  1419. per BlockPool thread model.(boryas)
  1420. HDFS-1637. Federation: FSDataset in Datanode should be created after
  1421. initial handshake with namenode. (boryas and jitendra)
  1422. HDFS-1653. Federation: Block received message from datanode sends invalid
  1423. DatanodeRegistration. (Tanping via suresh)
  1424. HDFS-1645. Federation: DatanodeCommond.Finalize needs to include
  1425. BlockPoolId. (suresh)
  1426. HDFS-1638. Federation: DataNode.handleDiskError needs to inform
  1427. ALL namenodes if a disk failed (boryas)
  1428. HDFS-1647. Federation: Multiple namenode configuration. (jitendra)
  1429. HDFS-1639. Federation: Add block pool management to FSDataset. (suresh)
  1430. HDFS-1648. Federation: Only DataStorage must be locked using in_use.lock
  1431. and no locks must be associated with BlockPoolStorage. (Tanping via suresh)
  1432. HDFS-1641. Federation: Datanode fields that are no longer used should
  1433. be removed (boryas)
  1434. HDFS-1642. Federation: add Datanode.getDNRegistration(String bpid)
  1435. method (boryas)
  1436. HDFS-1643. Federation: remove namenode argument from DataNode
  1437. constructor (boryas)
  1438. HDFS-1657. Federation: Tests that corrupt block files fail due to changed
  1439. file path in federation. (suresh)
  1440. HDFS-1661. Federation: Remove unnecessary TODO:FEDERATION comments.
  1441. (jitendra)
  1442. HDFS-1660. Federation: Datanode doesn't start with two namenodes (boryas)
  1443. HDFS-1650. Federation: TestReplication fails. (Tanping via suresh)
  1444. HDFS-1651. Federation: Tests fail due to null pointer exception in
  1445. Datnode#shutdown() method. (Tanping via suresh)
  1446. HDFS-1649. Federation: Datanode command to refresh namenode list at
  1447. the datanode. (jitendra)
  1448. HDFS-1646. Federation: MiniDFSClsuter#waitActive() waits for ever
  1449. with the introduction of BPOfferService in datanode. (suresh)
  1450. HDFS-1659. Federation: BPOfferService exits after one iteration
  1451. incorrectly. (Tanping via suresh)
  1452. HDFS-1654. Federation: Fix TestDFSUpgrade and TestDFSRollback failures.
  1453. (suresh)
  1454. HDFS-1668. Federation: Datanodes sends block pool usage information
  1455. to the namenode in heartbeat. (suresh)
  1456. HDFS-1669. Federation: Fix TestHftpFileSystem failure. (suresh)
  1457. HDFS-1670. Federation: remove dnRegistration from Datanode (boryas)
  1458. HDFS-1662. Federation: fix unit test case, TestCheckpoint
  1459. and TestDataNodeMXBean (tanping via boryas)
  1460. HDFS-1671. Federation: shutdown in DataNode should be able to
  1461. shutdown individual BP threads as well as the whole DN (boryas).
  1462. HDFS-1663. Federation: Rename getPoolId() everywhere to
  1463. getBlockPoolId() (tanping via boryas)
  1464. HDFS-1652. FederationL Add support for multiple namenodes in
  1465. MiniDFSCluster. (suresh)
  1466. HDFS-1672. Federation: refactor stopDatanode(name) to work
  1467. with multiple Block Pools (boryas)
  1468. HDFS-1687. Federation: DirectoryScanner changes for
  1469. federation (Matt Foley via boryas)
  1470. HDFS-1626. Make BLOCK_INVALIDATE_LIMIT configurable. (szetszwo)
  1471. HDFS-1655. Federation: DatablockScanner should scan blocks for
  1472. all the block pools. (jitendra)
  1473. HDFS-1664. Federation: Add block pool storage usage to Namenode WebUI.
  1474. (Tanping via suresh)
  1475. HDFS-1674. Federation: Rename BlockPool class to BlockPoolSlice.
  1476. (jghoman, Tanping via suresh)
  1477. HDFS-1673. Federation: Datanode changes to track block token secret per
  1478. namenode. (suresh)
  1479. HDFS-1677. Federation: Fix TestFsck and TestListCorruptFileBlocks
  1480. failures. (Tanping via suresh)
  1481. HDFS-1678. Federation: Remove unnecessary #getBlockpool()
  1482. for NameNodeMXBean in FSNameSystem. (Tanping via Suresh)
  1483. HDFS-1688. Federation: Fix failures in fault injection tests,
  1484. TestDiskError, TestDatanodeRestart and TestDFSTartupVersions. (suresh)
  1485. HDFS-1696. Federation: when build version doesn't match -
  1486. datanode should wait (keep connecting) untill NN comes up
  1487. with the right version (boryas)
  1488. HDFS-1681. Balancer: support per pool and per node policies. (szetszwo)
  1489. HDFS-1695. Federation: Fix testOIV and TestDatanodeUtils
  1490. (jhoman and tanping via boryas)
  1491. HDFS:1699. Federation: Fix failure of TestBlockReport.
  1492. (Matt Foley via suresh)
  1493. HDFS-1698. Federation: TestOverReplicatedBlocks and TestWriteToReplica
  1494. failing. (jhoman and jitendra)
  1495. HDFS-1701. Federation: Fix TestHeartbeathandling.
  1496. (Erik Steffl and Tanping Wang via suresh)
  1497. HDFS-1693. Federation: Fix TestDFSStorageStateRecovery failure. (suresh)
  1498. HDFS-1694. Federation: SimulatedFSDataset changes to work with
  1499. federation and multiple block pools. (suresh)
  1500. HDFS-1689. Federation: Configuration for namenodes. (suresh and jitendra)
  1501. HDFS-1682. Change Balancer CLI for multiple namenodes and balancing
  1502. policy. (szetszwo)
  1503. HDFS-1697. Federation: fix TestBlockRecovery (boryas)
  1504. HDFS-1702. Federation: fix TestBackupNode and TestRefreshNamendoes
  1505. failures. (suresh)
  1506. HDFS-1706. Federation: TestFileAppend2, TestFileAppend3 and
  1507. TestBlockTokenWithDFS failing. (jitendra)
  1508. HDFS-1704. Federation: Add a tool that lists namenodes, secondary and
  1509. backup from configuration file. (suresh)
  1510. HDFS-1711. Federation: create method for updating machine name in
  1511. DataNode.java (boryas)
  1512. HDFS-1712. Federation: when looking up datanode we should use machineNmae
  1513. (in testOverReplicatedBlocks) (boryas)
  1514. HDFS-1709. Federation: Error "nnaddr url param is null" when clicking on a
  1515. node from NN Live Node Link. (jitendra)
  1516. HDFS-1714. Federation: refactor upgrade object in DataNode (boryas)
  1517. HDFS-1715. Federation: warning/error not generated when datanode sees
  1518. inconsistent/different Cluster ID between namenodes (boryas)
  1519. HDFS-1715. Federation: warning/error not generated when datanode sees
  1520. inconsistent/different Cluster ID between namenodes (boryas)
  1521. HDFS-1716. Federation: Add decommission tests for federated namenodes.
  1522. (suresh)
  1523. HDFS-1713. Federation: Prevent DataBlockScanner from running in tight loop.
  1524. (jitendra)
  1525. HDFS-1721. Federation: Configuration for principal names should not be
  1526. namenode specific. (jitendra)
  1527. HDFS-1717. Federation: FSDataset volumeMap access is not synchronized
  1528. correctly. (suresh)
  1529. HDFS-1722. Federation: Add flag to MiniDFSCluser to differentiate between
  1530. federation and non-federation modes. (boryas via suresh)
  1531. HDFS-1718. Federation: MiniDFSCluster#waitActive() bug causes some tests
  1532. to fail. (suresh)
  1533. HDFS-1719. Federation: Fix TestDFSRemove that fails intermittently.
  1534. (suresh)
  1535. HDFS-1720. Federation: FSVolumeSet volumes is not synchronized correctly.
  1536. (suresh)
  1537. HDFS-1700. Federation: fsck needs to work with federation changes.
  1538. (Matt Foley via suresh)
  1539. HDFS-1482. Add listCorruptFileBlocks to DistributedFileSystem.
  1540. (Patrick Kling via hairong)
  1541. HDFS-1448. Add a new tool Offline Edits Viewer (oev). (Erik Steffl
  1542. via szetszwo)
  1543. HDFS-1735. Federation: merge FSImage change in federation to
  1544. FSImage+NNStorage refactoring in trunk. (suresh)
  1545. HDFS-1737. Federation: Update the layout version for federation
  1546. changes. (suresh)
  1547. HDFS-1744. Federation: Add new layout version to offline image viewer
  1548. and edits viewer. (suresh)
  1549. HDFS-1745. Federation: Fix fault injection test failures. (suresh)
  1550. HDFS-1746. Federation: TestFileAppend3 fails intermittently. (jitendra)
  1551. HDFS-1703. Improve start/stop scripts and add decommission tool for
  1552. federation. (Tanping Wang, Erik Steffl via suresh)
  1553. HDFS-1749. Federation: TestListCorruptFileBlocks failing in federation
  1554. branch. (jitendra)
  1555. HDFS-1754. Federation: testFsck fails. (boryas)
  1556. HDFS-1755. Federation: The BPOfferService must always connect to namenode
  1557. as the login user. (jitendra)
  1558. HDFS-1675. Support transferring RBW between datanodes. (szetszwo)
  1559. HDFS-1791. Federation: Add command to delete block pool directories
  1560. from a datanode. (jitendra)
  1561. HDFS-1761. Add a new DataTransferProtocol operation, Op.TRANSFER_BLOCK,
  1562. for transferring RBW/Finalized with acknowledgement and without using RPC.
  1563. (szetszwo)
  1564. HDFS-1813. Federation: Authentication using BlockToken in RPC to datanode
  1565. fails. (jitendra)
  1566. HDFS-1630. Support fsedits checksum. (hairong)
  1567. HDFS-1606. Provide a stronger data guarantee in the write pipeline by
  1568. adding a new datanode when an existing datanode failed. (szetszwo)
  1569. HDFS-1442. Api to get delegation token in Hdfs class. (jitendra)
  1570. HDFS-1070. Speedup namenode image loading and saving by storing only
  1571. local file names. (hairong)
  1572. HDFS-1751. Intrinsic limits for HDFS files, directories (daryn via boryas).
  1573. HDFS-1873. Federation: Add cluster management web console.
  1574. (Tanping Wang via suresh)
  1575. HDFS 1911 HDFS tests for the newly added viewfs
  1576. HDFS-1814. Add "hdfs groups" command to query the server-side groups
  1577. resolved for a user. (Aaron T. Myers via todd)
  1578. HDFS-1914. Federation: namenode storage directories must be configurable
  1579. specific to name service. (suresh)
  1580. HDFS-1963. Create RPM and Debian packages for HDFS. Changes deployment
  1581. layout to be consistent across the binary tgz, rpm, and deb.
  1582. (Eric Yang via omalley)
  1583. HDFS-2058. Change Data Transfer wire protocol to use protocol buffers.
  1584. (todd)
  1585. HDFS-2055. Add hflush support to libhdfs. (Travis Crawford via eli)
  1586. HDFS-2083. Query JMX statistics over http via JMXJsonServlet. (tanping)
  1587. HDFS-2156. Make hdfs and mapreduce rpm only depend on the same major
  1588. version for common and hdfs. (eyang via omalley)
  1589. HDFS-2202. Add a new DFSAdmin command to set balancer bandwidth of
  1590. datanodes without restarting. (Eric Payne via szetszwo)
  1591. HDFS-2284. Add a new FileSystem, webhdfs://, for supporting write Http
  1592. access to HDFS. (szetszwo)
  1593. HDFS-2317. Support read access to HDFS in WebHDFS. (szetszwo)
  1594. HDFS-2338. Add configuration option to enable/disable WebHDFS.
  1595. (jitendra via szetszwo)
  1596. HDFS-2318. Provide authentication to WebHDFS using SPNEGO and delegation
  1597. tokens. (szetszwo)
  1598. HDFS-2340. Support getFileBlockLocations and getDelegationToken in WebHDFS.
  1599. (szetszwo)
  1600. HDFS-2348. Support getContentSummary and getFileChecksum in WebHDFS.
  1601. (szetszwo)
  1602. HDFS-2385. Support renew and cancel delegation tokens in WebHDFS.
  1603. (szetszwo)
  1604. HDFS-2539. Support doAs and GETHOMEDIRECTORY in WebHDFS.
  1605. (szetszwo)
  1606. IMPROVEMENTS
  1607. HDFS-1875. MiniDFSCluster hard-codes dfs.datanode.address to localhost
  1608. (Eric Payne via mattf)
  1609. HDFS-2019. Fix all the places where Java method File.list is used with
  1610. FileUtil.list API (Bharath Mundlapudi via mattf)
  1611. HDFS-1934. Fix NullPointerException when certain File APIs return null
  1612. (Bharath Mundlapudi via mattf)
  1613. HDFS-1510. Added test-patch.properties required by test-patch.sh (nigel)
  1614. HDFS-1628. Display full path in AccessControlException. (John George
  1615. via szetszwo)
  1616. HDFS-1707. Federation: Failure in browsing data on new namenodes.
  1617. (jitendra)
  1618. HDFS-1683. Test Balancer with multiple NameNodes. (szetszwo)
  1619. HDFS-1547. Improve decommission mechanism. (suresh)
  1620. HDFS-2143. Federation: In cluster web console, add link to namenode page
  1621. that displays live and dead datanodes. (Ravi Prakash via suresh)
  1622. HDFS-1588. Remove hardcoded strings for configuration keys, "dfs.hosts"
  1623. and "dfs.hosts.exlude". (Erik Steffl via suresh)
  1624. HDFS-1481. NameNode should validate fsimage before rolling. (hairong)
  1625. HDFS-1506. Refactor fsimage loading code. (hairong)
  1626. HDFS-1533. A more elegant FileSystem#listCorruptFileBlocks API
  1627. (HDFS portion) (Patrick Kling via hairong)
  1628. HDFS-1476. listCorruptFileBlocks should be functional while the
  1629. name node is in safe mode. (Patrick Kling via hairong)
  1630. HDFS-1534. Fix some incorrect logs in FSDirectory. (eli)
  1631. HDFS-1539. A config option for the datanode to fsycn a block file
  1632. when block is completely written. (dhruba)
  1633. HDFS-1335. HDFS side change of HADDOP-6904: RPC compatibility. (hairong)
  1634. HDFS-1557. Separate Storage from FSImage. (Ivan Kelly via jitendra)
  1635. HDFS-560 Enhancements/tuning to hadoop-hdfs/build.xml
  1636. HDFS-1629. Add a method to BlockPlacementPolicy for keeping the chosen
  1637. nodes in the output array. (szetszwo)
  1638. HDFS-1731. Allow using a file to exclude certain tests from build (todd)
  1639. HDFS-1736. Remove the dependency from DatanodeJspHelper to FsShell.
  1640. (Daryn Sharp via szetszwo)
  1641. HDFS-780. Revive TestFuseDFS. (eli)
  1642. HDFS-1445. Batch the calls in DataStorage to FileUtil.createHardLink().
  1643. (Matt Foley via jghoman)
  1644. HDFS-1763. Replace hard-coded option strings with variables from
  1645. DFSConfigKeys. (eli)
  1646. HDFS-1541. Not marking datanodes dead when namenode in safemode.
  1647. (hairong)
  1648. HDFS-1120. Make DataNode's block-to-device placement policy pluggable
  1649. (Harsh J Chouraria via todd)
  1650. HDFS-1785. In BlockReceiver and DataXceiver, clientName.length() is used
  1651. multiple times for determining whether the source is a client or a
  1652. datanode. (szetszwo)
  1653. HDFS-1789. Refactor frequently used codes from DFSOutputStream and
  1654. DataXceiver. (szetszwo)
  1655. HDFS-1767. Namenode ignores non-initial block report from datanodes
  1656. when in safemode during startup. (Matt Foley via suresh)
  1657. HDFS-1817. Move pipeline_Fi_[39-51] from TestFiDataTransferProtocol
  1658. to TestFiPipelineClose. (szetszwo)
  1659. HDFS-1760. In FSDirectory.getFullPathName(..), it is better to return "/"
  1660. for root directory instead of an empty string. (Daryn Sharp via szetszwo)
  1661. HDFS-1833. Reduce repeated string constructions and unnecessary fields,
  1662. and fix comments in BlockReceiver.PacketResponder. (szetszwo)
  1663. HDFS-1486. Generalize CLITest structure and interfaces to faciliate
  1664. upstream adoption (e.g. for web testing). (cos)
  1665. HDFS-1844. Move "fs -help" shell command tests from HDFS to COMMOM; see
  1666. also HADOOP-7230. (Daryn Sharp via szetszwo)
  1667. HDFS-1840. In DFSClient, terminate the lease renewing thread when all files
  1668. being written are closed for a grace period, and start a new thread when
  1669. new files are opened for write. (szetszwo)
  1670. HDFS-1854. make failure message more useful in
  1671. DFSTestUtil.waitReplication(). (Matt Foley via eli)
  1672. HDFS-1562. Add rack policy tests. (eli)
  1673. HDFS-1856. TestDatanodeBlockScanner waits forever, errs without giving
  1674. information. (Matt Foley via eli)
  1675. HDFS-1295. Improve namenode restart times by short-circuiting the
  1676. first block reports from datanodes. (Matt Foley via suresh)
  1677. Corrected merge error in DataNode.java. (Matt Foley)
  1678. HDFS-1843. Discover file not found early for file append.
  1679. (Bharath Mundlapudi via jitendra)
  1680. HDFS-1862. Improve test reliability of HDFS-1594. (Aaron T. Myers via eli)
  1681. HDFS-1846. Preallocate edit log with OP_INVALID instead of zero bytes
  1682. to ensure blocks are actually allocated. (Aaron T. Myers via todd)
  1683. HDFS-1741. Provide a minimal pom file to allow integration of HDFS into Sonar
  1684. analysis (cos)
  1685. HDFS-1870. Move and rename DFSClient.LeaseChecker to a seperated class
  1686. LeaseRenewer. (szetszwo)
  1687. HDFS-1866. Document dfs.datanode.max.transfer.threads in hdfs-default.xml
  1688. (Harsh J Chouraria via todd)
  1689. HDFS-1890. Improve the name, class and value type of the map
  1690. LeaseRenewer.pendingCreates. (szetszwo)
  1691. HDFS-1865. Share LeaseRenewer among DFSClients so that there is only a
  1692. LeaseRenewer thread per namenode per user. (szetszwo)
  1693. HDFS-1906. Remove logging exception stack trace in client logs when one of
  1694. the datanode targets to read from is not reachable. (suresh)
  1695. HDFS-1378. Edit log replay should track and report file offsets in case of
  1696. errors. (Aaron T. Myers and Todd Lipcon via todd)
  1697. HDFS-1917. Separate hdfs jars from common in ivy configuration. (Eric Yang
  1698. via szetszwo)
  1699. HDFS-1899. GenericTestUtils.formatNamenode should be moved to DFSTestUtil
  1700. (Ted Yu via todd)
  1701. HDFS-1117. Metrics 2.0 HDFS instrumentation. (Luke Lu via suresh)
  1702. HDFS-1946. HDFS part of HADOOP-7291. (eli)
  1703. HDFS-1945. Removed the deprecated fields in DataTransferProtocol.
  1704. (szetszwo)
  1705. HDFS-1730. Use DaemonFactory from common and delete it from HDFS.
  1706. (Tanping via suresh)
  1707. HDFS-1573. Add useful tracing information to Lease Renewer thread names
  1708. (todd)
  1709. HDFS-1939. In ivy.xml, test conf should not extend common conf.
  1710. (Eric Yang via szetszwo)
  1711. HDFS-1332 Include more information in exceptions and debug messages
  1712. when BlockPlacementPolicy cannot be satisfied. (Ted Yu via szetszwo)
  1713. HDFS-1958. Confirmation should be more lenient of user input when
  1714. formatting the NameNode. (todd)
  1715. HDFS-1905. Improve namenode -format command by not making -clusterId
  1716. parameter mandatory. (Bharath Mundlapudi via suresh)
  1717. HDFS-1877. Add a new test for concurrent read and write. (CW Chung
  1718. via szetszwo)
  1719. HDFS-1959. Better error message for missing namenode directory. (eli)
  1720. HDFS-1996. ivy: hdfs test jar should be independent to common test jar.
  1721. (Eric Yang via szetszwo)
  1722. HDFS-1812. TestHDFSCLI should clean up cluster in teardown method.
  1723. (Uma Maheswara Rao G via todd)
  1724. HDFS-1884. Improve TestDFSStorageStateRecovery to properly throw in the
  1725. case of errors. (Aaron T. Myers via todd)
  1726. HDFS-1727. fsck command should display command usage if user passes any
  1727. illegal argument. (Sravan Kumar via todd)
  1728. HDFS-1636. If dfs.name.dir points to an empty dir, namenode format
  1729. shouldn't require confirmation. (Harsh J Chouraria via todd)
  1730. HDFS-1966. Encapsulate individual DataTransferProtocol op headers.
  1731. (szetszwo)
  1732. HDFS-2024. Format TestWriteRead source codes. (CW Chung via szetszwo)
  1733. HDFS-1968. Enhance TestWriteRead to support position/sequential read,
  1734. append, truncate and verbose options. (CW Chung via szetszwo)
  1735. HDFS-1986. Add option to get http/https address from
  1736. DFSUtil#getInfoServer(). (Tanping via suresh)
  1737. HDFS-2029. In TestWriteRead, check visible length immediately after
  1738. openning the file and fix code style. (John George via szetszwo)
  1739. HDFS-2040. Only build libhdfs if a flag is passed. (eli)
  1740. HDFS-1586. Add InterfaceAudience and InterfaceStability annotations to
  1741. MiniDFSCluster. (suresh)
  1742. HDFS-2003. Separate FSEditLog reading logic from edit log memory state
  1743. building logic. (Ivan Kelly via todd)
  1744. HDFS-2066. Create a package and individual class files for
  1745. DataTransferProtocol. (szetszwo)
  1746. HADOOP-7106. Reorganize project SVN layout to "unsplit" the projects.
  1747. (todd, nigel)
  1748. HDFS-2046. Force entropy to come from non-true random for tests. (todd)
  1749. HDFS-2073. Add @Override annotation to NameNode. (suresh)
  1750. HDFS-420. Fuse-dfs should cache fs handles. (Brian Bockelman and eli)
  1751. HDFS-1568. Improve the log messages in DataXceiver. (Joey Echeverria via
  1752. szetszwo)
  1753. HDFS-2100. Improve TestStorageRestore. (atm)
  1754. HDFS-2092. Remove some object references to Configuration in DFSClient.
  1755. (Bharath Mundlapudi via szetszwo)
  1756. HDFS-2087. Declare methods in DataTransferProtocol interface, and change
  1757. Sender and Receiver to implement the interface. (szetszwo)
  1758. HDFS-1723. quota errors messages should use the same scale. (Jim Plush via
  1759. atm)
  1760. HDFS-2110. StreamFile and ByteRangeInputStream cleanup. (eli)
  1761. HDFS-2107. Move block management code from o.a.h.h.s.namenode to a new
  1762. package o.a.h.h.s.blockmanagement. (szetszwo)
  1763. HDFS-2109. Store uMask as member variable to DFSClient.Conf. (Bharath
  1764. Mundlapudi via szetszwo)
  1765. HDFS-2111. Add tests for ensuring that the DN will start with a few bad
  1766. data directories. (Harsh J Chouraria via todd)
  1767. HDFS-2134. Move DecommissionManager to the blockmanagement package.
  1768. (szetszwo)
  1769. HDFS-1977. Stop using StringUtils.stringifyException().
  1770. (Bharath Mundlapudi via jitendra)
  1771. HDFS-2131. Add new tests for the -overwrite/-f option in put and
  1772. copyFromLocal by HADOOP-7361. (Uma Maheswara Rao G via szetszwo)
  1773. HDFS-2140. Move Host2NodesMap to the blockmanagement package. (szetszwo)
  1774. HDFS-2154. In TestDFSShell, use TEST_ROOT_DIR and fix some deprecated
  1775. warnings. (szetszwo)
  1776. HDFS-2153. Move DFSClientAdapter to test and fix some javac warnings in
  1777. OfflineEditsViewerHelper. (szetszwo)
  1778. HDFS-2159. Deprecate DistributedFileSystem.getClient() and fixed the
  1779. deprecated warnings in DFSAdmin. (szetszwo)
  1780. HDFS-2157. Improve header comment in o.a.h.hdfs.server.namenode.NameNode.
  1781. (atm via eli)
  1782. HDFS-2147. Move cluster network topology to block management and fix some
  1783. javac warnings. (szetszwo)
  1784. HDFS-2141. Remove NameNode roles Active and Standby (they become
  1785. states of the namenode). (suresh)
  1786. HDFS-2161. Move createNamenode(..), createClientDatanodeProtocolProxy(..)
  1787. and Random object creation to DFSUtil; move DFSClient.stringifyToken(..)
  1788. to DelegationTokenIdentifier. (szetszwo)
  1789. HDFS-1774. Small optimization to FSDataset. (Uma Maheswara Rao G via eli)
  1790. HDFS-2167. Move dnsToSwitchMapping and hostsReader from FSNamesystem to
  1791. DatanodeManager. (szetszwo)
  1792. HDFS-2116. Use Mokito in TestStreamFile and TestByteRangeInputStream.
  1793. (Plamen Jeliazkov via shv)
  1794. HDFS-2112. Move ReplicationMonitor to block management. (Uma Maheswara
  1795. Rao G via szetszwo)
  1796. HDFS-1739. Add available volume size to the error message when datanode
  1797. throws DiskOutOfSpaceException. (Uma Maheswara Rao G via szetszwo)
  1798. HDFS-2144. If SNN shuts down during initialization it does not log the
  1799. cause. (Ravi Prakash via atm)
  1800. HDFS-2180. Refactor NameNode HTTP server into new class. (todd)
  1801. HDFS-2198. Remove hardcoded configuration keys. (suresh)
  1802. HDFS-2149. Move EditLogOp serialization formats into FsEditLogOp
  1803. implementations. (Ivan Kelly via todd)
  1804. HDFS-2191. Move datanodeMap from FSNamesystem to DatanodeManager.
  1805. (szetszwo)
  1806. HDFS-2200. Change FSNamesystem.LOG to package private. (szetszwo)
  1807. HDFS-2195. Refactor StorageDirectory to not be an non-static inner class.
  1808. (todd via eli)
  1809. HDFS-2212. Refactor double-buffering code out of EditLogOutputStreams.
  1810. (todd via eli)
  1811. HDFS-2199. Move blockTokenSecretManager from FSNamesystem to BlockManager.
  1812. (Uma Maheswara Rao G via szetszwo)
  1813. HDFS-2187. Make EditLogInputStream act like an iterator over FSEditLogOps
  1814. (Ivan Kelly and todd via todd)
  1815. HDFS-2225. Refactor edit log file management so it's not in classes
  1816. which should be generic to the type of edit log storage. (Ivan Kelly
  1817. via todd)
  1818. HDFS-2108. Move datanode heartbeat handling from namenode package to
  1819. blockmanagement package. (szetszwo)
  1820. HDFS-2226. Clean up counting of operations in FSEditLogLoader (todd)
  1821. HDFS-2228. Move block and datanode code from FSNamesystem to
  1822. BlockManager and DatanodeManager. (szetszwo)
  1823. HDFS-2238. In NamenodeFsck.toString(), uses StringBuilder.(..) instead of
  1824. string concatenation. (Uma Maheswara Rao G via szetszwo)
  1825. HDFS-2230. ivy to resolve/retrieve latest common-tests jar published by
  1826. hadoop common maven build. (gkesavan)
  1827. HDFS-2227. getRemoteEditLogManifest should pull its information from
  1828. FileJournalManager during checkpoint process (Ivan Kelly and Todd Lipcon
  1829. via todd)
  1830. HDFS-2239. Reduce access levels of the fields and methods in FSNamesystem.
  1831. (szetszwo)
  1832. HDFS-2241. Remove implementing FSConstants interface to just get the
  1833. constants from the interface. (suresh)
  1834. HDFS-2237. Change UnderReplicatedBlocks from public to package private.
  1835. (szetszwo)
  1836. HDFS-2233. Add WebUI tests with URI reserved chars. (eli)
  1837. HDFS-2265. Remove unnecessary BlockTokenSecretManager fields/methods from
  1838. BlockManager. (szetszwo)
  1839. HDFS-2260. Refactor BlockReader into an interface and implementation.
  1840. (todd)
  1841. HDFS-2096. Mavenization of hadoop-hdfs (Alejandro Abdelnur via tomwhite)
  1842. HDFS-2273. Refactor BlockManager.recentInvalidateSets to a new class.
  1843. (szetszwo)
  1844. HDFS-2266. Add Namesystem and SafeMode interfaces to avoid directly
  1845. referring to FSNamesystem in BlockManager. (szetszwo)
  1846. HDFS-1217. Change some NameNode methods from public to package private.
  1847. (Laxman via szetszwo)
  1848. HDFS-2332. Add test for HADOOP-7629 (using an immutable FsPermission
  1849. object as an RPC parameter fails). (todd)
  1850. HDFS-2363. Move datanodes size printing from FSNamesystem.metasave(..)
  1851. to BlockManager. (Uma Maheswara Rao G via szetszwo)
  1852. HDFS-2209. Make MiniDFS easier to embed in other apps. (stevel)
  1853. HDFS-2205. Log message for failed connection to datanode is not
  1854. followed by a success message. (Ravi Prakash via stevel)
  1855. HDFS-2401. Running a set of methods in a Single Test Class.
  1856. (Jonathan Eagles via mahadev)
  1857. HDFS-2471. Add federation documentation. (suresh)
  1858. HDFS-2485. Improve code layout and constants in UnderReplicatedBlocks
  1859. (stevel)
  1860. HDFS-2356. Support case insensitive query parameter names in WebHDFS.
  1861. (szetszwo)
  1862. HDFS-2368. Move SPNEGO conf properties from hdfs-default.xml to
  1863. hdfs-site.xml. (szetszwo)
  1864. HDFS-2395. Add a root element in the JSON responses of WebHDFS.
  1865. (szetszwo)
  1866. HDFS-2427. Change the default permission in WebHDFS to 755 and add range
  1867. check/validation for all parameters. (szetszwo)
  1868. HDFS-2501. Add version prefix and root methods to WebHDFS. (szetszwo)
  1869. HDFS-1869. mkdirs should use the supplied permission for all of the created
  1870. directories. (Daryn Sharp via szetszwo)
  1871. HDFS-2355. Federation: enable using the same configuration file across
  1872. all the nodes in the cluster. (suresh)
  1873. HDFS-2371. Refactor BlockSender.java for better readability. (suresh)
  1874. HDFS-2493. Remove reference to FSNamesystem in blockmanagement classes.
  1875. (szetszwo)
  1876. HDFS-2294. Download of commons-daemon TAR should not be under target (tucu)
  1877. HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be
  1878. fetched. (tucu)
  1879. HDFS-2436. Change FSNamesystem.setTimes(..) for allowing setting times on
  1880. directories. (Uma Maheswara Rao G via szetszwo)
  1881. HDFS-2512. Add textual error message to data transfer protocol responses
  1882. (todd)
  1883. HDFS-2521. Remove custom checksum headers from data transfer protocol
  1884. (todd)
  1885. HDFS-2308. NamenodeProtocol.endCheckpoint is vestigial and can be removed.
  1886. (eli)
  1887. OPTIMIZATIONS
  1888. HDFS-1458. Improve checkpoint performance by avoiding unnecessary image
  1889. downloads and loading. (hairong)
  1890. HDFS-1601. Pipeline ACKs are sent as lots of tiny TCP packets (todd)
  1891. HDFS-1826. NameNode should save image to name directories in parallel
  1892. during upgrade. (Matt Foley via hairong)
  1893. HDFS-2030. Improve usability of namenode -upgrade command.
  1894. (Bharath Mundlapudi via suresh)
  1895. HDFS-2056. Update fetchdt usage. (Tanping Wang via jitendra)
  1896. HDFS-2118. Couple dfs data dir improvements. (eli)
  1897. HDFS-2500. Avoid file system operations in BPOfferService thread while
  1898. processing deletes. (todd)
  1899. HDFS-2465. Add HDFS support for fadvise readahead and drop-behind. (todd)
  1900. BUG FIXES
  1901. HDFS-2347. Fix checkpointTxnCount's comment about editlog size.
  1902. (Uma Maheswara Rao G via mattf)
  1903. HDFS-2011. Removal and restoration of storage directories on checkpointing
  1904. failure doesn't work properly. (Ravi Prakash via mattf)
  1905. HDFS-1955. FSImage.doUpgrade() was made too fault-tolerant by HDFS-1826.
  1906. (mattf)
  1907. HDFS-2061. Two minor bugs in BlockManager block report processing. (mattf)
  1908. HDFS-1449. Fix test failures - ExtendedBlock must return
  1909. block file name in #getBlockName(). (suresh)
  1910. HDFS-1680. Fix TestBalancer. (szetszwo)
  1911. HDFS-1705. Balancer command throws NullPointerException. (suresh via
  1912. szetszwo)
  1913. HDFS-1559. Add missing UGM overrides to TestRefreshUserMappings
  1914. (Todd Lipcon via eli)
  1915. HDFS-1585. Fix build after HDFS-1547 (todd)
  1916. HDFS-1684. Balancer cannot start with with multiple namenodes. (szetszwo)
  1917. HDFS-1516. mvn-install is broken after 0.22 branch creation. (cos)
  1918. HDFS-1360. TestBlockRecovery should bind ephemeral ports.
  1919. (Todd Lipcon via hairong)
  1920. HDFS-1551. Fix pom templates dependency list (gkesavan)
  1921. HDFS-1509. A savenamespace command writes the fsimage and edits into
  1922. all configured directories. (dhruba)
  1923. HDFS-1540. Make Datanode handle errors from RPC calls to namenode
  1924. more elegantly. (dhruba)
  1925. HDFS-1463. Accesstime of a file is not updated in safeMode. (dhruba)
  1926. HDFS-863. Potential deadlock in TestOverReplicatedBlocks.
  1927. (Ken Goodhope via jghoman)
  1928. HDFS-1607. Fix referenced to misspelled method name getProtocolSigature
  1929. (todd)
  1930. HDFS-1610. Fix TestClientProtocolWithDelegationToken and TestBlockToken
  1931. on trunk after HADOOP-6904 (todd)
  1932. HDFS-1600. Fix release audit warnings on trunk. (todd)
  1933. HDFS-1691. Remove a duplicated static initializer for reading default
  1934. configurations in DFSck. (Alexey Diomin via szetszwo)
  1935. HDFS-1748. Balancer utilization classification is incomplete. (szetszwo)
  1936. HDFS-1738. change hdfs jmxget to return an empty string instead of
  1937. null when an attribute value is not available (tanping vi boryas)
  1938. HDFS-1757. Don't compile fuse-dfs by default. (eli)
  1939. HDFS-1770. TestFiRename fails due to invalid block size. (eli)
  1940. HDFS-1797. Fix new findbugs warning introduced by HDFS-1120 (todd)
  1941. HDFS-1611. Fix up some log messages in DFSClient and MBean registration
  1942. (Uma Maheswara Rao G via todd)
  1943. HDFS-1543. Reduce dev. cycle time by moving system testing artifacts from
  1944. default build and push to maven for HDFS (Luke Lu via cos)
  1945. HDFS-1818. TestHDFSCLI is failing on trunk after HADOOP-7202.
  1946. (Aaron T. Myers via todd)
  1947. HDFS-1828. TestBlocksWithNotEnoughRacks intermittently fails assert.
  1948. (Matt Foley via eli)
  1949. HDFS-1824. delay instantiation of file system object until it is
  1950. needed (linked to HADOOP-7207) (boryas)
  1951. HDFS-1831. Fix append bug in FileContext and implement CreateFlag
  1952. check (related to HADOOP-7223). (suresh)
  1953. HDFS-1594. When the disk becomes full Namenode is getting shutdown and
  1954. not able to recover. (Aaron T. Myers via eli)
  1955. HDFS-1822. Handle editlog opcode conflict with 0.20.203 during upgrade,
  1956. by throwing an error to indicate the editlog needs to be empty.
  1957. (suresh)
  1958. HDFS-1808. TestBalancer waits forever, errs without giving information.
  1959. (Matt Foley via eli)
  1960. HDFS-1829. TestNodeCount waits forever, errs without giving information.
  1961. (Matt Foley via eli)
  1962. HDFS-1860. when renewing/canceling DelegationToken over http we need to
  1963. pass exception information back to the caller.(boryas)
  1964. HDFS-1871. Mapreduce build fails due to MiniDFSCluster change from
  1965. HDFS-1052. (suresh)
  1966. HDFS-1876. One MiniDFSCluster constructor ignores numDataNodes parameter
  1967. (todd)
  1968. HDFS-1773. Do not show decommissioned datanodes, which are not in both
  1969. include and exclude lists, on web and JMX interfaces.
  1970. (Tanping Wang via szetszwo)
  1971. HDFS-1888. MiniDFSCluster#corruptBlockOnDatanodes() access must be
  1972. public. (suresh)
  1973. HDFS-1889. incorrect path in start/stop dfs script. (John George via eli)
  1974. HDFS-1891. Disable IPV6 for junit tests to fix TestBackupNode failure.
  1975. (suresh)
  1976. HDFS-1898. Tests failing on trunk due to use of NameNode.format.
  1977. (todd via eli)
  1978. HDFS-1902. Fix setrep path display for TestHDFSCLI. (Daryn Sharp
  1979. via szetszwo)
  1980. HDFS-1827. Fix timeout problem in TestBlockReplacement. (Matt Foley
  1981. via szetszwo)
  1982. HDFS-1908. Fix a NullPointerException in fi.DataTransferTestUtil.
  1983. (szetszwo)
  1984. HDFS-1912. Update tests for FsShell standardized error messages.
  1985. (Daryn Sharp via szetszwo)
  1986. HDFS-1903. Fix path display for rm/rmr in TestHDFSCLI and TestDFSShell.
  1987. (Daryn Sharp via szetszwo)
  1988. HDFS-1627. Fix NullPointerException in Secondary NameNode. (hairong)
  1989. HDFS-1928. Fix path display for touchz in TestHDFSCLI.
  1990. (Daryn Sharp via todd)
  1991. HDFS-1938. Fix ivy-retrieve-hdfs dependence in build.xml and aop.xml.
  1992. (Eric Yang via szetszwo)
  1993. HDFS-1929. TestEditLogFileOutputStream fails if running on same host as NN
  1994. (Aaron T. Myers via todd)
  1995. HDFS-1933. Update TestDFSShell for improved "test" shell command. (Daryn
  1996. Sharp via todd)
  1997. HDFS-1931. Update TestDFSShell for improved "du" shell command. (Daryn
  1998. Sharp via todd)
  1999. HDFS-1439. HDFS Federation: Fix compilation error in TestFiHftp. (suresh)
  2000. HDFS-1881. Federation: after taking snapshot the current directory
  2001. of datanode is empty. (Tanping Wang via suresh)
  2002. HDFS-1927. Fix a bug which causes ip=null in NameNode audit log.
  2003. (John George via szetszwo)
  2004. HDFS-1953. Federation: Change name node mxbean name in cluster web
  2005. console. (Tanping Wang via suresh)
  2006. HDFS-1922. Fix recurring failure of TestJMXGet (Luke Lu via todd)
  2007. HDFS-1371. One bad node can incorrectly flag many files as corrupt.
  2008. (Tanping Wang via jitendra)
  2009. HDFS-1943. Fail to start datanode while start-dfs.sh is executed by
  2010. root user. (Wei Yongjun via jghoman)
  2011. HDFS-1983. Fix path display for copy and rm commands in TestHDFSCLI and
  2012. TestDFSShell. (Daryn Sharp via todd)
  2013. HDFS-1999. Tests use deprecated configs. (Aaron T. Myers via eli)
  2014. HDFS-1592. Datanode startup doesn't honor volumes.tolerated.
  2015. (Bharath Mundlapudi via jitendra)
  2016. HDFS-1920. libhdfs does not build for ARM processors.
  2017. (Trevor Robinson via eli)
  2018. HDFS-1936. Layout version change from HDFS-1822 causes upgrade failure.
  2019. (suresh)
  2020. HDFS-2021. Update numBytesAcked before sending the ack in PacketResponder.
  2021. (John George via szetszwo)
  2022. HDFS-2020. Fix TestDFSUpgradeFromImage by removing the use of DataNode
  2023. as a singleton. (suresh via todd)
  2024. HDFS-2022. ant binary should build libhdfs. (Eric Yang via eli)
  2025. HDFS-2014. Change HDFS scripts to work in developer enviroment post
  2026. RPM packaging changes. (Eric Yang via suresh)
  2027. HDFS-1995. Federation: Minor bug fixes and modification cluster web UI.
  2028. (Tanping Wang via suresh)
  2029. HDFS-1907. Fix position read for reading still-being-written file in
  2030. DFSInputStream. (John George via szetszwo)
  2031. HDFS-1923. In TestFiDataTransferProtocol2, reduce random sleep time period
  2032. and increase the number of datanodes. (szetszwo)
  2033. HDFS-1149. Lease reassignment should be persisted to the edit log.
  2034. (Aaron T. Myers via todd)
  2035. HDFS-1998. Federation: Make refresh-namenodes.sh refresh all the
  2036. namenode. (Tanping Wang via suresh)
  2037. HDFS-2041. OP_CONCAT_DELETE doesn't properly restore modification time
  2038. of the concatenated file when edit logs are replayed. (todd)
  2039. HDFS-2063. libhdfs test is broken. (Eric Yang via eli)
  2040. HDFS-2067. Bump DATA_TRANSFER_VERSION constant in trunk after introduction
  2041. of protocol buffers in the protocol. (szetszwo via todd)
  2042. HDFS-2069. Incorrect default trash interval value in the docs.
  2043. (Harsh J Chouraria via eli)
  2044. HDFS-1942. Datanode must exist when all the block pool service threads
  2045. exit. (Bharath Mundlapudi via suresh)
  2046. HDFS-1656. Fixes an issue to do with fetching of delegation tokens in
  2047. HftpFileSystem. Contributed by Kan Zhang.
  2048. HDFS-1692. In secure mode, Datanode process doesn't exit when disks
  2049. fail. (Bharath Mundlapudi via suresh)
  2050. HDFS-1734. 'Chunk size to view' option is not working in Name Node UI.
  2051. (Uma Maheswara Rao G via jitendra)
  2052. HDFS-2086. If the include hosts list contains host names, after restarting
  2053. namenode, data nodes registration is denied. Contributed by Tanping Wang.
  2054. HDFS-2082. SecondaryNameNode web interface doesn't show the right info. (atm)
  2055. HDFS-1321. If service port and main port are the same, there is no clear
  2056. log message explaining the issue. (Jim Plush via atm)
  2057. HDFS-1381. HDFS javadocs hard-code references to dfs.namenode.name.dir and
  2058. dfs.datanode.data.dir parameters (Jim Plush via atm)
  2059. HDFS-2053. Bug in INodeDirectory#computeContentSummary warning.
  2060. (Michael Noll via eli)
  2061. HDFS-1990. Fix resource leaks in BlockReceiver.close(). (Uma Maheswara
  2062. Rao G via szetszwo)
  2063. HDFS-2034. Length in DFSInputStream.getBlockRange(..) becomes -ve when
  2064. reading only from a currently being written block. (John George via
  2065. szetszwo)
  2066. HDFS-2132. Potential resource leak in EditLogFileOutputStream.close. (atm)
  2067. HDFS-2120. on reconnect, DN can connect to NN even with different source
  2068. versions. (John George via atm)
  2069. HDFS-2152. TestWriteConfigurationToDFS causing the random failures. (Uma
  2070. Maheswara Rao G via atm)
  2071. HDFS-2114. re-commission of a decommissioned node does not delete
  2072. excess replicas. (John George via mattf)
  2073. HDFS-1776. Bug in Concat code. (Bharath Mundlapudi via Dmytro Molkov)
  2074. HDFS-2196. Make ant build system work with hadoop-common JAR generated
  2075. by Maven. (Alejandro Abdelnur via tomwhite)
  2076. HDFS-2245. Fix a NullPointerException in BlockManager.chooseTarget(..).
  2077. (szetszwo)
  2078. HDFS-2229. Fix a deadlock in namenode by enforcing lock acquisition
  2079. ordering. (szetszwo)
  2080. HDFS-2235. Encode servlet paths. (eli)
  2081. HDFS-2186. DN volume failures on startup are not counted. (eli)
  2082. HDFS-2240. Fix a deadlock in LeaseRenewer by enforcing lock acquisition
  2083. ordering. (szetszwo)
  2084. HDFS-73. DFSOutputStream does not close all the sockets.
  2085. (Uma Maheswara Rao G via eli)
  2086. HDFS-1257. Fix a race condition on BlockManager.recentInvalidateSets.
  2087. (Eric Payne via szetszwo)
  2088. HDFS-2267. DataXceiver thread name incorrect while waiting on op during
  2089. keepalive. (todd)
  2090. HDFS-1480. All replicas of a block can end up on the same rack when
  2091. some datanodes are decommissioning. (todd)
  2092. HDFS-2286. DataXceiverServer logs AsynchronousCloseException at shutdown
  2093. (todd)
  2094. HDFS-2289. Ensure jsvc is bundled with the HDFS distribution artifact.
  2095. (Alejandro Abdelnur via acmurthy)
  2096. HDFS-2323. start-dfs.sh script fails for tarball install (tomwhite)
  2097. HDFS-2412. Add backwards-compatibility layer for renamed FSConstants
  2098. class (todd)
  2099. HDFS-2414. Fix TestDFSRollback to avoid spurious failures. (todd)
  2100. HDFS-2422. The NN should tolerate the same number of low-resource volumes
  2101. as failed volumes (atm)
  2102. HDFS-2467. HftpFileSystem uses incorrect compare for finding delegation
  2103. tokens. (omalley)
  2104. HDFS-2331. Fix WebHdfsFileSystem compilation problems for a bug in JDK
  2105. version < 1.6.0_26. (Abhijit Suresh Shingate via szetszwo)
  2106. HDFS-2333. Change DFSOutputStream back to package private, otherwise,
  2107. there are two SC_START_IN_CTOR findbugs warnings. (szetszwo)
  2108. HDFS-2366. Initialize WebHdfsFileSystem.ugi in object construction.
  2109. (szetszwo)
  2110. HDFS-2361. hftp is broken, fixed username checks in JspHelper. (jitendra)
  2111. HDFS-2403. NamenodeWebHdfsMethods.generateDelegationToken(..) does not use
  2112. the renewer parameter. (szetszwo)
  2113. HDFS-2409. _HOST in dfs.web.authentication.kerberos.principal. (jitendra)
  2114. HDFS-2404. WebHDFS liststatus json response is not correct. (suresh)
  2115. HDFS-2441. Remove the Content-Type set by HttpServer.QuotingInputFilter in
  2116. WebHDFS responses. (szetszwo)
  2117. HDFS-2428. Convert com.sun.jersey.api.ParamException$QueryParamException
  2118. to IllegalArgumentException and response it as http BAD_REQUEST in WebHDFS.
  2119. (szetszwo)
  2120. HDFS-2424. Added a root element "HdfsFileStatuses" for the response
  2121. of WebHDFS listStatus. (szetszwo)
  2122. MAPREDUCE-2764. Fix renewal of dfs delegation tokens. (Owen via jitendra)
  2123. HDFS-2439. Fix NullPointerException in WebHDFS when opening a non-existing
  2124. file or creating a file without specifying the replication parameter.
  2125. (szetszwo)
  2126. HDFS-2453. Fix http response code for partial content in WebHDFS, added
  2127. getDefaultBlockSize() and getDefaultReplication() in WebHdfsFileSystem
  2128. and cleared content type in ExceptionHandler. (szetszwo)
  2129. HDFS-2411. The the auth to local mappings are not being respected, with
  2130. WebHDFS enabled. (jitendra)
  2131. HDFS-2494. Close the streams and DFSClient in DatanodeWebHdfsMethods.
  2132. (Uma Maheswara Rao G via szetszwo)
  2133. HDFS-2298. Fix TestDfsOverAvroRpc by changing ClientProtocol to
  2134. not include multiple methods of the same name. (cutting)
  2135. HDFS-2432. WebHDFS: response FORBIDDEN when setReplication on non-files;
  2136. clear umask before creating a flie; throw IllegalArgumentException if
  2137. setOwner with both owner and group empty; throw FileNotFoundException if
  2138. getFileStatus on non-existing files; fix bugs in getBlockLocations; and
  2139. changed getFileChecksum json response root to "FileChecksum". (szetszwo)
  2140. HDFS-2065. Add null checks in DFSClient.getFileChecksum(..). (Uma
  2141. Maheswara Rao G via szetszwo)
  2142. HDFS-2416. distcp with a WebHDFS uri on a secure cluster fails. (jitendra)
  2143. HDFS-2527. WebHDFS: remove the use of "Range" header in Open; use ugi
  2144. username if renewer parameter is null in GetDelegationToken; response OK
  2145. when setting replication for non-files; rename GETFILEBLOCKLOCATIONS to
  2146. GET_BLOCK_LOCATIONS and state that it is a private unstable API; replace
  2147. isDirectory and isSymlink with enum {FILE, DIRECTORY, SYMLINK} in
  2148. HdfsFileStatus JSON object. (szetszwo)
  2149. HDFS-2528. WebHDFS: set delegation kind to WEBHDFS and add a HDFS token
  2150. when http requests are redirected to datanode. (szetszwo)
  2151. HDFS-2540. WebHDFS: change "Expect: 100-continue" to two-step write; change
  2152. "HdfsFileStatus" and "localName" respectively to "FileStatus" and
  2153. "pathSuffix" in JSON response. (szetszwo)
  2154. BREAKDOWN OF HDFS-1073 SUBTASKS
  2155. HDFS-1521. Persist transaction ID on disk between NN restarts.
  2156. (Ivan Kelly and Todd Lipcon via todd)
  2157. HDFS-1538. Refactor more startup and image loading code out of FSImage.
  2158. (todd)
  2159. HDFS-1729. Add code to detect valid length of an edits file. (todd)
  2160. HDFS-1793. Add code to inspect a storage directory with txid-based
  2161. filenames (todd)
  2162. HDFS-1794. Add code to list which edit logs are available on a remote NN
  2163. (todd)
  2164. HDFS-1858. Add state management variables to FSEditLog (Ivan Kelly and Todd
  2165. Lipcon via todd)
  2166. HDFS-1859. Add some convenience functions to iterate over edit log streams
  2167. (Ivan Kelly and Todd Lipcon via todd)
  2168. HDFS-1894. Add constants for LAYOUT_VERSIONs in edits log branch (todd)
  2169. HDFS-1892. Fix EditLogFileInputStream.getValidLength to be aware of
  2170. OP_INVALID filler (todd)
  2171. HDFS-1799. Refactor log rolling and filename management out of FSEditLog
  2172. (Ivan Kelly and Todd Lipcon via todd)
  2173. HDFS-1801. Remove use of timestamps to identify checkpoints and logs (todd)
  2174. HDFS-1930. TestDFSUpgrade failing in HDFS-1073 branch (todd)
  2175. HDFS-1800. Extend image checksumming to function with multiple fsimage
  2176. files per directory. (todd)
  2177. HDFS-1725. Set storage directories only at FSImage construction (Ivan Kelly
  2178. via todd)
  2179. HDFS-1926. Remove references to StorageDirectory from JournalManager
  2180. interface (Ivan Kelly via todd)
  2181. HDFS-1893. Change edit logs and images to be named based on txid (todd)
  2182. HDFS-1985. Clean up image transfer servlet (todd)
  2183. HDFS-1984. Enable multiple secondary namenodes to run simultaneously (todd)
  2184. HDFS-1987. Re-enable TestCheckpoint.testSecondaryImageDownload which was
  2185. not running previously. (todd)
  2186. HDFS-1993. TestCheckpoint needs to clean up between cases (todd)
  2187. HDFS-1992. Remove vestiges of NNStorageListener. (todd)
  2188. HDFS-1991. Some refactoring of Secondary NameNode to be able to share more
  2189. code with the BackupNode or CheckpointNode. (todd)
  2190. HDFS-1994. Fix race conditions when running two rapidly checkpointing
  2191. Secondary NameNodes. (todd)
  2192. HDFS-2001. Remove use of previous.checkpoint and lastcheckpoint.tmp
  2193. directories (todd)
  2194. HDFS-2015. Remove checkpointTxId from VERSION file. (todd)
  2195. HDFS-2016. Add infrastructure to remove or archive old and unneeded storage
  2196. files within the name directories. (todd)
  2197. HDFS-2047. Improve TestNamespace and TestEditLog in HDFS-1073 branch.
  2198. (todd)
  2199. HDFS-2048. Add upgrade tests and fix upgrade from 0.22 with corrupt image.
  2200. (todd)
  2201. HDFS-2027. Image inspector should return finalized logs before unfinalized
  2202. logs. (todd)
  2203. HDFS-2074. Determine edit log validity by truly reading and validating
  2204. transactions. (todd)
  2205. HDFS-2085. Finalize in-progress edit logs at startup. (todd)
  2206. HDFS-2026. SecondaryNameNode should properly handle the case where the
  2207. NameNode is reformatted. (todd)
  2208. HDFS-2077. Address checkpoint upload when one of the storage dirs is failed
  2209. (todd)
  2210. HDFS-2078. NameNode should not clear directory when restoring removed
  2211. storage. (todd)
  2212. HDFS-2088. Move edits log archiving logic into FSEditLog/JournalManager
  2213. (todd)
  2214. HDFS-2093. Handle case where an entirely empty log is left during NN crash
  2215. (todd)
  2216. HDFS-2102. Zero-pad edits filename to make them lexically sortable. (Ivan
  2217. Kelly via todd)
  2218. HDFS-2010. Fix NameNode to exit if all edit streams become inaccessible.
  2219. (atm via todd)
  2220. HDFS-2123. Checkpoint interval should be based on txn count, not size.
  2221. (todd)
  2222. HDFS-1979. Fix backupnode for new edits/image layout. (todd)
  2223. HDFS-2101. Fix remaining unit tests for new storage filenames. (todd)
  2224. HDFS-2133. Address remaining TODOs and pre-merge cleanup on HDFS-1073
  2225. branch. (todd)
  2226. HDFS-1780. Reduce need to rewrite FSImage on startup. (todd)
  2227. HDFS-2104. Add a flag to the 2NN to format its checkpoint dirs on startup.
  2228. (todd)
  2229. HDFS-2135. Fix regression of HDFS-1955 in HDFS-1073 branch. (todd)
  2230. HDFS-2160. Fix CreateEditsLog test tool in HDFS-1073 branch. (todd)
  2231. HDFS-2168. Reenable TestEditLog.testFailedOpen and fix exposed bug. (todd)
  2232. HDFS-2169. Clean up TestCheckpoint and remove TODOs (todd)
  2233. HDFS-2170. Address remaining TODOs in HDFS-1073 branch. (todd)
  2234. HDFS-2172. Address findbugs and javadoc warnings in HDFS-1073 branch.
  2235. (todd)
  2236. HDFS-2445. Ensure failed tests exit with proper error code. (Jonathan
  2237. Eagles via acmurthy)
  2238. Release 0.22.1 - Unreleased
  2239. INCOMPATIBLE CHANGES
  2240. NEW FEATURES
  2241. IMPROVEMENTS
  2242. OPTIMIZATIONS
  2243. HDFS-2718. Optimize OP_ADD in edits loading. (shv)
  2244. HDFS-2886. CreateEditLogs should generate a realistic edit log. (shv)
  2245. BUG FIXES
  2246. HDFS-2877. If locking of a storage dir fails, it will remove the other
  2247. NN's lock file on exit. (todd)
  2248. Release 0.22.0 - 2011-11-29
  2249. INCOMPATIBLE CHANGES
  2250. HDFS-1825. Remove thriftfs contrib. (nigel via eli)
  2251. NEW FEATURES
  2252. HDFS-992. Re-factor block access token implementation to conform to the
  2253. generic Token interface in Common (Kan Zhang and Jitendra Pandey via jghoman)
  2254. HDFS-599. Allow NameNode to have a seprate port for service requests from
  2255. client requests. (Dmytro Molkov via hairong)
  2256. HDFS-1004. Update NN to support Kerberized SSL from HADOOP-6584.
  2257. (jghoman and Kan Zhang via jghoman)
  2258. HDFS-1005. Fsck security. (borya and Kan Zhang via jghoman)
  2259. HDFS-1006. getImage/putImage http requests should be https for the case
  2260. of security enabled. (borya and jghoman via jghoman)
  2261. HDFS-1033. In secure clusters, NN and SNN should verify that the remote
  2262. principal during image and edits transfer. (jghoman)
  2263. HDFS-1023. Allow http server to start as regular principal if https
  2264. principal not defined. (jghoman)
  2265. HDFS-1150. Verify datanodes' identities to clients in secure clusters.
  2266. (jghoman)
  2267. HDFS-1330. Make RPCs to DataNodes timeout. (hairong)
  2268. Added additional unit tests per HADOOP-6889. (John George via mattf)
  2269. HDFS-202. HDFS support of listLocatedStatus introduced in HADOOP-6870.
  2270. HDFS piggyback block locations to each file status when listing a
  2271. directory. (hairong)
  2272. HDFS-1361. Add -fileStatus operation to NNThroughputBenchmark. (shv)
  2273. HDFS-1435. Provide an option to store fsimage compressed. (hairong)
  2274. HDFS-903. Support fsimage validation through MD5 checksum. (hairong)
  2275. HDFS-1457. Provide an option to throttle image transmission between
  2276. pimary and secondary NameNodes. (Yifei Lu and hairong via hairong)
  2277. HDFS-1164. TestHdfsProxy is failing. (Todd Lipcon via cos)
  2278. HDFS-811. Add metrics, failure reporting and additional tests for HDFS-457.
  2279. (eli)
  2280. HDFS-895. Allow hflush/sync to occur in parallel with new writes
  2281. to the file. (Todd Lipcon via hairong)
  2282. HDFS-528. Add ability for safemode to wait for a minimum number of
  2283. live datanodes (Todd Lipcon via eli)
  2284. HDFS-1753. Resource Leak in StreamFile. (Uma Maheswara Rao G via eli)
  2285. IMPROVEMENTS
  2286. HDFS-1304. Add a new unit test for HftpFileSystem.open(..). (szetszwo)
  2287. HDFS-1096. fix for prev. commit. (boryas)
  2288. HDFS-1096. allow dfsadmin/mradmin refresh of superuser proxy group
  2289. mappings (boryas)
  2290. HDFS-1146. Javadoc for getDelegationTokenSecretManager in FSNamesystem (jnp via boryas)
  2291. HDFS-1132. Refactor TestFileStatus (Eli Collins via cos)
  2292. HDFS-1163. normalize property names for JT/NN kerberos principal
  2293. names in configuration (from HADOOP 6633) (boryas)
  2294. HDFS-1003. authorization checks for inter-server protocol
  2295. (based on HADOOP-6600) (boryas)
  2296. HDFS-1061. Memory footprint optimization for INodeFile object.
  2297. (Bharath Mundlapudi via jghoman)
  2298. HDFS-1079. Throw exceptions as specified by the AbstractFileSystem
  2299. in HDFS implemenation and protocols. (suresh)
  2300. HDFS-1112. Edit log buffer should not grow unfoundedly. (hairong)
  2301. HDFS-1119. Introduce a GSet interface to BlocksMap. (szetszwo)
  2302. HDFS-1184. Replace tabs in code with spaces. (Jeff Ames via jghoman)
  2303. HDFS-1185. Remove duplicate now() functions in DataNode, FSNamesysetm.
  2304. (Jeff Ames via jghoman)
  2305. HDFS-1183. Remove some duplicate code in NamenodeJspHelper.java.
  2306. (Jeff Ames via jghoman)
  2307. HDFS-1190. Remove unused getNamenode() method from DataNode.
  2308. (Jeff Ames via jghoman)
  2309. HDFS-1110. Reuses objects for commonly used file names in namenode to
  2310. reduce the heap usage. (suresh)
  2311. HDFS-752. Add interfaces classification to to HDFS source code. (suresh)
  2312. HDFS-947. An Hftp read request is redirected to a datanode that has
  2313. the most replicas of the blocks in the file. (Dmytro Molkov via dhruba)
  2314. HDFS-1272. Fixes to take care of the changes in HADOOP-6845.
  2315. (Jitendra Pandey via ddas)
  2316. HDFS-1298 - Add support in HDFS for new statistics added in FileSystem
  2317. to track the file system operations. (suresh)
  2318. HDFS-1201. The HDFS component for HADOOP-6632.
  2319. (Kan Zhang & Jitendra Pandey via ddas)
  2320. HDFS-1307 Add start time, end time and total time taken for FSCK to
  2321. FSCK report (suresh)
  2322. HDFS-1302. The HDFS side of the changes corresponding to HADOOP-6861.
  2323. (Jitendra Pandey & Owen O'Malley via ddas)
  2324. HDFS-1315. Add fsck event to audit log and remove other audit log events
  2325. corresponding to FSCK listStatus and open calls. (suresh)
  2326. HDFS-1178. The NameNode servlets should not use RPC to connect to the
  2327. NameNode. (Kan Zhang via jghoman)
  2328. HDFS-1130. Adds dfs.cluster.administrator ACL configuration that can
  2329. be used to control who can view the default hdfs servlets. (ddas)
  2330. HDFS-1297. Fix some comments. (Jeff Ames via jghoman)
  2331. HDFS-330. Datanode Web UIs should provide robots.txt.
  2332. (Allen Wittenauer via jghoman)
  2333. HDFS-881. Refactor DataNode Packet header into DataTransferProtocol.
  2334. (Todd Lipcon via jghoman)
  2335. HDFS-1036. docs for fetchdt
  2336. HDFS-1318. Add JMX interface for read access to namenode and datanode
  2337. web UI information. (Tanping Wang via suresh).
  2338. HDFS-1356. Provide information as to whether or not security is
  2339. enabled on web interface for NameNode (boryas)
  2340. HDFS-1205. FSDatasetAsyncDiskService should name its threads.
  2341. (Todd Lipcon via eli)
  2342. HDFS-1111. Introduce getCorruptFileBlocks() for fsck. (Sriram Rao via shv)
  2343. HDFS-1395. Add @Override to FSDataset methods that implement
  2344. FSDatasetInterface methods. (suresh)
  2345. HDFS-1383. Improve the error messages when using hftp://. (szetszwo)
  2346. HDFS-1093. Change the FSNamesystem lock to a read/write lock. (dhruba)
  2347. HDFS-1407. Change DataTransferProtocol methods to use Block instead
  2348. of individual elements of Block. (suresh)
  2349. HDFS-1417. Add @Override to SimulatedFSDataset methods that implement
  2350. FSDatasetInterface methods. (suresh)
  2351. HDFS-1426. Remove unused method BlockInfo#listCount. (hairong)
  2352. HDFS-1472. Allow programmatic access to fsck output.
  2353. (Ramkumar Vadali via dhruba)
  2354. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  2355. latest test-patch.sh script (gkesavan)
  2356. HDFS-1462. Refactor edit log loading to a separate class from edit log writing.
  2357. (Todd Lipcon via eli)
  2358. HDFS-1485. Fix typo in BlockPlacementPolicy. (Jingguo Yao via shv)
  2359. HDFS-1035. Generate Eclipse's .classpath file from Ivy config. (nigel)
  2360. HDFS-1408. Herriot NN and DN clients should vend statistics. (cos)
  2361. HDFS-1491 Update Hdfs to match the change of methods from protected to public
  2362. in AbstractFileSystem (Hadoop-6903) (sanjay)
  2363. HDFS-1160. Improve some FSDataset warnings and comments. (eli)
  2364. HDFS-556. Provide info on failed volumes in the web ui. (eli)
  2365. HDFS-697. Enable asserts for tests by default. (eli)
  2366. HDFS-1187. Modify fetchdt to allow renewing and canceling token.
  2367. (Owen O'Malley and Kan Zhang via jghoman)
  2368. HDFS-1387. Update HDFS permissions guide for security. (Todd Lipcon via eli)
  2369. HDFS-455. Make NN and DN handle in a intuitive way comma-separated
  2370. configuration strings. (Michele Catasta via eli)
  2371. HDFS-1071. savenamespace should write the fsimage to all configured
  2372. fs.name.dir in parallel (Dmytro Molkov via jghoman)
  2373. HDFS-1055. Improve thread naming for DataXceivers.
  2374. (Todd Lipcon and Ramkumar Vadali via eli).
  2375. HDFS-718. Configuration parameter to prevent accidental formatting of
  2376. HDFS filesystem. (Andrew Ryan via jghoman)
  2377. HDFS-1500. TestOfflineImageViewer failing on trunk. (Todd Lipcon
  2378. via hairong)
  2379. HDFS-1483. DFSClient.getBlockLocations should indicate if corresponding
  2380. blocks are corrupt. (Patrick Kling via hairong)
  2381. HDFS-259. Remove intentionally corrupt 0.13 directory layout creation.
  2382. (Todd Lipcon via eli)
  2383. HDFS-1513. Fix a number of warnings. (eli)
  2384. HDFS-1473. Refactor storage management into separate classes than fsimage
  2385. file reading/writing. (Todd Lipcon via eli)
  2386. HDFS-1582. Remove auto-generated native build files. (rvs via eli)
  2387. HDFS-1456. Provide builder for constructing instances of MiniDFSCluster.
  2388. (jghoman)
  2389. HDFS-1861. Rename dfs.datanode.max.xcievers and bump its default value.
  2390. (eli)
  2391. HDFS-1052. HDFS Federation - Merge of umbrella jira changes from
  2392. HDFS-1052 branch into trunk.
  2393. HDFS-1835. DataNode should not depend on SHA1PRNG secure random generator
  2394. to generate a storage ID. (John Carrino via todd)
  2395. HDFS-1947. DFSClient should use mapreduce.task.attempt.id. (eli)
  2396. HDFS-1957. Add documentation for HFTP. (Ari Rabkin via todd)
  2397. HDFS-1454. Update the documentation to reflect that clients don't write
  2398. blocks to local disk before copying to HDFS. (Harsh J Chouraria via todd)
  2399. HDFS-1980. Move build/webapps deeper in the build directory heirarchy
  2400. to aid eclipse users. (todd)
  2401. HDFS-1619. Remove AC_TYPE* from the libhdfs. (Roman Shaposhnik via eli)
  2402. HDFS-1948 Forward port 'hdfs-1520 lightweight namenode operation to
  2403. trigger lease recovery' (stack)
  2404. HDFS-1954. Improved corrupt files warning on NameNode web UI.
  2405. (Patrick Hunt via shv)
  2406. HDFS-1409. BackupNode registration throwing
  2407. UnsupportedActionException("register") instead of "journal".
  2408. (Ching-Shen Chen via shv)
  2409. HDFS-2054 BlockSender.sendChunk() prints ERROR for connection closures
  2410. encountered during transferToFully() (Kihwal Lee via stack)
  2411. OPTIMIZATIONS
  2412. HDFS-1140. Speedup INode.getPathComponents. (Dmytro Molkov via shv)
  2413. HDFS-1081. Performance regression in
  2414. DistributedFileSystem::getFileBlockLocations in secure systems (jghoman)
  2415. HDFS-1114. Implement LightWeightGSet for BlocksMap in order to reduce
  2416. NameNode memory footprint. (szetszwo)
  2417. HDFS-1320. Add LOG.isDebugEnabled() guard for each LOG.debug(..).
  2418. (Erik Steffl via szetszwo)
  2419. HDFS-1368. Add a block counter to DatanodeDescriptor. (hairong)
  2420. HDFS-1434. Refactor Datanode#startDataNode method into smaller methods.
  2421. (suresh)
  2422. HDFS-941. The DFS client should cache and reuse open sockets to datanodes
  2423. while performing reads. (bc Wong and Todd Lipcon via todd)
  2424. BUG FIXES
  2425. HDFS-1039. Adding test for JspHelper.getUGI(jnp via boryas)
  2426. HDFS-1019. Incorrect default values for delegation tokens in
  2427. hdfs-default.xml (jnp via boryas)
  2428. HDFS-1039. Service should be set in the token in JspHelper.getUGI(jnp via boryas)
  2429. HDFS-1038. FIX. A test missed in a previous commit for this JIRA. (boryas)
  2430. HDFS-1038. In nn_browsedfscontent.jsp fetch delegation token only
  2431. if security is enabled. (jnp via boryas)
  2432. HDFS-1044. Cannot submit mapreduce job from secure client to
  2433. unsecure sever (boryas)
  2434. HDFS-1021. specify correct server principal for RefreshAuthorizationPolicyProtocol
  2435. and RefreshUserToGroupMappingsProtocol protocols in DFSAdmin (for HADOOP-6612) (boryas)
  2436. HDFS-970. fsync fsimage to disk before closing fsimage file.
  2437. (Todd Lipcon via dhruba)
  2438. HDFS-1027. Update copyright year to 2010. (Ravi Phulari via jghoman)
  2439. HDFS-1080. SecondaryNameNode image transfer should use the defined http
  2440. address rather than local ip address. (jghoman)
  2441. HDFS-1198. Resolving cross-realm principals. (Jitendra Pandey via jghoman)
  2442. HDFS-1118. Fix socketleak on DFSClient. (Zheng Shao via dhruba)
  2443. HDFS-1192. refreshSuperUserGroupsConfiguration should use server side
  2444. configuration for the refresh (for HADOOP-6815) (boryas)
  2445. HDFS-1036. in DelegationTokenFetch dfs.getURI returns no port (boryas)
  2446. HDFS-1017. browsedfs jsp should call JspHelper.getUGI rather
  2447. than using createRemoteUser() (jnp via boryas)
  2448. HDFS-1250. Namenode should reject block reports and block received
  2449. requests from dead datanodes (suresh)
  2450. HDFS-1145. When NameNode is shutdown it does not try to exit
  2451. safemode anymore. (dhruba)
  2452. HDFS-1202. DataBlockScanner throws NPE when updated before
  2453. initialized. (Todd Lipcon via dhruba)
  2454. HDFS-882. Datanode logs the hostname and port its listening on.
  2455. (Steve Loughran via dhruba)
  2456. HDFS-1238. ant eclipse-files has drifted again, (jghoman)
  2457. HDFS-1045. In secure clusters, re-login is necessary for https
  2458. clients before opening connections. (jghoman)
  2459. HDFS-1289. Datanode secure mode is broken. (Kan Zhang via jghoman)
  2460. HDFS-1007. HFTP needs to be updated to use delegation tokens (boryas)
  2461. HDFS-1085. HFTP read may fail silently on the client side if there is an
  2462. exception on the server side. (szetszwo)
  2463. HDFS-1308. job conf key for the services name of DelegationToken for HFTP
  2464. url is constructed incorrectly in HFTPFileSystem (boryas)
  2465. HDFS-1319. Fix location of re-login for secondary namenode from HDFS-999.
  2466. (jghoman)
  2467. HDFS-1317. Remove the FILEPATH_PATTERN from hdfsproxy.AuthorizationFilter.
  2468. (Rohini Palaniswamy via szetszwo)
  2469. HDFS-912. sed in build.xml on Solaris fails. (Allen Wittenauer via jghoman)
  2470. HDFS-1296. using delegation token over hftp for long running
  2471. clients (boryas)
  2472. HDFS-1334. open in HftpFileSystem does not add delegation tokens to the url.
  2473. (Jitendra Pandey via jghoman)
  2474. HDFS-1301. TestHDFSProxy need to use server side conf for ProxyUser
  2475. stuff. (boryas)
  2476. HDFS-1340. When security is turned off, there is a potential XSS attack.
  2477. This patch fixes it by removing delegationtoken string from the URL,
  2478. before returning a response to the client. (Jitendra Pandey via ddas)
  2479. HDFS-1347. TestDelegationToken uses mortbay.log for logging (boryas)
  2480. HDFS-1157. Modifications introduced by HDFS-1150 are breaking aspect's
  2481. bindings (cos)
  2482. HDFS-1349. Remove empty java files. (Eli Collins)
  2483. HDFS-1340. A null delegation token is appended to the url if security
  2484. is disabled when browsing filesystem. (boryas)
  2485. HDFS-1352. Fix jsvc.location. (Eli Collins via jghoman)
  2486. HDFS-1284. TestBlockToken fails. (Kan Zhang via jghoman)
  2487. HDFS-1355. ant veryclean (clean-cache) doesn't clean enough.
  2488. (Luke Lu via jghoman)
  2489. HDFS-1353. Remove most of getBlockLocation optimization. (jghoman)
  2490. HDFS-1369. Invalid javadoc reference in FSDatasetMBean.java (Eli Collins)
  2491. HDFS-829. hdfsJniHelper.c: #include <error.h> is not portable.
  2492. (Allen Wittenauer via jghoman)
  2493. HDFS-1310. The ClientDatanodeProtocol proxy should be stopped in
  2494. DFSInputStream.readBlockLength(..). (sam rash via szetszwo)
  2495. HDFS-1357. HFTP traffic served by DataNode shouldn't use service port
  2496. on NameNode. (Kan Zhang via jghoman)
  2497. HDFS-1419. HDFS Federation: Three test cases need minor modification after
  2498. the new block id change (Tanping Wang via suresh)
  2499. HDFS-96. HDFS supports blocks larger than 2 GB.
  2500. (Patrick Kling via dhruba)
  2501. HDFS-1433. Fix test failures - TestPread and TestFileLimit. (suresh)
  2502. HDFS-1364. Makes long running HFTP-based applications do relogins
  2503. if necessary. (Jitendra Pandey via ddas)
  2504. HDFS-1399. Distinct minicluster services (e.g. NN and JT) overwrite each
  2505. other's service policies. (Aaron T. Myers via tomwhite)
  2506. HDFS-1440. Fix TestComputeInvalidateWork failure. (suresh)
  2507. HDFS-1498. FSDirectory#unprotectedConcat calls setModificationTime
  2508. on a file. (eli)
  2509. HDFS-1625. Ignore disk space values in TestDataNodeMXBean. (szetszwo)
  2510. HDFS-1850. DN should transmit absolute failed volume count rather than
  2511. increments to the NN. (eli)
  2512. HDFS-671. Documentation change for updated configuration keys.
  2513. (tomwhite via eli)
  2514. HDFS-1544. Ivy resolve force mode should be turned off by default.
  2515. (Luke Lu via tomwhite)
  2516. HDFS-1615. seek() on closed DFS input stream throws NullPointerException
  2517. (Scott Carey via todd)
  2518. HDFS-1897. Documentation refers to removed option dfs.network.script
  2519. (Andrew Whang via todd)
  2520. HDFS-1621. Fix references to hadoop-common-${version} in build.xml
  2521. (Jolly Chen via todd)
  2522. HDFS-1505. saveNamespace appears to succeed even if all directories fail
  2523. to save. (Aaron T. Myers via todd)
  2524. HDFS-1921. saveNamespace can cause NN to be unable to come up on restart
  2525. (Matt Foley via todd)
  2526. HDFS-1925. SafeModeInfo should use the correct constant instead of a
  2527. hard-coded value for its default. (Joey Echeverria via todd)
  2528. HDFS-1575. Viewing block from web UI is broken. (Aaron T. Myers via todd)
  2529. HDFS-1932. Ensure that HDFS configuration deprecations are set up in every
  2530. spot that HDFS configurations are loaded. (Jolly Chen via todd)
  2531. HDFS-1952. FSEditLog.open() appears to succeed even if all EDITS
  2532. directories fail. (Andrew Wang via todd)
  2533. HDFS-1965. IPCs done using block token-based tickets can't reuse
  2534. connections (todd)
  2535. HDFS-1978. All but first option in LIBHDFS_OPTS is ignored. (eli)
  2536. HDFS-1964. Fix incorrect HTML unescaping in DatanodeJspHelper
  2537. (Aaron T. Myers via todd)
  2538. HDFS-1997. Image transfer process misreports client side exceptions.
  2539. (todd via eli)
  2540. HDFS-2000. Missing deprecation for io.bytes.per.checksum.
  2541. (Aaron T. Myers vie eli)
  2542. HDFS-977. DataNode.createInterDataNodeProtocolProxy() guards a log
  2543. at the wrong level. (Harsh J Chouraria via todd)
  2544. HDFS-1969. Running rollback on new-version namenode destroys the
  2545. namespace. (todd)
  2546. HDFS-2039. TestNameNodeMetrics uses a bad test root path, preventing it
  2547. from running inside Eclipse. (todd)
  2548. HDFS-988. saveNamespace race can corrupt the edits log. (eli)
  2549. HDFS-2071. Use of isConnected() in DataXceiver is invalid. (Kihwal Lee
  2550. via todd)
  2551. HDFS-1981. NameNode does not saveNamespace() when editsNew is empty.
  2552. (Uma Maheswara Rao G via shv)
  2553. HDFS-2258. Reset lease limits to default values in TestLeaseRecovery2. (shv)
  2554. HDFS-2232. Generalize regular expressions in TestHDFSCLI.
  2555. (Plamen Jeliazkov via shv)
  2556. HDFS-2290. Block with corrupt replica is not getting replicated.
  2557. (Benoy Antony via shv)
  2558. HDFS-2012. Balancer incorrectly treats nodes whose utilization equals
  2559. avgUtilization. (Uma Maheswara Rao G via shv)
  2560. HDFS-2491. TestBalancer can fail when datanode utilization and
  2561. avgUtilization is exactly same. (Uma Maheswara Rao G via shv)
  2562. HDFS-2452. OutOfMemoryError in DataXceiverServer takes down the DataNode
  2563. (Uma Maheswara Rao via cos)
  2564. HDFS-2002. Incorrect computation of needed blocks in getTurnOffTip().
  2565. (Plamen Jeliazkov via shv)
  2566. HDFS-2573. TestFiDataXceiverServer is failing, not testing OOME (cos)
  2567. HDFS-2514. Link resolution bug for intermediate symlinks with
  2568. relative targets. (eli)
  2569. HDFS-1786. Some cli test cases expect a "null" message
  2570. (Uma Maheswara Rao G via todd)
  2571. HDFS-1855. TestDatanodeBlockScanner.testBlockCorruptionRecoveryPolicy()
  2572. part 2 fails in two different ways. (Matt Foley via eli)
  2573. HDFS-2346. TestHost2NodesMap & TestReplicasMap will fail depending upon
  2574. execution order of test methods (Laxman, Uma Maheswara Rao G via shv)
  2575. HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)
  2576. Release 0.21.1 - Unreleased
  2577. HDFS-1466. TestFcHdfsSymlink relies on /tmp/test not existing. (eli)
  2578. HDFS-874. TestHDFSFileContextMainOperations fails on weirdly
  2579. configured DNS hosts. (Todd Lipcon via eli)
  2580. HDFS-1507. TestAbandonBlock should abandon a block. (eli)
  2581. HDFS-1487. FSDirectory.removeBlock() should update diskspace count
  2582. of the block owner node (Zhong Wang via eli).
  2583. HDFS-1467. Append pipeline never succeeds with more than one replica.
  2584. (Todd Lipcon via eli)
  2585. HDFS-1167. New property for local conf directory in system-test-hdfs.xml
  2586. file. (Vinay Thota via cos)
  2587. HDFS-1503. TestSaveNamespace fails. (Todd Lipcon via cos)
  2588. HDFS-1524. Image loader should make sure to read every byte in image file.
  2589. (hairong)
  2590. HDFS-1523. TestLargeBlock is failing on trunk. (cos)
  2591. HDFS-1502. TestBlockRecovery triggers NPE in assert. (hairong via cos)
  2592. HDFS-1532. Exclude Findbugs warning in FSImageFormat$Saver. (Todd Lipcon
  2593. via cos)
  2594. HDFS-1527. SocketOutputStream.transferToFully fails for blocks >= 2GB on
  2595. 32 bit JVM. (Patrick Kling via cos)
  2596. HDFS-1531. Clean up stack traces due to duplicate MXBean registration.
  2597. (Todd Lipcon via cos)
  2598. HDFS-613. TestBalancer and TestBlockTokenWithDFS fail Balancer assert.
  2599. (Todd Lipcon via cos)
  2600. HDFS-1511. 98 Release Audit warnings on trunk and branch-0.22.
  2601. (jghoman)
  2602. HDFS-1560. dfs.data.dir permissions should default to 700.
  2603. (Todd Lipcon via eli)
  2604. HDFS-1550. NPE when listing a file with no location. (hairong)
  2605. HDFS-1542. Add test for HADOOP-7082, a deadlock writing Configuration to
  2606. HDFS. (todd)
  2607. HDFS-1504. FSImageSaver should catch all exceptions, not just IOE. (todd)
  2608. HDFS-884. DataNode throws IOException if all data directories are
  2609. unavailable. (Steve Loughran and shv)
  2610. HDFS-1591. HDFS part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  2611. HDFS-900. Corrupt replicas are not processed correctly in block report (shv)
  2612. HDFS-1529. Incorrect handling of interrupts in waitForAckedSeqno can cause
  2613. deadlock (todd)
  2614. HDFS-1597. Batched edit log syncs can reset synctxid and throw assertions
  2615. (todd)
  2616. HDFS-1602. Fix HADOOP-4885 for it is doesn't work as expected. (boryas)
  2617. HDFS-1618. configure files that are generated as part of the released
  2618. tarball need to have executable bit set (Roman Shaposhnik via cos)
  2619. HDFS-981. test-contrib fails due to test-cactus failure (cos)
  2620. HDFS-1001. DataXceiver and BlockReader disagree on when to send/recv
  2621. CHECKSUM_OK. (bc Wong via eli)
  2622. HDFS-1781. Fix the path for jsvc in bin/hdfs. (John George via szetszwo)
  2623. HDFS-1782. Fix an NPE in FSNamesystem.startFileInternal(..).
  2624. (John George via szetszwo)
  2625. HDFS-1821. Fix username resolution in NameNode.createSymlink(..) and
  2626. FSDirectory.addSymlink(..). (John George via szetszwo)
  2627. HDFS-1806. TestBlockReport.blockReport_08() and _09() are timing-dependent
  2628. and likely to fail on fast servers. (Matt Foley via eli)
  2629. HDFS-1845. Symlink comes up as directory after namenode restart.
  2630. (John George via eli)
  2631. HDFS-1666. Disable failing hdfsproxy test TestAuthorizationFilter (todd)
  2632. HDFS-1823. start-dfs.sh script fails if HADOOP_HOME is not set.
  2633. (tomwhite via eli)
  2634. Release 0.21.1 - Unreleased
  2635. HDFS-1411. Correct backup node startup command in hdfs user guide.
  2636. (Ching-Shen Chen via shv)
  2637. BUG FIXES
  2638. HDFS-1363. Eliminate second synchronized sections in appendFile(). (shv)
  2639. HDFS-1413. Fix broken links to HDFS Wiki. (shv)
  2640. HDFS-1420. Clover build doesn't generate per-test coverage (cos)
  2641. HDFS-1444. Test related code of build.xml is error-prone and needs to be
  2642. re-aligned. (cos)
  2643. HDFS-1343. Instrumented build should be concentrated in one build area (cos)
  2644. HDFS-1452. ant compile-contrib is broken (cos)
  2645. HDFS-1474. ant binary-system is broken (cos)
  2646. HDFS-1292. Allow artifacts to be published to the staging Apache Nexus
  2647. Maven Repository. (Giridharan Kesavan via tomwhite)
  2648. HDFS-1552. Remove java5 dependencies from build. (cos)
  2649. HDFS-1189. Quota counts missed between clear quota and set quota.
  2650. (John George via szetszwo)
  2651. HDFS-1665. Balancer misuses dfs.heartbeat.interval as milliseconds.
  2652. (szetszwo)
  2653. HDFS-1728. SecondaryNameNode.checkpointSize is in bytes but not in MB.
  2654. (szetszwo)
  2655. HDFS-1206. TestFiHFlush fails intermittently. (cos)
  2656. HDFS-1548. Fault-injection tests are executed multiple times if invoked
  2657. with run-test-hdfs-fault-inject target (cos)
  2658. HDFS-1552. Remove java5 dependencies from build. (cos)
  2659. HDFS-996. JUnit tests should never depend on anything in conf (cos)
  2660. HDFS-1612. Update HDFS design documentation for append, quota, symlink,
  2661. block placement and checkpoint/backup node features. (Joe Crobak
  2662. via szetszwo)
  2663. HDFS-1596. Replace fs.checkpoint.* with dfs.namenode.checkpoint.*
  2664. in documentations. (Harsh J Chouraria via szetszwo)
  2665. Release 0.21.0 - 2010-08-13
  2666. INCOMPATIBLE CHANGES
  2667. HDFS-538. Per the contract elucidated in HADOOP-6201, throw
  2668. FileNotFoundException from FileSystem::listStatus rather than returning
  2669. null. (Jakob Homan via cdouglas)
  2670. HDFS-602. DistributedFileSystem mkdirs throws FileAlreadyExistsException
  2671. instead of FileNotFoundException. (Boris Shkolnik via suresh)
  2672. HDFS-544. Add a "rbw" subdir to DataNode data directory. (hairong)
  2673. HDFS-576. Block report includes under-construction replicas. (shv)
  2674. HDFS-636. SafeMode counts complete blocks only. (shv)
  2675. HDFS-644. Lease recovery, concurrency support. (shv)
  2676. HDFS-570. Get last block length from a data-node when opening a file
  2677. being written to. (Tsz Wo (Nicholas), SZE via shv)
  2678. HDFS-657. Remove unused legacy data-node protocol methods. (shv)
  2679. HDFS-658. Block recovery for primary data-node. (shv)
  2680. HDFS-660. Remove deprecated methods from InterDatanodeProtocol. (shv)
  2681. HDFS-512. Block.equals() and compareTo() compare blocks based
  2682. only on block Ids, ignoring generation stamps. (shv)
  2683. HDFS-873. Configuration specifies data-node storage directories as URIs.
  2684. (shv)
  2685. HDFS-905. Use the new UserGroupInformation from HDFS-6299.
  2686. (jghoman via omalley)
  2687. HDFS-984. Persistent delegation tokens. (Jitendra Pandey via shv)
  2688. HDFS-1016. HDFS side change for HADOOP-6569. This jira changes the
  2689. error message on the screen when cat a directory or a
  2690. non-existent file. (hairong)
  2691. NEW FEATURES
  2692. HDFS-1134. Large-scale Automated Framework. (cos)
  2693. HDFS-436. Introduce AspectJ framework for HDFS code and tests.
  2694. (Konstantin Boudnik via szetszwo)
  2695. HDFS-447. Add LDAP lookup to hdfsproxy. (Zhiyong Zhang via cdouglas)
  2696. HDFS-459. Introduce Job History Log Analyzer. (shv)
  2697. HDFS-461. Tool to analyze file size distribution in HDFS. (shv)
  2698. HDFS-492. Add two JSON JSP pages to the Namenode for providing corrupt
  2699. blocks/replicas information. (Bill Zeller via szetszwo)
  2700. HDFS-578. Add support for new FileSystem method for clients to get server
  2701. defaults. (Kan Zhang via suresh)
  2702. HDFS-595. umask settings in configuration may now use octal or symbolic
  2703. instead of decimal. (Jakob Homan via suresh)
  2704. HADOOP-6234. Updated hadoop-core and test jars to propagate new option
  2705. dfs.umaskmode in configuration. (Jakob Homan via suresh)
  2706. HDFS-235. Add support for byte ranges in HftpFileSystem to serve
  2707. range of bytes from a file. (Bill Zeller via suresh)
  2708. HDFS-385. Add support for an experimental API that allows a module external
  2709. to HDFS to specify how HDFS blocks should be placed. (dhruba)
  2710. HADOOP-4952. Update hadoop-core and test jars to propagate new FileContext
  2711. file system application interface. (Sanjay Radia via suresh).
  2712. HDFS-567. Add block forensics contrib tool to print history of corrupt and
  2713. missing blocks from the HDFS logs.
  2714. (Bill Zeller, Jitendra Nath Pandey via suresh).
  2715. HDFS-610. Support o.a.h.fs.FileContext. (Sanjay Radia via szetszwo)
  2716. HDFS-536. Support hflush at DFSClient. (hairong)
  2717. HDFS-517. Introduce BlockInfoUnderConstruction to reflect block replica
  2718. states while writing. (shv)
  2719. HDFS-565. Introduce block committing logic during new block allocation
  2720. and file close. (shv)
  2721. HDFS-537. DataNode exposes a replica's meta info to BlockReceiver for the
  2722. support of dfs writes/hflush. It also updates a replica's bytes received,
  2723. bytes on disk, and bytes acked after receiving a packet. (hairong)
  2724. HDFS-585. Datanode should serve up to visible length of a replica for read
  2725. requests. (szetszwo)
  2726. HDFS-604. Block report processing for append. (shv)
  2727. HDFS-619. Support replica recovery initialization in datanode for the new
  2728. append design. (szetszwo)
  2729. HDFS-592. Allow clients to fetch a new generation stamp from NameNode for
  2730. pipeline recovery. (hairong)
  2731. HDFS-624. Support a new algorithm for pipeline recovery and pipeline setup
  2732. for append. (hairong)
  2733. HDFS-627. Support replica update in data-node.
  2734. (Tsz Wo (Nicholas), SZE and Hairong Kuang via shv)
  2735. HDFS-642. Support pipeline close and close error recovery. (hairong)
  2736. HDFS-631. Rename configuration keys towards API standardization and
  2737. backward compatibility. (Jitendra Nath Pandey via suresh)
  2738. HDFS-669. Add unit tests framework (Mockito) (cos, Eli Collins)
  2739. HDFS-731. Support new Syncable interface in HDFS. (hairong)
  2740. HDFS-702. Add HDFS implementation of AbstractFileSystem.
  2741. (Sanjay Radio via suresh)
  2742. HDFS-758. Add decommissioning status page to Namenode Web UI.
  2743. (Jitendra Nath Pandey via suresh)
  2744. HDFS-814. Add an api to get the visible length of a DFSDataInputStream.
  2745. (szetszwo)
  2746. HDFS-654. Add support new atomic rename functionality in HDFS for
  2747. supporting rename in FileContext. (suresh)
  2748. HDFS-222. Support for concatenating of files into a single file
  2749. without copying. (Boris Shkolnik via hairong)
  2750. HDFS-933. Adds Delegation token based authentication in the NameNode.
  2751. (Kan Zhang via ddas)
  2752. HDFS-935. Adds a real user component in Delegation token.
  2753. (Jitendra Nath Pandey via ddas)
  2754. HDFS-245. Adds a symlink implementation to HDFS. This complements the new
  2755. symlink feature added in HADOOP-6421 (Eli Collins via Sanjay Radia)
  2756. HDFS-1009. Support Kerberos authorization in HDFSProxy. (Srikanth
  2757. Sundarrajan via szetszwo)
  2758. HDFS-1091. Implement listStatus that returns an iterator of FileStatus.
  2759. (hairong)
  2760. IMPROVEMENTS
  2761. HDFS-381. Remove blocks from DataNode maps when corresponding file
  2762. is deleted. (Suresh Srinivas via rangadi)
  2763. HDFS-377. Separate codes which implement DataTransferProtocol.
  2764. (szetszwo)
  2765. HDFS-396. NameNode image and edits directories are specified as URIs.
  2766. (Luca Telloli via rangadi)
  2767. HDFS-444. Allow to change probability levels dynamically in the fault
  2768. injection framework. (Konstantin Boudnik via szetszwo)
  2769. HDFS-352. Documentation for saveNamespace command. (Ravi Phulari via shv)
  2770. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  2771. build #12. (Giridharan Kesavan)
  2772. HDFS-204. Add a new metrics FilesInGetListingOps to the Namenode.
  2773. (Jitendra Nath Pandey via szetszwo)
  2774. HDFS-278. HDFS Outputstream close does not hang forever. (dhruba)
  2775. HDFS-443. Add a new metrics numExpiredHeartbeats to the Namenode.
  2776. (Jitendra Nath Pandey via szetszwo)
  2777. HDFS-475. Add new ant targets for fault injection jars and tests.
  2778. (Konstantin Boudnik via szetszwo)
  2779. HDFS-458. Create a new ant target, run-commit-test. (Jakob Homan
  2780. via szetszwo)
  2781. HDFS-493. Change build.xml so that the fault-injected tests are executed
  2782. only by the run-test-*-fault-inject targets. (Konstantin Boudnik via
  2783. szetszwo)
  2784. HDFS-446. Improvements to Offline Image Viewer. (Jakob Homan via shv)
  2785. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  2786. (gkesavan)
  2787. HDFS-501. Use enum to define the constants in DataTransferProtocol.
  2788. (szetszwo)
  2789. HDFS-508. Factor out BlockInfo from BlocksMap. (shv)
  2790. HDFS-510. Rename DatanodeBlockInfo to be ReplicaInfo.
  2791. (Jakob Homan & Hairong Kuang via shv)
  2792. HDFS-500. Deprecate NameNode methods deprecated in NameNodeProtocol.
  2793. (Jakob Homan via shv)
  2794. HDFS-514. Change DFSClient.namenode from public to private. (Bill Zeller
  2795. via szetszwo)
  2796. HDFS-496. Use PureJavaCrc32 in HDFS. (Todd Lipcon via szetszwo)
  2797. HDFS-511. Remove redundant block searches in BlockManager. (shv)
  2798. HDFS-504. Update the modification time of a file when the file
  2799. is closed. (Chun Zhang via dhruba)
  2800. HDFS-498. Add development guide and documentation for the fault injection
  2801. framework. (Konstantin Boudnik via szetszwo)
  2802. HDFS-524. Further DataTransferProtocol code refactoring. (szetszwo)
  2803. HDFS-529. Use BlockInfo instead of Block to avoid redundant block searches
  2804. in BlockManager. (shv)
  2805. HDFS-530. Refactor TestFileAppend* to remove code duplication.
  2806. (Konstantin Boudnik via szetszwo)
  2807. HDFS-451. Add fault injection tests for DataTransferProtocol. (szetszwo)
  2808. HDFS-409. Add more access token tests. (Kan Zhang via szetszwo)
  2809. HDFS-546. DatanodeDescriptor iterates blocks as BlockInfo. (shv)
  2810. HDFS-457. Do not shutdown datanode if some, but not all, volumes fail.
  2811. (Boris Shkolnik via szetszwo)
  2812. HDFS-548. TestFsck takes nearly 10 minutes to run. (hairong)
  2813. HDFS-539. Refactor fault injeciton pipeline test util for future reuse.
  2814. (Konstantin Boudnik via szetszwo)
  2815. HDFS-552. Change TestFiDataTransferProtocol to junit 4 and add a few new
  2816. tests. (szetszwo)
  2817. HDFS-563. Simplify the codes in FSNamesystem.getBlockLocations(..).
  2818. (szetszwo)
  2819. HDFS-581. Introduce an iterator over blocks in the block report array.(shv)
  2820. HDFS-549. Add a new target, run-with-fault-inject-testcaseonly, which
  2821. allows an execution of non-FI tests in FI-enable environment. (Konstantin
  2822. Boudnik via szetszwo)
  2823. HDFS-173. Namenode will not block until a large directory deletion
  2824. completes. It allows other operations when the deletion is in progress.
  2825. (suresh)
  2826. HDFS-551. Create new functional test for a block report. (Konstantin
  2827. Boudnik via hairong)
  2828. HDFS-288. Redundant computation in hashCode() implementation.
  2829. (szetszwo via tomwhite)
  2830. HDFS-412. Hadoop JMX usage makes Nagios monitoring impossible.
  2831. (Brian Bockelman via tomwhite)
  2832. HDFS-472. Update hdfsproxy documentation. Adds a setup guide and design
  2833. document. (Zhiyong Zhang via cdouglas)
  2834. HDFS-617. Support non-recursive create(). (Kan Zhang via szetszwo)
  2835. HDFS-618. Support non-recursive mkdir(). (Kan Zhang via szetszwo)
  2836. HDFS-574. Split the documentation between the subprojects.
  2837. (Corinne Chandel via omalley)
  2838. HDFS-598. Eclipse launch task for HDFS. (Eli Collins via tomwhite)
  2839. HDFS-641. Move all of the components that depend on map/reduce to
  2840. map/reduce. (omalley)
  2841. HDFS-509. Redesign DataNode volumeMap to include all types of Replicas.
  2842. (hairong)
  2843. HDFS-562. Add a test for NameNode.getBlockLocations(..) to check read from
  2844. un-closed file. (szetszwo)
  2845. HDFS-543. Break FSDatasetInterface#writToBlock() into writeToRemporary,
  2846. writeToRBW, ad append. (hairong)
  2847. HDFS-603. Add a new interface, Replica, which is going to replace the use
  2848. of Block in datanode. (szetszwo)
  2849. HDFS-589. Change block write protocol to support pipeline recovery.
  2850. (hairong)
  2851. HDFS-652. Replace BlockInfo.isUnderConstruction() with isComplete() (shv)
  2852. HDFS-648. Change some methods in AppendTestUtil to public. (Konstantin
  2853. Boudnik via szetszwo)
  2854. HDFS-662. Unnecessary info message from DFSClient. (hairong)
  2855. HDFS-518. Create new tests for Append's hflush. (Konstantin Boudnik
  2856. via szetszwo)
  2857. HDFS-688. Add configuration resources to DFSAdmin. (shv)
  2858. HDFS-29. Validate the consistency of the lengths of replica and its file
  2859. in replica recovery. (szetszwo)
  2860. HDFS-680. Add new access method to a copy of a block's replica. (shv)
  2861. HDFS-704. Unify build property names to facilitate cross-projects
  2862. modifications (cos)
  2863. HDFS-705. Create an adapter to access some of package-private methods of
  2864. DataNode from tests (cos)
  2865. HDFS-710. Add actions with constraints to the pipeline fault injection
  2866. tests and change SleepAction to support uniform random sleeping over an
  2867. interval. (szetszwo)
  2868. HDFS-713. Need to properly check the type of the test class from an aspect
  2869. (cos)
  2870. HDFS-716. Define a pointcut for pipeline close and add a few fault
  2871. injection tests to simulate out of memory problem. (szetszwo)
  2872. HDFS-719. Add 6 fault injection tests for pipeline close to simulate slow
  2873. datanodes and disk errors. (szetszwo)
  2874. HDFS-616. Create functional tests for new design of the block report. (cos)
  2875. HDFS-584. Fail the fault-inject build if any advices are mis-bound. (cos)
  2876. HDFS-730. Add 4 fault injection tests to simulate non-responsive datanode
  2877. and out-of-memory problem for pipeline close ack. (szetszwo)
  2878. HDFS-728. Create a comprehensive functional test for append. (hairong)
  2879. HDFS-736. commitBlockSynchronization() updates block GS and length
  2880. in-place. (shv)
  2881. HADOOP-5107. Use Maven ant tasks to publish the subproject jars.
  2882. (Giridharan Kesavan via omalley)
  2883. HDFS-521. Create new tests for pipeline (cos)
  2884. HDFS-764. Places the Block Access token implementation in hdfs project.
  2885. (Kan Zhang via ddas)
  2886. HDFS-787. Upgrade some libraries to be consistent with common and
  2887. mapreduce. (omalley)
  2888. HDFS-519. Create new tests for lease recovery (cos)
  2889. HDFS-804. New unit tests for concurrent lease recovery (cos)
  2890. HDFS-813. Enable the append test in TestReadWhileWriting. (szetszwo)
  2891. HDFS-145. Cleanup inconsistent block length handling code in
  2892. FSNameSystem#addStoredBlock. (hairong)
  2893. HDFS-127. Reset failure count in DFSClient for each block acquiring
  2894. operation. (Igor Bolotin via szetszwo)
  2895. HDFS-520. Create new tests for block recovery. (hairong)
  2896. HDFS-1067. Create block recovery tests that handle errors. (hairong)
  2897. HDFS-1107. Turn on append by default. (shv)
  2898. HDFS-968. Use StringBuilder instead of StringBuffer for better
  2899. performance. (Kay Kay via suresh)
  2900. HDFS-703. Replace current fault injection implementation with one
  2901. from (cos)
  2902. HDFS-754. Reduce ivy console output to observable level (cos)
  2903. HDFS-832. HDFS side of HADOOP-6222. (cos)
  2904. HDFS-840. Change tests to use FileContext test helper introduced in
  2905. HADOOP-6394. (Jitendra Nath Pandey via suresh)
  2906. HDFS-685. Use the user-to-groups mapping service in the NameNode.
  2907. (boryas, acmurthy)
  2908. HDFS-755. Read multiple checksum chunks at once in DFSInputStream.
  2909. (Todd Lipcon via tomwhite)
  2910. HDFS-786. Implement getContentSummary in HftpFileSystem.
  2911. (Tsz Wo (Nicholas), SZE via cdouglas)
  2912. HDFS-587. Add support for specifying queue name in mapreduce tests.
  2913. (Erik Steffl via suresh)
  2914. HDFS-902 Move contrib/raid to MapReduce. (Eli Collins via omalley)
  2915. HDFS-800. The last block of a file under construction may change to the
  2916. COMPLETE state in response to getAdditionalBlock or completeFileInternal.
  2917. (hairong)
  2918. HDFS-899. Delegation Token Implementation
  2919. and corresponding changes in Namenode and DFS Api to issue,
  2920. renew and cancel delegation tokens. (jnp via boryas)
  2921. HDFS-844. Log the filename when file locking fails. (tomwhite)
  2922. HDFS-914. Refactor DFSOutputStream and DFSInputStream out of DFSClient.
  2923. (Todd Lipcon via tomwhite)
  2924. HDFS-949. Move DelegationToken into Common so that it can be used by
  2925. MapReduce. (omalley)
  2926. HDFS-930. Better error message for DATA_TRANSFER_VERSION mismatched.
  2927. (Kay Kay via szetszwo)
  2928. HDFS-986. Delegation token renewing and cancelling should provide
  2929. meaningful exceptions when there are failures instead of returning
  2930. false. (omalley)
  2931. HADOOP-6579. Upgrade the commons-codec library to 1.4. (omalley)
  2932. HDFS-991. Allow authentication to the web ui via a delegation token.
  2933. (omalley)
  2934. HDFS-994. Allow fetching of delegation token from NameNode for hftp.
  2935. (Jakob Homan via acmurthy)
  2936. HDFS-998. Quote blocks streamed through jsps. (cdouglas)
  2937. HDFS-729. NameNode API to list files that have missing blocks.
  2938. (Rodrigo Schmidt via dhruba)
  2939. HDFS-850. The WebUI display more details about namenode memory usage.
  2940. (Dmytro Molkov via dhruba)
  2941. HDFS-826. The DFSOutputStream has a API that returns the number of
  2942. active datanode(s) in the current pipeline. (dhruba)
  2943. HDFS-985. HDFS should issue multiple RPCs for listing a large
  2944. directory. (hairong)
  2945. HDFS-1043. NNThroughputBenchmark modifications to support benchmarking of
  2946. server-side user group resolution. (shv)
  2947. HDFS-892. Optionally use Avro reflection for Namenode RPC. This
  2948. is not a complete implementation yet, but rather a starting point.
  2949. (cutting)
  2950. HDFS-854. Datanode should scan devices in parallel to generate
  2951. block report. (Dmytro Molkov via jhoman)
  2952. HDFS-1032. fsck has an option to list corrupt files.
  2953. (Andre Oriai via dhruba)
  2954. HDFS-1024. SecondaryNameNode verifies size of fsimage and edits file.
  2955. (Dmytro Molkov via dhruba)
  2956. HDFS-1011. hdfsproxy: Improve log messages by restoring the previous
  2957. thread name. (Srikanth Sundarrajan via szetszwo)
  2958. HDFS-997. Allow datanode storage directory permissions to be configurable.
  2959. (Luke Lu via cdouglas)
  2960. HDFS-1012. hdfsproxy: Support for fully qualified HDFS path in addition to
  2961. simple unqualified path. (Srikanth Sundarrajan via szetszwo)
  2962. HDFS-993. Namenode should issue a delegation token only for kerberos
  2963. authenticated clients.(jnp via boryas)
  2964. HDFS-1087. Modify audit log to use a StringBuilder rather than a Formatter.
  2965. (cdouglas)
  2966. HDFS-1083. Update TestHDFSCLI not to expect exception class name
  2967. in error messages. (suresh)
  2968. HDFS-1099. Add test for umask backward compatibility. (suresh)
  2969. HDFS-1092. Use logging rather than System.err in MiniDFSCluster.
  2970. (Kay Kay via jghoman)
  2971. HDFS-1047. Install/deploy source jars to Maven repo.
  2972. (Patrick Angeles via jghoman)
  2973. HDFS-666. Unit test for FsShell -text. (cdouglas via jghoman)
  2974. HDFS-1054. Remove unnecessary sleep after failure in nextBlockOutputStream.
  2975. (Todd Lipcon via jghoman)
  2976. HDFS-921. Convert TestDFSClientRetries::testNotYetReplicatedErrors
  2977. to Mockito. (jghoman)
  2978. HDFS-1100. Override unwrapException in TestFcHdfsSymlink to test
  2979. symlink API conformance. (Eli Collins via suresh).
  2980. HDFS-1089. Remove uses of FileContext#isFile, isDirectory, and exists.
  2981. (Eli Collins via hairong)
  2982. HDFS-1028. Efficient splitting of path components reduces the time
  2983. to load in fsimage by 20%. (Dmytro Molkov via dhruba)
  2984. HDFS-1109. HFTP supports filenames that contains the character "+".
  2985. (Dmytro Molkov via dhruba)
  2986. HDFS-853. The HDFS webUI displays the balanced-ness of the cluster.
  2987. (Dmytro Molkov via dhruba)
  2988. HDFS-1126. Change HDFS to depend on Hadoop 'common' artifacts instead
  2989. of 'core'. (tomwhite)
  2990. HDFS-995. Replace usage of FileStatus#isDir(). (Eli Collins via
  2991. tomwhite)
  2992. HDFS-1161. Make DN minimum valid volumes configurable.
  2993. (Eli Collins via tomwhite)
  2994. HDFS-1181. Move configuration and script files post split. (tomwhite)
  2995. HDFS-1170. Add more assertions to TestLargeDirectoryDelete.
  2996. (Steve Loughran via tomwhite)
  2997. HDFS-1199. Extract a subset of tests for smoke (DOA) validation. (cos)
  2998. HDFS-1174. New properties for suspend and resume process. (Vinay Thota via
  2999. cos)
  3000. HDFS-1277. [Herriot] New property for multi user list. (Vinay Thota via
  3001. cos)
  3002. HDFS-806. Add new unit tests to the 10-mins 'run-commit-test' target (cos)
  3003. OPTIMIZATIONS
  3004. HDFS-946. NameNode should not return full path name when lisitng a
  3005. diretory or getting the status of a file. (hairong)
  3006. BUG FIXES
  3007. HDFS-76. Better error message to users when commands fail because of
  3008. lack of quota. Allow quota to be set even if the limit is lower than
  3009. current consumption. (Boris Shkolnik via rangadi)
  3010. HADOOP-4687. HDFS is split from Hadoop Core. It is a subproject under
  3011. Hadoop (Owen O'Malley)
  3012. HADOOP-6096. Fix Eclipse project and classpath files following project
  3013. split. (tomwhite)
  3014. HDFS-195. Handle expired tokens when write pipeline is reestablished.
  3015. (Kan Zhang via rangadi)
  3016. HDFS-181. Validate src path in FSNamesystem.getFileInfo(..). (Todd
  3017. Lipcon via szetszwo)
  3018. HDFS-441. Remove TestFTPFileSystem. (szetszwo)
  3019. HDFS-440. Fix javadoc broken links in DFSClient. (szetszwo)
  3020. HDFS-480. Fix a typo in the jar name in build.xml.
  3021. (Konstantin Shvachko via gkesavan)
  3022. HDFS-438. Check for NULL before invoking GenericArgumentParser in
  3023. DataNode. (Raghu Angadi)
  3024. HDFS-415. BlockReceiver hangs in case of certain runtime exceptions.
  3025. (Konstantin Boudnik via rangadi)
  3026. HDFS-462. loadFSImage should close edits file. (Jakob Homan via shv)
  3027. HDFS-489. Update TestHDFSCLI for the -skipTrash option in rm. (Jakob Homan
  3028. via szetszwo)
  3029. HDFS-445. pread() does not pick up changes to block locations.
  3030. (Kan Zhang via rangadi)
  3031. HDFS-463. CreateEditLog utility broken after HDFS-396 (URI for
  3032. FSImage). (Suresh Srinivas via rangadi)
  3033. HDFS-484. Fix bin-package and package target to package jar files.
  3034. (gkesavan)
  3035. HDFS-490. Eliminate the deprecated warnings introduced by H-5438.
  3036. (He Yongqiang via szetszwo)
  3037. HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
  3038. (Suresh Srinivas via shv)
  3039. HDFS-534. Include avro in ivy. (szetszwo)
  3040. HDFS-532. Allow applications to know that a read request failed
  3041. because block is missing. (dhruba)
  3042. HDFS-561. Fix write pipeline READ_TIMEOUT in DataTransferProtocol.
  3043. (Kan Zhang via szetszwo)
  3044. HDFS-553. BlockSender reports wrong failed position in ChecksumException.
  3045. (hairong)
  3046. HDFS-568. Set mapred.job.tracker.retire.jobs to false in
  3047. src/test/mapred-site.xml for mapreduce tests to run. (Amareshwari
  3048. Sriramadasu via szetszwo)
  3049. HDFS-15. All replicas end up on 1 rack. (Jitendra Nath Pandey via hairong)
  3050. HDFS-586. TestBlocksWithNotEnoughRacks sometimes fails.
  3051. (Jitendra Nath Pandey via hairong)
  3052. HADOOP-6243. Fixed a NullPointerException in handling deprecated keys.
  3053. (Sreekanth Ramakrishnan via yhemanth)
  3054. HDFS-605. Do not run fault injection tests in the run-test-hdfs-with-mr
  3055. target. (Konstantin Boudnik via szetszwo)
  3056. HDFS-606. Fix ConcurrentModificationException in invalidateCorruptReplicas()
  3057. (shv)
  3058. HDFS-601. TestBlockReport obtains data directories directly from
  3059. MiniHDFSCluster. (Konstantin Boudnik via shv)
  3060. HDFS-614. TestDatanodeBlockScanner obtains data directories directly from
  3061. MiniHDFSCluster. (shv)
  3062. HDFS-612. Remove the use of org.mortbay.log.Log in FSDataset. (szetszwo)
  3063. HDFS-622. checkMinReplication should count live nodes only. (shv)
  3064. HDFS-629. Remove ReplicationTargetChooser.java along with fixing
  3065. import warnings generated by Eclipse. (dhruba)
  3066. HDFS-637. DataNode sends a Success ack when block write fails. (hairong)
  3067. HDFS-640. Fixed TestHDFSFileContextMainOperations.java build failure. (suresh)
  3068. HDFS-547. TestHDFSFileSystemContract#testOutputStreamClosedTwice
  3069. sometimes fails with CloseByInterruptException. (hairong)
  3070. HDFS-588. Fix TestFiDataTransferProtocol and TestAppend2 failures. (shv)
  3071. HDFS-550. DataNode restarts may introduce corrupt/duplicated/lost replicas
  3072. when handling detached replicas. (hairong)
  3073. HDFS-659. If the the last block is not complete, update its length with
  3074. one of its replica's length stored in datanode. (szetszwo)
  3075. HDFS-649. Check null pointers for DataTransferTest. (Konstantin Boudnik
  3076. via szetszwo)
  3077. HDFS-661. DataNode upgrade fails on non-existant current directory.
  3078. (hairong)
  3079. HDFS-597. Mofication introduced by HDFS-537 breakes an advice binding in
  3080. FSDatasetAspects. (Konstantin Boudnik via szetszwo)
  3081. HDFS-665. TestFileAppend2 sometimes hangs. (hairong)
  3082. HDFS-676. Fix NPE in FSDataset.updateReplicaUnderRecovery() (shv)
  3083. HDFS-673. BlockReceiver#PacketResponder should not remove a packet from
  3084. the ack queue before its ack is sent. (hairong)
  3085. HDFS-682. Fix bugs in TestBlockUnderConstruction. (szetszwo)
  3086. HDFS-668. TestFileAppend3#TC7 sometimes hangs. (hairong)
  3087. HDFS-679. Appending to a partial chunk incorrectly assumes the
  3088. first packet fills up the partial chunk. (hairong)
  3089. HDFS-722. Fix callCreateBlockWriteStream pointcut in FSDatasetAspects.
  3090. (szetszwo)
  3091. HDFS-690. TestAppend2#testComplexAppend failed on "Too many open files".
  3092. (hairong)
  3093. HDFS-725. Support the build error fix for HADOOP-6327. (Sanjay Radia via
  3094. szetszwo)
  3095. HDFS-625. Fix NullPointerException thrown from ListPathServlet. (suresh)
  3096. HDFS-735. TestReadWhileWriting has wrong line termination symbols (cos)
  3097. HDFS-691. Fix an overflow error in DFSClient.DFSInputStream.available().
  3098. (szetszwo)
  3099. HDFS-733. TestBlockReport fails intermittently. (cos)
  3100. HDFS-774. Intermittent race condition in TestFiPipelines (cos)
  3101. HDFS-741. TestHFlush test doesn't seek() past previously written part of
  3102. the file (cos, szetszwo)
  3103. HDFS-706. Intermittent failures in TestFiHFlush (cos)
  3104. HDFS-646. Fix test-patch failure by adding test-contrib ant target.
  3105. (gkesavan)
  3106. HDFS-791. Build is broken after HDFS-787 patch has been applied (cos)
  3107. HDFS-792. TestHDFSCLI is failing. (Todd Lipcon via cos)
  3108. HDFS-781. Namenode metrics PendingDeletionBlocks is not decremented.
  3109. (Suresh)
  3110. HDFS-192. Fix TestBackupNode failures. (shv)
  3111. HDFS-797. TestHDFSCLI much slower after HDFS-265 merge. (Todd Lipcon via cos)
  3112. HDFS-824. Stop lease checker in TestReadWhileWriting. (szetszwo)
  3113. HDFS-823. CheckPointer should use addInternalServlet for image-fetching
  3114. servlet (jghoman)
  3115. HDFS-456. Fix URI generation for windows file paths. (shv)
  3116. HDFS-812. FSNamesystem#internalReleaseLease throws NullPointerException on
  3117. a single-block file's lease recovery. (cos)
  3118. HDFS-724. Pipeline hangs if one of the block receiver is not responsive.
  3119. (hairong)
  3120. HDFS-564. Adding pipeline tests 17-35. (hairong)
  3121. HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
  3122. (hairong)
  3123. HDFS-762. Balancer causes Null Pointer Exception.
  3124. (Cristian Ivascu via dhruba)
  3125. HDFS-868. Fix link to Hadoop Upgrade Wiki. (Chris A. Mattmann via shv)
  3126. HDFS-880. TestNNLeaseRecovery fails on windows (cos, shv)
  3127. HDFS-699. Primary datanode should compare replicas' on disk lengths.
  3128. (hairong)
  3129. HDFS-897. Fix a bug related to generation stamp comparison in
  3130. ReplicasMap. (suresh)
  3131. HDFS-793. Data node should receive the whole packet ack message before it
  3132. constructs and sends its own ack message for the packet. (hairong)
  3133. HDFS-101. DFS write pipeline: DFSClient sometimes does not detect second
  3134. datanode failure. (hairong)
  3135. HDFS-822. Appends to already-finalized blocks can rename across volumes.
  3136. (hairong)
  3137. HDFS-1046. Fix Tomcat version in hdfsproxy/build.xml. (Srikanth
  3138. Sundarrajan via szetszwo)
  3139. HDFS-1072. Fix TestReadWhileWriting failure. (Erik Steffl via shv)
  3140. HDFS-913. Rename fault injection test TestRename.java to TestFiRename.java
  3141. to include it in tests run by ant target run-test-hdfs-fault-inject.
  3142. (suresh)
  3143. HDFS-695. RaidNode should read in configuration from hdfs-site.xml.
  3144. (dhruba)
  3145. HDFS-726. Eclipse .classpath template has outdated jar files and is
  3146. missing some new ones. (cos)
  3147. HDFS-750. Fix build failure due to TestRename. (suresh)
  3148. HDFS-712. Move libhdfs from mapreduce subproject to hdfs subproject.
  3149. (Eli Collins via dhruba)
  3150. HDFS-757. Enable Unit test for HDFS Raid. (dhruba)
  3151. HDFS-611. Prevent DataNode heartbeat times from increasing even when
  3152. the DataNode has many blocks to delete. (Zheng Shao via dhruba)
  3153. HDFS-751. Fix TestCrcCorruption to pick up the correct datablocks to
  3154. corrupt. (dhruba)
  3155. HDFS-763. Fix slightly misleading report from DataBlockScanner
  3156. about corrupted scans. (dhruba)
  3157. HDFS-727. bug setting block size hdfsOpenFile (Eli Collins via cos)
  3158. HDFS-756. libhdfs unit tests do not run. (Eli Collins via cos)
  3159. HDFS-783. libhdfs tests brakes code coverage runs with Clover (cos)
  3160. HDFS-785. Add Apache license to several namenode unit tests.
  3161. (Ravi Phulari via jghoman)
  3162. HDFS-802. Update Eclipse configuration to match changes to Ivy
  3163. configuration (Edwin Chan via cos)
  3164. HDFS-423. Unbreak FUSE build and fuse_dfs_wrapper.sh (Eli Collins via cos)
  3165. HDFS-825. Build fails to pull latest hadoop-core-* artifacts (cos)
  3166. HDFS-94. The Heap Size printed in the NameNode WebUI is accurate.
  3167. (Dmytro Molkov via dhruba)
  3168. HDFS-767. An improved retry policy when the DFSClient is unable to fetch a
  3169. block from the datanode. (Ning Zhang via dhruba)
  3170. HDFS-775. FSDataset calls getCapacity() twice. (stevel)
  3171. HDFS-885. Datanode toString() NPEs on null dnRegistration. (stevel)
  3172. HDFS-877. Client-driven block verification not functioning. (Todd
  3173. Lipcon via hairong)
  3174. HDFS-630. In DFSOutputStream.nextBlockOutputStream(), the client can
  3175. exclude specific datanodes when locating the next block.
  3176. (Cosmin Lehene via Stack)
  3177. HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
  3178. problems for Eclipse compilation. (jghoman)
  3179. HDFS-927 DFSInputStream retries too many times for new block locations
  3180. (Todd Lipcon via Stack)
  3181. HDFS-938. Replace calls to UGI.getUserName() with UGI.getShortUserName()
  3182. (jghoman)
  3183. HDFS-894. DatanodeID.ipcPort is not updated when existing node
  3184. re-registers. (Todd Lipcon via tomwhite)
  3185. HDFS-965. Split TestDelegationToken in to two parts and fix configuration
  3186. to allow proxy users in the test. (Jitendra Pandey via omalley)
  3187. HDFS-999. Secondary namenode should login using kerberos if security is
  3188. configured (boryas)
  3189. HDFS-856. Hardcoded replication level for new files in fuse-dfs.
  3190. (Brian Bockelman via tomwhite)
  3191. HDFS-857. Incorrect type for fuse-dfs capacity can cause "df" to return
  3192. negative values on 32-bit machines. (Brian Bockelman via tomwhite)
  3193. HDFS-858. Incorrect return codes for fuse-dfs. (Brian Bockelman via
  3194. tomwhite)
  3195. HDFS-859. fuse-dfs utime behavior causes issues with tar.
  3196. (Brian Bockelman via tomwhite)
  3197. HDFS-861. fuse-dfs does not support O_RDWR. (Brian Bockelman via tomwhite)
  3198. HDFS-961. dfs_readdir incorrectly parses paths. (Eli Collins via tomwhite)
  3199. HDFS-1015. Fix intermittent failure in TestSecurityTokenEditLog.
  3200. (Jitendra Nath Pandey via suresh)
  3201. HDFS-939. libhdfs test is broken. (Eli Collins via tomwhite)
  3202. HDFS-1074. hdfsproxy: Fix bugs in TestProxyUtil. (Srikanth Sundarrajan
  3203. via szetszwo)
  3204. HDFS-481. hdfsproxy: Bug Fixes + HdfsProxy to use proxy user to
  3205. impresonate the real user. (Srikanth Sundarrajan via szetszwo)
  3206. HDFS-482. Move HsftpFileSystem's ssl.client.do.not.authenticate.server
  3207. configuration setting to ssl-client.xml. (Srikanth Sundarrajan via
  3208. szetszwo)
  3209. HDFS-1010. hdfsproxy: Retrieve groups from UnixUserGroupInformation
  3210. instead of LdapEntry. (Srikanth Sundarrajan via szetszwo)
  3211. HDFS-466. hdfs_write infinite loop when dfs fails and cannot write
  3212. files > 2 GB. (Pete Wyckoff via tomwhite)
  3213. HDFS-651. HDFS Docs - fix listing of docs in the doc menu.
  3214. (Corinne Chandel via tomwhite)
  3215. HDFS-1014. Error in reading delegation tokens from edit logs.
  3216. (Jitendra Nath Pandey via jhoman)
  3217. HDFS-1088. Prevent renaming a symbolik link to its target.
  3218. (Eli Collins via suresh)
  3219. HDFS-966. NameNode does not recovers lease when it is in safemode.
  3220. (dhruba)
  3221. HDFS-833. Datanode shutdown should log problems with Storage.unlockAll()
  3222. (Steve Loughran via dhruba)
  3223. HDFS-1101. TestDiskError.testLocalDirs() fails. (cdouglas via jghoman)
  3224. HDFS-1031. Enhance the webUi to list a few of the corrupted files in HDFS.
  3225. (Andre Orian via dhruba)
  3226. HDFS-1078. Create static and dynamic versions of libhdfs.
  3227. (Sam Rash via dhruba)
  3228. HDFS-1104. Fsck triggers full GC on NameNode. (hairong)
  3229. HDFS-1141. Closing a file is successful only if the client still has a
  3230. valid lease. (Todd Lipcon via dhruba)
  3231. HDFS-1138. Prevent erroneous updation of modification time of a directory
  3232. when fsimage loads. (Dmytro Molkov via dhruba)
  3233. HDFS-1000. Updates libhdfs to the new API for UGI (ddas)
  3234. HDFS-609. Create a file with the append flag does not work in HDFS.
  3235. (tomwhite)
  3236. HDFS-1255. Fix failing test-libhdfs.sh test. (tomwhite)
  3237. HDFS-1256. libhdfs is missing from the tarball. (tomwhite)
  3238. HDFS-1057. Concurrent readers hit ChecksumExceptions if following a
  3239. writer to very end of file. (sam rash via hairong)
  3240. HDFS-1212. Harmonize HDFS JAR library versions with Common. (tomwhite)
  3241. HDFS-1159. clean-cache target removes wrong ivy cache (cos)
  3242. HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
  3243. mvn-deploy task leading to unstable mapreduce build (Giridharan
  3244. Kesavan via cos)
  3245. HDFS-1299. 'compile-fault-inject' never should be called directly. (cos)
  3246. HDFS-1311. Running tests with 'testcase' cause triple execution of the
  3247. same test case (Cos)
  3248. HDFS-1267. fuse-dfs does not compile. (Devaraj Das via tomwhite)
  3249. HDFS-1598. Directory listing on hftp:// does not show .*.crc files.
  3250. (szetszwo)
  3251. HDFS-1750. ListPathsServlet should not use HdfsFileStatus.getLocalName()
  3252. to get file name since it may return an empty string. (szetszwo)
  3253. Release 0.20.3 - Unreleased
  3254. IMPROVEMENTS
  3255. BUG FIXES
  3256. HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
  3257. the first datanode fails. (szetszwo)
  3258. HDFS-909. Wait until edits syncing is finishes before purging edits.
  3259. (Todd Lipcon via shv)
  3260. HDFS-1258. Clearing namespace quota on "/" corrupts fs image.
  3261. (Aaron T. Myers via szetszwo)
  3262. HDFS-1406. TestCLI fails on Ubuntu with default /etc/hosts. (cos)
  3263. Release 0.20.203.0 - 2011-5-11
  3264. IMPROVEMENTS
  3265. HADOOP-7259. Contrib modules should include the build.properties from
  3266. the enclosing hadoop directory. (omalley)
  3267. BUG FIXES
  3268. HDFS-132. Fix namenode to not report files deleted metrics for deletions
  3269. done while replaying edits during startup. (suresh & shv)
  3270. HDFS-955. New implementation of saveNamespace() to avoid loss of edits
  3271. when name-node fails during saving. (shv)
  3272. Release 0.20.2 - 2009-09-01
  3273. IMPROVEMENTS
  3274. HDFS-737. Add full path name of the file to the block information and
  3275. summary of total number of files, blocks, live and deadnodes to
  3276. metasave output. (Jitendra Nath Pandey via suresh)
  3277. HDFS-919. Create test to validate the BlocksVerified metric (Gary Murry
  3278. via cos)
  3279. HDFS-907. Add tests for getBlockLocations and totalLoad metrics.
  3280. (Ravi Phulari via cos)
  3281. BUG FIXES
  3282. HDFS-686. NullPointerException is thrown while merging edit log and image.
  3283. (hairong)
  3284. HDFS-677. Rename failure when both source and destination quota exceeds
  3285. results in deletion of source. (suresh)
  3286. HDFS-709. Fix TestDFSShell failure due to rename bug introduced by
  3287. HDFS-677. (suresh)
  3288. HDFS-579. Fix DfsTask to follow the semantics of 0.19, regarding non-zero
  3289. return values as failures. (Christian Kunz via cdouglas)
  3290. HDFS-723. Fix deadlock in DFSClient#DFSOutputStream. (hairong)
  3291. HDFS-596. Fix memory leak in hdfsFreeFileInfo() for libhdfs.
  3292. (Zhang Bingjun via dhruba)
  3293. HDFS-185. Disallow chown, chgrp, chmod, setQuota, and setSpaceQuota when
  3294. name-node is in safemode. (Ravi Phulari via shv)
  3295. HDFS-187. Initialize secondary namenode http address in TestStartup.
  3296. (Todd Lipcon via szetszwo)
  3297. HDFS-464. Fix memory leaks in libhdfs. (Christian Kunz via suresh)
  3298. HDFS-1377. Quota bug for partial blocks allows quotas to be violated. (eli)
  3299. Release 0.20.1 - 2009-09-01
  3300. IMPROVEMENTS
  3301. HDFS-438. Improve help message for space quota command. (Raghu Angadi)
  3302. BUG FIXES
  3303. HDFS-167. Fix a bug in DFSClient that caused infinite retries on write.
  3304. (Bill Zeller via szetszwo)
  3305. HDFS-527. Remove/deprecate unnecessary DFSClient constructors. (szetszwo)
  3306. HDFS-525. The SimpleDateFormat object in ListPathsServlet is not thread
  3307. safe. (Suresh Srinivas and cdouglas)
  3308. HDFS-761. Fix failure to process rename operation from edits log due to
  3309. quota verification. (suresh)