CHANGES.txt 161 KB

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