CHANGES.txt 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. Hadoop HDFS Change Log
  2. Trunk (unreleased changes)
  3. INCOMPATIBLE CHANGES
  4. HDFS-1526. Dfs client name for a map/reduce task should be unique
  5. among threads. (hairong)
  6. HDFS-1536. Improve HDFS WebUI. (hairong)
  7. NEW FEATURES
  8. HDFS-1365. Federation: propose ClusterID and BlockPoolID format
  9. (Tanping via boryas)
  10. HDFS-1394. Federation: modify -format option for namenode to generated
  11. new blockpool id and accept newcluster (boryas)
  12. HDFS-1400. Federation: DataTransferProtocol uses ExtendedBlockPool to
  13. include BlockPoolID in the protocol. (suresh)
  14. HDFS-1428. Federation : add cluster ID and block pool ID into
  15. Name node web UI(Tanping via boryas)
  16. HDFS-1450. Federation: Introduce block pool ID into FSDatasetInterface.
  17. (suresh)
  18. HDFS-1632. Federation: data node storage structure changes and
  19. introduce block pool storage. (Tanping via suresh)
  20. HDFS-1634. Federation: Convert single threaded DataNode into
  21. per BlockPool thread model.(boryas)
  22. HDFS-1637. Federation: FSDataset in Datanode should be created after
  23. initial handshake with namenode. (boryas and jitendra)
  24. HDFS-1653. Federation: Block received message from datanode sends invalid
  25. DatanodeRegistration. (Tanping via suresh)
  26. HDFS-1645. Federation: DatanodeCommond.Finalize needs to include
  27. BlockPoolId. (suresh)
  28. HDFS-1638. Federation: DataNode.handleDiskError needs to inform
  29. ALL namenodes if a disk failed (boryas)
  30. HDFS-1647. Federation: Multiple namenode configuration. (jitendra)
  31. HDFS-1639. Federation: Add block pool management to FSDataset. (suresh)
  32. HDFS-1648. Federation: Only DataStorage must be locked using in_use.lock
  33. and no locks must be associated with BlockPoolStorage. (Tanping via suresh)
  34. HDFS-1641. Federation: Datanode fields that are no longer used should
  35. be removed (boryas)
  36. HDFS-1642. Federation: add Datanode.getDNRegistration(String bpid)
  37. method (boryas)
  38. HDFS-1643. Federation: remove namenode argument from DataNode
  39. constructor (boryas)
  40. HDFS-1657. Federation: Tests that corrupt block files fail due to changed
  41. file path in federation. (suresh)
  42. HDFS-1661. Federation: Remove unnecessary TODO:FEDERATION comments.
  43. (jitendra)
  44. HDFS-1660. Federation: Datanode doesn't start with two namenodes (boryas)
  45. HDFS-1650. Federation: TestReplication fails. (Tanping via suresh)
  46. HDFS-1651. Federation: Tests fail due to null pointer exception in
  47. Datnode#shutdown() method. (Tanping via suresh)
  48. HDFS-1649. Federation: Datanode command to refresh namenode list at
  49. the datanode. (jitendra)
  50. HDFS-1646. Federation: MiniDFSClsuter#waitActive() waits for ever
  51. with the introduction of BPOfferService in datanode. (suresh)
  52. HDFS-1659. Federation: BPOfferService exits after one iteration
  53. incorrectly. (Tanping via suresh)
  54. HDFS-1654. Federation: Fix TestDFSUpgrade and TestDFSRollback failures.
  55. (suresh)
  56. HDFS-1668. Federation: Datanodes sends block pool usage information
  57. to the namenode in heartbeat. (suresh)
  58. HDFS-1669. Federation: Fix TestHftpFileSystem failure. (suresh)
  59. HDFS-1670. Federation: remove dnRegistration from Datanode (boryas)
  60. HDFS-1662. Federation: fix unit test case, TestCheckpoint
  61. and TestDataNodeMXBean (tanping via boryas)
  62. HDFS-1671. Federation: shutdown in DataNode should be able to
  63. shutdown individual BP threads as well as the whole DN (boryas).
  64. HDFS-1663. Federation: Rename getPoolId() everywhere to
  65. getBlockPoolId() (tanping via boryas)
  66. HDFS-1652. FederationL Add support for multiple namenodes in MiniDFSCluster.
  67. (suresh)
  68. HDFS-1672. Federation: refactor stopDatanode(name) to work
  69. with multiple Block Pools (boryas)
  70. HDFS-1687. Federation: DirectoryScanner changes for
  71. federation (Matt Foley via boryas)
  72. HDFS-1626. Make BLOCK_INVALIDATE_LIMIT configurable. (szetszwo)
  73. HDFS-1655. Federation: DatablockScanner should scan blocks for
  74. all the block pools. (jitendra)
  75. HDFS-1664. Federation: Add block pool storage usage to Namenode WebUI.
  76. (Tanping via suresh)
  77. HDFS-1674. Federation: Rename BlockPool class to BlockPoolSlice.
  78. (jghoman, Tanping via suresh)
  79. HDFS-1673. Federation: Datanode changes to track block token secret per
  80. namenode. (suresh)
  81. HDFS-1677. Federation: Fix TestFsck and TestListCorruptFileBlocks
  82. failures. (Tanping via suresh)
  83. HDFS-1678. Federation: Remove unnecessary #getBlockpool()
  84. for NameNodeMXBean in FSNameSystem. (Tanping via Suresh)
  85. HDFS-1688. Federation: Fix failures in fault injection tests,
  86. TestDiskError, TestDatanodeRestart and TestDFSTartupVersions. (suresh)
  87. HDFS-1696. Federation: when build version doesn't match -
  88. datanode should wait (keep connecting) untill NN comes up
  89. with the right version (boryas)
  90. HDFS-1681. Balancer: support per pool and per node policies. (szetszwo)
  91. HDFS-1695. Federation: Fix testOIV and TestDatanodeUtils
  92. (jhoman and tanping via boryas)
  93. HDFS:1699. Federation: Fix failure of TestBlockReport.
  94. (Matt Foley via suresh)
  95. HDFS-1698. Federation: TestOverReplicatedBlocks and TestWriteToReplica
  96. failing. (jhoman and jitendra)
  97. HDFS-1701. Federation: Fix TestHeartbeathandling.
  98. (Erik Steffl and Tanping Wang via suresh)
  99. HDFS-1693. Federation: Fix TestDFSStorageStateRecovery failure. (suresh)
  100. HDFS-1694. Federation: SimulatedFSDataset changes to work with
  101. federation and multiple block pools. (suresh)
  102. HDFS-1689. Federation: Configuration for namenodes. (suresh and jitendra)
  103. HDFS-1682. Change Balancer CLI for multiple namenodes and balancing
  104. policy. (szetszwo)
  105. HDFS-1697. Federation: fix TestBlockRecovery (boryas)
  106. HDFS-1702. Federation: fix TestBackupNode and TestRefreshNamendoes
  107. failures. (suresh)
  108. HDFS-1706. Federation: TestFileAppend2, TestFileAppend3 and
  109. TestBlockTokenWithDFS failing. (jitendra)
  110. HDFS-1704. Federation: Add a tool that lists namenodes, secondary and
  111. backup from configuration file. (suresh)
  112. HDFS-1711. Federation: create method for updating machine name in
  113. DataNode.java (boryas)
  114. HDFS-1712. Federation: when looking up datanode we should use machineNmae
  115. (in testOverReplicatedBlocks) (boryas)
  116. HDFS-1709. Federation: Error "nnaddr url param is null" when clicking on a
  117. node from NN Live Node Link. (jitendra)
  118. HDFS-1714. Federation: refactor upgrade object in DataNode (boryas)
  119. HDFS-1715. Federation: warning/error not generated when datanode sees
  120. inconsistent/different Cluster ID between namenodes (boryas)
  121. HDFS-1715. Federation: warning/error not generated when datanode sees
  122. inconsistent/different Cluster ID between namenodes (boryas)
  123. HDFS-1716. Federation: Add decommission tests for federated namenodes.
  124. (suresh)
  125. HDFS-1713. Federation: Prevent DataBlockScanner from running in tight loop.
  126. (jitendra)
  127. HDFS-1721. Federation: Configuration for principal names should not be
  128. namenode specific. (jitendra)
  129. HDFS-1717. Federation: FSDataset volumeMap access is not synchronized
  130. correctly. (suresh)
  131. HDFS-1722. Federation: Add flag to MiniDFSCluser to differentiate between
  132. federation and non-federation modes. (boryas via suresh)
  133. HDFS-1718. Federation: MiniDFSCluster#waitActive() bug causes some tests
  134. to fail. (suresh)
  135. HDFS-1719. Federation: Fix TestDFSRemove that fails intermittently.
  136. (suresh)
  137. HDFS-1720. Federation: FSVolumeSet volumes is not synchronized correctly.
  138. (suresh)
  139. HDFS-1700. Federation: fsck needs to work with federation changes.
  140. (Matt Foley via suresh)
  141. HDFS-1482. Add listCorruptFileBlocks to DistributedFileSystem.
  142. (Patrick Kling via hairong)
  143. HDFS-1448. Add a new tool Offline Edits Viewer (oev). (Erik Steffl
  144. via szetszwo)
  145. HDFS-1735. Federation: merge FSImage change in federation to
  146. FSImage+NNStorage refactoring in trunk. (suresh)
  147. HDFS-1737. Federation: Update the layout version for federation
  148. changes. (suresh)
  149. HDFS-1744. Federation: Add new layout version to offline image viewer
  150. and edits viewer. (suresh)
  151. HDFS-1745. Federation: Fix fault injection test failures. (suresh)
  152. HDFS-1746. Federation: TestFileAppend3 fails intermittently. (jitendra)
  153. HDFS-1703. Improve start/stop scripts and add decommission tool for
  154. federation. (Tanping Wang, Erik Steffl via suresh)
  155. HDFS-1749. Federation: TestListCorruptFileBlocks failing in federation
  156. branch. (jitendra)
  157. HDFS-1754. Federation: testFsck fails. (boryas)
  158. HDFS-1755. Federation: The BPOfferService must always connect to namenode as
  159. the login user. (jitendra)
  160. IMPROVEMENTS
  161. HDFS-1510. Added test-patch.properties required by test-patch.sh (nigel)
  162. HDFS-1628. Display full path in AccessControlException. (John George
  163. via szetszwo)
  164. HDFS-1707. Federation: Failure in browsing data on new namenodes. (jitendra)
  165. HDFS-1683. Test Balancer with multiple NameNodes. (szetszwo)
  166. HDFS-1547. Improve decommission mechanism. (suresh)
  167. HDFS-1588. Remove hardcoded strings for configuration keys, "dfs.hosts"
  168. and "dfs.hosts.exlude". (Erik Steffl via suresh)
  169. HDFS-1481. NameNode should validate fsimage before rolling. (hairong)
  170. HDFS-1506. Refactor fsimage loading code. (hairong)
  171. HDFS-1533. A more elegant FileSystem#listCorruptFileBlocks API
  172. (HDFS portion) (Patrick Kling via hairong)
  173. HDFS-1476. listCorruptFileBlocks should be functional while the
  174. name node is in safe mode. (Patrick Kling via hairong)
  175. HDFS-1534. Fix some incorrect logs in FSDirectory. (eli)
  176. HDFS-1539. A config option for the datanode to fsycn a block file
  177. when block is completely written. (dhruba)
  178. HDFS-1335. HDFS side change of HADDOP-6904: RPC compatibility. (hairong)
  179. HDFS-1557. Separate Storage from FSImage. (Ivan Kelly via jitendra)
  180. HDFS-560 Enhancements/tuning to hadoop-hdfs/build.xml
  181. HDFS-1629. Add a method to BlockPlacementPolicy for keeping the chosen
  182. nodes in the output array. (szetszwo)
  183. HDFS-1731. Allow using a file to exclude certain tests from build (todd)
  184. HDFS-1736. Remove the dependency from DatanodeJspHelper to FsShell.
  185. (Daryn Sharp via szetszwo)
  186. HDFS-1731. Amend previous commit for this JIRA to fix build on Cygwin.
  187. (todd)
  188. OPTIMIZATIONS
  189. HDFS-1458. Improve checkpoint performance by avoiding unnecessary image
  190. downloads and loading. (hairong)
  191. HDFS-1601. Pipeline ACKs are sent as lots of tiny TCP packets (todd)
  192. BUG FIXES
  193. HDFS-1449. Fix test failures - ExtendedBlock must return
  194. block file name in #getBlockName(). (suresh)
  195. HDFS-1680. Fix TestBalancer. (szetszwo)
  196. HDFS-1705. Balancer command throws NullPointerException. (suresh via
  197. szetszwo)
  198. HDFS-1559. Add missing UGM overrides to TestRefreshUserMappings
  199. (Todd Lipcon via eli)
  200. HDFS-1585. Fix build after HDFS-1547 (todd)
  201. HDFS-1684. Balancer cannot start with with multiple namenodes. (szetszwo)
  202. HDFS-1516. mvn-install is broken after 0.22 branch creation. (cos)
  203. HDFS-1360. TestBlockRecovery should bind ephemeral ports.
  204. (Todd Lipcon via hairong)
  205. HDFS-1551. Fix pom templates dependency list (gkesavan)
  206. HDFS-1509. A savenamespace command writes the fsimage and edits into
  207. all configured directories. (dhruba)
  208. HDFS-1540. Make Datanode handle errors from RPC calls to namenode
  209. more elegantly. (dhruba)
  210. HDFS-1463. Accesstime of a file is not updated in safeMode. (dhruba)
  211. HDFS-863. Potential deadlock in TestOverReplicatedBlocks.
  212. (Ken Goodhope via jghoman)
  213. HDFS-1607. Fix referenced to misspelled method name getProtocolSigature
  214. (todd)
  215. HDFS-1610. Fix TestClientProtocolWithDelegationToken and TestBlockToken
  216. on trunk after HADOOP-6904 (todd)
  217. HDFS-1600. Fix release audit warnings on trunk. (todd)
  218. HDFS-1691. Remove a duplicated static initializer for reading default
  219. configurations in DFSck. (Alexey Diomin via szetszwo)
  220. HDFS-1748. Balancer utilization classification is incomplete. (szetszwo)
  221. HDFS-1738. change hdfs jmxget to return an empty string instead of
  222. null when an attribute value is not available (tanping vi boryas)
  223. Release 0.22.0 - Unreleased
  224. NEW FEATURES
  225. HDFS-992. Re-factor block access token implementation to conform to the
  226. generic Token interface in Common (Kan Zhang and Jitendra Pandey via jghoman)
  227. HDFS-599. Allow NameNode to have a seprate port for service requests from
  228. client requests. (Dmytro Molkov via hairong)
  229. HDFS-1004. Update NN to support Kerberized SSL from HADOOP-6584.
  230. (jghoman and Kan Zhang via jghoman)
  231. HDFS-1005. Fsck security. (borya and Kan Zhang via jghoman)
  232. HDFS-1006. getImage/putImage http requests should be https for the case
  233. of security enabled. (borya and jghoman via jghoman)
  234. HDFS-1033. In secure clusters, NN and SNN should verify that the remote
  235. principal during image and edits transfer. (jghoman)
  236. HDFS-1023. Allow http server to start as regular principal if https
  237. principal not defined. (jghoman)
  238. HDFS-1150. Verify datanodes' identities to clients in secure clusters.
  239. (jghoman)
  240. HDFS-1330. Make RPCs to DataNodes timeout. (hairong)
  241. HDFS-202. HDFS support of listLocatedStatus introduced in HADOOP-6870.
  242. HDFS piggyback block locations to each file status when listing a
  243. directory. (hairong)
  244. HDFS-1359. Add BlockPoolID to Block. (suresh)
  245. HDFS-1361. Add -fileStatus operation to NNThroughputBenchmark. (shv)
  246. HDFS-1435. Provide an option to store fsimage compressed. (hairong)
  247. HDFS-903. Support fsimage validation through MD5 checksum. (hairong)
  248. HDFS-1457. Provide an option to throttle image transmission between
  249. pimary and secondary NameNodes. (Yifei Lu and hairong via hairong)
  250. HDFS-1164. TestHdfsProxy is failing. (Todd Lipcon via cos)
  251. HDFS-811. Add metrics, failure reporting and additional tests for HDFS-457.
  252. (eli)
  253. HDFS-895. Allow hflush/sync to occur in parallel with new writes
  254. to the file. (Todd Lipcon via hairong)
  255. HDFS-528. Add ability for safemode to wait for a minimum number of
  256. live datanodes (Todd Lipcon via eli)
  257. IMPROVEMENTS
  258. HDFS-1304. Add a new unit test for HftpFileSystem.open(..). (szetszwo)
  259. HDFS-1096. fix for prev. commit. (boryas)
  260. HDFS-1096. allow dfsadmin/mradmin refresh of superuser proxy group
  261. mappings (boryas)
  262. HDFS-1146. Javadoc for getDelegationTokenSecretManager in FSNamesystem (jnp via boryas)
  263. HDFS-1132. Refactor TestFileStatus (Eli Collins via cos)
  264. HDFS-1163. normalize property names for JT/NN kerberos principal
  265. names in configuration (from HADOOP 6633) (boryas)
  266. HDFS-1003. authorization checks for inter-server protocol
  267. (based on HADOOP-6600) (boryas)
  268. HDFS-1061. Memory footprint optimization for INodeFile object.
  269. (Bharath Mundlapudi via jghoman)
  270. HDFS-1079. Throw exceptions as specified by the AbstractFileSystem
  271. in HDFS implemenation and protocols. (suresh)
  272. HDFS-1112. Edit log buffer should not grow unfoundedly. (hairong)
  273. HDFS-1119. Introduce a GSet interface to BlocksMap. (szetszwo)
  274. HDFS-1184. Replace tabs in code with spaces. (Jeff Ames via jghoman)
  275. HDFS-1185. Remove duplicate now() functions in DataNode, FSNamesysetm.
  276. (Jeff Ames via jghoman)
  277. HDFS-1183. Remove some duplicate code in NamenodeJspHelper.java.
  278. (Jeff Ames via jghoman)
  279. HDFS-1190. Remove unused getNamenode() method from DataNode.
  280. (Jeff Ames via jghoman)
  281. HDFS-1110. Reuses objects for commonly used file names in namenode to
  282. reduce the heap usage. (suresh)
  283. HDFS-752. Add interfaces classification to to HDFS source code. (suresh)
  284. HDFS-947. An Hftp read request is redirected to a datanode that has
  285. the most replicas of the blocks in the file. (Dmytro Molkov via dhruba)
  286. HDFS-1272. Fixes to take care of the changes in HADOOP-6845.
  287. (Jitendra Pandey via ddas)
  288. HDFS-1298 - Add support in HDFS for new statistics added in FileSystem
  289. to track the file system operations. (suresh)
  290. HDFS-1201. The HDFS component for HADOOP-6632.
  291. (Kan Zhang & Jitendra Pandey via ddas)
  292. HDFS-1307 Add start time, end time and total time taken for FSCK to
  293. FSCK report (suresh)
  294. HDFS-1302. The HDFS side of the changes corresponding to HADOOP-6861.
  295. (Jitendra Pandey & Owen O'Malley via ddas)
  296. HDFS-1315. Add fsck event to audit log and remove other audit log events
  297. corresponding to FSCK listStatus and open calls. (suresh)
  298. HDFS-1178. The NameNode servlets should not use RPC to connect to the
  299. NameNode. (Kan Zhang via jghoman)
  300. HDFS-1130. Adds dfs.cluster.administrator ACL configuration that can
  301. be used to control who can view the default hdfs servlets. (ddas)
  302. HDFS-1297. Fix some comments. (Jeff Ames via jghoman)
  303. HDFS-330. Datanode Web UIs should provide robots.txt.
  304. (Allen Wittenauer via jghoman)
  305. HDFS-881. Refactor DataNode Packet header into DataTransferProtocol.
  306. (Todd Lipcon via jghoman)
  307. HDFS-1036. docs for fetchdt
  308. HDFS-1318. Add JMX interface for read access to namenode and datanode
  309. web UI information. (Tanping Wang via suresh).
  310. HDFS-1356. Provide information as to whether or not security is
  311. enabled on web interface for NameNode (boryas)
  312. HDFS-1205. FSDatasetAsyncDiskService should name its threads.
  313. (Todd Lipcon via eli)
  314. HDFS-1111. Introduce getCorruptFileBlocks() for fsck. (Sriram Rao via shv)
  315. HDFS-1395. Add @Override to FSDataset methods that implement
  316. FSDatasetInterface methods. (suresh)
  317. HDFS-1383. Improve the error messages when using hftp://. (szetszwo)
  318. HDFS-1093. Change the FSNamesystem lock to a read/write lock. (dhruba)
  319. HDFS-1407. Change DataTransferProtocol methods to use Block instead
  320. of individual elements of Block. (suresh)
  321. HDFS-1417. Add @Override to SimulatedFSDataset methods that implement
  322. FSDatasetInterface methods. (suresh)
  323. HDFS-1426. Remove unused method BlockInfo#listCount. (hairong)
  324. HDFS-1456. Provide builder for constructing instances of MiniDFSCluster.
  325. (jghoman)
  326. HDFS-1472. Allow programmatic access to fsck output.
  327. (Ramkumar Vadali via dhruba)
  328. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  329. latest test-patch.sh script (gkesavan)
  330. HDFS-1462. Refactor edit log loading to a separate class from edit log writing.
  331. (Todd Lipcon via eli)
  332. HDFS-1485. Fix typo in BlockPlacementPolicy. (Jingguo Yao via shv)
  333. HDFS-1035. Generate Eclipse's .classpath file from Ivy config. (nigel)
  334. HDFS-1408. Herriot NN and DN clients should vend statistics. (cos)
  335. HDFS-1491 Update Hdfs to match the change of methods from protected to public
  336. in AbstractFileSystem (Hadoop-6903) (sanjay)
  337. HDFS-1160. Improve some FSDataset warnings and comments. (eli)
  338. HDFS-556. Provide info on failed volumes in the web ui. (eli)
  339. HDFS-697. Enable asserts for tests by default. (eli)
  340. HDFS-1187. Modify fetchdt to allow renewing and canceling token.
  341. (Owen O'Malley and Kan Zhang via jghoman)
  342. HDFS-1387. Update HDFS permissions guide for security. (Todd Lipcon via eli)
  343. HDFS-455. Make NN and DN handle in a intuitive way comma-separated
  344. configuration strings. (Michele Catasta via eli)
  345. HDFS-1071. savenamespace should write the fsimage to all configured
  346. fs.name.dir in parallel (Dmytro Molkov via jghoman)
  347. HDFS-1055. Improve thread naming for DataXceivers.
  348. (Todd Lipcon and Ramkumar Vadali via eli).
  349. HDFS-718. Configuration parameter to prevent accidental formatting of
  350. HDFS filesystem. (Andrew Ryan via jghoman)
  351. HDFS-1500. TestOfflineImageViewer failing on trunk. (Todd Lipcon
  352. via hairong)
  353. HDFS-1483. DFSClient.getBlockLocations should indicate if corresponding
  354. blocks are corrupt. (Patrick Kling via hairong)
  355. HDFS-259. Remove intentionally corrupt 0.13 directory layout creation.
  356. (Todd Lipcon via eli)
  357. HDFS-1513. Fix a number of warnings. (eli)
  358. HDFS-1473. Refactor storage management into separate classes than fsimage
  359. file reading/writing. (Todd Lipcon via eli)
  360. HDFS-1582. Remove auto-generated native build files. (rvs via eli)
  361. OPTIMIZATIONS
  362. HDFS-1140. Speedup INode.getPathComponents. (Dmytro Molkov via shv)
  363. HDFS-1081. Performance regression in
  364. DistributedFileSystem::getFileBlockLocations in secure systems (jghoman)
  365. HDFS-1114. Implement LightWeightGSet for BlocksMap in order to reduce
  366. NameNode memory footprint. (szetszwo)
  367. HDFS-1320. Add LOG.isDebugEnabled() guard for each LOG.debug(..).
  368. (Erik Steffl via szetszwo)
  369. HDFS-1368. Add a block counter to DatanodeDescriptor. (hairong)
  370. HDFS-1434. Refactor Datanode#startDataNode method into smaller methods.
  371. (suresh)
  372. BUG FIXES
  373. HDFS-1039. Adding test for JspHelper.getUGI(jnp via boryas)
  374. HDFS-1019. Incorrect default values for delegation tokens in
  375. hdfs-default.xml (jnp via boryas)
  376. HDFS-1039. Service should be set in the token in JspHelper.getUGI(jnp via boryas)
  377. HDFS-1038. FIX. A test missed in a previous commit for this JIRA. (boryas)
  378. HDFS-1038. In nn_browsedfscontent.jsp fetch delegation token only
  379. if security is enabled. (jnp via boryas)
  380. HDFS-1044. Cannot submit mapreduce job from secure client to
  381. unsecure sever (boryas)
  382. HDFS-1021. specify correct server principal for RefreshAuthorizationPolicyProtocol
  383. and RefreshUserToGroupMappingsProtocol protocols in DFSAdmin (for HADOOP-6612) (boryas)
  384. HDFS-970. fsync fsimage to disk before closing fsimage file.
  385. (Todd Lipcon via dhruba)
  386. HDFS-1027. Update copyright year to 2010. (Ravi Phulari via jghoman)
  387. HDFS-1080. SecondaryNameNode image transfer should use the defined http
  388. address rather than local ip address. (jghoman)
  389. HDFS-1198. Resolving cross-realm principals. (Jitendra Pandey via jghoman)
  390. HDFS-1118. Fix socketleak on DFSClient. (Zheng Shao via dhruba)
  391. HDFS-1192. refreshSuperUserGroupsConfiguration should use server side
  392. configuration for the refresh (for HADOOP-6815) (boryas)
  393. HDFS-1036. in DelegationTokenFetch dfs.getURI returns no port (boryas)
  394. HDFS-1017. browsedfs jsp should call JspHelper.getUGI rather
  395. than using createRemoteUser() (jnp via boryas)
  396. HDFS-1250. Namenode should reject block reports and block received
  397. requests from dead datanodes (suresh)
  398. HDFS-1145. When NameNode is shutdown it does not try to exit
  399. safemode anymore. (dhruba)
  400. HDFS-1202. DataBlockScanner throws NPE when updated before
  401. initialized. (Todd Lipcon via dhruba)
  402. HDFS-882. Datanode logs the hostname and port its listening on.
  403. (Steve Loughran via dhruba)
  404. HDFS-1238. ant eclipse-files has drifted again, (jghoman)
  405. HDFS-1045. In secure clusters, re-login is necessary for https
  406. clients before opening connections. (jghoman)
  407. HDFS-1289. Datanode secure mode is broken. (Kan Zhang via jghoman)
  408. HDFS-1007. HFTP needs to be updated to use delegation tokens (boryas)
  409. HDFS-1085. HFTP read may fail silently on the client side if there is an
  410. exception on the server side. (szetszwo)
  411. HDFS-1308. job conf key for the services name of DelegationToken for HFTP
  412. url is constructed incorrectly in HFTPFileSystem (boryas)
  413. HDFS-1319. Fix location of re-login for secondary namenode from HDFS-999.
  414. (jghoman)
  415. HDFS-1317. Remove the FILEPATH_PATTERN from hdfsproxy.AuthorizationFilter.
  416. (Rohini Palaniswamy via szetszwo)
  417. HDFS-912. sed in build.xml on Solaris fails. (Allen Wittenauer via jghoman)
  418. HDFS-1296. using delegation token over hftp for long running
  419. clients (boryas)
  420. HDFS-1334. open in HftpFileSystem does not add delegation tokens to the url.
  421. (Jitendra Pandey via jghoman)
  422. HDFS-1301. TestHDFSProxy need to use server side conf for ProxyUser
  423. stuff. (boryas)
  424. HDFS-1340. When security is turned off, there is a potential XSS attack.
  425. This patch fixes it by removing delegationtoken string from the URL,
  426. before returning a response to the client. (Jitendra Pandey via ddas)
  427. HDFS-1347. TestDelegationToken uses mortbay.log for logging (boryas)
  428. HDFS-1157. Modifications introduced by HDFS-1150 are breaking aspect's
  429. bindings (cos)
  430. HDFS-1349. Remove empty java files. (Eli Collins)
  431. HDFS-1340. A null delegation token is appended to the url if security
  432. is disabled when browsing filesystem. (boryas)
  433. HDFS-1352. Fix jsvc.location. (Eli Collins via jghoman)
  434. HDFS-1284. TestBlockToken fails. (Kan Zhang via jghoman)
  435. HDFS-1355. ant veryclean (clean-cache) doesn't clean enough.
  436. (Luke Lu via jghoman)
  437. HDFS-1353. Remove most of getBlockLocation optimization. (jghoman)
  438. HDFS-1369. Invalid javadoc reference in FSDatasetMBean.java (Eli Collins)
  439. HDFS-829. hdfsJniHelper.c: #include <error.h> is not portable.
  440. (Allen Wittenauer via jghoman)
  441. HDFS-1310. The ClientDatanodeProtocol proxy should be stopped in
  442. DFSInputStream.readBlockLength(..). (sam rash via szetszwo)
  443. HDFS-1357. HFTP traffic served by DataNode shouldn't use service port
  444. on NameNode. (Kan Zhang via jghoman)
  445. HDFS-1419. HDFS Federation: Three test cases need minor modification after
  446. the new block id change (Tanping Wang via suresh)
  447. HDFS-96. HDFS supports blocks larger than 2 GB.
  448. (Patrick Kling via dhruba)
  449. HDFS-1433. Fix test failures - TestPread and TestFileLimit. (suresh)
  450. HDFS-1364. Makes long running HFTP-based applications do relogins
  451. if necessary. (Jitendra Pandey via ddas)
  452. HDFS-1399. Distinct minicluster services (e.g. NN and JT) overwrite each
  453. other's service policies. (Aaron T. Myers via tomwhite)
  454. HDFS-1440. Fix TestComputeInvalidateWork failure. (suresh)
  455. HDFS-1498. FSDirectory#unprotectedConcat calls setModificationTime
  456. on a file. (eli)
  457. HDFS-1625. Ignore disk space values in TestDataNodeMXBean. (szetszwo)
  458. HDFS-1466. TestFcHdfsSymlink relies on /tmp/test not existing. (eli)
  459. HDFS-874. TestHDFSFileContextMainOperations fails on weirdly
  460. configured DNS hosts. (Todd Lipcon via eli)
  461. HDFS-1507. TestAbandonBlock should abandon a block. (eli)
  462. HDFS-1487. FSDirectory.removeBlock() should update diskspace count
  463. of the block owner node (Zhong Wang via eli).
  464. HDFS-1467. Append pipeline never succeeds with more than one replica.
  465. (Todd Lipcon via eli)
  466. HDFS-1167. New property for local conf directory in system-test-hdfs.xml
  467. file. (Vinay Thota via cos)
  468. HDFS-1503. TestSaveNamespace fails. (Todd Lipcon via cos)
  469. HDFS-1524. Image loader should make sure to read every byte in image file.
  470. (hairong)
  471. HDFS-1523. TestLargeBlock is failing on trunk. (cos)
  472. HDFS-1502. TestBlockRecovery triggers NPE in assert. (hairong via cos)
  473. HDFS-1532. Exclude Findbugs warning in FSImageFormat$Saver. (Todd Lipcon
  474. via cos)
  475. HDFS-1527. SocketOutputStream.transferToFully fails for blocks >= 2GB on
  476. 32 bit JVM. (Patrick Kling via cos)
  477. HDFS-1531. Clean up stack traces due to duplicate MXBean registration.
  478. (Todd Lipcon via cos)
  479. HDFS-613. TestBalancer and TestBlockTokenWithDFS fail Balancer assert.
  480. (Todd Lipcon via cos)
  481. HDFS-1511. 98 Release Audit warnings on trunk and branch-0.22.
  482. (jghoman)
  483. HDFS-1560. dfs.data.dir permissions should default to 700.
  484. (Todd Lipcon via eli)
  485. HDFS-1550. NPE when listing a file with no location. (hairong)
  486. HDFS-1542. Add test for HADOOP-7082, a deadlock writing Configuration to
  487. HDFS. (todd)
  488. HDFS-1504. FSImageSaver should catch all exceptions, not just IOE. (todd)
  489. HDFS-884. DataNode throws IOException if all data directories are
  490. unavailable. (Steve Loughran and shv)
  491. HDFS-1591. HDFS part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  492. HDFS-900. Corrupt replicas are not processed correctly in block report (shv)
  493. HDFS-1529. Incorrect handling of interrupts in waitForAckedSeqno can cause
  494. deadlock (todd)
  495. HDFS-1597. Batched edit log syncs can reset synctxid and throw assertions
  496. (todd)
  497. HDFS-1602. Fix HADOOP-4885 for it is doesn't work as expected. (boryas)
  498. HDFS-1618. configure files that are generated as part of the released
  499. tarball need to have executable bit set (Roman Shaposhnik via cos)
  500. HDFS-981. test-contrib fails due to test-cactus failure (cos)
  501. Release 0.21.1 - Unreleased
  502. HDFS-1411. Correct backup node startup command in hdfs user guide.
  503. (Ching-Shen Chen via shv)
  504. BUG FIXES
  505. HDFS-1363. Eliminate second synchronized sections in appendFile(). (shv)
  506. HDFS-1413. Fix broken links to HDFS Wiki. (shv)
  507. HDFS-1420. Clover build doesn't generate per-test coverage (cos)
  508. HDFS-1444. Test related code of build.xml is error-prone and needs to be
  509. re-aligned. (cos)
  510. HDFS-1343. Instrumented build should be concentrated in one build area (cos)
  511. HDFS-1452. ant compile-contrib is broken (cos)
  512. HDFS-1474. ant binary-system is broken (cos)
  513. HDFS-1292. Allow artifacts to be published to the staging Apache Nexus
  514. Maven Repository. (Giridharan Kesavan via tomwhite)
  515. HDFS-1552. Remove java5 dependencies from build. (cos)
  516. HDFS-1189. Quota counts missed between clear quota and set quota.
  517. (John George via szetszwo)
  518. HDFS-1665. Balancer misuses dfs.heartbeat.interval as milliseconds.
  519. (szetszwo)
  520. HDFS-1728. SecondaryNameNode.checkpointSize is in bytes but not in MB.
  521. (szetszwo)
  522. HDFS-1206. TestFiHFlush fails intermittently. (cos)
  523. HDFS-1548. Fault-injection tests are executed multiple times if invoked
  524. with run-test-hdfs-fault-inject target (cos)
  525. HDFS-1552. Remove java5 dependencies from build. (cos)
  526. HDFS-996. JUnit tests should never depend on anything in conf (cos)
  527. HDFS-1612. Update HDFS design documentation for append, quota, symlink,
  528. block placement and checkpoint/backup node features. (Joe Crobak
  529. via szetszwo)
  530. Release 0.21.0 - 2010-08-13
  531. INCOMPATIBLE CHANGES
  532. HDFS-538. Per the contract elucidated in HADOOP-6201, throw
  533. FileNotFoundException from FileSystem::listStatus rather than returning
  534. null. (Jakob Homan via cdouglas)
  535. HDFS-602. DistributedFileSystem mkdirs throws FileAlreadyExistsException
  536. instead of FileNotFoundException. (Boris Shkolnik via suresh)
  537. HDFS-544. Add a "rbw" subdir to DataNode data directory. (hairong)
  538. HDFS-576. Block report includes under-construction replicas. (shv)
  539. HDFS-636. SafeMode counts complete blocks only. (shv)
  540. HDFS-644. Lease recovery, concurrency support. (shv)
  541. HDFS-570. Get last block length from a data-node when opening a file
  542. being written to. (Tsz Wo (Nicholas), SZE via shv)
  543. HDFS-657. Remove unused legacy data-node protocol methods. (shv)
  544. HDFS-658. Block recovery for primary data-node. (shv)
  545. HDFS-660. Remove deprecated methods from InterDatanodeProtocol. (shv)
  546. HDFS-512. Block.equals() and compareTo() compare blocks based
  547. only on block Ids, ignoring generation stamps. (shv)
  548. HDFS-873. Configuration specifies data-node storage directories as URIs.
  549. (shv)
  550. HDFS-905. Use the new UserGroupInformation from HDFS-6299.
  551. (jghoman via omalley)
  552. HDFS-984. Persistent delegation tokens. (Jitendra Pandey via shv)
  553. HDFS-1016. HDFS side change for HADOOP-6569. This jira changes the
  554. error message on the screen when cat a directory or a
  555. non-existent file. (hairong)
  556. HDFS-1439. HDFS Federation: Fix compilation error in TestFiHftp. (suresh)
  557. NEW FEATURES
  558. HDFS-1134. Large-scale Automated Framework. (cos)
  559. HDFS-436. Introduce AspectJ framework for HDFS code and tests.
  560. (Konstantin Boudnik via szetszwo)
  561. HDFS-447. Add LDAP lookup to hdfsproxy. (Zhiyong Zhang via cdouglas)
  562. HDFS-459. Introduce Job History Log Analyzer. (shv)
  563. HDFS-461. Tool to analyze file size distribution in HDFS. (shv)
  564. HDFS-492. Add two JSON JSP pages to the Namenode for providing corrupt
  565. blocks/replicas information. (Bill Zeller via szetszwo)
  566. HDFS-578. Add support for new FileSystem method for clients to get server
  567. defaults. (Kan Zhang via suresh)
  568. HDFS-595. umask settings in configuration may now use octal or symbolic
  569. instead of decimal. (Jakob Homan via suresh)
  570. HADOOP-6234. Updated hadoop-core and test jars to propagate new option
  571. dfs.umaskmode in configuration. (Jakob Homan via suresh)
  572. HDFS-235. Add support for byte ranges in HftpFileSystem to serve
  573. range of bytes from a file. (Bill Zeller via suresh)
  574. HDFS-385. Add support for an experimental API that allows a module external
  575. to HDFS to specify how HDFS blocks should be placed. (dhruba)
  576. HADOOP-4952. Update hadoop-core and test jars to propagate new FileContext
  577. file system application interface. (Sanjay Radia via suresh).
  578. HDFS-567. Add block forensics contrib tool to print history of corrupt and
  579. missing blocks from the HDFS logs.
  580. (Bill Zeller, Jitendra Nath Pandey via suresh).
  581. HDFS-610. Support o.a.h.fs.FileContext. (Sanjay Radia via szetszwo)
  582. HDFS-536. Support hflush at DFSClient. (hairong)
  583. HDFS-517. Introduce BlockInfoUnderConstruction to reflect block replica
  584. states while writing. (shv)
  585. HDFS-565. Introduce block committing logic during new block allocation
  586. and file close. (shv)
  587. HDFS-537. DataNode exposes a replica's meta info to BlockReceiver for the
  588. support of dfs writes/hflush. It also updates a replica's bytes received,
  589. bytes on disk, and bytes acked after receiving a packet. (hairong)
  590. HDFS-585. Datanode should serve up to visible length of a replica for read
  591. requests. (szetszwo)
  592. HDFS-604. Block report processing for append. (shv)
  593. HDFS-619. Support replica recovery initialization in datanode for the new
  594. append design. (szetszwo)
  595. HDFS-592. Allow clients to fetch a new generation stamp from NameNode for
  596. pipeline recovery. (hairong)
  597. HDFS-624. Support a new algorithm for pipeline recovery and pipeline setup
  598. for append. (hairong)
  599. HDFS-627. Support replica update in data-node.
  600. (Tsz Wo (Nicholas), SZE and Hairong Kuang via shv)
  601. HDFS-642. Support pipeline close and close error recovery. (hairong)
  602. HDFS-631. Rename configuration keys towards API standardization and
  603. backward compatibility. (Jitendra Nath Pandey via suresh)
  604. HDFS-669. Add unit tests framework (Mockito) (cos, Eli Collins)
  605. HDFS-731. Support new Syncable interface in HDFS. (hairong)
  606. HDFS-702. Add HDFS implementation of AbstractFileSystem.
  607. (Sanjay Radio via suresh)
  608. HDFS-758. Add decommissioning status page to Namenode Web UI.
  609. (Jitendra Nath Pandey via suresh)
  610. HDFS-814. Add an api to get the visible length of a DFSDataInputStream.
  611. (szetszwo)
  612. HDFS-654. Add support new atomic rename functionality in HDFS for
  613. supporting rename in FileContext. (suresh)
  614. HDFS-222. Support for concatenating of files into a single file
  615. without copying. (Boris Shkolnik via hairong)
  616. HDFS-933. Adds Delegation token based authentication in the NameNode.
  617. (Kan Zhang via ddas)
  618. HDFS-935. Adds a real user component in Delegation token.
  619. (Jitendra Nath Pandey via ddas)
  620. HDFS-245. Adds a symlink implementation to HDFS. This complements the new
  621. symlink feature added in HADOOP-6421 (Eli Collins via Sanjay Radia)
  622. HDFS-1009. Support Kerberos authorization in HDFSProxy. (Srikanth
  623. Sundarrajan via szetszwo)
  624. HDFS-1091. Implement listStatus that returns an iterator of FileStatus.
  625. (hairong)
  626. IMPROVEMENTS
  627. HDFS-381. Remove blocks from DataNode maps when corresponding file
  628. is deleted. (Suresh Srinivas via rangadi)
  629. HDFS-377. Separate codes which implement DataTransferProtocol.
  630. (szetszwo)
  631. HDFS-396. NameNode image and edits directories are specified as URIs.
  632. (Luca Telloli via rangadi)
  633. HDFS-444. Allow to change probability levels dynamically in the fault
  634. injection framework. (Konstantin Boudnik via szetszwo)
  635. HDFS-352. Documentation for saveNamespace command. (Ravi Phulari via shv)
  636. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  637. build #12. (Giridharan Kesavan)
  638. HDFS-204. Add a new metrics FilesInGetListingOps to the Namenode.
  639. (Jitendra Nath Pandey via szetszwo)
  640. HDFS-278. HDFS Outputstream close does not hang forever. (dhruba)
  641. HDFS-443. Add a new metrics numExpiredHeartbeats to the Namenode.
  642. (Jitendra Nath Pandey via szetszwo)
  643. HDFS-475. Add new ant targets for fault injection jars and tests.
  644. (Konstantin Boudnik via szetszwo)
  645. HDFS-458. Create a new ant target, run-commit-test. (Jakob Homan
  646. via szetszwo)
  647. HDFS-493. Change build.xml so that the fault-injected tests are executed
  648. only by the run-test-*-fault-inject targets. (Konstantin Boudnik via
  649. szetszwo)
  650. HDFS-446. Improvements to Offline Image Viewer. (Jakob Homan via shv)
  651. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  652. (gkesavan)
  653. HDFS-501. Use enum to define the constants in DataTransferProtocol.
  654. (szetszwo)
  655. HDFS-508. Factor out BlockInfo from BlocksMap. (shv)
  656. HDFS-510. Rename DatanodeBlockInfo to be ReplicaInfo.
  657. (Jakob Homan & Hairong Kuang via shv)
  658. HDFS-500. Deprecate NameNode methods deprecated in NameNodeProtocol.
  659. (Jakob Homan via shv)
  660. HDFS-514. Change DFSClient.namenode from public to private. (Bill Zeller
  661. via szetszwo)
  662. HDFS-496. Use PureJavaCrc32 in HDFS. (Todd Lipcon via szetszwo)
  663. HDFS-511. Remove redundant block searches in BlockManager. (shv)
  664. HDFS-504. Update the modification time of a file when the file
  665. is closed. (Chun Zhang via dhruba)
  666. HDFS-498. Add development guide and documentation for the fault injection
  667. framework. (Konstantin Boudnik via szetszwo)
  668. HDFS-524. Further DataTransferProtocol code refactoring. (szetszwo)
  669. HDFS-529. Use BlockInfo instead of Block to avoid redundant block searches
  670. in BlockManager. (shv)
  671. HDFS-530. Refactor TestFileAppend* to remove code duplication.
  672. (Konstantin Boudnik via szetszwo)
  673. HDFS-451. Add fault injection tests for DataTransferProtocol. (szetszwo)
  674. HDFS-409. Add more access token tests. (Kan Zhang via szetszwo)
  675. HDFS-546. DatanodeDescriptor iterates blocks as BlockInfo. (shv)
  676. HDFS-457. Do not shutdown datanode if some, but not all, volumes fail.
  677. (Boris Shkolnik via szetszwo)
  678. HDFS-548. TestFsck takes nearly 10 minutes to run. (hairong)
  679. HDFS-539. Refactor fault injeciton pipeline test util for future reuse.
  680. (Konstantin Boudnik via szetszwo)
  681. HDFS-552. Change TestFiDataTransferProtocol to junit 4 and add a few new
  682. tests. (szetszwo)
  683. HDFS-563. Simplify the codes in FSNamesystem.getBlockLocations(..).
  684. (szetszwo)
  685. HDFS-581. Introduce an iterator over blocks in the block report array.(shv)
  686. HDFS-549. Add a new target, run-with-fault-inject-testcaseonly, which
  687. allows an execution of non-FI tests in FI-enable environment. (Konstantin
  688. Boudnik via szetszwo)
  689. HDFS-173. Namenode will not block until a large directory deletion
  690. completes. It allows other operations when the deletion is in progress.
  691. (suresh)
  692. HDFS-551. Create new functional test for a block report. (Konstantin
  693. Boudnik via hairong)
  694. HDFS-288. Redundant computation in hashCode() implementation.
  695. (szetszwo via tomwhite)
  696. HDFS-412. Hadoop JMX usage makes Nagios monitoring impossible.
  697. (Brian Bockelman via tomwhite)
  698. HDFS-472. Update hdfsproxy documentation. Adds a setup guide and design
  699. document. (Zhiyong Zhang via cdouglas)
  700. HDFS-617. Support non-recursive create(). (Kan Zhang via szetszwo)
  701. HDFS-618. Support non-recursive mkdir(). (Kan Zhang via szetszwo)
  702. HDFS-574. Split the documentation between the subprojects.
  703. (Corinne Chandel via omalley)
  704. HDFS-598. Eclipse launch task for HDFS. (Eli Collins via tomwhite)
  705. HDFS-641. Move all of the components that depend on map/reduce to
  706. map/reduce. (omalley)
  707. HDFS-509. Redesign DataNode volumeMap to include all types of Replicas.
  708. (hairong)
  709. HDFS-562. Add a test for NameNode.getBlockLocations(..) to check read from
  710. un-closed file. (szetszwo)
  711. HDFS-543. Break FSDatasetInterface#writToBlock() into writeToRemporary,
  712. writeToRBW, ad append. (hairong)
  713. HDFS-603. Add a new interface, Replica, which is going to replace the use
  714. of Block in datanode. (szetszwo)
  715. HDFS-589. Change block write protocol to support pipeline recovery.
  716. (hairong)
  717. HDFS-652. Replace BlockInfo.isUnderConstruction() with isComplete() (shv)
  718. HDFS-648. Change some methods in AppendTestUtil to public. (Konstantin
  719. Boudnik via szetszwo)
  720. HDFS-662. Unnecessary info message from DFSClient. (hairong)
  721. HDFS-518. Create new tests for Append's hflush. (Konstantin Boudnik
  722. via szetszwo)
  723. HDFS-688. Add configuration resources to DFSAdmin. (shv)
  724. HDFS-29. Validate the consistency of the lengths of replica and its file
  725. in replica recovery. (szetszwo)
  726. HDFS-680. Add new access method to a copy of a block's replica. (shv)
  727. HDFS-704. Unify build property names to facilitate cross-projects
  728. modifications (cos)
  729. HDFS-705. Create an adapter to access some of package-private methods of
  730. DataNode from tests (cos)
  731. HDFS-710. Add actions with constraints to the pipeline fault injection
  732. tests and change SleepAction to support uniform random sleeping over an
  733. interval. (szetszwo)
  734. HDFS-713. Need to properly check the type of the test class from an aspect
  735. (cos)
  736. HDFS-716. Define a pointcut for pipeline close and add a few fault
  737. injection tests to simulate out of memory problem. (szetszwo)
  738. HDFS-719. Add 6 fault injection tests for pipeline close to simulate slow
  739. datanodes and disk errors. (szetszwo)
  740. HDFS-616. Create functional tests for new design of the block report. (cos)
  741. HDFS-584. Fail the fault-inject build if any advices are mis-bound. (cos)
  742. HDFS-730. Add 4 fault injection tests to simulate non-responsive datanode
  743. and out-of-memory problem for pipeline close ack. (szetszwo)
  744. HDFS-728. Create a comprehensive functional test for append. (hairong)
  745. HDFS-736. commitBlockSynchronization() updates block GS and length
  746. in-place. (shv)
  747. HADOOP-5107. Use Maven ant tasks to publish the subproject jars.
  748. (Giridharan Kesavan via omalley)
  749. HDFS-521. Create new tests for pipeline (cos)
  750. HDFS-764. Places the Block Access token implementation in hdfs project.
  751. (Kan Zhang via ddas)
  752. HDFS-787. Upgrade some libraries to be consistent with common and
  753. mapreduce. (omalley)
  754. HDFS-519. Create new tests for lease recovery (cos)
  755. HDFS-804. New unit tests for concurrent lease recovery (cos)
  756. HDFS-813. Enable the append test in TestReadWhileWriting. (szetszwo)
  757. HDFS-145. Cleanup inconsistent block length handling code in
  758. FSNameSystem#addStoredBlock. (hairong)
  759. HDFS-127. Reset failure count in DFSClient for each block acquiring
  760. operation. (Igor Bolotin via szetszwo)
  761. HDFS-520. Create new tests for block recovery. (hairong)
  762. HDFS-1067. Create block recovery tests that handle errors. (hairong)
  763. HDFS-1107. Turn on append by default. (shv)
  764. HDFS-968. Use StringBuilder instead of StringBuffer for better
  765. performance. (Kay Kay via suresh)
  766. HDFS-703. Replace current fault injection implementation with one
  767. from (cos)
  768. HDFS-754. Reduce ivy console output to observable level (cos)
  769. HDFS-832. HDFS side of HADOOP-6222. (cos)
  770. HDFS-840. Change tests to use FileContext test helper introduced in
  771. HADOOP-6394. (Jitendra Nath Pandey via suresh)
  772. HDFS-685. Use the user-to-groups mapping service in the NameNode.
  773. (boryas, acmurthy)
  774. HDFS-755. Read multiple checksum chunks at once in DFSInputStream.
  775. (Todd Lipcon via tomwhite)
  776. HDFS-786. Implement getContentSummary in HftpFileSystem.
  777. (Tsz Wo (Nicholas), SZE via cdouglas)
  778. HDFS-587. Add support for specifying queue name in mapreduce tests.
  779. (Erik Steffl via suresh)
  780. HDFS-902 Move contrib/raid to MapReduce. (Eli Collins via omalley)
  781. HDFS-800. The last block of a file under construction may change to the
  782. COMPLETE state in response to getAdditionalBlock or completeFileInternal.
  783. (hairong)
  784. HDFS-899. Delegation Token Implementation
  785. and corresponding changes in Namenode and DFS Api to issue,
  786. renew and cancel delegation tokens. (jnp via boryas)
  787. HDFS-844. Log the filename when file locking fails. (tomwhite)
  788. HDFS-914. Refactor DFSOutputStream and DFSInputStream out of DFSClient.
  789. (Todd Lipcon via tomwhite)
  790. HDFS-949. Move DelegationToken into Common so that it can be used by
  791. MapReduce. (omalley)
  792. HDFS-930. Better error message for DATA_TRANSFER_VERSION mismatched.
  793. (Kay Kay via szetszwo)
  794. HDFS-986. Delegation token renewing and cancelling should provide
  795. meaningful exceptions when there are failures instead of returning
  796. false. (omalley)
  797. HADOOP-6579. Upgrade the commons-codec library to 1.4. (omalley)
  798. HDFS-991. Allow authentication to the web ui via a delegation token.
  799. (omalley)
  800. HDFS-994. Allow fetching of delegation token from NameNode for hftp.
  801. (Jakob Homan via acmurthy)
  802. HDFS-998. Quote blocks streamed through jsps. (cdouglas)
  803. HDFS-729. NameNode API to list files that have missing blocks.
  804. (Rodrigo Schmidt via dhruba)
  805. HDFS-850. The WebUI display more details about namenode memory usage.
  806. (Dmytro Molkov via dhruba)
  807. HDFS-826. The DFSOutputStream has a API that returns the number of
  808. active datanode(s) in the current pipeline. (dhruba)
  809. HDFS-985. HDFS should issue multiple RPCs for listing a large
  810. directory. (hairong)
  811. HDFS-1043. NNThroughputBenchmark modifications to support benchmarking of
  812. server-side user group resolution. (shv)
  813. HDFS-892. Optionally use Avro reflection for Namenode RPC. This
  814. is not a complete implementation yet, but rather a starting point.
  815. (cutting)
  816. HDFS-854. Datanode should scan devices in parallel to generate
  817. block report. (Dmytro Molkov via jhoman)
  818. HDFS-1032. fsck has an option to list corrupt files.
  819. (Andre Oriai via dhruba)
  820. HDFS-1024. SecondaryNameNode verifies size of fsimage and edits file.
  821. (Dmytro Molkov via dhruba)
  822. HDFS-1011. hdfsproxy: Improve log messages by restoring the previous
  823. thread name. (Srikanth Sundarrajan via szetszwo)
  824. HDFS-997. Allow datanode storage directory permissions to be configurable.
  825. (Luke Lu via cdouglas)
  826. HDFS-1012. hdfsproxy: Support for fully qualified HDFS path in addition to
  827. simple unqualified path. (Srikanth Sundarrajan via szetszwo)
  828. HDFS-933. Namenode should issue a delegation token only for kerberos
  829. authenticated clients.(jnp via boryas)
  830. HDFS-1087. Modify audit log to use a StringBuilder rather than a Formatter.
  831. (cdouglas)
  832. HDFS-1083. Update TestHDFSCLI not to expect exception class name
  833. in error messages. (suresh)
  834. HDFS-1099. Add test for umask backward compatibility. (suresh)
  835. HDFS-1092. Use logging rather than System.err in MiniDFSCluster.
  836. (Kay Kay via jghoman)
  837. HDFS-1047. Install/deploy source jars to Maven repo.
  838. (Patrick Angeles via jghoman)
  839. HDFS-666. Unit test for FsShell -text. (cdouglas via jghoman)
  840. HDFS-1054. Remove unnecessary sleep after failure in nextBlockOutputStream.
  841. (Todd Lipcon via jghoman)
  842. HDFS-921. Convert TestDFSClientRetries::testNotYetReplicatedErrors
  843. to Mockito. (jghoman)
  844. HDFS-1100. Override unwrapException in TestFcHdfsSymlink to test
  845. symlink API conformance. (Eli Collins via suresh).
  846. HDFS-1089. Remove uses of FileContext#isFile, isDirectory, and exists.
  847. (Eli Collins via hairong)
  848. HDFS-1028. Efficient splitting of path components reduces the time
  849. to load in fsimage by 20%. (Dmytro Molkov via dhruba)
  850. HDFS-1109. HFTP supports filenames that contains the character "+".
  851. (Dmytro Molkov via dhruba)
  852. HDFS-853. The HDFS webUI displays the balanced-ness of the cluster.
  853. (Dmytro Molkov via dhruba)
  854. HDFS-1126. Change HDFS to depend on Hadoop 'common' artifacts instead
  855. of 'core'. (tomwhite)
  856. HDFS-995. Replace usage of FileStatus#isDir(). (Eli Collins via
  857. tomwhite)
  858. HDFS-1161. Make DN minimum valid volumes configurable.
  859. (Eli Collins via tomwhite)
  860. HDFS-1181. Move configuration and script files post split. (tomwhite)
  861. HDFS-1170. Add more assertions to TestLargeDirectoryDelete.
  862. (Steve Loughran via tomwhite)
  863. HDFS-1199. Extract a subset of tests for smoke (DOA) validation. (cos)
  864. HDFS-1174. New properties for suspend and resume process. (Vinay Thota via
  865. cos)
  866. HDFS-1277. [Herriot] New property for multi user list. (Vinay Thota via
  867. cos)
  868. HDFS-806. Add new unit tests to the 10-mins 'run-commit-test' target (cos)
  869. HDFS-1411. Correct backup node startup command in hdfs user guide.
  870. (Ching-Shen Chen via shv)
  871. OPTIMIZATIONS
  872. HDFS-946. NameNode should not return full path name when lisitng a
  873. diretory or getting the status of a file. (hairong)
  874. BUG FIXES
  875. HDFS-76. Better error message to users when commands fail because of
  876. lack of quota. Allow quota to be set even if the limit is lower than
  877. current consumption. (Boris Shkolnik via rangadi)
  878. HADOOP-4687. HDFS is split from Hadoop Core. It is a subproject under
  879. Hadoop (Owen O'Malley)
  880. HADOOP-6096. Fix Eclipse project and classpath files following project
  881. split. (tomwhite)
  882. HDFS-195. Handle expired tokens when write pipeline is reestablished.
  883. (Kan Zhang via rangadi)
  884. HDFS-181. Validate src path in FSNamesystem.getFileInfo(..). (Todd
  885. Lipcon via szetszwo)
  886. HDFS-441. Remove TestFTPFileSystem. (szetszwo)
  887. HDFS-440. Fix javadoc broken links in DFSClient. (szetszwo)
  888. HDFS-480. Fix a typo in the jar name in build.xml.
  889. (Konstantin Shvachko via gkesavan)
  890. HDFS-438. Check for NULL before invoking GenericArgumentParser in
  891. DataNode. (Raghu Angadi)
  892. HDFS-415. BlockReceiver hangs in case of certain runtime exceptions.
  893. (Konstantin Boudnik via rangadi)
  894. HDFS-462. loadFSImage should close edits file. (Jakob Homan via shv)
  895. HDFS-489. Update TestHDFSCLI for the -skipTrash option in rm. (Jakob Homan
  896. via szetszwo)
  897. HDFS-445. pread() does not pick up changes to block locations.
  898. (Kan Zhang via rangadi)
  899. HDFS-463. CreateEditLog utility broken after HDFS-396 (URI for
  900. FSImage). (Suresh Srinivas via rangadi)
  901. HDFS-484. Fix bin-package and package target to package jar files.
  902. (gkesavan)
  903. HDFS-490. Eliminate the deprecated warnings introduced by H-5438.
  904. (He Yongqiang via szetszwo)
  905. HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
  906. (Suresh Srinivas via shv)
  907. HDFS-534. Include avro in ivy. (szetszwo)
  908. HDFS-532. Allow applications to know that a read request failed
  909. because block is missing. (dhruba)
  910. HDFS-561. Fix write pipeline READ_TIMEOUT in DataTransferProtocol.
  911. (Kan Zhang via szetszwo)
  912. HDFS-553. BlockSender reports wrong failed position in ChecksumException.
  913. (hairong)
  914. HDFS-568. Set mapred.job.tracker.retire.jobs to false in
  915. src/test/mapred-site.xml for mapreduce tests to run. (Amareshwari
  916. Sriramadasu via szetszwo)
  917. HDFS-15. All replicas end up on 1 rack. (Jitendra Nath Pandey via hairong)
  918. HDFS-586. TestBlocksWithNotEnoughRacks sometimes fails.
  919. (Jitendra Nath Pandey via hairong)
  920. HADOOP-6243. Fixed a NullPointerException in handling deprecated keys.
  921. (Sreekanth Ramakrishnan via yhemanth)
  922. HDFS-605. Do not run fault injection tests in the run-test-hdfs-with-mr
  923. target. (Konstantin Boudnik via szetszwo)
  924. HDFS-606. Fix ConcurrentModificationException in invalidateCorruptReplicas()
  925. (shv)
  926. HDFS-601. TestBlockReport obtains data directories directly from
  927. MiniHDFSCluster. (Konstantin Boudnik via shv)
  928. HDFS-614. TestDatanodeBlockScanner obtains data directories directly from
  929. MiniHDFSCluster. (shv)
  930. HDFS-612. Remove the use of org.mortbay.log.Log in FSDataset. (szetszwo)
  931. HDFS-622. checkMinReplication should count live nodes only. (shv)
  932. HDFS-629. Remove ReplicationTargetChooser.java along with fixing
  933. import warnings generated by Eclipse. (dhruba)
  934. HDFS-637. DataNode sends a Success ack when block write fails. (hairong)
  935. HDFS-640. Fixed TestHDFSFileContextMainOperations.java build failure. (suresh)
  936. HDFS-547. TestHDFSFileSystemContract#testOutputStreamClosedTwice
  937. sometimes fails with CloseByInterruptException. (hairong)
  938. HDFS-588. Fix TestFiDataTransferProtocol and TestAppend2 failures. (shv)
  939. HDFS-550. DataNode restarts may introduce corrupt/duplicated/lost replicas
  940. when handling detached replicas. (hairong)
  941. HDFS-659. If the the last block is not complete, update its length with
  942. one of its replica's length stored in datanode. (szetszwo)
  943. HDFS-649. Check null pointers for DataTransferTest. (Konstantin Boudnik
  944. via szetszwo)
  945. HDFS-661. DataNode upgrade fails on non-existant current directory.
  946. (hairong)
  947. HDFS-597. Mofication introduced by HDFS-537 breakes an advice binding in
  948. FSDatasetAspects. (Konstantin Boudnik via szetszwo)
  949. HDFS-665. TestFileAppend2 sometimes hangs. (hairong)
  950. HDFS-676. Fix NPE in FSDataset.updateReplicaUnderRecovery() (shv)
  951. HDFS-673. BlockReceiver#PacketResponder should not remove a packet from
  952. the ack queue before its ack is sent. (hairong)
  953. HDFS-682. Fix bugs in TestBlockUnderConstruction. (szetszwo)
  954. HDFS-668. TestFileAppend3#TC7 sometimes hangs. (hairong)
  955. HDFS-679. Appending to a partial chunk incorrectly assumes the
  956. first packet fills up the partial chunk. (hairong)
  957. HDFS-722. Fix callCreateBlockWriteStream pointcut in FSDatasetAspects.
  958. (szetszwo)
  959. HDFS-690. TestAppend2#testComplexAppend failed on "Too many open files".
  960. (hairong)
  961. HDFS-725. Support the build error fix for HADOOP-6327. (Sanjay Radia via
  962. szetszwo)
  963. HDFS-625. Fix NullPointerException thrown from ListPathServlet. (suresh)
  964. HDFS-735. TestReadWhileWriting has wrong line termination symbols (cos)
  965. HDFS-691. Fix an overflow error in DFSClient.DFSInputStream.available().
  966. (szetszwo)
  967. HDFS-733. TestBlockReport fails intermittently. (cos)
  968. HDFS-774. Intermittent race condition in TestFiPipelines (cos)
  969. HDFS-741. TestHFlush test doesn't seek() past previously written part of
  970. the file (cos, szetszwo)
  971. HDFS-706. Intermittent failures in TestFiHFlush (cos)
  972. HDFS-646. Fix test-patch failure by adding test-contrib ant target.
  973. (gkesavan)
  974. HDFS-791. Build is broken after HDFS-787 patch has been applied (cos)
  975. HDFS-792. TestHDFSCLI is failing. (Todd Lipcon via cos)
  976. HDFS-781. Namenode metrics PendingDeletionBlocks is not decremented.
  977. (Suresh)
  978. HDFS-192. Fix TestBackupNode failures. (shv)
  979. HDFS-797. TestHDFSCLI much slower after HDFS-265 merge. (Todd Lipcon via cos)
  980. HDFS-824. Stop lease checker in TestReadWhileWriting. (szetszwo)
  981. HDFS-823. CheckPointer should use addInternalServlet for image-fetching
  982. servlet (jghoman)
  983. HDFS-456. Fix URI generation for windows file paths. (shv)
  984. HDFS-812. FSNamesystem#internalReleaseLease throws NullPointerException on
  985. a single-block file's lease recovery. (cos)
  986. HDFS-724. Pipeline hangs if one of the block receiver is not responsive.
  987. (hairong)
  988. HDFS-564. Adding pipeline tests 17-35. (hairong)
  989. HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
  990. (hairong)
  991. HDFS-762. Balancer causes Null Pointer Exception.
  992. (Cristian Ivascu via dhruba)
  993. HDFS-868. Fix link to Hadoop Upgrade Wiki. (Chris A. Mattmann via shv)
  994. HDFS-880. TestNNLeaseRecovery fails on windows (cos, shv)
  995. HDFS-699. Primary datanode should compare replicas' on disk lengths.
  996. (hairong)
  997. HDFS-897. Fix a bug related to generation stamp comparison in
  998. ReplicasMap. (suresh)
  999. HDFS-793. Data node should receive the whole packet ack message before it
  1000. constructs and sends its own ack message for the packet. (hairong)
  1001. HDFS-101. DFS write pipeline: DFSClient sometimes does not detect second
  1002. datanode failure. (hairong)
  1003. HDFS-822. Appends to already-finalized blocks can rename across volumes.
  1004. (hairong)
  1005. HDFS-1046. Fix Tomcat version in hdfsproxy/build.xml. (Srikanth
  1006. Sundarrajan via szetszwo)
  1007. HDFS-1072. Fix TestReadWhileWriting failure. (Erik Steffl via shv)
  1008. HDFS-913. Rename fault injection test TestRename.java to TestFiRename.java
  1009. to include it in tests run by ant target run-test-hdfs-fault-inject.
  1010. (suresh)
  1011. HDFS-695. RaidNode should read in configuration from hdfs-site.xml.
  1012. (dhruba)
  1013. HDFS-726. Eclipse .classpath template has outdated jar files and is
  1014. missing some new ones. (cos)
  1015. HDFS-750. Fix build failure due to TestRename. (suresh)
  1016. HDFS-712. Move libhdfs from mapreduce subproject to hdfs subproject.
  1017. (Eli Collins via dhruba)
  1018. HDFS-757. Enable Unit test for HDFS Raid. (dhruba)
  1019. HDFS-611. Prevent DataNode heartbeat times from increasing even when
  1020. the DataNode has many blocks to delete. (Zheng Shao via dhruba)
  1021. HDFS-751. Fix TestCrcCorruption to pick up the correct datablocks to
  1022. corrupt. (dhruba)
  1023. HDFS-763. Fix slightly misleading report from DataBlockScanner
  1024. about corrupted scans. (dhruba)
  1025. HDFS-727. bug setting block size hdfsOpenFile (Eli Collins via cos)
  1026. HDFS-756. libhdfs unit tests do not run. (Eli Collins via cos)
  1027. HDFS-783. libhdfs tests brakes code coverage runs with Clover (cos)
  1028. HDFS-785. Add Apache license to several namenode unit tests.
  1029. (Ravi Phulari via jghoman)
  1030. HDFS-802. Update Eclipse configuration to match changes to Ivy
  1031. configuration (Edwin Chan via cos)
  1032. HDFS-423. Unbreak FUSE build and fuse_dfs_wrapper.sh (Eli Collins via cos)
  1033. HDFS-825. Build fails to pull latest hadoop-core-* artifacts (cos)
  1034. HDFS-94. The Heap Size printed in the NameNode WebUI is accurate.
  1035. (Dmytro Molkov via dhruba)
  1036. HDFS-767. An improved retry policy when the DFSClient is unable to fetch a
  1037. block from the datanode. (Ning Zhang via dhruba)
  1038. HDFS-775. FSDataset calls getCapacity() twice. (stevel)
  1039. HDFS-885. Datanode toString() NPEs on null dnRegistration. (stevel)
  1040. HDFS-877. Client-driven block verification not functioning. (Todd
  1041. Lipcon via hairong)
  1042. HDFS-630. In DFSOutputStream.nextBlockOutputStream(), the client can
  1043. exclude specific datanodes when locating the next block.
  1044. (Cosmin Lehene via Stack)
  1045. HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
  1046. problems for Eclipse compilation. (jghoman)
  1047. HDFS-927 DFSInputStream retries too many times for new block locations
  1048. (Todd Lipcon via Stack)
  1049. HDFS-938. Replace calls to UGI.getUserName() with UGI.getShortUserName()
  1050. (jghoman)
  1051. HDFS-894. DatanodeID.ipcPort is not updated when existing node
  1052. re-registers. (Todd Lipcon via tomwhite)
  1053. HDFS-965. Split TestDelegationToken in to two parts and fix configuration
  1054. to allow proxy users in the test. (Jitendra Pandey via omalley)
  1055. HDFS-999. Secondary namenode should login using kerberos if security is
  1056. configured (boryas)
  1057. HDFS-856. Hardcoded replication level for new files in fuse-dfs.
  1058. (Brian Bockelman via tomwhite)
  1059. HDFS-857. Incorrect type for fuse-dfs capacity can cause "df" to return
  1060. negative values on 32-bit machines. (Brian Bockelman via tomwhite)
  1061. HDFS-858. Incorrect return codes for fuse-dfs. (Brian Bockelman via
  1062. tomwhite)
  1063. HDFS-859. fuse-dfs utime behavior causes issues with tar.
  1064. (Brian Bockelman via tomwhite)
  1065. HDFS-861. fuse-dfs does not support O_RDWR. (Brian Bockelman via tomwhite)
  1066. HDFS-961. dfs_readdir incorrectly parses paths. (Eli Collins via tomwhite)
  1067. HDFS-1015. Fix intermittent failure in TestSecurityTokenEditLog.
  1068. (Jitendra Nath Pandey via suresh)
  1069. HDFS-939. libhdfs test is broken. (Eli Collins via tomwhite)
  1070. HDFS-1074. hdfsproxy: Fix bugs in TestProxyUtil. (Srikanth Sundarrajan
  1071. via szetszwo)
  1072. HDFS-481. hdfsproxy: Bug Fixes + HdfsProxy to use proxy user to
  1073. impresonate the real user. (Srikanth Sundarrajan via szetszwo)
  1074. HDFS-482. Move HsftpFileSystem's ssl.client.do.not.authenticate.server
  1075. configuration setting to ssl-client.xml. (Srikanth Sundarrajan via
  1076. szetszwo)
  1077. HDFS-1010. hdfsproxy: Retrieve groups from UnixUserGroupInformation
  1078. instead of LdapEntry. (Srikanth Sundarrajan via szetszwo)
  1079. HDFS-466. hdfs_write infinite loop when dfs fails and cannot write
  1080. files > 2 GB. (Pete Wyckoff via tomwhite)
  1081. HDFS-651. HDFS Docs - fix listing of docs in the doc menu.
  1082. (Corinne Chandel via tomwhite)
  1083. HDFS-1014. Error in reading delegation tokens from edit logs.
  1084. (Jitendra Nath Pandey via jhoman)
  1085. HDFS-1088. Prevent renaming a symbolik link to its target.
  1086. (Eli Collins via suresh)
  1087. HDFS-966. NameNode does not recovers lease when it is in safemode.
  1088. (dhruba)
  1089. HDFS-833. Datanode shutdown should log problems with Storage.unlockAll()
  1090. (Steve Loughran via dhruba)
  1091. HDFS-1101. TestDiskError.testLocalDirs() fails. (cdouglas via jghoman)
  1092. HDFS-1031. Enhance the webUi to list a few of the corrupted files in HDFS.
  1093. (Andre Orian via dhruba)
  1094. HDFS-1078. Create static and dynamic versions of libhdfs.
  1095. (Sam Rash via dhruba)
  1096. HDFS-1104. Fsck triggers full GC on NameNode. (hairong)
  1097. HDFS-1141. Closing a file is successful only if the client still has a
  1098. valid lease. (Todd Lipcon via dhruba)
  1099. HDFS-1138. Prevent erroneous updation of modification time of a directory
  1100. when fsimage loads. (Dmytro Molkov via dhruba)
  1101. HDFS-1000. Updates libhdfs to the new API for UGI (ddas)
  1102. HDFS-609. Create a file with the append flag does not work in HDFS.
  1103. (tomwhite)
  1104. HDFS-1255. Fix failing test-libhdfs.sh test. (tomwhite)
  1105. HDFS-1256. libhdfs is missing from the tarball. (tomwhite)
  1106. HDFS-1057. Concurrent readers hit ChecksumExceptions if following a
  1107. writer to very end of file. (sam rash via hairong)
  1108. HDFS-1212. Harmonize HDFS JAR library versions with Common. (tomwhite)
  1109. HDFS-1159. clean-cache target removes wrong ivy cache (cos)
  1110. HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
  1111. mvn-deploy task leading to unstable mapreduce build (Giridharan
  1112. Kesavan via cos)
  1113. HDFS-1299. 'compile-fault-inject' never should be called directly. (cos)
  1114. HDFS-1311. Running tests with 'testcase' cause triple execution of the
  1115. same test case (Cos)
  1116. HDFS-1267. fuse-dfs does not compile. (Devaraj Das via tomwhite)
  1117. HDFS-1363. Eliminate second synchronized sections in appendFile(). (shv)
  1118. HDFS-1598. Directory listing on hftp:// does not show .*.crc files.
  1119. (szetszwo)
  1120. HDFS-1413. Fix broken links to HDFS Wiki. (shv)
  1121. HDFS-1420. Clover build doesn't generate per-test coverage (cos)
  1122. HDFS-1598. Directory listing on hftp:// does not show .*.crc files.
  1123. (szetszwo)
  1124. Release 0.20.3 - 2011-1-5
  1125. IMPROVEMENTS
  1126. BUG FIXES
  1127. HDFS-955. New implementation of saveNamespace() to avoid loss of edits
  1128. when name-node fails during saving. (shv)
  1129. HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
  1130. the first datanode fails. (szetszwo)
  1131. HDFS-909. Wait until edits syncing is finishes before purging edits.
  1132. (Todd Lipcon via shv)
  1133. HDFS-1258. Clearing namespace quota on "/" corrupts fs image.
  1134. (Aaron T. Myers via szetszwo)
  1135. HDFS-132. Fix namenode to not report files deleted metrics for deletions
  1136. done while replaying edits during startup. (suresh & shv)
  1137. HDFS-1406. TestCLI fails on Ubuntu with default /etc/hosts. (cos)
  1138. Release 0.20.2 - 2009-09-01
  1139. IMPROVEMENTS
  1140. HDFS-737. Add full path name of the file to the block information and
  1141. summary of total number of files, blocks, live and deadnodes to
  1142. metasave output. (Jitendra Nath Pandey via suresh)
  1143. HDFS-919. Create test to validate the BlocksVerified metric (Gary Murry
  1144. via cos)
  1145. HDFS-907. Add tests for getBlockLocations and totalLoad metrics.
  1146. (Ravi Phulari via cos)
  1147. BUG FIXES
  1148. HDFS-686. NullPointerException is thrown while merging edit log and image.
  1149. (hairong)
  1150. HDFS-677. Rename failure when both source and destination quota exceeds
  1151. results in deletion of source. (suresh)
  1152. HDFS-709. Fix TestDFSShell failure due to rename bug introduced by
  1153. HDFS-677. (suresh)
  1154. HDFS-579. Fix DfsTask to follow the semantics of 0.19, regarding non-zero
  1155. return values as failures. (Christian Kunz via cdouglas)
  1156. HDFS-723. Fix deadlock in DFSClient#DFSOutputStream. (hairong)
  1157. HDFS-596. Fix memory leak in hdfsFreeFileInfo() for libhdfs.
  1158. (Zhang Bingjun via dhruba)
  1159. HDFS-185. Disallow chown, chgrp, chmod, setQuota, and setSpaceQuota when
  1160. name-node is in safemode. (Ravi Phulari via shv)
  1161. HDFS-187. Initialize secondary namenode http address in TestStartup.
  1162. (Todd Lipcon via szetszwo)
  1163. HDFS-464. Fix memory leaks in libhdfs. (Christian Kunz via suresh)
  1164. HDFS-1377. Quota bug for partial blocks allows quotas to be violated. (eli)
  1165. HDFS-1377. Quota bug for partial blocks allows quotas to be violated. (eli)
  1166. Release 0.20.1 - 2009-09-01
  1167. IMPROVEMENTS
  1168. HDFS-438. Improve help message for space quota command. (Raghu Angadi)
  1169. BUG FIXES
  1170. HDFS-167. Fix a bug in DFSClient that caused infinite retries on write.
  1171. (Bill Zeller via szetszwo)
  1172. HDFS-527. Remove/deprecate unnecessary DFSClient constructors. (szetszwo)
  1173. HDFS-525. The SimpleDateFormat object in ListPathsServlet is not thread
  1174. safe. (Suresh Srinivas and cdouglas)
  1175. HDFS-761. Fix failure to process rename operation from edits log due to
  1176. quota verification. (suresh)