CHANGES.txt 58 KB

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