CHANGES.txt 146 KB

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