CHANGES.txt 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994
  1. Hadoop HDFS Change Log
  2. Trunk (unreleased changes)
  3. NEW FEATURES
  4. HDFS-395. DFS Scalability: Incremental block reports. (Tomasz Nykiel
  5. via hairong)
  6. IMPROVEMENTS
  7. HADOOP-7524 Change RPC to allow multiple protocols including multuple
  8. versions of the same protocol (sanjay Radia)
  9. HDFS-1620. Rename HdfsConstants -> HdfsServerConstants, FSConstants ->
  10. HdfsConstants. (Harsh J Chouraria via atm)
  11. HDFS-2197. Refactor RPC call implementations out of NameNode class (todd)
  12. HDFS-2018. Move all journal stream management code into one place.
  13. (Ivan Kelly via jitendra)
  14. HDFS-2223. Untangle depencencies between NN components (todd)
  15. HDFS-2337. DFSClient shouldn't keep multiple RPC proxy references (atm)
  16. HDFS-362. FSEditLog should not writes long and short as UTF8, and should
  17. not use ArrayWritable for writing non-array items. (Uma Maheswara Rao G
  18. via szetszwo)
  19. HDFS-2351 Change Namenode and Datanode to register each of their protocols
  20. seperately. (Sanjay Radia)
  21. HDFS-2158. Add JournalSet to manage the set of journals. (jitendra)
  22. HDFS-2459. Separate datatypes for JournalProtocol. (suresh)
  23. HDFS-2480. Separate datatypes for NamenodeProtocol. (suresh)
  24. HDFS-2181 Separate HDFS Client wire protocol data types (sanjay)
  25. HDFS-2294. Download of commons-daemon TAR should not be under target (tucu)
  26. HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be
  27. fetched. (tucu)
  28. HDFS-2489. Move Finalize and Register to separate file out of
  29. DatanodeCommand.java. (suresh)
  30. HDFS-2488. Separate datatypes for InterDatanodeProtocol. (suresh)
  31. HDFS-2496. Separate datatypes for DatanodeProtocol. (suresh)
  32. HDFS-2479 HDFS Client Data Types in Protocol Buffers (sanjay)
  33. BUG FIXES
  34. HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)
  35. HDFS-2299. TestOfflineEditsViewer is failing on trunk. (Uma Maheswara Rao G
  36. via atm)
  37. HDFS-2310. TestBackupNode fails since HADOOP-7524 went in.
  38. (Ivan Kelly via todd)
  39. HDFS-2313. Rat excludes has a typo for excluding editsStored files. (atm)
  40. HDFS-2314. MRV1 test compilation broken after HDFS-2197 (todd)
  41. HDFS-2330. In NNStorage and FSImagePreTransactionalStorageInspector,
  42. IOExceptions of stream closures can mask root exceptions. (Uma Maheswara
  43. Rao G via szetszwo)
  44. HDFS-46. Change default namespace quota of root directory from
  45. Integer.MAX_VALUE to Long.MAX_VALUE. (Uma Maheswara Rao G via szetszwo)
  46. HDFS-2373. Commands using webhdfs and hftp print unnecessary debug
  47. info on the console with security enabled. (Arpit Gupta via suresh)
  48. HDFS-2349. Corruption detected during block transfers between DNs
  49. should log a WARN instead of INFO. (harsh)
  50. HDFS-2188. Make FSEditLog create its journals from a list of URIs rather
  51. than NNStorage. (Ivan Kelly via jitendra)
  52. HDFS-2481 Unknown protocol: org.apache.hadoop.hdfs.protocol.ClientProtocol.
  53. (sanjay)
  54. HDFS-2497 Fix TestBackupNode failure. (suresh)
  55. Release 0.23.0 - Unreleased
  56. INCOMPATIBLE CHANGES
  57. HDFS-1526. Dfs client name for a map/reduce task should be unique
  58. among threads. (hairong)
  59. HDFS-1536. Improve HDFS WebUI. (hairong)
  60. HDFS-2210. Remove hdfsproxy. (eli)
  61. HDFS-1073. Redesign the NameNode's storage layout for image checkpoints
  62. and edit logs to introduce transaction IDs and be more robust.
  63. Please see HDFS-1073 section below for breakout of individual patches.
  64. NEW FEATURES
  65. HDFS-1359. Add BlockPoolID to Block. (suresh)
  66. HDFS-1365. Federation: propose ClusterID and BlockPoolID format
  67. (Tanping via boryas)
  68. HDFS-1394. Federation: modify -format option for namenode to generated
  69. new blockpool id and accept newcluster (boryas)
  70. HDFS-1400. Federation: DataTransferProtocol uses ExtendedBlockPool to
  71. include BlockPoolID in the protocol. (suresh)
  72. HDFS-1428. Federation : add cluster ID and block pool ID into
  73. Name node web UI(Tanping via boryas)
  74. HDFS-1450. Federation: Introduce block pool ID into FSDatasetInterface.
  75. (suresh)
  76. HDFS-1632. Federation: data node storage structure changes and
  77. introduce block pool storage. (Tanping via suresh)
  78. HDFS-1634. Federation: Convert single threaded DataNode into
  79. per BlockPool thread model.(boryas)
  80. HDFS-1637. Federation: FSDataset in Datanode should be created after
  81. initial handshake with namenode. (boryas and jitendra)
  82. HDFS-1653. Federation: Block received message from datanode sends invalid
  83. DatanodeRegistration. (Tanping via suresh)
  84. HDFS-1645. Federation: DatanodeCommond.Finalize needs to include
  85. BlockPoolId. (suresh)
  86. HDFS-1638. Federation: DataNode.handleDiskError needs to inform
  87. ALL namenodes if a disk failed (boryas)
  88. HDFS-1647. Federation: Multiple namenode configuration. (jitendra)
  89. HDFS-1639. Federation: Add block pool management to FSDataset. (suresh)
  90. HDFS-1648. Federation: Only DataStorage must be locked using in_use.lock
  91. and no locks must be associated with BlockPoolStorage. (Tanping via suresh)
  92. HDFS-1641. Federation: Datanode fields that are no longer used should
  93. be removed (boryas)
  94. HDFS-1642. Federation: add Datanode.getDNRegistration(String bpid)
  95. method (boryas)
  96. HDFS-1643. Federation: remove namenode argument from DataNode
  97. constructor (boryas)
  98. HDFS-1657. Federation: Tests that corrupt block files fail due to changed
  99. file path in federation. (suresh)
  100. HDFS-1661. Federation: Remove unnecessary TODO:FEDERATION comments.
  101. (jitendra)
  102. HDFS-1660. Federation: Datanode doesn't start with two namenodes (boryas)
  103. HDFS-1650. Federation: TestReplication fails. (Tanping via suresh)
  104. HDFS-1651. Federation: Tests fail due to null pointer exception in
  105. Datnode#shutdown() method. (Tanping via suresh)
  106. HDFS-1649. Federation: Datanode command to refresh namenode list at
  107. the datanode. (jitendra)
  108. HDFS-1646. Federation: MiniDFSClsuter#waitActive() waits for ever
  109. with the introduction of BPOfferService in datanode. (suresh)
  110. HDFS-1659. Federation: BPOfferService exits after one iteration
  111. incorrectly. (Tanping via suresh)
  112. HDFS-1654. Federation: Fix TestDFSUpgrade and TestDFSRollback failures.
  113. (suresh)
  114. HDFS-1668. Federation: Datanodes sends block pool usage information
  115. to the namenode in heartbeat. (suresh)
  116. HDFS-1669. Federation: Fix TestHftpFileSystem failure. (suresh)
  117. HDFS-1670. Federation: remove dnRegistration from Datanode (boryas)
  118. HDFS-1662. Federation: fix unit test case, TestCheckpoint
  119. and TestDataNodeMXBean (tanping via boryas)
  120. HDFS-1671. Federation: shutdown in DataNode should be able to
  121. shutdown individual BP threads as well as the whole DN (boryas).
  122. HDFS-1663. Federation: Rename getPoolId() everywhere to
  123. getBlockPoolId() (tanping via boryas)
  124. HDFS-1652. FederationL Add support for multiple namenodes in
  125. MiniDFSCluster. (suresh)
  126. HDFS-1672. Federation: refactor stopDatanode(name) to work
  127. with multiple Block Pools (boryas)
  128. HDFS-1687. Federation: DirectoryScanner changes for
  129. federation (Matt Foley via boryas)
  130. HDFS-1626. Make BLOCK_INVALIDATE_LIMIT configurable. (szetszwo)
  131. HDFS-1655. Federation: DatablockScanner should scan blocks for
  132. all the block pools. (jitendra)
  133. HDFS-1664. Federation: Add block pool storage usage to Namenode WebUI.
  134. (Tanping via suresh)
  135. HDFS-1674. Federation: Rename BlockPool class to BlockPoolSlice.
  136. (jghoman, Tanping via suresh)
  137. HDFS-1673. Federation: Datanode changes to track block token secret per
  138. namenode. (suresh)
  139. HDFS-1677. Federation: Fix TestFsck and TestListCorruptFileBlocks
  140. failures. (Tanping via suresh)
  141. HDFS-1678. Federation: Remove unnecessary #getBlockpool()
  142. for NameNodeMXBean in FSNameSystem. (Tanping via Suresh)
  143. HDFS-1688. Federation: Fix failures in fault injection tests,
  144. TestDiskError, TestDatanodeRestart and TestDFSTartupVersions. (suresh)
  145. HDFS-1696. Federation: when build version doesn't match -
  146. datanode should wait (keep connecting) untill NN comes up
  147. with the right version (boryas)
  148. HDFS-1681. Balancer: support per pool and per node policies. (szetszwo)
  149. HDFS-1695. Federation: Fix testOIV and TestDatanodeUtils
  150. (jhoman and tanping via boryas)
  151. HDFS:1699. Federation: Fix failure of TestBlockReport.
  152. (Matt Foley via suresh)
  153. HDFS-1698. Federation: TestOverReplicatedBlocks and TestWriteToReplica
  154. failing. (jhoman and jitendra)
  155. HDFS-1701. Federation: Fix TestHeartbeathandling.
  156. (Erik Steffl and Tanping Wang via suresh)
  157. HDFS-1693. Federation: Fix TestDFSStorageStateRecovery failure. (suresh)
  158. HDFS-1694. Federation: SimulatedFSDataset changes to work with
  159. federation and multiple block pools. (suresh)
  160. HDFS-1689. Federation: Configuration for namenodes. (suresh and jitendra)
  161. HDFS-1682. Change Balancer CLI for multiple namenodes and balancing
  162. policy. (szetszwo)
  163. HDFS-1697. Federation: fix TestBlockRecovery (boryas)
  164. HDFS-1702. Federation: fix TestBackupNode and TestRefreshNamendoes
  165. failures. (suresh)
  166. HDFS-1706. Federation: TestFileAppend2, TestFileAppend3 and
  167. TestBlockTokenWithDFS failing. (jitendra)
  168. HDFS-1704. Federation: Add a tool that lists namenodes, secondary and
  169. backup from configuration file. (suresh)
  170. HDFS-1711. Federation: create method for updating machine name in
  171. DataNode.java (boryas)
  172. HDFS-1712. Federation: when looking up datanode we should use machineNmae
  173. (in testOverReplicatedBlocks) (boryas)
  174. HDFS-1709. Federation: Error "nnaddr url param is null" when clicking on a
  175. node from NN Live Node Link. (jitendra)
  176. HDFS-1714. Federation: refactor upgrade object in DataNode (boryas)
  177. HDFS-1715. Federation: warning/error not generated when datanode sees
  178. inconsistent/different Cluster ID between namenodes (boryas)
  179. HDFS-1715. Federation: warning/error not generated when datanode sees
  180. inconsistent/different Cluster ID between namenodes (boryas)
  181. HDFS-1716. Federation: Add decommission tests for federated namenodes.
  182. (suresh)
  183. HDFS-1713. Federation: Prevent DataBlockScanner from running in tight loop.
  184. (jitendra)
  185. HDFS-1721. Federation: Configuration for principal names should not be
  186. namenode specific. (jitendra)
  187. HDFS-1717. Federation: FSDataset volumeMap access is not synchronized
  188. correctly. (suresh)
  189. HDFS-1722. Federation: Add flag to MiniDFSCluser to differentiate between
  190. federation and non-federation modes. (boryas via suresh)
  191. HDFS-1718. Federation: MiniDFSCluster#waitActive() bug causes some tests
  192. to fail. (suresh)
  193. HDFS-1719. Federation: Fix TestDFSRemove that fails intermittently.
  194. (suresh)
  195. HDFS-1720. Federation: FSVolumeSet volumes is not synchronized correctly.
  196. (suresh)
  197. HDFS-1700. Federation: fsck needs to work with federation changes.
  198. (Matt Foley via suresh)
  199. HDFS-1482. Add listCorruptFileBlocks to DistributedFileSystem.
  200. (Patrick Kling via hairong)
  201. HDFS-1448. Add a new tool Offline Edits Viewer (oev). (Erik Steffl
  202. via szetszwo)
  203. HDFS-1735. Federation: merge FSImage change in federation to
  204. FSImage+NNStorage refactoring in trunk. (suresh)
  205. HDFS-1737. Federation: Update the layout version for federation
  206. changes. (suresh)
  207. HDFS-1744. Federation: Add new layout version to offline image viewer
  208. and edits viewer. (suresh)
  209. HDFS-1745. Federation: Fix fault injection test failures. (suresh)
  210. HDFS-1746. Federation: TestFileAppend3 fails intermittently. (jitendra)
  211. HDFS-1703. Improve start/stop scripts and add decommission tool for
  212. federation. (Tanping Wang, Erik Steffl via suresh)
  213. HDFS-1749. Federation: TestListCorruptFileBlocks failing in federation
  214. branch. (jitendra)
  215. HDFS-1754. Federation: testFsck fails. (boryas)
  216. HDFS-1755. Federation: The BPOfferService must always connect to namenode
  217. as the login user. (jitendra)
  218. HDFS-1675. Support transferring RBW between datanodes. (szetszwo)
  219. HDFS-1791. Federation: Add command to delete block pool directories
  220. from a datanode. (jitendra)
  221. HDFS-1761. Add a new DataTransferProtocol operation, Op.TRANSFER_BLOCK,
  222. for transferring RBW/Finalized with acknowledgement and without using RPC.
  223. (szetszwo)
  224. HDFS-1813. Federation: Authentication using BlockToken in RPC to datanode
  225. fails. (jitendra)
  226. HDFS-1630. Support fsedits checksum. (hairong)
  227. HDFS-1606. Provide a stronger data guarantee in the write pipeline by
  228. adding a new datanode when an existing datanode failed. (szetszwo)
  229. HDFS-1442. Api to get delegation token in Hdfs class. (jitendra)
  230. HDFS-1070. Speedup namenode image loading and saving by storing only
  231. local file names. (hairong)
  232. HDFS-1751. Intrinsic limits for HDFS files, directories (daryn via boryas).
  233. HDFS-1873. Federation: Add cluster management web console.
  234. (Tanping Wang via suresh)
  235. HDFS 1911 HDFS tests for the newly added viewfs
  236. HDFS-1814. Add "hdfs groups" command to query the server-side groups
  237. resolved for a user. (Aaron T. Myers via todd)
  238. HDFS-1914. Federation: namenode storage directories must be configurable
  239. specific to name service. (suresh)
  240. HDFS-1963. Create RPM and Debian packages for HDFS. Changes deployment
  241. layout to be consistent across the binary tgz, rpm, and deb.
  242. (Eric Yang via omalley)
  243. HDFS-2058. Change Data Transfer wire protocol to use protocol buffers.
  244. (todd)
  245. HDFS-2055. Add hflush support to libhdfs. (Travis Crawford via eli)
  246. HDFS-2083. Query JMX statistics over http via JMXJsonServlet. (tanping)
  247. HDFS-2156. Make hdfs and mapreduce rpm only depend on the same major
  248. version for common and hdfs. (eyang via omalley)
  249. HDFS-2202. Add a new DFSAdmin command to set balancer bandwidth of
  250. datanodes without restarting. (Eric Payne via szetszwo)
  251. HDFS-2284. Add a new FileSystem, webhdfs://, for supporting write Http
  252. access to HDFS. (szetszwo)
  253. HDFS-2317. Support read access to HDFS in webhdfs. (szetszwo)
  254. HDFS-2338. Add configuration option to enable/disable webhdfs.
  255. (jitendra via szetszwo)
  256. HDFS-2318. Provide authentication to webhdfs using SPNEGO and delegation
  257. tokens. (szetszwo)
  258. HDFS-2340. Support getFileBlockLocations and getDelegationToken in webhdfs.
  259. (szetszwo)
  260. HDFS-2348. Support getContentSummary and getFileChecksum in webhdfs.
  261. (szetszwo)
  262. IMPROVEMENTS
  263. HDFS-1875. MiniDFSCluster hard-codes dfs.datanode.address to localhost
  264. (Eric Payne via mattf)
  265. HDFS-2019. Fix all the places where Java method File.list is used with
  266. FileUtil.list API (Bharath Mundlapudi via mattf)
  267. HDFS-1934. Fix NullPointerException when certain File APIs return null
  268. (Bharath Mundlapudi via mattf)
  269. HDFS-1510. Added test-patch.properties required by test-patch.sh (nigel)
  270. HDFS-1628. Display full path in AccessControlException. (John George
  271. via szetszwo)
  272. HDFS-1707. Federation: Failure in browsing data on new namenodes.
  273. (jitendra)
  274. HDFS-1683. Test Balancer with multiple NameNodes. (szetszwo)
  275. HDFS-1547. Improve decommission mechanism. (suresh)
  276. HDFS-2143. Federation: In cluster web console, add link to namenode page
  277. that displays live and dead datanodes. (Ravi Prakash via suresh)
  278. HDFS-1588. Remove hardcoded strings for configuration keys, "dfs.hosts"
  279. and "dfs.hosts.exlude". (Erik Steffl via suresh)
  280. HDFS-1481. NameNode should validate fsimage before rolling. (hairong)
  281. HDFS-1506. Refactor fsimage loading code. (hairong)
  282. HDFS-1533. A more elegant FileSystem#listCorruptFileBlocks API
  283. (HDFS portion) (Patrick Kling via hairong)
  284. HDFS-1476. listCorruptFileBlocks should be functional while the
  285. name node is in safe mode. (Patrick Kling via hairong)
  286. HDFS-1534. Fix some incorrect logs in FSDirectory. (eli)
  287. HDFS-1539. A config option for the datanode to fsycn a block file
  288. when block is completely written. (dhruba)
  289. HDFS-1335. HDFS side change of HADDOP-6904: RPC compatibility. (hairong)
  290. HDFS-1557. Separate Storage from FSImage. (Ivan Kelly via jitendra)
  291. HDFS-560 Enhancements/tuning to hadoop-hdfs/build.xml
  292. HDFS-1629. Add a method to BlockPlacementPolicy for keeping the chosen
  293. nodes in the output array. (szetszwo)
  294. HDFS-1731. Allow using a file to exclude certain tests from build (todd)
  295. HDFS-1736. Remove the dependency from DatanodeJspHelper to FsShell.
  296. (Daryn Sharp via szetszwo)
  297. HDFS-780. Revive TestFuseDFS. (eli)
  298. HDFS-1445. Batch the calls in DataStorage to FileUtil.createHardLink().
  299. (Matt Foley via jghoman)
  300. HDFS-1763. Replace hard-coded option strings with variables from
  301. DFSConfigKeys. (eli)
  302. HDFS-1541. Not marking datanodes dead when namenode in safemode.
  303. (hairong)
  304. HDFS-1120. Make DataNode's block-to-device placement policy pluggable
  305. (Harsh J Chouraria via todd)
  306. HDFS-1785. In BlockReceiver and DataXceiver, clientName.length() is used
  307. multiple times for determining whether the source is a client or a
  308. datanode. (szetszwo)
  309. HDFS-1789. Refactor frequently used codes from DFSOutputStream and
  310. DataXceiver. (szetszwo)
  311. HDFS-1767. Namenode ignores non-initial block report from datanodes
  312. when in safemode during startup. (Matt Foley via suresh)
  313. HDFS-1817. Move pipeline_Fi_[39-51] from TestFiDataTransferProtocol
  314. to TestFiPipelineClose. (szetszwo)
  315. HDFS-1760. In FSDirectory.getFullPathName(..), it is better to return "/"
  316. for root directory instead of an empty string. (Daryn Sharp via szetszwo)
  317. HDFS-1833. Reduce repeated string constructions and unnecessary fields,
  318. and fix comments in BlockReceiver.PacketResponder. (szetszwo)
  319. HDFS-1486. Generalize CLITest structure and interfaces to faciliate
  320. upstream adoption (e.g. for web testing). (cos)
  321. HDFS-1844. Move "fs -help" shell command tests from HDFS to COMMOM; see
  322. also HADOOP-7230. (Daryn Sharp via szetszwo)
  323. HDFS-1840. In DFSClient, terminate the lease renewing thread when all files
  324. being written are closed for a grace period, and start a new thread when
  325. new files are opened for write. (szetszwo)
  326. HDFS-1854. make failure message more useful in
  327. DFSTestUtil.waitReplication(). (Matt Foley via eli)
  328. HDFS-1562. Add rack policy tests. (eli)
  329. HDFS-1856. TestDatanodeBlockScanner waits forever, errs without giving
  330. information. (Matt Foley via eli)
  331. HDFS-1295. Improve namenode restart times by short-circuiting the
  332. first block reports from datanodes. (Matt Foley via suresh)
  333. Corrected merge error in DataNode.java. (Matt Foley)
  334. HDFS-1843. Discover file not found early for file append.
  335. (Bharath Mundlapudi via jitendra)
  336. HDFS-1862. Improve test reliability of HDFS-1594. (Aaron T. Myers via eli)
  337. HDFS-1846. Preallocate edit log with OP_INVALID instead of zero bytes
  338. to ensure blocks are actually allocated. (Aaron T. Myers via todd)
  339. HDFS-1741. Provide a minimal pom file to allow integration of HDFS into Sonar
  340. analysis (cos)
  341. HDFS-1870. Move and rename DFSClient.LeaseChecker to a seperated class
  342. LeaseRenewer. (szetszwo)
  343. HDFS-1866. Document dfs.datanode.max.transfer.threads in hdfs-default.xml
  344. (Harsh J Chouraria via todd)
  345. HDFS-1890. Improve the name, class and value type of the map
  346. LeaseRenewer.pendingCreates. (szetszwo)
  347. HDFS-1865. Share LeaseRenewer among DFSClients so that there is only a
  348. LeaseRenewer thread per namenode per user. (szetszwo)
  349. HDFS-1906. Remove logging exception stack trace in client logs when one of
  350. the datanode targets to read from is not reachable. (suresh)
  351. HDFS-1378. Edit log replay should track and report file offsets in case of
  352. errors. (Aaron T. Myers and Todd Lipcon via todd)
  353. HDFS-1917. Separate hdfs jars from common in ivy configuration. (Eric Yang
  354. via szetszwo)
  355. HDFS-1899. GenericTestUtils.formatNamenode should be moved to DFSTestUtil
  356. (Ted Yu via todd)
  357. HDFS-1117. Metrics 2.0 HDFS instrumentation. (Luke Lu via suresh)
  358. HDFS-1946. HDFS part of HADOOP-7291. (eli)
  359. HDFS-1945. Removed the deprecated fields in DataTransferProtocol.
  360. (szetszwo)
  361. HDFS-1730. Use DaemonFactory from common and delete it from HDFS.
  362. (Tanping via suresh)
  363. HDFS-1573. Add useful tracing information to Lease Renewer thread names
  364. (todd)
  365. HDFS-1939. In ivy.xml, test conf should not extend common conf.
  366. (Eric Yang via szetszwo)
  367. HDFS-1332 Include more information in exceptions and debug messages
  368. when BlockPlacementPolicy cannot be satisfied. (Ted Yu via szetszwo)
  369. HDFS-1958. Confirmation should be more lenient of user input when
  370. formatting the NameNode. (todd)
  371. HDFS-1905. Improve namenode -format command by not making -clusterId
  372. parameter mandatory. (Bharath Mundlapudi via suresh)
  373. HDFS-1877. Add a new test for concurrent read and write. (CW Chung
  374. via szetszwo)
  375. HDFS-1959. Better error message for missing namenode directory. (eli)
  376. HDFS-1996. ivy: hdfs test jar should be independent to common test jar.
  377. (Eric Yang via szetszwo)
  378. HDFS-1812. TestHDFSCLI should clean up cluster in teardown method.
  379. (Uma Maheswara Rao G via todd)
  380. HDFS-1884. Improve TestDFSStorageStateRecovery to properly throw in the
  381. case of errors. (Aaron T. Myers via todd)
  382. HDFS-1727. fsck command should display command usage if user passes any
  383. illegal argument. (Sravan Kumar via todd)
  384. HDFS-1636. If dfs.name.dir points to an empty dir, namenode format
  385. shouldn't require confirmation. (Harsh J Chouraria via todd)
  386. HDFS-1966. Encapsulate individual DataTransferProtocol op headers.
  387. (szetszwo)
  388. HDFS-2024. Format TestWriteRead source codes. (CW Chung via szetszwo)
  389. HDFS-1968. Enhance TestWriteRead to support position/sequential read,
  390. append, truncate and verbose options. (CW Chung via szetszwo)
  391. HDFS-1986. Add option to get http/https address from
  392. DFSUtil#getInfoServer(). (Tanping via suresh)
  393. HDFS-2029. In TestWriteRead, check visible length immediately after
  394. openning the file and fix code style. (John George via szetszwo)
  395. HDFS-2040. Only build libhdfs if a flag is passed. (eli)
  396. HDFS-1586. Add InterfaceAudience and InterfaceStability annotations to
  397. MiniDFSCluster. (suresh)
  398. HDFS-2003. Separate FSEditLog reading logic from edit log memory state
  399. building logic. (Ivan Kelly via todd)
  400. HDFS-2066. Create a package and individual class files for
  401. DataTransferProtocol. (szetszwo)
  402. HADOOP-7106. Reorganize project SVN layout to "unsplit" the projects.
  403. (todd, nigel)
  404. HDFS-2046. Force entropy to come from non-true random for tests. (todd)
  405. HDFS-2073. Add @Override annotation to NameNode. (suresh)
  406. HDFS-420. Fuse-dfs should cache fs handles. (Brian Bockelman and eli)
  407. HDFS-1568. Improve the log messages in DataXceiver. (Joey Echeverria via
  408. szetszwo)
  409. HDFS-2100. Improve TestStorageRestore. (atm)
  410. HDFS-2092. Remove some object references to Configuration in DFSClient.
  411. (Bharath Mundlapudi via szetszwo)
  412. HDFS-2087. Declare methods in DataTransferProtocol interface, and change
  413. Sender and Receiver to implement the interface. (szetszwo)
  414. HDFS-1723. quota errors messages should use the same scale. (Jim Plush via
  415. atm)
  416. HDFS-2110. StreamFile and ByteRangeInputStream cleanup. (eli)
  417. HDFS-2107. Move block management code from o.a.h.h.s.namenode to a new
  418. package o.a.h.h.s.blockmanagement. (szetszwo)
  419. HDFS-2109. Store uMask as member variable to DFSClient.Conf. (Bharath
  420. Mundlapudi via szetszwo)
  421. HDFS-2111. Add tests for ensuring that the DN will start with a few bad
  422. data directories. (Harsh J Chouraria via todd)
  423. HDFS-2134. Move DecommissionManager to the blockmanagement package.
  424. (szetszwo)
  425. HDFS-1977. Stop using StringUtils.stringifyException().
  426. (Bharath Mundlapudi via jitendra)
  427. HDFS-2131. Add new tests for the -overwrite/-f option in put and
  428. copyFromLocal by HADOOP-7361. (Uma Maheswara Rao G via szetszwo)
  429. HDFS-2140. Move Host2NodesMap to the blockmanagement package. (szetszwo)
  430. HDFS-2154. In TestDFSShell, use TEST_ROOT_DIR and fix some deprecated
  431. warnings. (szetszwo)
  432. HDFS-2153. Move DFSClientAdapter to test and fix some javac warnings in
  433. OfflineEditsViewerHelper. (szetszwo)
  434. HDFS-2159. Deprecate DistributedFileSystem.getClient() and fixed the
  435. deprecated warnings in DFSAdmin. (szetszwo)
  436. HDFS-2157. Improve header comment in o.a.h.hdfs.server.namenode.NameNode.
  437. (atm via eli)
  438. HDFS-2147. Move cluster network topology to block management and fix some
  439. javac warnings. (szetszwo)
  440. HDFS-2141. Remove NameNode roles Active and Standby (they become
  441. states of the namenode). (suresh)
  442. HDFS-2161. Move createNamenode(..), createClientDatanodeProtocolProxy(..)
  443. and Random object creation to DFSUtil; move DFSClient.stringifyToken(..)
  444. to DelegationTokenIdentifier. (szetszwo)
  445. HDFS-1774. Small optimization to FSDataset. (Uma Maheswara Rao G via eli)
  446. HDFS-2167. Move dnsToSwitchMapping and hostsReader from FSNamesystem to
  447. DatanodeManager. (szetszwo)
  448. HDFS-2116. Use Mokito in TestStreamFile and TestByteRangeInputStream.
  449. (Plamen Jeliazkov via shv)
  450. HDFS-2112. Move ReplicationMonitor to block management. (Uma Maheswara
  451. Rao G via szetszwo)
  452. HDFS-1739. Add available volume size to the error message when datanode
  453. throws DiskOutOfSpaceException. (Uma Maheswara Rao G via szetszwo)
  454. HDFS-2144. If SNN shuts down during initialization it does not log the
  455. cause. (Ravi Prakash via atm)
  456. HDFS-2180. Refactor NameNode HTTP server into new class. (todd)
  457. HDFS-2198. Remove hardcoded configuration keys. (suresh)
  458. HDFS-2149. Move EditLogOp serialization formats into FsEditLogOp
  459. implementations. (Ivan Kelly via todd)
  460. HDFS-2191. Move datanodeMap from FSNamesystem to DatanodeManager.
  461. (szetszwo)
  462. HDFS-2200. Change FSNamesystem.LOG to package private. (szetszwo)
  463. HDFS-2195. Refactor StorageDirectory to not be an non-static inner class.
  464. (todd via eli)
  465. HDFS-2212. Refactor double-buffering code out of EditLogOutputStreams.
  466. (todd via eli)
  467. HDFS-2199. Move blockTokenSecretManager from FSNamesystem to BlockManager.
  468. (Uma Maheswara Rao G via szetszwo)
  469. HDFS-2187. Make EditLogInputStream act like an iterator over FSEditLogOps
  470. (Ivan Kelly and todd via todd)
  471. HDFS-2225. Refactor edit log file management so it's not in classes
  472. which should be generic to the type of edit log storage. (Ivan Kelly
  473. via todd)
  474. HDFS-2108. Move datanode heartbeat handling from namenode package to
  475. blockmanagement package. (szetszwo)
  476. HDFS-2226. Clean up counting of operations in FSEditLogLoader (todd)
  477. HDFS-2228. Move block and datanode code from FSNamesystem to
  478. BlockManager and DatanodeManager. (szetszwo)
  479. HDFS-2238. In NamenodeFsck.toString(), uses StringBuilder.(..) instead of
  480. string concatenation. (Uma Maheswara Rao G via szetszwo)
  481. HDFS-2230. ivy to resolve/retrieve latest common-tests jar published by
  482. hadoop common maven build. (gkesavan)
  483. HDFS-2227. getRemoteEditLogManifest should pull its information from
  484. FileJournalManager during checkpoint process (Ivan Kelly and Todd Lipcon
  485. via todd)
  486. HDFS-2239. Reduce access levels of the fields and methods in FSNamesystem.
  487. (szetszwo)
  488. HDFS-2241. Remove implementing FSConstants interface to just get the
  489. constants from the interface. (suresh)
  490. HDFS-2237. Change UnderReplicatedBlocks from public to package private.
  491. (szetszwo)
  492. HDFS-2233. Add WebUI tests with URI reserved chars. (eli)
  493. HDFS-2265. Remove unnecessary BlockTokenSecretManager fields/methods from
  494. BlockManager. (szetszwo)
  495. HDFS-2260. Refactor BlockReader into an interface and implementation.
  496. (todd)
  497. HDFS-2096. Mavenization of hadoop-hdfs (Alejandro Abdelnur via tomwhite)
  498. HDFS-2273. Refactor BlockManager.recentInvalidateSets to a new class.
  499. (szetszwo)
  500. HDFS-2266. Add Namesystem and SafeMode interfaces to avoid directly
  501. referring to FSNamesystem in BlockManager. (szetszwo)
  502. HDFS-1217. Change some NameNode methods from public to package private.
  503. (Laxman via szetszwo)
  504. HDFS-2332. Add test for HADOOP-7629 (using an immutable FsPermission
  505. object as an RPC parameter fails). (todd)
  506. HDFS-2363. Move datanodes size printing from FSNamesystem.metasave(..)
  507. to BlockManager. (Uma Maheswara Rao G via szetszwo)
  508. HDFS-2209. Make MiniDFS easier to embed in other apps. (stevel)
  509. HDFS-2205. Log message for failed connection to datanode is not
  510. followed by a success message. (Ravi Prakash via stevel)
  511. HDFS-2401. Running a set of methods in a Single Test Class.
  512. (Jonathan Eagles via mahadev)
  513. HDFS-2471. Add federation documentation. (suresh)
  514. HDFS-2485. Improve code layout and constants in UnderReplicatedBlocks
  515. (stevel)
  516. HDFS-2356. Support case insensitive query parameter names in webhdfs.
  517. (szetszwo)
  518. HDFS-2368. Move SPNEGO conf properties from hdfs-default.xml to
  519. hdfs-site.xml. (szetszwo)
  520. HDFS-2395. Add a root element in the JSON responses of webhdfs.
  521. (szetszwo)
  522. HDFS-2427. Change the default permission in webhdfs to 755 and add range
  523. check/validation for all parameters. (szetszwo)
  524. HDFS-2501. Add version prefix and root methods to webhdfs. (szetszwo)
  525. HDFS-1869. mkdirs should use the supplied permission for all of the created
  526. directories. (Daryn Sharp via szetszwo)
  527. HDFS-2355. Federation: enable using the same configuration file across
  528. all the nodes in the cluster. (suresh)
  529. HDFS-2371. Refactor BlockSender.java for better readability. (suresh)
  530. HDFS-2507. Allow saveNamespace operations to be canceled. (todd)
  531. HDFS-2493. Remove reference to FSNamesystem in blockmanagement classes.
  532. (szetszwo)
  533. HDFS-2509. Add a test for DistributedFileSystem.getFileChecksum(..) on
  534. directories or non existing files. (Uma Maheswara Rao G via szetszwo)
  535. OPTIMIZATIONS
  536. HDFS-1458. Improve checkpoint performance by avoiding unnecessary image
  537. downloads and loading. (hairong)
  538. HDFS-1601. Pipeline ACKs are sent as lots of tiny TCP packets (todd)
  539. HDFS-1826. NameNode should save image to name directories in parallel
  540. during upgrade. (Matt Foley via hairong)
  541. HDFS-2030. Improve usability of namenode -upgrade command.
  542. (Bharath Mundlapudi via suresh)
  543. HDFS-2056. Update fetchdt usage. (Tanping Wang via jitendra)
  544. HDFS-2118. Couple dfs data dir improvements. (eli)
  545. HDFS-2500. Avoid file system operations in BPOfferService thread while
  546. processing deletes. (todd)
  547. HDFS-2465. Add HDFS support for fadvise readahead and drop-behind. (todd)
  548. BUG FIXES
  549. HDFS-2347. Fix checkpointTxnCount's comment about editlog size.
  550. (Uma Maheswara Rao G via mattf)
  551. HDFS-2011. Removal and restoration of storage directories on checkpointing
  552. failure doesn't work properly. (Ravi Prakash via mattf)
  553. HDFS-1955. FSImage.doUpgrade() was made too fault-tolerant by HDFS-1826.
  554. (mattf)
  555. HDFS-2061. Two minor bugs in BlockManager block report processing. (mattf)
  556. HDFS-1449. Fix test failures - ExtendedBlock must return
  557. block file name in #getBlockName(). (suresh)
  558. HDFS-1680. Fix TestBalancer. (szetszwo)
  559. HDFS-1705. Balancer command throws NullPointerException. (suresh via
  560. szetszwo)
  561. HDFS-1559. Add missing UGM overrides to TestRefreshUserMappings
  562. (Todd Lipcon via eli)
  563. HDFS-1585. Fix build after HDFS-1547 (todd)
  564. HDFS-1684. Balancer cannot start with with multiple namenodes. (szetszwo)
  565. HDFS-1516. mvn-install is broken after 0.22 branch creation. (cos)
  566. HDFS-1360. TestBlockRecovery should bind ephemeral ports.
  567. (Todd Lipcon via hairong)
  568. HDFS-1551. Fix pom templates dependency list (gkesavan)
  569. HDFS-1509. A savenamespace command writes the fsimage and edits into
  570. all configured directories. (dhruba)
  571. HDFS-1540. Make Datanode handle errors from RPC calls to namenode
  572. more elegantly. (dhruba)
  573. HDFS-1463. Accesstime of a file is not updated in safeMode. (dhruba)
  574. HDFS-863. Potential deadlock in TestOverReplicatedBlocks.
  575. (Ken Goodhope via jghoman)
  576. HDFS-1607. Fix referenced to misspelled method name getProtocolSigature
  577. (todd)
  578. HDFS-1610. Fix TestClientProtocolWithDelegationToken and TestBlockToken
  579. on trunk after HADOOP-6904 (todd)
  580. HDFS-1600. Fix release audit warnings on trunk. (todd)
  581. HDFS-1691. Remove a duplicated static initializer for reading default
  582. configurations in DFSck. (Alexey Diomin via szetszwo)
  583. HDFS-1748. Balancer utilization classification is incomplete. (szetszwo)
  584. HDFS-1738. change hdfs jmxget to return an empty string instead of
  585. null when an attribute value is not available (tanping vi boryas)
  586. HDFS-1757. Don't compile fuse-dfs by default. (eli)
  587. HDFS-1770. TestFiRename fails due to invalid block size. (eli)
  588. HDFS-1797. Fix new findbugs warning introduced by HDFS-1120 (todd)
  589. HDFS-1611. Fix up some log messages in DFSClient and MBean registration
  590. (Uma Maheswara Rao G via todd)
  591. HDFS-1543. Reduce dev. cycle time by moving system testing artifacts from
  592. default build and push to maven for HDFS (Luke Lu via cos)
  593. HDFS-1818. TestHDFSCLI is failing on trunk after HADOOP-7202.
  594. (Aaron T. Myers via todd)
  595. HDFS-1828. TestBlocksWithNotEnoughRacks intermittently fails assert.
  596. (Matt Foley via eli)
  597. HDFS-1824. delay instantiation of file system object until it is
  598. needed (linked to HADOOP-7207) (boryas)
  599. HDFS-1831. Fix append bug in FileContext and implement CreateFlag
  600. check (related to HADOOP-7223). (suresh)
  601. HDFS-1594. When the disk becomes full Namenode is getting shutdown and
  602. not able to recover. (Aaron T. Myers via eli)
  603. HDFS-1822. Handle editlog opcode conflict with 0.20.203 during upgrade,
  604. by throwing an error to indicate the editlog needs to be empty.
  605. (suresh)
  606. HDFS-1808. TestBalancer waits forever, errs without giving information.
  607. (Matt Foley via eli)
  608. HDFS-1829. TestNodeCount waits forever, errs without giving information.
  609. (Matt Foley via eli)
  610. HDFS-1860. when renewing/canceling DelegationToken over http we need to
  611. pass exception information back to the caller.(boryas)
  612. HDFS-1871. Mapreduce build fails due to MiniDFSCluster change from
  613. HDFS-1052. (suresh)
  614. HDFS-1876. One MiniDFSCluster constructor ignores numDataNodes parameter
  615. (todd)
  616. HDFS-1773. Do not show decommissioned datanodes, which are not in both
  617. include and exclude lists, on web and JMX interfaces.
  618. (Tanping Wang via szetszwo)
  619. HDFS-1888. MiniDFSCluster#corruptBlockOnDatanodes() access must be
  620. public. (suresh)
  621. HDFS-1889. incorrect path in start/stop dfs script. (John George via eli)
  622. HDFS-1891. Disable IPV6 for junit tests to fix TestBackupNode failure.
  623. (suresh)
  624. HDFS-1898. Tests failing on trunk due to use of NameNode.format.
  625. (todd via eli)
  626. HDFS-1902. Fix setrep path display for TestHDFSCLI. (Daryn Sharp
  627. via szetszwo)
  628. HDFS-1827. Fix timeout problem in TestBlockReplacement. (Matt Foley
  629. via szetszwo)
  630. HDFS-1908. Fix a NullPointerException in fi.DataTransferTestUtil.
  631. (szetszwo)
  632. HDFS-1912. Update tests for FsShell standardized error messages.
  633. (Daryn Sharp via szetszwo)
  634. HDFS-1903. Fix path display for rm/rmr in TestHDFSCLI and TestDFSShell.
  635. (Daryn Sharp via szetszwo)
  636. HDFS-1627. Fix NullPointerException in Secondary NameNode. (hairong)
  637. HDFS-1928. Fix path display for touchz in TestHDFSCLI.
  638. (Daryn Sharp via todd)
  639. HDFS-1938. Fix ivy-retrieve-hdfs dependence in build.xml and aop.xml.
  640. (Eric Yang via szetszwo)
  641. HDFS-1929. TestEditLogFileOutputStream fails if running on same host as NN
  642. (Aaron T. Myers via todd)
  643. HDFS-1933. Update TestDFSShell for improved "test" shell command. (Daryn
  644. Sharp via todd)
  645. HDFS-1931. Update TestDFSShell for improved "du" shell command. (Daryn
  646. Sharp via todd)
  647. HDFS-1439. HDFS Federation: Fix compilation error in TestFiHftp. (suresh)
  648. HDFS-1881. Federation: after taking snapshot the current directory
  649. of datanode is empty. (Tanping Wang via suresh)
  650. HDFS-1927. Fix a bug which causes ip=null in NameNode audit log.
  651. (John George via szetszwo)
  652. HDFS-1953. Federation: Change name node mxbean name in cluster web
  653. console. (Tanping Wang via suresh)
  654. HDFS-1922. Fix recurring failure of TestJMXGet (Luke Lu via todd)
  655. HDFS-1371. One bad node can incorrectly flag many files as corrupt.
  656. (Tanping Wang via jitendra)
  657. HDFS-1943. Fail to start datanode while start-dfs.sh is executed by
  658. root user. (Wei Yongjun via jghoman)
  659. HDFS-1983. Fix path display for copy and rm commands in TestHDFSCLI and
  660. TestDFSShell. (Daryn Sharp via todd)
  661. HDFS-1999. Tests use deprecated configs. (Aaron T. Myers via eli)
  662. HDFS-1592. Datanode startup doesn't honor volumes.tolerated.
  663. (Bharath Mundlapudi via jitendra)
  664. HDFS-1920. libhdfs does not build for ARM processors.
  665. (Trevor Robinson via eli)
  666. HDFS-1936. Layout version change from HDFS-1822 causes upgrade failure.
  667. (suresh)
  668. HDFS-2021. Update numBytesAcked before sending the ack in PacketResponder.
  669. (John George via szetszwo)
  670. HDFS-2020. Fix TestDFSUpgradeFromImage by removing the use of DataNode
  671. as a singleton. (suresh via todd)
  672. HDFS-2022. ant binary should build libhdfs. (Eric Yang via eli)
  673. HDFS-2014. Change HDFS scripts to work in developer enviroment post
  674. RPM packaging changes. (Eric Yang via suresh)
  675. HDFS-1995. Federation: Minor bug fixes and modification cluster web UI.
  676. (Tanping Wang via suresh)
  677. HDFS-1907. Fix position read for reading still-being-written file in
  678. DFSInputStream. (John George via szetszwo)
  679. HDFS-1923. In TestFiDataTransferProtocol2, reduce random sleep time period
  680. and increase the number of datanodes. (szetszwo)
  681. HDFS-1149. Lease reassignment should be persisted to the edit log.
  682. (Aaron T. Myers via todd)
  683. HDFS-1998. Federation: Make refresh-namenodes.sh refresh all the
  684. namenode. (Tanping Wang via suresh)
  685. HDFS-2041. OP_CONCAT_DELETE doesn't properly restore modification time
  686. of the concatenated file when edit logs are replayed. (todd)
  687. HDFS-2063. libhdfs test is broken. (Eric Yang via eli)
  688. HDFS-2067. Bump DATA_TRANSFER_VERSION constant in trunk after introduction
  689. of protocol buffers in the protocol. (szetszwo via todd)
  690. HDFS-2069. Incorrect default trash interval value in the docs.
  691. (Harsh J Chouraria via eli)
  692. HDFS-1942. Datanode must exist when all the block pool service threads
  693. exit. (Bharath Mundlapudi via suresh)
  694. HDFS-1656. Fixes an issue to do with fetching of delegation tokens in
  695. HftpFileSystem. Contributed by Kan Zhang.
  696. HDFS-1692. In secure mode, Datanode process doesn't exit when disks
  697. fail. (Bharath Mundlapudi via suresh)
  698. HDFS-1734. 'Chunk size to view' option is not working in Name Node UI.
  699. (Uma Maheswara Rao G via jitendra)
  700. HDFS-2086. If the include hosts list contains host names, after restarting
  701. namenode, data nodes registration is denied. Contributed by Tanping Wang.
  702. HDFS-2082. SecondaryNameNode web interface doesn't show the right info. (atm)
  703. HDFS-1321. If service port and main port are the same, there is no clear
  704. log message explaining the issue. (Jim Plush via atm)
  705. HDFS-1381. HDFS javadocs hard-code references to dfs.namenode.name.dir and
  706. dfs.datanode.data.dir parameters (Jim Plush via atm)
  707. HDFS-2053. Bug in INodeDirectory#computeContentSummary warning.
  708. (Michael Noll via eli)
  709. HDFS-1990. Fix resource leaks in BlockReceiver.close(). (Uma Maheswara
  710. Rao G via szetszwo)
  711. HDFS-2034. Length in DFSInputStream.getBlockRange(..) becomes -ve when
  712. reading only from a currently being written block. (John George via
  713. szetszwo)
  714. HDFS-2132. Potential resource leak in EditLogFileOutputStream.close. (atm)
  715. HDFS-2120. on reconnect, DN can connect to NN even with different source
  716. versions. (John George via atm)
  717. HDFS-2152. TestWriteConfigurationToDFS causing the random failures. (Uma
  718. Maheswara Rao G via atm)
  719. HDFS-2114. re-commission of a decommissioned node does not delete
  720. excess replicas. (John George via mattf)
  721. HDFS-1776. Bug in Concat code. (Bharath Mundlapudi via Dmytro Molkov)
  722. HDFS-2196. Make ant build system work with hadoop-common JAR generated
  723. by Maven. (Alejandro Abdelnur via tomwhite)
  724. HDFS-2245. Fix a NullPointerException in BlockManager.chooseTarget(..).
  725. (szetszwo)
  726. HDFS-2229. Fix a deadlock in namenode by enforcing lock acquisition
  727. ordering. (szetszwo)
  728. HDFS-2235. Encode servlet paths. (eli)
  729. HDFS-2186. DN volume failures on startup are not counted. (eli)
  730. HDFS-2240. Fix a deadlock in LeaseRenewer by enforcing lock acquisition
  731. ordering. (szetszwo)
  732. HDFS-73. DFSOutputStream does not close all the sockets.
  733. (Uma Maheswara Rao G via eli)
  734. HDFS-1257. Fix a race condition on BlockManager.recentInvalidateSets.
  735. (Eric Payne via szetszwo)
  736. HDFS-2267. DataXceiver thread name incorrect while waiting on op during
  737. keepalive. (todd)
  738. HDFS-1480. All replicas of a block can end up on the same rack when
  739. some datanodes are decommissioning. (todd)
  740. HDFS-2286. DataXceiverServer logs AsynchronousCloseException at shutdown
  741. (todd)
  742. HDFS-2289. Ensure jsvc is bundled with the HDFS distribution artifact.
  743. (Alejandro Abdelnur via acmurthy)
  744. HDFS-2323. start-dfs.sh script fails for tarball install (tomwhite)
  745. HDFS-2412. Add backwards-compatibility layer for renamed FSConstants
  746. class (todd)
  747. HDFS-2414. Fix TestDFSRollback to avoid spurious failures. (todd)
  748. HDFS-2422. The NN should tolerate the same number of low-resource volumes
  749. as failed volumes (atm)
  750. HDFS-2467. HftpFileSystem uses incorrect compare for finding delegation
  751. tokens. (omalley)
  752. HDFS-2331. Fix WebHdfsFileSystem compilation problems for a bug in JDK
  753. version < 1.6.0_26. (Abhijit Suresh Shingate via szetszwo)
  754. HDFS-2333. Change DFSOutputStream back to package private, otherwise,
  755. there are two SC_START_IN_CTOR findbugs warnings. (szetszwo)
  756. HDFS-2366. Initialize WebHdfsFileSystem.ugi in object construction.
  757. (szetszwo)
  758. HDFS-2361. hftp is broken, fixed username checks in JspHelper. (jitendra)
  759. HDFS-2403. NamenodeWebHdfsMethods.generateDelegationToken(..) does not use
  760. the renewer parameter. (szetszwo)
  761. HDFS-2409. _HOST in dfs.web.authentication.kerberos.principal. (jitendra)
  762. HDFS-2404. webhdfs liststatus json response is not correct. (suresh)
  763. HDFS-2441. Remove the Content-Type set by HttpServer.QuotingInputFilter in
  764. webhdfs responses. (szetszwo)
  765. HDFS-2428. Convert com.sun.jersey.api.ParamException$QueryParamException
  766. to IllegalArgumentException and response it as http BAD_REQUEST in webhdfs.
  767. (szetszwo)
  768. HDFS-2424. Added a root element "HdfsFileStatuses" for the response
  769. of webhdfs listStatus. (szetszwo)
  770. MAPREDUCE-2764. Fix renewal of dfs delegation tokens. (Owen via jitendra)
  771. HDFS-2439. Fix NullPointerException in webhdfs when opening a non-existing
  772. file or creating a file without specifying the replication parameter.
  773. (szetszwo)
  774. HDFS-2453. Fix http response code for partial content in webhdfs, added
  775. getDefaultBlockSize() and getDefaultReplication() in WebHdfsFileSystem
  776. and cleared content type in ExceptionHandler. (szetszwo)
  777. HDFS-2411. The the auth to local mappings are not being respected, with
  778. webhdfs enabled. (jitendra)
  779. HDFS-2494. Close the streams and DFSClient in DatanodeWebHdfsMethods.
  780. (Uma Maheswara Rao G via szetszwo)
  781. HDFS-2298. Fix TestDfsOverAvroRpc by changing ClientProtocol to
  782. not include multiple methods of the same name. (cutting)
  783. HDFS-2432. Webhdfs: response FORBIDDEN when setReplication on non-files;
  784. clear umask before creating a flie; throw IllegalArgumentException if
  785. setOwner with both owner and group empty; throw FileNotFoundException if
  786. getFileStatus on non-existing files; fix bugs in getBlockLocations; and
  787. changed getFileChecksum json response root to "FileChecksum". (szetszwo)
  788. BREAKDOWN OF HDFS-1073 SUBTASKS
  789. HDFS-1521. Persist transaction ID on disk between NN restarts.
  790. (Ivan Kelly and Todd Lipcon via todd)
  791. HDFS-1538. Refactor more startup and image loading code out of FSImage.
  792. (todd)
  793. HDFS-1729. Add code to detect valid length of an edits file. (todd)
  794. HDFS-1793. Add code to inspect a storage directory with txid-based
  795. filenames (todd)
  796. HDFS-1794. Add code to list which edit logs are available on a remote NN
  797. (todd)
  798. HDFS-1858. Add state management variables to FSEditLog (Ivan Kelly and Todd
  799. Lipcon via todd)
  800. HDFS-1859. Add some convenience functions to iterate over edit log streams
  801. (Ivan Kelly and Todd Lipcon via todd)
  802. HDFS-1894. Add constants for LAYOUT_VERSIONs in edits log branch (todd)
  803. HDFS-1892. Fix EditLogFileInputStream.getValidLength to be aware of
  804. OP_INVALID filler (todd)
  805. HDFS-1799. Refactor log rolling and filename management out of FSEditLog
  806. (Ivan Kelly and Todd Lipcon via todd)
  807. HDFS-1801. Remove use of timestamps to identify checkpoints and logs (todd)
  808. HDFS-1930. TestDFSUpgrade failing in HDFS-1073 branch (todd)
  809. HDFS-1800. Extend image checksumming to function with multiple fsimage
  810. files per directory. (todd)
  811. HDFS-1725. Set storage directories only at FSImage construction (Ivan Kelly
  812. via todd)
  813. HDFS-1926. Remove references to StorageDirectory from JournalManager
  814. interface (Ivan Kelly via todd)
  815. HDFS-1893. Change edit logs and images to be named based on txid (todd)
  816. HDFS-1985. Clean up image transfer servlet (todd)
  817. HDFS-1984. Enable multiple secondary namenodes to run simultaneously (todd)
  818. HDFS-1987. Re-enable TestCheckpoint.testSecondaryImageDownload which was
  819. not running previously. (todd)
  820. HDFS-1993. TestCheckpoint needs to clean up between cases (todd)
  821. HDFS-1992. Remove vestiges of NNStorageListener. (todd)
  822. HDFS-1991. Some refactoring of Secondary NameNode to be able to share more
  823. code with the BackupNode or CheckpointNode. (todd)
  824. HDFS-1994. Fix race conditions when running two rapidly checkpointing
  825. Secondary NameNodes. (todd)
  826. HDFS-2001. Remove use of previous.checkpoint and lastcheckpoint.tmp
  827. directories (todd)
  828. HDFS-2015. Remove checkpointTxId from VERSION file. (todd)
  829. HDFS-2016. Add infrastructure to remove or archive old and unneeded storage
  830. files within the name directories. (todd)
  831. HDFS-2047. Improve TestNamespace and TestEditLog in HDFS-1073 branch.
  832. (todd)
  833. HDFS-2048. Add upgrade tests and fix upgrade from 0.22 with corrupt image.
  834. (todd)
  835. HDFS-2027. Image inspector should return finalized logs before unfinalized
  836. logs. (todd)
  837. HDFS-2074. Determine edit log validity by truly reading and validating
  838. transactions. (todd)
  839. HDFS-2085. Finalize in-progress edit logs at startup. (todd)
  840. HDFS-2026. SecondaryNameNode should properly handle the case where the
  841. NameNode is reformatted. (todd)
  842. HDFS-2077. Address checkpoint upload when one of the storage dirs is failed
  843. (todd)
  844. HDFS-2078. NameNode should not clear directory when restoring removed
  845. storage. (todd)
  846. HDFS-2088. Move edits log archiving logic into FSEditLog/JournalManager
  847. (todd)
  848. HDFS-2093. Handle case where an entirely empty log is left during NN crash
  849. (todd)
  850. HDFS-2102. Zero-pad edits filename to make them lexically sortable. (Ivan
  851. Kelly via todd)
  852. HDFS-2010. Fix NameNode to exit if all edit streams become inaccessible.
  853. (atm via todd)
  854. HDFS-2123. Checkpoint interval should be based on txn count, not size.
  855. (todd)
  856. HDFS-1979. Fix backupnode for new edits/image layout. (todd)
  857. HDFS-2101. Fix remaining unit tests for new storage filenames. (todd)
  858. HDFS-2133. Address remaining TODOs and pre-merge cleanup on HDFS-1073
  859. branch. (todd)
  860. HDFS-1780. Reduce need to rewrite FSImage on startup. (todd)
  861. HDFS-2104. Add a flag to the 2NN to format its checkpoint dirs on startup.
  862. (todd)
  863. HDFS-2135. Fix regression of HDFS-1955 in HDFS-1073 branch. (todd)
  864. HDFS-2160. Fix CreateEditsLog test tool in HDFS-1073 branch. (todd)
  865. HDFS-2168. Reenable TestEditLog.testFailedOpen and fix exposed bug. (todd)
  866. HDFS-2169. Clean up TestCheckpoint and remove TODOs (todd)
  867. HDFS-2170. Address remaining TODOs in HDFS-1073 branch. (todd)
  868. HDFS-2172. Address findbugs and javadoc warnings in HDFS-1073 branch.
  869. (todd)
  870. HDFS-2445. Ensure failed tests exit with proper error code. (Jonathan
  871. Eagles via acmurthy)
  872. Release 0.22.0 - Unreleased
  873. INCOMPATIBLE CHANGES
  874. HDFS-1825. Remove thriftfs contrib. (nigel via eli)
  875. NEW FEATURES
  876. HDFS-992. Re-factor block access token implementation to conform to the
  877. generic Token interface in Common (Kan Zhang and Jitendra Pandey via jghoman)
  878. HDFS-599. Allow NameNode to have a seprate port for service requests from
  879. client requests. (Dmytro Molkov via hairong)
  880. HDFS-1004. Update NN to support Kerberized SSL from HADOOP-6584.
  881. (jghoman and Kan Zhang via jghoman)
  882. HDFS-1005. Fsck security. (borya and Kan Zhang via jghoman)
  883. HDFS-1006. getImage/putImage http requests should be https for the case
  884. of security enabled. (borya and jghoman via jghoman)
  885. HDFS-1033. In secure clusters, NN and SNN should verify that the remote
  886. principal during image and edits transfer. (jghoman)
  887. HDFS-1023. Allow http server to start as regular principal if https
  888. principal not defined. (jghoman)
  889. HDFS-1150. Verify datanodes' identities to clients in secure clusters.
  890. (jghoman)
  891. HDFS-1330. Make RPCs to DataNodes timeout. (hairong)
  892. Added additional unit tests per HADOOP-6889. (John George via mattf)
  893. HDFS-202. HDFS support of listLocatedStatus introduced in HADOOP-6870.
  894. HDFS piggyback block locations to each file status when listing a
  895. directory. (hairong)
  896. HDFS-1361. Add -fileStatus operation to NNThroughputBenchmark. (shv)
  897. HDFS-1435. Provide an option to store fsimage compressed. (hairong)
  898. HDFS-903. Support fsimage validation through MD5 checksum. (hairong)
  899. HDFS-1457. Provide an option to throttle image transmission between
  900. pimary and secondary NameNodes. (Yifei Lu and hairong via hairong)
  901. HDFS-1164. TestHdfsProxy is failing. (Todd Lipcon via cos)
  902. HDFS-811. Add metrics, failure reporting and additional tests for HDFS-457.
  903. (eli)
  904. HDFS-895. Allow hflush/sync to occur in parallel with new writes
  905. to the file. (Todd Lipcon via hairong)
  906. HDFS-528. Add ability for safemode to wait for a minimum number of
  907. live datanodes (Todd Lipcon via eli)
  908. HDFS-1753. Resource Leak in StreamFile. (Uma Maheswara Rao G via eli)
  909. IMPROVEMENTS
  910. HDFS-1304. Add a new unit test for HftpFileSystem.open(..). (szetszwo)
  911. HDFS-1096. fix for prev. commit. (boryas)
  912. HDFS-1096. allow dfsadmin/mradmin refresh of superuser proxy group
  913. mappings (boryas)
  914. HDFS-1146. Javadoc for getDelegationTokenSecretManager in FSNamesystem (jnp via boryas)
  915. HDFS-1132. Refactor TestFileStatus (Eli Collins via cos)
  916. HDFS-1163. normalize property names for JT/NN kerberos principal
  917. names in configuration (from HADOOP 6633) (boryas)
  918. HDFS-1003. authorization checks for inter-server protocol
  919. (based on HADOOP-6600) (boryas)
  920. HDFS-1061. Memory footprint optimization for INodeFile object.
  921. (Bharath Mundlapudi via jghoman)
  922. HDFS-1079. Throw exceptions as specified by the AbstractFileSystem
  923. in HDFS implemenation and protocols. (suresh)
  924. HDFS-1112. Edit log buffer should not grow unfoundedly. (hairong)
  925. HDFS-1119. Introduce a GSet interface to BlocksMap. (szetszwo)
  926. HDFS-1184. Replace tabs in code with spaces. (Jeff Ames via jghoman)
  927. HDFS-1185. Remove duplicate now() functions in DataNode, FSNamesysetm.
  928. (Jeff Ames via jghoman)
  929. HDFS-1183. Remove some duplicate code in NamenodeJspHelper.java.
  930. (Jeff Ames via jghoman)
  931. HDFS-1190. Remove unused getNamenode() method from DataNode.
  932. (Jeff Ames via jghoman)
  933. HDFS-1110. Reuses objects for commonly used file names in namenode to
  934. reduce the heap usage. (suresh)
  935. HDFS-752. Add interfaces classification to to HDFS source code. (suresh)
  936. HDFS-947. An Hftp read request is redirected to a datanode that has
  937. the most replicas of the blocks in the file. (Dmytro Molkov via dhruba)
  938. HDFS-1272. Fixes to take care of the changes in HADOOP-6845.
  939. (Jitendra Pandey via ddas)
  940. HDFS-1298 - Add support in HDFS for new statistics added in FileSystem
  941. to track the file system operations. (suresh)
  942. HDFS-1201. The HDFS component for HADOOP-6632.
  943. (Kan Zhang & Jitendra Pandey via ddas)
  944. HDFS-1307 Add start time, end time and total time taken for FSCK to
  945. FSCK report (suresh)
  946. HDFS-1302. The HDFS side of the changes corresponding to HADOOP-6861.
  947. (Jitendra Pandey & Owen O'Malley via ddas)
  948. HDFS-1315. Add fsck event to audit log and remove other audit log events
  949. corresponding to FSCK listStatus and open calls. (suresh)
  950. HDFS-1178. The NameNode servlets should not use RPC to connect to the
  951. NameNode. (Kan Zhang via jghoman)
  952. HDFS-1130. Adds dfs.cluster.administrator ACL configuration that can
  953. be used to control who can view the default hdfs servlets. (ddas)
  954. HDFS-1297. Fix some comments. (Jeff Ames via jghoman)
  955. HDFS-330. Datanode Web UIs should provide robots.txt.
  956. (Allen Wittenauer via jghoman)
  957. HDFS-881. Refactor DataNode Packet header into DataTransferProtocol.
  958. (Todd Lipcon via jghoman)
  959. HDFS-1036. docs for fetchdt
  960. HDFS-1318. Add JMX interface for read access to namenode and datanode
  961. web UI information. (Tanping Wang via suresh).
  962. HDFS-1356. Provide information as to whether or not security is
  963. enabled on web interface for NameNode (boryas)
  964. HDFS-1205. FSDatasetAsyncDiskService should name its threads.
  965. (Todd Lipcon via eli)
  966. HDFS-1111. Introduce getCorruptFileBlocks() for fsck. (Sriram Rao via shv)
  967. HDFS-1395. Add @Override to FSDataset methods that implement
  968. FSDatasetInterface methods. (suresh)
  969. HDFS-1383. Improve the error messages when using hftp://. (szetszwo)
  970. HDFS-1093. Change the FSNamesystem lock to a read/write lock. (dhruba)
  971. HDFS-1407. Change DataTransferProtocol methods to use Block instead
  972. of individual elements of Block. (suresh)
  973. HDFS-1417. Add @Override to SimulatedFSDataset methods that implement
  974. FSDatasetInterface methods. (suresh)
  975. HDFS-1426. Remove unused method BlockInfo#listCount. (hairong)
  976. HDFS-1472. Allow programmatic access to fsck output.
  977. (Ramkumar Vadali via dhruba)
  978. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  979. latest test-patch.sh script (gkesavan)
  980. HDFS-1462. Refactor edit log loading to a separate class from edit log writing.
  981. (Todd Lipcon via eli)
  982. HDFS-1485. Fix typo in BlockPlacementPolicy. (Jingguo Yao via shv)
  983. HDFS-1035. Generate Eclipse's .classpath file from Ivy config. (nigel)
  984. HDFS-1408. Herriot NN and DN clients should vend statistics. (cos)
  985. HDFS-1491 Update Hdfs to match the change of methods from protected to public
  986. in AbstractFileSystem (Hadoop-6903) (sanjay)
  987. HDFS-1160. Improve some FSDataset warnings and comments. (eli)
  988. HDFS-556. Provide info on failed volumes in the web ui. (eli)
  989. HDFS-697. Enable asserts for tests by default. (eli)
  990. HDFS-1187. Modify fetchdt to allow renewing and canceling token.
  991. (Owen O'Malley and Kan Zhang via jghoman)
  992. HDFS-1387. Update HDFS permissions guide for security. (Todd Lipcon via eli)
  993. HDFS-455. Make NN and DN handle in a intuitive way comma-separated
  994. configuration strings. (Michele Catasta via eli)
  995. HDFS-1071. savenamespace should write the fsimage to all configured
  996. fs.name.dir in parallel (Dmytro Molkov via jghoman)
  997. HDFS-1055. Improve thread naming for DataXceivers.
  998. (Todd Lipcon and Ramkumar Vadali via eli).
  999. HDFS-718. Configuration parameter to prevent accidental formatting of
  1000. HDFS filesystem. (Andrew Ryan via jghoman)
  1001. HDFS-1500. TestOfflineImageViewer failing on trunk. (Todd Lipcon
  1002. via hairong)
  1003. HDFS-1483. DFSClient.getBlockLocations should indicate if corresponding
  1004. blocks are corrupt. (Patrick Kling via hairong)
  1005. HDFS-259. Remove intentionally corrupt 0.13 directory layout creation.
  1006. (Todd Lipcon via eli)
  1007. HDFS-1513. Fix a number of warnings. (eli)
  1008. HDFS-1473. Refactor storage management into separate classes than fsimage
  1009. file reading/writing. (Todd Lipcon via eli)
  1010. HDFS-1582. Remove auto-generated native build files. (rvs via eli)
  1011. HDFS-1456. Provide builder for constructing instances of MiniDFSCluster.
  1012. (jghoman)
  1013. HDFS-1861. Rename dfs.datanode.max.xcievers and bump its default value.
  1014. (eli)
  1015. HDFS-1052. HDFS Federation - Merge of umbrella jira changes from
  1016. HDFS-1052 branch into trunk.
  1017. HDFS-1835. DataNode should not depend on SHA1PRNG secure random generator
  1018. to generate a storage ID. (John Carrino via todd)
  1019. HDFS-1947. DFSClient should use mapreduce.task.attempt.id. (eli)
  1020. HDFS-1957. Add documentation for HFTP. (Ari Rabkin via todd)
  1021. HDFS-1454. Update the documentation to reflect that clients don't write
  1022. blocks to local disk before copying to HDFS. (Harsh J Chouraria via todd)
  1023. HDFS-1980. Move build/webapps deeper in the build directory heirarchy
  1024. to aid eclipse users. (todd)
  1025. HDFS-1619. Remove AC_TYPE* from the libhdfs. (Roman Shaposhnik via eli)
  1026. HDFS-1948 Forward port 'hdfs-1520 lightweight namenode operation to
  1027. trigger lease recovery' (stack)
  1028. HDFS-1954. Improved corrupt files warning on NameNode web UI.
  1029. (Patrick Hunt via shv)
  1030. HDFS-1409. BackupNode registration throwing
  1031. UnsupportedActionException("register") instead of "journal".
  1032. (Ching-Shen Chen via shv)
  1033. HDFS-2054 BlockSender.sendChunk() prints ERROR for connection closures
  1034. encountered during transferToFully() (Kihwal Lee via stack)
  1035. OPTIMIZATIONS
  1036. HDFS-1140. Speedup INode.getPathComponents. (Dmytro Molkov via shv)
  1037. HDFS-1081. Performance regression in
  1038. DistributedFileSystem::getFileBlockLocations in secure systems (jghoman)
  1039. HDFS-1114. Implement LightWeightGSet for BlocksMap in order to reduce
  1040. NameNode memory footprint. (szetszwo)
  1041. HDFS-1320. Add LOG.isDebugEnabled() guard for each LOG.debug(..).
  1042. (Erik Steffl via szetszwo)
  1043. HDFS-1368. Add a block counter to DatanodeDescriptor. (hairong)
  1044. HDFS-1434. Refactor Datanode#startDataNode method into smaller methods.
  1045. (suresh)
  1046. HDFS-941. The DFS client should cache and reuse open sockets to datanodes
  1047. while performing reads. (bc Wong and Todd Lipcon via todd)
  1048. BUG FIXES
  1049. HDFS-1039. Adding test for JspHelper.getUGI(jnp via boryas)
  1050. HDFS-1019. Incorrect default values for delegation tokens in
  1051. hdfs-default.xml (jnp via boryas)
  1052. HDFS-1039. Service should be set in the token in JspHelper.getUGI(jnp via boryas)
  1053. HDFS-1038. FIX. A test missed in a previous commit for this JIRA. (boryas)
  1054. HDFS-1038. In nn_browsedfscontent.jsp fetch delegation token only
  1055. if security is enabled. (jnp via boryas)
  1056. HDFS-1044. Cannot submit mapreduce job from secure client to
  1057. unsecure sever (boryas)
  1058. HDFS-1021. specify correct server principal for RefreshAuthorizationPolicyProtocol
  1059. and RefreshUserToGroupMappingsProtocol protocols in DFSAdmin (for HADOOP-6612) (boryas)
  1060. HDFS-970. fsync fsimage to disk before closing fsimage file.
  1061. (Todd Lipcon via dhruba)
  1062. HDFS-1027. Update copyright year to 2010. (Ravi Phulari via jghoman)
  1063. HDFS-1080. SecondaryNameNode image transfer should use the defined http
  1064. address rather than local ip address. (jghoman)
  1065. HDFS-1198. Resolving cross-realm principals. (Jitendra Pandey via jghoman)
  1066. HDFS-1118. Fix socketleak on DFSClient. (Zheng Shao via dhruba)
  1067. HDFS-1192. refreshSuperUserGroupsConfiguration should use server side
  1068. configuration for the refresh (for HADOOP-6815) (boryas)
  1069. HDFS-1036. in DelegationTokenFetch dfs.getURI returns no port (boryas)
  1070. HDFS-1017. browsedfs jsp should call JspHelper.getUGI rather
  1071. than using createRemoteUser() (jnp via boryas)
  1072. HDFS-1250. Namenode should reject block reports and block received
  1073. requests from dead datanodes (suresh)
  1074. HDFS-1145. When NameNode is shutdown it does not try to exit
  1075. safemode anymore. (dhruba)
  1076. HDFS-1202. DataBlockScanner throws NPE when updated before
  1077. initialized. (Todd Lipcon via dhruba)
  1078. HDFS-882. Datanode logs the hostname and port its listening on.
  1079. (Steve Loughran via dhruba)
  1080. HDFS-1238. ant eclipse-files has drifted again, (jghoman)
  1081. HDFS-1045. In secure clusters, re-login is necessary for https
  1082. clients before opening connections. (jghoman)
  1083. HDFS-1289. Datanode secure mode is broken. (Kan Zhang via jghoman)
  1084. HDFS-1007. HFTP needs to be updated to use delegation tokens (boryas)
  1085. HDFS-1085. HFTP read may fail silently on the client side if there is an
  1086. exception on the server side. (szetszwo)
  1087. HDFS-1308. job conf key for the services name of DelegationToken for HFTP
  1088. url is constructed incorrectly in HFTPFileSystem (boryas)
  1089. HDFS-1319. Fix location of re-login for secondary namenode from HDFS-999.
  1090. (jghoman)
  1091. HDFS-1317. Remove the FILEPATH_PATTERN from hdfsproxy.AuthorizationFilter.
  1092. (Rohini Palaniswamy via szetszwo)
  1093. HDFS-912. sed in build.xml on Solaris fails. (Allen Wittenauer via jghoman)
  1094. HDFS-1296. using delegation token over hftp for long running
  1095. clients (boryas)
  1096. HDFS-1334. open in HftpFileSystem does not add delegation tokens to the url.
  1097. (Jitendra Pandey via jghoman)
  1098. HDFS-1301. TestHDFSProxy need to use server side conf for ProxyUser
  1099. stuff. (boryas)
  1100. HDFS-1340. When security is turned off, there is a potential XSS attack.
  1101. This patch fixes it by removing delegationtoken string from the URL,
  1102. before returning a response to the client. (Jitendra Pandey via ddas)
  1103. HDFS-1347. TestDelegationToken uses mortbay.log for logging (boryas)
  1104. HDFS-1157. Modifications introduced by HDFS-1150 are breaking aspect's
  1105. bindings (cos)
  1106. HDFS-1349. Remove empty java files. (Eli Collins)
  1107. HDFS-1340. A null delegation token is appended to the url if security
  1108. is disabled when browsing filesystem. (boryas)
  1109. HDFS-1352. Fix jsvc.location. (Eli Collins via jghoman)
  1110. HDFS-1284. TestBlockToken fails. (Kan Zhang via jghoman)
  1111. HDFS-1355. ant veryclean (clean-cache) doesn't clean enough.
  1112. (Luke Lu via jghoman)
  1113. HDFS-1353. Remove most of getBlockLocation optimization. (jghoman)
  1114. HDFS-1369. Invalid javadoc reference in FSDatasetMBean.java (Eli Collins)
  1115. HDFS-829. hdfsJniHelper.c: #include <error.h> is not portable.
  1116. (Allen Wittenauer via jghoman)
  1117. HDFS-1310. The ClientDatanodeProtocol proxy should be stopped in
  1118. DFSInputStream.readBlockLength(..). (sam rash via szetszwo)
  1119. HDFS-1357. HFTP traffic served by DataNode shouldn't use service port
  1120. on NameNode. (Kan Zhang via jghoman)
  1121. HDFS-1419. HDFS Federation: Three test cases need minor modification after
  1122. the new block id change (Tanping Wang via suresh)
  1123. HDFS-96. HDFS supports blocks larger than 2 GB.
  1124. (Patrick Kling via dhruba)
  1125. HDFS-1433. Fix test failures - TestPread and TestFileLimit. (suresh)
  1126. HDFS-1364. Makes long running HFTP-based applications do relogins
  1127. if necessary. (Jitendra Pandey via ddas)
  1128. HDFS-1399. Distinct minicluster services (e.g. NN and JT) overwrite each
  1129. other's service policies. (Aaron T. Myers via tomwhite)
  1130. HDFS-1440. Fix TestComputeInvalidateWork failure. (suresh)
  1131. HDFS-1498. FSDirectory#unprotectedConcat calls setModificationTime
  1132. on a file. (eli)
  1133. HDFS-1625. Ignore disk space values in TestDataNodeMXBean. (szetszwo)
  1134. HDFS-1850. DN should transmit absolute failed volume count rather than
  1135. increments to the NN. (eli)
  1136. HDFS-671. Documentation change for updated configuration keys.
  1137. (tomwhite via eli)
  1138. HDFS-1544. Ivy resolve force mode should be turned off by default.
  1139. (Luke Lu via tomwhite)
  1140. HDFS-1615. seek() on closed DFS input stream throws NullPointerException
  1141. (Scott Carey via todd)
  1142. HDFS-1897. Documentation refers to removed option dfs.network.script
  1143. (Andrew Whang via todd)
  1144. HDFS-1621. Fix references to hadoop-common-${version} in build.xml
  1145. (Jolly Chen via todd)
  1146. HDFS-1505. saveNamespace appears to succeed even if all directories fail
  1147. to save. (Aaron T. Myers via todd)
  1148. HDFS-1921. saveNamespace can cause NN to be unable to come up on restart
  1149. (Matt Foley via todd)
  1150. HDFS-1925. SafeModeInfo should use the correct constant instead of a
  1151. hard-coded value for its default. (Joey Echeverria via todd)
  1152. HDFS-1575. Viewing block from web UI is broken. (Aaron T. Myers via todd)
  1153. HDFS-1932. Ensure that HDFS configuration deprecations are set up in every
  1154. spot that HDFS configurations are loaded. (Jolly Chen via todd)
  1155. HDFS-1952. FSEditLog.open() appears to succeed even if all EDITS
  1156. directories fail. (Andrew Wang via todd)
  1157. HDFS-1965. IPCs done using block token-based tickets can't reuse
  1158. connections (todd)
  1159. HDFS-1978. All but first option in LIBHDFS_OPTS is ignored. (eli)
  1160. HDFS-1964. Fix incorrect HTML unescaping in DatanodeJspHelper
  1161. (Aaron T. Myers via todd)
  1162. HDFS-1997. Image transfer process misreports client side exceptions.
  1163. (todd via eli)
  1164. HDFS-2000. Missing deprecation for io.bytes.per.checksum.
  1165. (Aaron T. Myers vie eli)
  1166. HDFS-977. DataNode.createInterDataNodeProtocolProxy() guards a log
  1167. at the wrong level. (Harsh J Chouraria via todd)
  1168. HDFS-1969. Running rollback on new-version namenode destroys the
  1169. namespace. (todd)
  1170. HDFS-2039. TestNameNodeMetrics uses a bad test root path, preventing it
  1171. from running inside Eclipse. (todd)
  1172. HDFS-988. saveNamespace race can corrupt the edits log. (eli)
  1173. HDFS-2071. Use of isConnected() in DataXceiver is invalid. (Kihwal Lee
  1174. via todd)
  1175. HDFS-1981. NameNode does not saveNamespace() when editsNew is empty.
  1176. (Uma Maheswara Rao G via shv)
  1177. HDFS-2258. Reset lease limits to default values in TestLeaseRecovery2. (shv)
  1178. HDFS-2232. Generalize regular expressions in TestHDFSCLI.
  1179. (Plamen Jeliazkov via shv)
  1180. HDFS-2290. Block with corrupt replica is not getting replicated.
  1181. (Benoy Antony via shv)
  1182. HDFS-2012. Balancer incorrectly treats nodes whose utilization equals
  1183. avgUtilization. (Uma Maheswara Rao G via shv)
  1184. HDFS-2491. TestBalancer can fail when datanode utilization and
  1185. avgUtilization is exactly same. (Uma Maheswara Rao G via shv)
  1186. HDFS-2452. OutOfMemoryError in DataXceiverServer takes down the DataNode
  1187. (Uma Maheswara Rao via cos)
  1188. Release 0.21.1 - Unreleased
  1189. HDFS-1466. TestFcHdfsSymlink relies on /tmp/test not existing. (eli)
  1190. HDFS-874. TestHDFSFileContextMainOperations fails on weirdly
  1191. configured DNS hosts. (Todd Lipcon via eli)
  1192. HDFS-1507. TestAbandonBlock should abandon a block. (eli)
  1193. HDFS-1487. FSDirectory.removeBlock() should update diskspace count
  1194. of the block owner node (Zhong Wang via eli).
  1195. HDFS-1467. Append pipeline never succeeds with more than one replica.
  1196. (Todd Lipcon via eli)
  1197. HDFS-1167. New property for local conf directory in system-test-hdfs.xml
  1198. file. (Vinay Thota via cos)
  1199. HDFS-1503. TestSaveNamespace fails. (Todd Lipcon via cos)
  1200. HDFS-1524. Image loader should make sure to read every byte in image file.
  1201. (hairong)
  1202. HDFS-1523. TestLargeBlock is failing on trunk. (cos)
  1203. HDFS-1502. TestBlockRecovery triggers NPE in assert. (hairong via cos)
  1204. HDFS-1532. Exclude Findbugs warning in FSImageFormat$Saver. (Todd Lipcon
  1205. via cos)
  1206. HDFS-1527. SocketOutputStream.transferToFully fails for blocks >= 2GB on
  1207. 32 bit JVM. (Patrick Kling via cos)
  1208. HDFS-1531. Clean up stack traces due to duplicate MXBean registration.
  1209. (Todd Lipcon via cos)
  1210. HDFS-613. TestBalancer and TestBlockTokenWithDFS fail Balancer assert.
  1211. (Todd Lipcon via cos)
  1212. HDFS-1511. 98 Release Audit warnings on trunk and branch-0.22.
  1213. (jghoman)
  1214. HDFS-1560. dfs.data.dir permissions should default to 700.
  1215. (Todd Lipcon via eli)
  1216. HDFS-1550. NPE when listing a file with no location. (hairong)
  1217. HDFS-1542. Add test for HADOOP-7082, a deadlock writing Configuration to
  1218. HDFS. (todd)
  1219. HDFS-1504. FSImageSaver should catch all exceptions, not just IOE. (todd)
  1220. HDFS-884. DataNode throws IOException if all data directories are
  1221. unavailable. (Steve Loughran and shv)
  1222. HDFS-1591. HDFS part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  1223. HDFS-900. Corrupt replicas are not processed correctly in block report (shv)
  1224. HDFS-1529. Incorrect handling of interrupts in waitForAckedSeqno can cause
  1225. deadlock (todd)
  1226. HDFS-1597. Batched edit log syncs can reset synctxid and throw assertions
  1227. (todd)
  1228. HDFS-1602. Fix HADOOP-4885 for it is doesn't work as expected. (boryas)
  1229. HDFS-1618. configure files that are generated as part of the released
  1230. tarball need to have executable bit set (Roman Shaposhnik via cos)
  1231. HDFS-981. test-contrib fails due to test-cactus failure (cos)
  1232. HDFS-1001. DataXceiver and BlockReader disagree on when to send/recv
  1233. CHECKSUM_OK. (bc Wong via eli)
  1234. HDFS-1781. Fix the path for jsvc in bin/hdfs. (John George via szetszwo)
  1235. HDFS-1782. Fix an NPE in FSNamesystem.startFileInternal(..).
  1236. (John George via szetszwo)
  1237. HDFS-1821. Fix username resolution in NameNode.createSymlink(..) and
  1238. FSDirectory.addSymlink(..). (John George via szetszwo)
  1239. HDFS-1806. TestBlockReport.blockReport_08() and _09() are timing-dependent
  1240. and likely to fail on fast servers. (Matt Foley via eli)
  1241. HDFS-1845. Symlink comes up as directory after namenode restart.
  1242. (John George via eli)
  1243. HDFS-1666. Disable failing hdfsproxy test TestAuthorizationFilter (todd)
  1244. HDFS-1823. start-dfs.sh script fails if HADOOP_HOME is not set.
  1245. (tomwhite via eli)
  1246. Release 0.21.1 - Unreleased
  1247. HDFS-1411. Correct backup node startup command in hdfs user guide.
  1248. (Ching-Shen Chen via shv)
  1249. BUG FIXES
  1250. HDFS-1363. Eliminate second synchronized sections in appendFile(). (shv)
  1251. HDFS-1413. Fix broken links to HDFS Wiki. (shv)
  1252. HDFS-1420. Clover build doesn't generate per-test coverage (cos)
  1253. HDFS-1444. Test related code of build.xml is error-prone and needs to be
  1254. re-aligned. (cos)
  1255. HDFS-1343. Instrumented build should be concentrated in one build area (cos)
  1256. HDFS-1452. ant compile-contrib is broken (cos)
  1257. HDFS-1474. ant binary-system is broken (cos)
  1258. HDFS-1292. Allow artifacts to be published to the staging Apache Nexus
  1259. Maven Repository. (Giridharan Kesavan via tomwhite)
  1260. HDFS-1552. Remove java5 dependencies from build. (cos)
  1261. HDFS-1189. Quota counts missed between clear quota and set quota.
  1262. (John George via szetszwo)
  1263. HDFS-1665. Balancer misuses dfs.heartbeat.interval as milliseconds.
  1264. (szetszwo)
  1265. HDFS-1728. SecondaryNameNode.checkpointSize is in bytes but not in MB.
  1266. (szetszwo)
  1267. HDFS-1206. TestFiHFlush fails intermittently. (cos)
  1268. HDFS-1548. Fault-injection tests are executed multiple times if invoked
  1269. with run-test-hdfs-fault-inject target (cos)
  1270. HDFS-1552. Remove java5 dependencies from build. (cos)
  1271. HDFS-996. JUnit tests should never depend on anything in conf (cos)
  1272. HDFS-1612. Update HDFS design documentation for append, quota, symlink,
  1273. block placement and checkpoint/backup node features. (Joe Crobak
  1274. via szetszwo)
  1275. HDFS-1596. Replace fs.checkpoint.* with dfs.namenode.checkpoint.*
  1276. in documentations. (Harsh J Chouraria via szetszwo)
  1277. HDFS-1786. Some cli test cases expect a "null" message
  1278. (Uma Maheswara Rao G via todd)
  1279. HDFS-1855. TestDatanodeBlockScanner.testBlockCorruptionRecoveryPolicy()
  1280. part 2 fails in two different ways. (Matt Foley via eli)
  1281. Release 0.21.0 - 2010-08-13
  1282. INCOMPATIBLE CHANGES
  1283. HDFS-538. Per the contract elucidated in HADOOP-6201, throw
  1284. FileNotFoundException from FileSystem::listStatus rather than returning
  1285. null. (Jakob Homan via cdouglas)
  1286. HDFS-602. DistributedFileSystem mkdirs throws FileAlreadyExistsException
  1287. instead of FileNotFoundException. (Boris Shkolnik via suresh)
  1288. HDFS-544. Add a "rbw" subdir to DataNode data directory. (hairong)
  1289. HDFS-576. Block report includes under-construction replicas. (shv)
  1290. HDFS-636. SafeMode counts complete blocks only. (shv)
  1291. HDFS-644. Lease recovery, concurrency support. (shv)
  1292. HDFS-570. Get last block length from a data-node when opening a file
  1293. being written to. (Tsz Wo (Nicholas), SZE via shv)
  1294. HDFS-657. Remove unused legacy data-node protocol methods. (shv)
  1295. HDFS-658. Block recovery for primary data-node. (shv)
  1296. HDFS-660. Remove deprecated methods from InterDatanodeProtocol. (shv)
  1297. HDFS-512. Block.equals() and compareTo() compare blocks based
  1298. only on block Ids, ignoring generation stamps. (shv)
  1299. HDFS-873. Configuration specifies data-node storage directories as URIs.
  1300. (shv)
  1301. HDFS-905. Use the new UserGroupInformation from HDFS-6299.
  1302. (jghoman via omalley)
  1303. HDFS-984. Persistent delegation tokens. (Jitendra Pandey via shv)
  1304. HDFS-1016. HDFS side change for HADOOP-6569. This jira changes the
  1305. error message on the screen when cat a directory or a
  1306. non-existent file. (hairong)
  1307. NEW FEATURES
  1308. HDFS-1134. Large-scale Automated Framework. (cos)
  1309. HDFS-436. Introduce AspectJ framework for HDFS code and tests.
  1310. (Konstantin Boudnik via szetszwo)
  1311. HDFS-447. Add LDAP lookup to hdfsproxy. (Zhiyong Zhang via cdouglas)
  1312. HDFS-459. Introduce Job History Log Analyzer. (shv)
  1313. HDFS-461. Tool to analyze file size distribution in HDFS. (shv)
  1314. HDFS-492. Add two JSON JSP pages to the Namenode for providing corrupt
  1315. blocks/replicas information. (Bill Zeller via szetszwo)
  1316. HDFS-578. Add support for new FileSystem method for clients to get server
  1317. defaults. (Kan Zhang via suresh)
  1318. HDFS-595. umask settings in configuration may now use octal or symbolic
  1319. instead of decimal. (Jakob Homan via suresh)
  1320. HADOOP-6234. Updated hadoop-core and test jars to propagate new option
  1321. dfs.umaskmode in configuration. (Jakob Homan via suresh)
  1322. HDFS-235. Add support for byte ranges in HftpFileSystem to serve
  1323. range of bytes from a file. (Bill Zeller via suresh)
  1324. HDFS-385. Add support for an experimental API that allows a module external
  1325. to HDFS to specify how HDFS blocks should be placed. (dhruba)
  1326. HADOOP-4952. Update hadoop-core and test jars to propagate new FileContext
  1327. file system application interface. (Sanjay Radia via suresh).
  1328. HDFS-567. Add block forensics contrib tool to print history of corrupt and
  1329. missing blocks from the HDFS logs.
  1330. (Bill Zeller, Jitendra Nath Pandey via suresh).
  1331. HDFS-610. Support o.a.h.fs.FileContext. (Sanjay Radia via szetszwo)
  1332. HDFS-536. Support hflush at DFSClient. (hairong)
  1333. HDFS-517. Introduce BlockInfoUnderConstruction to reflect block replica
  1334. states while writing. (shv)
  1335. HDFS-565. Introduce block committing logic during new block allocation
  1336. and file close. (shv)
  1337. HDFS-537. DataNode exposes a replica's meta info to BlockReceiver for the
  1338. support of dfs writes/hflush. It also updates a replica's bytes received,
  1339. bytes on disk, and bytes acked after receiving a packet. (hairong)
  1340. HDFS-585. Datanode should serve up to visible length of a replica for read
  1341. requests. (szetszwo)
  1342. HDFS-604. Block report processing for append. (shv)
  1343. HDFS-619. Support replica recovery initialization in datanode for the new
  1344. append design. (szetszwo)
  1345. HDFS-592. Allow clients to fetch a new generation stamp from NameNode for
  1346. pipeline recovery. (hairong)
  1347. HDFS-624. Support a new algorithm for pipeline recovery and pipeline setup
  1348. for append. (hairong)
  1349. HDFS-627. Support replica update in data-node.
  1350. (Tsz Wo (Nicholas), SZE and Hairong Kuang via shv)
  1351. HDFS-642. Support pipeline close and close error recovery. (hairong)
  1352. HDFS-631. Rename configuration keys towards API standardization and
  1353. backward compatibility. (Jitendra Nath Pandey via suresh)
  1354. HDFS-669. Add unit tests framework (Mockito) (cos, Eli Collins)
  1355. HDFS-731. Support new Syncable interface in HDFS. (hairong)
  1356. HDFS-702. Add HDFS implementation of AbstractFileSystem.
  1357. (Sanjay Radio via suresh)
  1358. HDFS-758. Add decommissioning status page to Namenode Web UI.
  1359. (Jitendra Nath Pandey via suresh)
  1360. HDFS-814. Add an api to get the visible length of a DFSDataInputStream.
  1361. (szetszwo)
  1362. HDFS-654. Add support new atomic rename functionality in HDFS for
  1363. supporting rename in FileContext. (suresh)
  1364. HDFS-222. Support for concatenating of files into a single file
  1365. without copying. (Boris Shkolnik via hairong)
  1366. HDFS-933. Adds Delegation token based authentication in the NameNode.
  1367. (Kan Zhang via ddas)
  1368. HDFS-935. Adds a real user component in Delegation token.
  1369. (Jitendra Nath Pandey via ddas)
  1370. HDFS-245. Adds a symlink implementation to HDFS. This complements the new
  1371. symlink feature added in HADOOP-6421 (Eli Collins via Sanjay Radia)
  1372. HDFS-1009. Support Kerberos authorization in HDFSProxy. (Srikanth
  1373. Sundarrajan via szetszwo)
  1374. HDFS-1091. Implement listStatus that returns an iterator of FileStatus.
  1375. (hairong)
  1376. IMPROVEMENTS
  1377. HDFS-381. Remove blocks from DataNode maps when corresponding file
  1378. is deleted. (Suresh Srinivas via rangadi)
  1379. HDFS-377. Separate codes which implement DataTransferProtocol.
  1380. (szetszwo)
  1381. HDFS-396. NameNode image and edits directories are specified as URIs.
  1382. (Luca Telloli via rangadi)
  1383. HDFS-444. Allow to change probability levels dynamically in the fault
  1384. injection framework. (Konstantin Boudnik via szetszwo)
  1385. HDFS-352. Documentation for saveNamespace command. (Ravi Phulari via shv)
  1386. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  1387. build #12. (Giridharan Kesavan)
  1388. HDFS-204. Add a new metrics FilesInGetListingOps to the Namenode.
  1389. (Jitendra Nath Pandey via szetszwo)
  1390. HDFS-278. HDFS Outputstream close does not hang forever. (dhruba)
  1391. HDFS-443. Add a new metrics numExpiredHeartbeats to the Namenode.
  1392. (Jitendra Nath Pandey via szetszwo)
  1393. HDFS-475. Add new ant targets for fault injection jars and tests.
  1394. (Konstantin Boudnik via szetszwo)
  1395. HDFS-458. Create a new ant target, run-commit-test. (Jakob Homan
  1396. via szetszwo)
  1397. HDFS-493. Change build.xml so that the fault-injected tests are executed
  1398. only by the run-test-*-fault-inject targets. (Konstantin Boudnik via
  1399. szetszwo)
  1400. HDFS-446. Improvements to Offline Image Viewer. (Jakob Homan via shv)
  1401. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  1402. (gkesavan)
  1403. HDFS-501. Use enum to define the constants in DataTransferProtocol.
  1404. (szetszwo)
  1405. HDFS-508. Factor out BlockInfo from BlocksMap. (shv)
  1406. HDFS-510. Rename DatanodeBlockInfo to be ReplicaInfo.
  1407. (Jakob Homan & Hairong Kuang via shv)
  1408. HDFS-500. Deprecate NameNode methods deprecated in NameNodeProtocol.
  1409. (Jakob Homan via shv)
  1410. HDFS-514. Change DFSClient.namenode from public to private. (Bill Zeller
  1411. via szetszwo)
  1412. HDFS-496. Use PureJavaCrc32 in HDFS. (Todd Lipcon via szetszwo)
  1413. HDFS-511. Remove redundant block searches in BlockManager. (shv)
  1414. HDFS-504. Update the modification time of a file when the file
  1415. is closed. (Chun Zhang via dhruba)
  1416. HDFS-498. Add development guide and documentation for the fault injection
  1417. framework. (Konstantin Boudnik via szetszwo)
  1418. HDFS-524. Further DataTransferProtocol code refactoring. (szetszwo)
  1419. HDFS-529. Use BlockInfo instead of Block to avoid redundant block searches
  1420. in BlockManager. (shv)
  1421. HDFS-530. Refactor TestFileAppend* to remove code duplication.
  1422. (Konstantin Boudnik via szetszwo)
  1423. HDFS-451. Add fault injection tests for DataTransferProtocol. (szetszwo)
  1424. HDFS-409. Add more access token tests. (Kan Zhang via szetszwo)
  1425. HDFS-546. DatanodeDescriptor iterates blocks as BlockInfo. (shv)
  1426. HDFS-457. Do not shutdown datanode if some, but not all, volumes fail.
  1427. (Boris Shkolnik via szetszwo)
  1428. HDFS-548. TestFsck takes nearly 10 minutes to run. (hairong)
  1429. HDFS-539. Refactor fault injeciton pipeline test util for future reuse.
  1430. (Konstantin Boudnik via szetszwo)
  1431. HDFS-552. Change TestFiDataTransferProtocol to junit 4 and add a few new
  1432. tests. (szetszwo)
  1433. HDFS-563. Simplify the codes in FSNamesystem.getBlockLocations(..).
  1434. (szetszwo)
  1435. HDFS-581. Introduce an iterator over blocks in the block report array.(shv)
  1436. HDFS-549. Add a new target, run-with-fault-inject-testcaseonly, which
  1437. allows an execution of non-FI tests in FI-enable environment. (Konstantin
  1438. Boudnik via szetszwo)
  1439. HDFS-173. Namenode will not block until a large directory deletion
  1440. completes. It allows other operations when the deletion is in progress.
  1441. (suresh)
  1442. HDFS-551. Create new functional test for a block report. (Konstantin
  1443. Boudnik via hairong)
  1444. HDFS-288. Redundant computation in hashCode() implementation.
  1445. (szetszwo via tomwhite)
  1446. HDFS-412. Hadoop JMX usage makes Nagios monitoring impossible.
  1447. (Brian Bockelman via tomwhite)
  1448. HDFS-472. Update hdfsproxy documentation. Adds a setup guide and design
  1449. document. (Zhiyong Zhang via cdouglas)
  1450. HDFS-617. Support non-recursive create(). (Kan Zhang via szetszwo)
  1451. HDFS-618. Support non-recursive mkdir(). (Kan Zhang via szetszwo)
  1452. HDFS-574. Split the documentation between the subprojects.
  1453. (Corinne Chandel via omalley)
  1454. HDFS-598. Eclipse launch task for HDFS. (Eli Collins via tomwhite)
  1455. HDFS-641. Move all of the components that depend on map/reduce to
  1456. map/reduce. (omalley)
  1457. HDFS-509. Redesign DataNode volumeMap to include all types of Replicas.
  1458. (hairong)
  1459. HDFS-562. Add a test for NameNode.getBlockLocations(..) to check read from
  1460. un-closed file. (szetszwo)
  1461. HDFS-543. Break FSDatasetInterface#writToBlock() into writeToRemporary,
  1462. writeToRBW, ad append. (hairong)
  1463. HDFS-603. Add a new interface, Replica, which is going to replace the use
  1464. of Block in datanode. (szetszwo)
  1465. HDFS-589. Change block write protocol to support pipeline recovery.
  1466. (hairong)
  1467. HDFS-652. Replace BlockInfo.isUnderConstruction() with isComplete() (shv)
  1468. HDFS-648. Change some methods in AppendTestUtil to public. (Konstantin
  1469. Boudnik via szetszwo)
  1470. HDFS-662. Unnecessary info message from DFSClient. (hairong)
  1471. HDFS-518. Create new tests for Append's hflush. (Konstantin Boudnik
  1472. via szetszwo)
  1473. HDFS-688. Add configuration resources to DFSAdmin. (shv)
  1474. HDFS-29. Validate the consistency of the lengths of replica and its file
  1475. in replica recovery. (szetszwo)
  1476. HDFS-680. Add new access method to a copy of a block's replica. (shv)
  1477. HDFS-704. Unify build property names to facilitate cross-projects
  1478. modifications (cos)
  1479. HDFS-705. Create an adapter to access some of package-private methods of
  1480. DataNode from tests (cos)
  1481. HDFS-710. Add actions with constraints to the pipeline fault injection
  1482. tests and change SleepAction to support uniform random sleeping over an
  1483. interval. (szetszwo)
  1484. HDFS-713. Need to properly check the type of the test class from an aspect
  1485. (cos)
  1486. HDFS-716. Define a pointcut for pipeline close and add a few fault
  1487. injection tests to simulate out of memory problem. (szetszwo)
  1488. HDFS-719. Add 6 fault injection tests for pipeline close to simulate slow
  1489. datanodes and disk errors. (szetszwo)
  1490. HDFS-616. Create functional tests for new design of the block report. (cos)
  1491. HDFS-584. Fail the fault-inject build if any advices are mis-bound. (cos)
  1492. HDFS-730. Add 4 fault injection tests to simulate non-responsive datanode
  1493. and out-of-memory problem for pipeline close ack. (szetszwo)
  1494. HDFS-728. Create a comprehensive functional test for append. (hairong)
  1495. HDFS-736. commitBlockSynchronization() updates block GS and length
  1496. in-place. (shv)
  1497. HADOOP-5107. Use Maven ant tasks to publish the subproject jars.
  1498. (Giridharan Kesavan via omalley)
  1499. HDFS-521. Create new tests for pipeline (cos)
  1500. HDFS-764. Places the Block Access token implementation in hdfs project.
  1501. (Kan Zhang via ddas)
  1502. HDFS-787. Upgrade some libraries to be consistent with common and
  1503. mapreduce. (omalley)
  1504. HDFS-519. Create new tests for lease recovery (cos)
  1505. HDFS-804. New unit tests for concurrent lease recovery (cos)
  1506. HDFS-813. Enable the append test in TestReadWhileWriting. (szetszwo)
  1507. HDFS-145. Cleanup inconsistent block length handling code in
  1508. FSNameSystem#addStoredBlock. (hairong)
  1509. HDFS-127. Reset failure count in DFSClient for each block acquiring
  1510. operation. (Igor Bolotin via szetszwo)
  1511. HDFS-520. Create new tests for block recovery. (hairong)
  1512. HDFS-1067. Create block recovery tests that handle errors. (hairong)
  1513. HDFS-1107. Turn on append by default. (shv)
  1514. HDFS-968. Use StringBuilder instead of StringBuffer for better
  1515. performance. (Kay Kay via suresh)
  1516. HDFS-703. Replace current fault injection implementation with one
  1517. from (cos)
  1518. HDFS-754. Reduce ivy console output to observable level (cos)
  1519. HDFS-832. HDFS side of HADOOP-6222. (cos)
  1520. HDFS-840. Change tests to use FileContext test helper introduced in
  1521. HADOOP-6394. (Jitendra Nath Pandey via suresh)
  1522. HDFS-685. Use the user-to-groups mapping service in the NameNode.
  1523. (boryas, acmurthy)
  1524. HDFS-755. Read multiple checksum chunks at once in DFSInputStream.
  1525. (Todd Lipcon via tomwhite)
  1526. HDFS-786. Implement getContentSummary in HftpFileSystem.
  1527. (Tsz Wo (Nicholas), SZE via cdouglas)
  1528. HDFS-587. Add support for specifying queue name in mapreduce tests.
  1529. (Erik Steffl via suresh)
  1530. HDFS-902 Move contrib/raid to MapReduce. (Eli Collins via omalley)
  1531. HDFS-800. The last block of a file under construction may change to the
  1532. COMPLETE state in response to getAdditionalBlock or completeFileInternal.
  1533. (hairong)
  1534. HDFS-899. Delegation Token Implementation
  1535. and corresponding changes in Namenode and DFS Api to issue,
  1536. renew and cancel delegation tokens. (jnp via boryas)
  1537. HDFS-844. Log the filename when file locking fails. (tomwhite)
  1538. HDFS-914. Refactor DFSOutputStream and DFSInputStream out of DFSClient.
  1539. (Todd Lipcon via tomwhite)
  1540. HDFS-949. Move DelegationToken into Common so that it can be used by
  1541. MapReduce. (omalley)
  1542. HDFS-930. Better error message for DATA_TRANSFER_VERSION mismatched.
  1543. (Kay Kay via szetszwo)
  1544. HDFS-986. Delegation token renewing and cancelling should provide
  1545. meaningful exceptions when there are failures instead of returning
  1546. false. (omalley)
  1547. HADOOP-6579. Upgrade the commons-codec library to 1.4. (omalley)
  1548. HDFS-991. Allow authentication to the web ui via a delegation token.
  1549. (omalley)
  1550. HDFS-994. Allow fetching of delegation token from NameNode for hftp.
  1551. (Jakob Homan via acmurthy)
  1552. HDFS-998. Quote blocks streamed through jsps. (cdouglas)
  1553. HDFS-729. NameNode API to list files that have missing blocks.
  1554. (Rodrigo Schmidt via dhruba)
  1555. HDFS-850. The WebUI display more details about namenode memory usage.
  1556. (Dmytro Molkov via dhruba)
  1557. HDFS-826. The DFSOutputStream has a API that returns the number of
  1558. active datanode(s) in the current pipeline. (dhruba)
  1559. HDFS-985. HDFS should issue multiple RPCs for listing a large
  1560. directory. (hairong)
  1561. HDFS-1043. NNThroughputBenchmark modifications to support benchmarking of
  1562. server-side user group resolution. (shv)
  1563. HDFS-892. Optionally use Avro reflection for Namenode RPC. This
  1564. is not a complete implementation yet, but rather a starting point.
  1565. (cutting)
  1566. HDFS-854. Datanode should scan devices in parallel to generate
  1567. block report. (Dmytro Molkov via jhoman)
  1568. HDFS-1032. fsck has an option to list corrupt files.
  1569. (Andre Oriai via dhruba)
  1570. HDFS-1024. SecondaryNameNode verifies size of fsimage and edits file.
  1571. (Dmytro Molkov via dhruba)
  1572. HDFS-1011. hdfsproxy: Improve log messages by restoring the previous
  1573. thread name. (Srikanth Sundarrajan via szetszwo)
  1574. HDFS-997. Allow datanode storage directory permissions to be configurable.
  1575. (Luke Lu via cdouglas)
  1576. HDFS-1012. hdfsproxy: Support for fully qualified HDFS path in addition to
  1577. simple unqualified path. (Srikanth Sundarrajan via szetszwo)
  1578. HDFS-933. Namenode should issue a delegation token only for kerberos
  1579. authenticated clients.(jnp via boryas)
  1580. HDFS-1087. Modify audit log to use a StringBuilder rather than a Formatter.
  1581. (cdouglas)
  1582. HDFS-1083. Update TestHDFSCLI not to expect exception class name
  1583. in error messages. (suresh)
  1584. HDFS-1099. Add test for umask backward compatibility. (suresh)
  1585. HDFS-1092. Use logging rather than System.err in MiniDFSCluster.
  1586. (Kay Kay via jghoman)
  1587. HDFS-1047. Install/deploy source jars to Maven repo.
  1588. (Patrick Angeles via jghoman)
  1589. HDFS-666. Unit test for FsShell -text. (cdouglas via jghoman)
  1590. HDFS-1054. Remove unnecessary sleep after failure in nextBlockOutputStream.
  1591. (Todd Lipcon via jghoman)
  1592. HDFS-921. Convert TestDFSClientRetries::testNotYetReplicatedErrors
  1593. to Mockito. (jghoman)
  1594. HDFS-1100. Override unwrapException in TestFcHdfsSymlink to test
  1595. symlink API conformance. (Eli Collins via suresh).
  1596. HDFS-1089. Remove uses of FileContext#isFile, isDirectory, and exists.
  1597. (Eli Collins via hairong)
  1598. HDFS-1028. Efficient splitting of path components reduces the time
  1599. to load in fsimage by 20%. (Dmytro Molkov via dhruba)
  1600. HDFS-1109. HFTP supports filenames that contains the character "+".
  1601. (Dmytro Molkov via dhruba)
  1602. HDFS-853. The HDFS webUI displays the balanced-ness of the cluster.
  1603. (Dmytro Molkov via dhruba)
  1604. HDFS-1126. Change HDFS to depend on Hadoop 'common' artifacts instead
  1605. of 'core'. (tomwhite)
  1606. HDFS-995. Replace usage of FileStatus#isDir(). (Eli Collins via
  1607. tomwhite)
  1608. HDFS-1161. Make DN minimum valid volumes configurable.
  1609. (Eli Collins via tomwhite)
  1610. HDFS-1181. Move configuration and script files post split. (tomwhite)
  1611. HDFS-1170. Add more assertions to TestLargeDirectoryDelete.
  1612. (Steve Loughran via tomwhite)
  1613. HDFS-1199. Extract a subset of tests for smoke (DOA) validation. (cos)
  1614. HDFS-1174. New properties for suspend and resume process. (Vinay Thota via
  1615. cos)
  1616. HDFS-1277. [Herriot] New property for multi user list. (Vinay Thota via
  1617. cos)
  1618. HDFS-806. Add new unit tests to the 10-mins 'run-commit-test' target (cos)
  1619. OPTIMIZATIONS
  1620. HDFS-946. NameNode should not return full path name when lisitng a
  1621. diretory or getting the status of a file. (hairong)
  1622. BUG FIXES
  1623. HDFS-76. Better error message to users when commands fail because of
  1624. lack of quota. Allow quota to be set even if the limit is lower than
  1625. current consumption. (Boris Shkolnik via rangadi)
  1626. HADOOP-4687. HDFS is split from Hadoop Core. It is a subproject under
  1627. Hadoop (Owen O'Malley)
  1628. HADOOP-6096. Fix Eclipse project and classpath files following project
  1629. split. (tomwhite)
  1630. HDFS-195. Handle expired tokens when write pipeline is reestablished.
  1631. (Kan Zhang via rangadi)
  1632. HDFS-181. Validate src path in FSNamesystem.getFileInfo(..). (Todd
  1633. Lipcon via szetszwo)
  1634. HDFS-441. Remove TestFTPFileSystem. (szetszwo)
  1635. HDFS-440. Fix javadoc broken links in DFSClient. (szetszwo)
  1636. HDFS-480. Fix a typo in the jar name in build.xml.
  1637. (Konstantin Shvachko via gkesavan)
  1638. HDFS-438. Check for NULL before invoking GenericArgumentParser in
  1639. DataNode. (Raghu Angadi)
  1640. HDFS-415. BlockReceiver hangs in case of certain runtime exceptions.
  1641. (Konstantin Boudnik via rangadi)
  1642. HDFS-462. loadFSImage should close edits file. (Jakob Homan via shv)
  1643. HDFS-489. Update TestHDFSCLI for the -skipTrash option in rm. (Jakob Homan
  1644. via szetszwo)
  1645. HDFS-445. pread() does not pick up changes to block locations.
  1646. (Kan Zhang via rangadi)
  1647. HDFS-463. CreateEditLog utility broken after HDFS-396 (URI for
  1648. FSImage). (Suresh Srinivas via rangadi)
  1649. HDFS-484. Fix bin-package and package target to package jar files.
  1650. (gkesavan)
  1651. HDFS-490. Eliminate the deprecated warnings introduced by H-5438.
  1652. (He Yongqiang via szetszwo)
  1653. HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
  1654. (Suresh Srinivas via shv)
  1655. HDFS-534. Include avro in ivy. (szetszwo)
  1656. HDFS-532. Allow applications to know that a read request failed
  1657. because block is missing. (dhruba)
  1658. HDFS-561. Fix write pipeline READ_TIMEOUT in DataTransferProtocol.
  1659. (Kan Zhang via szetszwo)
  1660. HDFS-553. BlockSender reports wrong failed position in ChecksumException.
  1661. (hairong)
  1662. HDFS-568. Set mapred.job.tracker.retire.jobs to false in
  1663. src/test/mapred-site.xml for mapreduce tests to run. (Amareshwari
  1664. Sriramadasu via szetszwo)
  1665. HDFS-15. All replicas end up on 1 rack. (Jitendra Nath Pandey via hairong)
  1666. HDFS-586. TestBlocksWithNotEnoughRacks sometimes fails.
  1667. (Jitendra Nath Pandey via hairong)
  1668. HADOOP-6243. Fixed a NullPointerException in handling deprecated keys.
  1669. (Sreekanth Ramakrishnan via yhemanth)
  1670. HDFS-605. Do not run fault injection tests in the run-test-hdfs-with-mr
  1671. target. (Konstantin Boudnik via szetszwo)
  1672. HDFS-606. Fix ConcurrentModificationException in invalidateCorruptReplicas()
  1673. (shv)
  1674. HDFS-601. TestBlockReport obtains data directories directly from
  1675. MiniHDFSCluster. (Konstantin Boudnik via shv)
  1676. HDFS-614. TestDatanodeBlockScanner obtains data directories directly from
  1677. MiniHDFSCluster. (shv)
  1678. HDFS-612. Remove the use of org.mortbay.log.Log in FSDataset. (szetszwo)
  1679. HDFS-622. checkMinReplication should count live nodes only. (shv)
  1680. HDFS-629. Remove ReplicationTargetChooser.java along with fixing
  1681. import warnings generated by Eclipse. (dhruba)
  1682. HDFS-637. DataNode sends a Success ack when block write fails. (hairong)
  1683. HDFS-640. Fixed TestHDFSFileContextMainOperations.java build failure. (suresh)
  1684. HDFS-547. TestHDFSFileSystemContract#testOutputStreamClosedTwice
  1685. sometimes fails with CloseByInterruptException. (hairong)
  1686. HDFS-588. Fix TestFiDataTransferProtocol and TestAppend2 failures. (shv)
  1687. HDFS-550. DataNode restarts may introduce corrupt/duplicated/lost replicas
  1688. when handling detached replicas. (hairong)
  1689. HDFS-659. If the the last block is not complete, update its length with
  1690. one of its replica's length stored in datanode. (szetszwo)
  1691. HDFS-649. Check null pointers for DataTransferTest. (Konstantin Boudnik
  1692. via szetszwo)
  1693. HDFS-661. DataNode upgrade fails on non-existant current directory.
  1694. (hairong)
  1695. HDFS-597. Mofication introduced by HDFS-537 breakes an advice binding in
  1696. FSDatasetAspects. (Konstantin Boudnik via szetszwo)
  1697. HDFS-665. TestFileAppend2 sometimes hangs. (hairong)
  1698. HDFS-676. Fix NPE in FSDataset.updateReplicaUnderRecovery() (shv)
  1699. HDFS-673. BlockReceiver#PacketResponder should not remove a packet from
  1700. the ack queue before its ack is sent. (hairong)
  1701. HDFS-682. Fix bugs in TestBlockUnderConstruction. (szetszwo)
  1702. HDFS-668. TestFileAppend3#TC7 sometimes hangs. (hairong)
  1703. HDFS-679. Appending to a partial chunk incorrectly assumes the
  1704. first packet fills up the partial chunk. (hairong)
  1705. HDFS-722. Fix callCreateBlockWriteStream pointcut in FSDatasetAspects.
  1706. (szetszwo)
  1707. HDFS-690. TestAppend2#testComplexAppend failed on "Too many open files".
  1708. (hairong)
  1709. HDFS-725. Support the build error fix for HADOOP-6327. (Sanjay Radia via
  1710. szetszwo)
  1711. HDFS-625. Fix NullPointerException thrown from ListPathServlet. (suresh)
  1712. HDFS-735. TestReadWhileWriting has wrong line termination symbols (cos)
  1713. HDFS-691. Fix an overflow error in DFSClient.DFSInputStream.available().
  1714. (szetszwo)
  1715. HDFS-733. TestBlockReport fails intermittently. (cos)
  1716. HDFS-774. Intermittent race condition in TestFiPipelines (cos)
  1717. HDFS-741. TestHFlush test doesn't seek() past previously written part of
  1718. the file (cos, szetszwo)
  1719. HDFS-706. Intermittent failures in TestFiHFlush (cos)
  1720. HDFS-646. Fix test-patch failure by adding test-contrib ant target.
  1721. (gkesavan)
  1722. HDFS-791. Build is broken after HDFS-787 patch has been applied (cos)
  1723. HDFS-792. TestHDFSCLI is failing. (Todd Lipcon via cos)
  1724. HDFS-781. Namenode metrics PendingDeletionBlocks is not decremented.
  1725. (Suresh)
  1726. HDFS-192. Fix TestBackupNode failures. (shv)
  1727. HDFS-797. TestHDFSCLI much slower after HDFS-265 merge. (Todd Lipcon via cos)
  1728. HDFS-824. Stop lease checker in TestReadWhileWriting. (szetszwo)
  1729. HDFS-823. CheckPointer should use addInternalServlet for image-fetching
  1730. servlet (jghoman)
  1731. HDFS-456. Fix URI generation for windows file paths. (shv)
  1732. HDFS-812. FSNamesystem#internalReleaseLease throws NullPointerException on
  1733. a single-block file's lease recovery. (cos)
  1734. HDFS-724. Pipeline hangs if one of the block receiver is not responsive.
  1735. (hairong)
  1736. HDFS-564. Adding pipeline tests 17-35. (hairong)
  1737. HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
  1738. (hairong)
  1739. HDFS-762. Balancer causes Null Pointer Exception.
  1740. (Cristian Ivascu via dhruba)
  1741. HDFS-868. Fix link to Hadoop Upgrade Wiki. (Chris A. Mattmann via shv)
  1742. HDFS-880. TestNNLeaseRecovery fails on windows (cos, shv)
  1743. HDFS-699. Primary datanode should compare replicas' on disk lengths.
  1744. (hairong)
  1745. HDFS-897. Fix a bug related to generation stamp comparison in
  1746. ReplicasMap. (suresh)
  1747. HDFS-793. Data node should receive the whole packet ack message before it
  1748. constructs and sends its own ack message for the packet. (hairong)
  1749. HDFS-101. DFS write pipeline: DFSClient sometimes does not detect second
  1750. datanode failure. (hairong)
  1751. HDFS-822. Appends to already-finalized blocks can rename across volumes.
  1752. (hairong)
  1753. HDFS-1046. Fix Tomcat version in hdfsproxy/build.xml. (Srikanth
  1754. Sundarrajan via szetszwo)
  1755. HDFS-1072. Fix TestReadWhileWriting failure. (Erik Steffl via shv)
  1756. HDFS-913. Rename fault injection test TestRename.java to TestFiRename.java
  1757. to include it in tests run by ant target run-test-hdfs-fault-inject.
  1758. (suresh)
  1759. HDFS-695. RaidNode should read in configuration from hdfs-site.xml.
  1760. (dhruba)
  1761. HDFS-726. Eclipse .classpath template has outdated jar files and is
  1762. missing some new ones. (cos)
  1763. HDFS-750. Fix build failure due to TestRename. (suresh)
  1764. HDFS-712. Move libhdfs from mapreduce subproject to hdfs subproject.
  1765. (Eli Collins via dhruba)
  1766. HDFS-757. Enable Unit test for HDFS Raid. (dhruba)
  1767. HDFS-611. Prevent DataNode heartbeat times from increasing even when
  1768. the DataNode has many blocks to delete. (Zheng Shao via dhruba)
  1769. HDFS-751. Fix TestCrcCorruption to pick up the correct datablocks to
  1770. corrupt. (dhruba)
  1771. HDFS-763. Fix slightly misleading report from DataBlockScanner
  1772. about corrupted scans. (dhruba)
  1773. HDFS-727. bug setting block size hdfsOpenFile (Eli Collins via cos)
  1774. HDFS-756. libhdfs unit tests do not run. (Eli Collins via cos)
  1775. HDFS-783. libhdfs tests brakes code coverage runs with Clover (cos)
  1776. HDFS-785. Add Apache license to several namenode unit tests.
  1777. (Ravi Phulari via jghoman)
  1778. HDFS-802. Update Eclipse configuration to match changes to Ivy
  1779. configuration (Edwin Chan via cos)
  1780. HDFS-423. Unbreak FUSE build and fuse_dfs_wrapper.sh (Eli Collins via cos)
  1781. HDFS-825. Build fails to pull latest hadoop-core-* artifacts (cos)
  1782. HDFS-94. The Heap Size printed in the NameNode WebUI is accurate.
  1783. (Dmytro Molkov via dhruba)
  1784. HDFS-767. An improved retry policy when the DFSClient is unable to fetch a
  1785. block from the datanode. (Ning Zhang via dhruba)
  1786. HDFS-775. FSDataset calls getCapacity() twice. (stevel)
  1787. HDFS-885. Datanode toString() NPEs on null dnRegistration. (stevel)
  1788. HDFS-877. Client-driven block verification not functioning. (Todd
  1789. Lipcon via hairong)
  1790. HDFS-630. In DFSOutputStream.nextBlockOutputStream(), the client can
  1791. exclude specific datanodes when locating the next block.
  1792. (Cosmin Lehene via Stack)
  1793. HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
  1794. problems for Eclipse compilation. (jghoman)
  1795. HDFS-927 DFSInputStream retries too many times for new block locations
  1796. (Todd Lipcon via Stack)
  1797. HDFS-938. Replace calls to UGI.getUserName() with UGI.getShortUserName()
  1798. (jghoman)
  1799. HDFS-894. DatanodeID.ipcPort is not updated when existing node
  1800. re-registers. (Todd Lipcon via tomwhite)
  1801. HDFS-965. Split TestDelegationToken in to two parts and fix configuration
  1802. to allow proxy users in the test. (Jitendra Pandey via omalley)
  1803. HDFS-999. Secondary namenode should login using kerberos if security is
  1804. configured (boryas)
  1805. HDFS-856. Hardcoded replication level for new files in fuse-dfs.
  1806. (Brian Bockelman via tomwhite)
  1807. HDFS-857. Incorrect type for fuse-dfs capacity can cause "df" to return
  1808. negative values on 32-bit machines. (Brian Bockelman via tomwhite)
  1809. HDFS-858. Incorrect return codes for fuse-dfs. (Brian Bockelman via
  1810. tomwhite)
  1811. HDFS-859. fuse-dfs utime behavior causes issues with tar.
  1812. (Brian Bockelman via tomwhite)
  1813. HDFS-861. fuse-dfs does not support O_RDWR. (Brian Bockelman via tomwhite)
  1814. HDFS-961. dfs_readdir incorrectly parses paths. (Eli Collins via tomwhite)
  1815. HDFS-1015. Fix intermittent failure in TestSecurityTokenEditLog.
  1816. (Jitendra Nath Pandey via suresh)
  1817. HDFS-939. libhdfs test is broken. (Eli Collins via tomwhite)
  1818. HDFS-1074. hdfsproxy: Fix bugs in TestProxyUtil. (Srikanth Sundarrajan
  1819. via szetszwo)
  1820. HDFS-481. hdfsproxy: Bug Fixes + HdfsProxy to use proxy user to
  1821. impresonate the real user. (Srikanth Sundarrajan via szetszwo)
  1822. HDFS-482. Move HsftpFileSystem's ssl.client.do.not.authenticate.server
  1823. configuration setting to ssl-client.xml. (Srikanth Sundarrajan via
  1824. szetszwo)
  1825. HDFS-1010. hdfsproxy: Retrieve groups from UnixUserGroupInformation
  1826. instead of LdapEntry. (Srikanth Sundarrajan via szetszwo)
  1827. HDFS-466. hdfs_write infinite loop when dfs fails and cannot write
  1828. files > 2 GB. (Pete Wyckoff via tomwhite)
  1829. HDFS-651. HDFS Docs - fix listing of docs in the doc menu.
  1830. (Corinne Chandel via tomwhite)
  1831. HDFS-1014. Error in reading delegation tokens from edit logs.
  1832. (Jitendra Nath Pandey via jhoman)
  1833. HDFS-1088. Prevent renaming a symbolik link to its target.
  1834. (Eli Collins via suresh)
  1835. HDFS-966. NameNode does not recovers lease when it is in safemode.
  1836. (dhruba)
  1837. HDFS-833. Datanode shutdown should log problems with Storage.unlockAll()
  1838. (Steve Loughran via dhruba)
  1839. HDFS-1101. TestDiskError.testLocalDirs() fails. (cdouglas via jghoman)
  1840. HDFS-1031. Enhance the webUi to list a few of the corrupted files in HDFS.
  1841. (Andre Orian via dhruba)
  1842. HDFS-1078. Create static and dynamic versions of libhdfs.
  1843. (Sam Rash via dhruba)
  1844. HDFS-1104. Fsck triggers full GC on NameNode. (hairong)
  1845. HDFS-1141. Closing a file is successful only if the client still has a
  1846. valid lease. (Todd Lipcon via dhruba)
  1847. HDFS-1138. Prevent erroneous updation of modification time of a directory
  1848. when fsimage loads. (Dmytro Molkov via dhruba)
  1849. HDFS-1000. Updates libhdfs to the new API for UGI (ddas)
  1850. HDFS-609. Create a file with the append flag does not work in HDFS.
  1851. (tomwhite)
  1852. HDFS-1255. Fix failing test-libhdfs.sh test. (tomwhite)
  1853. HDFS-1256. libhdfs is missing from the tarball. (tomwhite)
  1854. HDFS-1057. Concurrent readers hit ChecksumExceptions if following a
  1855. writer to very end of file. (sam rash via hairong)
  1856. HDFS-1212. Harmonize HDFS JAR library versions with Common. (tomwhite)
  1857. HDFS-1159. clean-cache target removes wrong ivy cache (cos)
  1858. HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
  1859. mvn-deploy task leading to unstable mapreduce build (Giridharan
  1860. Kesavan via cos)
  1861. HDFS-1299. 'compile-fault-inject' never should be called directly. (cos)
  1862. HDFS-1311. Running tests with 'testcase' cause triple execution of the
  1863. same test case (Cos)
  1864. HDFS-1267. fuse-dfs does not compile. (Devaraj Das via tomwhite)
  1865. HDFS-1598. Directory listing on hftp:// does not show .*.crc files.
  1866. (szetszwo)
  1867. HDFS-1750. ListPathsServlet should not use HdfsFileStatus.getLocalName()
  1868. to get file name since it may return an empty string. (szetszwo)
  1869. Release 0.20.3 - Unreleased
  1870. IMPROVEMENTS
  1871. BUG FIXES
  1872. HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
  1873. the first datanode fails. (szetszwo)
  1874. HDFS-909. Wait until edits syncing is finishes before purging edits.
  1875. (Todd Lipcon via shv)
  1876. HDFS-1258. Clearing namespace quota on "/" corrupts fs image.
  1877. (Aaron T. Myers via szetszwo)
  1878. HDFS-1406. TestCLI fails on Ubuntu with default /etc/hosts. (cos)
  1879. Release 0.20.203.0 - 2011-5-11
  1880. IMPROVEMENTS
  1881. HADOOP-7259. Contrib modules should include the build.properties from
  1882. the enclosing hadoop directory. (omalley)
  1883. BUG FIXES
  1884. HDFS-132. Fix namenode to not report files deleted metrics for deletions
  1885. done while replaying edits during startup. (suresh & shv)
  1886. HDFS-955. New implementation of saveNamespace() to avoid loss of edits
  1887. when name-node fails during saving. (shv)
  1888. Release 0.20.2 - 2009-09-01
  1889. IMPROVEMENTS
  1890. HDFS-737. Add full path name of the file to the block information and
  1891. summary of total number of files, blocks, live and deadnodes to
  1892. metasave output. (Jitendra Nath Pandey via suresh)
  1893. HDFS-919. Create test to validate the BlocksVerified metric (Gary Murry
  1894. via cos)
  1895. HDFS-907. Add tests for getBlockLocations and totalLoad metrics.
  1896. (Ravi Phulari via cos)
  1897. BUG FIXES
  1898. HDFS-686. NullPointerException is thrown while merging edit log and image.
  1899. (hairong)
  1900. HDFS-677. Rename failure when both source and destination quota exceeds
  1901. results in deletion of source. (suresh)
  1902. HDFS-709. Fix TestDFSShell failure due to rename bug introduced by
  1903. HDFS-677. (suresh)
  1904. HDFS-579. Fix DfsTask to follow the semantics of 0.19, regarding non-zero
  1905. return values as failures. (Christian Kunz via cdouglas)
  1906. HDFS-723. Fix deadlock in DFSClient#DFSOutputStream. (hairong)
  1907. HDFS-596. Fix memory leak in hdfsFreeFileInfo() for libhdfs.
  1908. (Zhang Bingjun via dhruba)
  1909. HDFS-185. Disallow chown, chgrp, chmod, setQuota, and setSpaceQuota when
  1910. name-node is in safemode. (Ravi Phulari via shv)
  1911. HDFS-187. Initialize secondary namenode http address in TestStartup.
  1912. (Todd Lipcon via szetszwo)
  1913. HDFS-464. Fix memory leaks in libhdfs. (Christian Kunz via suresh)
  1914. HDFS-1377. Quota bug for partial blocks allows quotas to be violated. (eli)
  1915. Release 0.20.1 - 2009-09-01
  1916. IMPROVEMENTS
  1917. HDFS-438. Improve help message for space quota command. (Raghu Angadi)
  1918. BUG FIXES
  1919. HDFS-167. Fix a bug in DFSClient that caused infinite retries on write.
  1920. (Bill Zeller via szetszwo)
  1921. HDFS-527. Remove/deprecate unnecessary DFSClient constructors. (szetszwo)
  1922. HDFS-525. The SimpleDateFormat object in ListPathsServlet is not thread
  1923. safe. (Suresh Srinivas and cdouglas)
  1924. HDFS-761. Fix failure to process rename operation from edits log due to
  1925. quota verification. (suresh)