CHANGES.txt 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  1. Hadoop HDFS Change Log
  2. Trunk (unreleased changes)
  3. NEW FEATURES
  4. HDFS-992. Re-factor block access token implementation to conform to the
  5. generic Token interface in Common (Kan Zhang and Jitendra Pandey via jghoman)
  6. IMPROVEMENTS
  7. HDFS-1096. fix for prev. commit. (boryas)
  8. HDFS-1096. allow dfsadmin/mradmin refresh of superuser proxy group
  9. mappings (boryas)
  10. HDFS-1146. Javadoc for getDelegationTokenSecretManager in FSNamesystem (jnp via boryas)
  11. HDFS-1132. Refactor TestFileStatus (Eli Collins via cos)
  12. HDFS-1163. normalize property names for JT/NN kerberos principal
  13. names in configuration (from HADOOP 6633) (boryas)
  14. HDFS-1003. authorization checks for inter-server protocol
  15. (based on HADOOP-6600) (boryas)
  16. HDFS-1061. Memory footprint optimization for INodeFile object.
  17. (Bharath Mundlapudi via jghoman)
  18. HDFS-1079. Throw exceptions as specified by the AbstractFileSystem
  19. in HDFS implemenation and protocols. (suresh)
  20. HDFS-1112. Edit log buffer should not grow unfoundedly. (hairong)
  21. HDFS-1119. Introduce a GSet interface to BlocksMap. (szetszwo)
  22. HDFS-1184. Replace tabs in code with spaces. (Jeff Ames via jghoman)
  23. HDFS-1185. Remove duplicate now() functions in DataNode, FSNamesysetm.
  24. (Jeff Ames via jghoman)
  25. HDFS-1183. Remove some duplicate code in NamenodeJspHelper.java.
  26. (Jeff Ames via jghoman)
  27. HDFS-1190. Remove unused getNamenode() method from DataNode.
  28. (Jeff Ames via jghoman)
  29. BUG FIXES
  30. HDFS-1039. Adding test for JspHelper.getUGI(jnp via boryas)
  31. HDFS-1019. Incorrect default values for delegation tokens in
  32. hdfs-default.xml (jnp via boryas)
  33. HDFS-1039. Service should be set in the token in JspHelper.getUGI(jnp via boryas)
  34. HDFS-1038. FIX. A test missed in a previous commit for this JIRA. (boryas)
  35. HDFS-1038. In nn_browsedfscontent.jsp fetch delegation token only
  36. if security is enabled. (jnp via boryas)
  37. HDFS-1044. Cannot submit mapreduce job from secure client to
  38. unsecure sever (boryas)
  39. HDFS-1021. specify correct server principal for RefreshAuthorizationPolicyProtocol
  40. and RefreshUserToGroupMappingsProtocol protocols in DFSAdmin (for HADOOP-6612) (boryas)
  41. HDFS-970. fsync fsimage to disk before closing fsimage file.
  42. (Todd Lipcon via dhruba)
  43. HDFS-1027. Update copyright year to 2010. (Ravi Phulari via jghoman)
  44. HDFS-1080. SecondaryNameNode image transfer should use the defined http
  45. address rather than local ip address. (jghoman)
  46. Release 0.21.0 - Unreleased
  47. INCOMPATIBLE CHANGES
  48. HDFS-538. Per the contract elucidated in HADOOP-6201, throw
  49. FileNotFoundException from FileSystem::listStatus rather than returning
  50. null. (Jakob Homan via cdouglas)
  51. HDFS-602. DistributedFileSystem mkdirs throws FileAlreadyExistsException
  52. instead of FileNotFoundException. (Boris Shkolnik via suresh)
  53. HDFS-544. Add a "rbw" subdir to DataNode data directory. (hairong)
  54. HDFS-576. Block report includes under-construction replicas. (shv)
  55. HDFS-636. SafeMode counts complete blocks only. (shv)
  56. HDFS-644. Lease recovery, concurrency support. (shv)
  57. HDFS-570. Get last block length from a data-node when opening a file
  58. being written to. (Tsz Wo (Nicholas), SZE via shv)
  59. HDFS-657. Remove unused legacy data-node protocol methods. (shv)
  60. HDFS-658. Block recovery for primary data-node. (shv)
  61. HDFS-660. Remove deprecated methods from InterDatanodeProtocol. (shv)
  62. HDFS-512. Block.equals() and compareTo() compare blocks based
  63. only on block Ids, ignoring generation stamps. (shv)
  64. HDFS-873. Configuration specifies data-node storage directories as URIs.
  65. (shv)
  66. HDFS-905. Use the new UserGroupInformation from HDFS-6299.
  67. (jghoman via omalley)
  68. HDFS-984. Persistent delegation tokens. (Jitendra Pandey via shv)
  69. HDFS-1016. HDFS side change for HADOOP-6569. This jira changes the
  70. error message on the screen when cat a directory or a
  71. non-existent file. (hairong)
  72. NEW FEATURES
  73. HDFS-1134. Large-scale Automated Framework. (cos)
  74. HDFS-436. Introduce AspectJ framework for HDFS code and tests.
  75. (Konstantin Boudnik via szetszwo)
  76. HDFS-447. Add LDAP lookup to hdfsproxy. (Zhiyong Zhang via cdouglas)
  77. HDFS-459. Introduce Job History Log Analyzer. (shv)
  78. HDFS-461. Tool to analyze file size distribution in HDFS. (shv)
  79. HDFS-492. Add two JSON JSP pages to the Namenode for providing corrupt
  80. blocks/replicas information. (Bill Zeller via szetszwo)
  81. HDFS-578. Add support for new FileSystem method for clients to get server
  82. defaults. (Kan Zhang via suresh)
  83. HDFS-595. umask settings in configuration may now use octal or symbolic
  84. instead of decimal. (Jakob Homan via suresh)
  85. HADOOP-6234. Updated hadoop-core and test jars to propagate new option
  86. dfs.umaskmode in configuration. (Jakob Homan via suresh)
  87. HDFS-235. Add support for byte ranges in HftpFileSystem to serve
  88. range of bytes from a file. (Bill Zeller via suresh)
  89. HDFS-385. Add support for an experimental API that allows a module external
  90. to HDFS to specify how HDFS blocks should be placed. (dhruba)
  91. HADOOP-4952. Update hadoop-core and test jars to propagate new FileContext
  92. file system application interface. (Sanjay Radia via suresh).
  93. HDFS-567. Add block forensics contrib tool to print history of corrupt and
  94. missing blocks from the HDFS logs.
  95. (Bill Zeller, Jitendra Nath Pandey via suresh).
  96. HDFS-610. Support o.a.h.fs.FileContext. (Sanjay Radia via szetszwo)
  97. HDFS-536. Support hflush at DFSClient. (hairong)
  98. HDFS-517. Introduce BlockInfoUnderConstruction to reflect block replica
  99. states while writing. (shv)
  100. HDFS-565. Introduce block committing logic during new block allocation
  101. and file close. (shv)
  102. HDFS-537. DataNode exposes a replica's meta info to BlockReceiver for the
  103. support of dfs writes/hflush. It also updates a replica's bytes received,
  104. bytes on disk, and bytes acked after receiving a packet. (hairong)
  105. HDFS-585. Datanode should serve up to visible length of a replica for read
  106. requests. (szetszwo)
  107. HDFS-604. Block report processing for append. (shv)
  108. HDFS-619. Support replica recovery initialization in datanode for the new
  109. append design. (szetszwo)
  110. HDFS-592. Allow clients to fetch a new generation stamp from NameNode for
  111. pipeline recovery. (hairong)
  112. HDFS-624. Support a new algorithm for pipeline recovery and pipeline setup
  113. for append. (hairong)
  114. HDFS-627. Support replica update in data-node.
  115. (Tsz Wo (Nicholas), SZE and Hairong Kuang via shv)
  116. HDFS-642. Support pipeline close and close error recovery. (hairong)
  117. HDFS-631. Rename configuration keys towards API standardization and
  118. backward compatibility. (Jitendra Nath Pandey via suresh)
  119. HDFS-669. Add unit tests framework (Mockito) (cos, Eli Collins)
  120. HDFS-731. Support new Syncable interface in HDFS. (hairong)
  121. HDFS-702. Add HDFS implementation of AbstractFileSystem.
  122. (Sanjay Radio via suresh)
  123. HDFS-758. Add decommissioning status page to Namenode Web UI.
  124. (Jitendra Nath Pandey via suresh)
  125. HDFS-814. Add an api to get the visible length of a DFSDataInputStream.
  126. (szetszwo)
  127. HDFS-654. Add support new atomic rename functionality in HDFS for
  128. supporting rename in FileContext. (suresh)
  129. HDFS-222. Support for concatenating of files into a single file
  130. without copying. (Boris Shkolnik via hairong)
  131. HDFS-933. Adds Delegation token based authentication in the NameNode.
  132. (Kan Zhang via ddas)
  133. HDFS-935. Adds a real user component in Delegation token.
  134. (Jitendra Nath Pandey via ddas)
  135. HDFS-245. Adds a symlink implementation to HDFS. This complements the new
  136. symlink feature added in HADOOP-6421 (Eli Collins via Sanjay Radia)
  137. HDFS-1009. Support Kerberos authorization in HDFSProxy. (Srikanth
  138. Sundarrajan via szetszwo)
  139. HDFS-1091. Implement listStatus that returns an iterator of FileStatus.
  140. (hairong)
  141. IMPROVEMENTS
  142. HDFS-381. Remove blocks from DataNode maps when corresponding file
  143. is deleted. (Suresh Srinivas via rangadi)
  144. HDFS-377. Separate codes which implement DataTransferProtocol.
  145. (szetszwo)
  146. HDFS-396. NameNode image and edits directories are specified as URIs.
  147. (Luca Telloli via rangadi)
  148. HDFS-444. Allow to change probability levels dynamically in the fault
  149. injection framework. (Konstantin Boudnik via szetszwo)
  150. HDFS-352. Documentation for saveNamespace command. (Ravi Phulari via shv)
  151. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  152. build #12. (Giridharan Kesavan)
  153. HDFS-204. Add a new metrics FilesInGetListingOps to the Namenode.
  154. (Jitendra Nath Pandey via szetszwo)
  155. HDFS-278. HDFS Outputstream close does not hang forever. (dhruba)
  156. HDFS-443. Add a new metrics numExpiredHeartbeats to the Namenode.
  157. (Jitendra Nath Pandey via szetszwo)
  158. HDFS-475. Add new ant targets for fault injection jars and tests.
  159. (Konstantin Boudnik via szetszwo)
  160. HDFS-458. Create a new ant target, run-commit-test. (Jakob Homan
  161. via szetszwo)
  162. HDFS-493. Change build.xml so that the fault-injected tests are executed
  163. only by the run-test-*-fault-inject targets. (Konstantin Boudnik via
  164. szetszwo)
  165. HDFS-446. Improvements to Offline Image Viewer. (Jakob Homan via shv)
  166. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  167. (gkesavan)
  168. HDFS-501. Use enum to define the constants in DataTransferProtocol.
  169. (szetszwo)
  170. HDFS-508. Factor out BlockInfo from BlocksMap. (shv)
  171. HDFS-510. Rename DatanodeBlockInfo to be ReplicaInfo.
  172. (Jakob Homan & Hairong Kuang via shv)
  173. HDFS-500. Deprecate NameNode methods deprecated in NameNodeProtocol.
  174. (Jakob Homan via shv)
  175. HDFS-514. Change DFSClient.namenode from public to private. (Bill Zeller
  176. via szetszwo)
  177. HDFS-496. Use PureJavaCrc32 in HDFS. (Todd Lipcon via szetszwo)
  178. HDFS-511. Remove redundant block searches in BlockManager. (shv)
  179. HDFS-504. Update the modification time of a file when the file
  180. is closed. (Chun Zhang via dhruba)
  181. HDFS-498. Add development guide and documentation for the fault injection
  182. framework. (Konstantin Boudnik via szetszwo)
  183. HDFS-524. Further DataTransferProtocol code refactoring. (szetszwo)
  184. HDFS-529. Use BlockInfo instead of Block to avoid redundant block searches
  185. in BlockManager. (shv)
  186. HDFS-530. Refactor TestFileAppend* to remove code duplication.
  187. (Konstantin Boudnik via szetszwo)
  188. HDFS-451. Add fault injection tests for DataTransferProtocol. (szetszwo)
  189. HDFS-409. Add more access token tests. (Kan Zhang via szetszwo)
  190. HDFS-546. DatanodeDescriptor iterates blocks as BlockInfo. (shv)
  191. HDFS-457. Do not shutdown datanode if some, but not all, volumes fail.
  192. (Boris Shkolnik via szetszwo)
  193. HDFS-548. TestFsck takes nearly 10 minutes to run. (hairong)
  194. HDFS-539. Refactor fault injeciton pipeline test util for future reuse.
  195. (Konstantin Boudnik via szetszwo)
  196. HDFS-552. Change TestFiDataTransferProtocol to junit 4 and add a few new
  197. tests. (szetszwo)
  198. HDFS-563. Simplify the codes in FSNamesystem.getBlockLocations(..).
  199. (szetszwo)
  200. HDFS-581. Introduce an iterator over blocks in the block report array.(shv)
  201. HDFS-549. Add a new target, run-with-fault-inject-testcaseonly, which
  202. allows an execution of non-FI tests in FI-enable environment. (Konstantin
  203. Boudnik via szetszwo)
  204. HDFS-173. Namenode will not block until a large directory deletion
  205. completes. It allows other operations when the deletion is in progress.
  206. (suresh)
  207. HDFS-551. Create new functional test for a block report. (Konstantin
  208. Boudnik via hairong)
  209. HDFS-288. Redundant computation in hashCode() implementation.
  210. (szetszwo via tomwhite)
  211. HDFS-412. Hadoop JMX usage makes Nagios monitoring impossible.
  212. (Brian Bockelman via tomwhite)
  213. HDFS-472. Update hdfsproxy documentation. Adds a setup guide and design
  214. document. (Zhiyong Zhang via cdouglas)
  215. HDFS-617. Support non-recursive create(). (Kan Zhang via szetszwo)
  216. HDFS-618. Support non-recursive mkdir(). (Kan Zhang via szetszwo)
  217. HDFS-574. Split the documentation between the subprojects.
  218. (Corinne Chandel via omalley)
  219. HDFS-598. Eclipse launch task for HDFS. (Eli Collins via tomwhite)
  220. HDFS-641. Move all of the components that depend on map/reduce to
  221. map/reduce. (omalley)
  222. HDFS-509. Redesign DataNode volumeMap to include all types of Replicas.
  223. (hairong)
  224. HDFS-562. Add a test for NameNode.getBlockLocations(..) to check read from
  225. un-closed file. (szetszwo)
  226. HDFS-543. Break FSDatasetInterface#writToBlock() into writeToRemporary,
  227. writeToRBW, ad append. (hairong)
  228. HDFS-603. Add a new interface, Replica, which is going to replace the use
  229. of Block in datanode. (szetszwo)
  230. HDFS-589. Change block write protocol to support pipeline recovery.
  231. (hairong)
  232. HDFS-652. Replace BlockInfo.isUnderConstruction() with isComplete() (shv)
  233. HDFS-648. Change some methods in AppendTestUtil to public. (Konstantin
  234. Boudnik via szetszwo)
  235. HDFS-662. Unnecessary info message from DFSClient. (hairong)
  236. HDFS-518. Create new tests for Append's hflush. (Konstantin Boudnik
  237. via szetszwo)
  238. HDFS-688. Add configuration resources to DFSAdmin. (shv)
  239. HDFS-29. Validate the consistency of the lengths of replica and its file
  240. in replica recovery. (szetszwo)
  241. HDFS-680. Add new access method to a copy of a block's replica. (shv)
  242. HDFS-704. Unify build property names to facilitate cross-projects
  243. modifications (cos)
  244. HDFS-705. Create an adapter to access some of package-private methods of
  245. DataNode from tests (cos)
  246. HDFS-710. Add actions with constraints to the pipeline fault injection
  247. tests and change SleepAction to support uniform random sleeping over an
  248. interval. (szetszwo)
  249. HDFS-713. Need to properly check the type of the test class from an aspect
  250. (cos)
  251. HDFS-716. Define a pointcut for pipeline close and add a few fault
  252. injection tests to simulate out of memory problem. (szetszwo)
  253. HDFS-719. Add 6 fault injection tests for pipeline close to simulate slow
  254. datanodes and disk errors. (szetszwo)
  255. HDFS-616. Create functional tests for new design of the block report. (cos)
  256. HDFS-584. Fail the fault-inject build if any advices are mis-bound. (cos)
  257. HDFS-730. Add 4 fault injection tests to simulate non-responsive datanode
  258. and out-of-memory problem for pipeline close ack. (szetszwo)
  259. HDFS-728. Create a comprehensive functional test for append. (hairong)
  260. HDFS-736. commitBlockSynchronization() updates block GS and length
  261. in-place. (shv)
  262. HADOOP-5107. Use Maven ant tasks to publish the subproject jars.
  263. (Giridharan Kesavan via omalley)
  264. HDFS-521. Create new tests for pipeline (cos)
  265. HDFS-764. Places the Block Access token implementation in hdfs project.
  266. (Kan Zhang via ddas)
  267. HDFS-787. Upgrade some libraries to be consistent with common and
  268. mapreduce. (omalley)
  269. HDFS-519. Create new tests for lease recovery (cos)
  270. HDFS-804. New unit tests for concurrent lease recovery (cos)
  271. HDFS-813. Enable the append test in TestReadWhileWriting. (szetszwo)
  272. HDFS-145. Cleanup inconsistent block length handling code in
  273. FSNameSystem#addStoredBlock. (hairong)
  274. HDFS-127. Reset failure count in DFSClient for each block acquiring
  275. operation. (Igor Bolotin via szetszwo)
  276. HDFS-520. Create new tests for block recovery. (hairong)
  277. HDFS-1067. Create block recovery tests that handle errors. (hairong)
  278. HDFS-1107. Turn on append by default. (shv)
  279. HDFS-968. Use StringBuilder instead of StringBuffer for better
  280. performance. (Kay Kay via suresh)
  281. HDFS-703. Replace current fault injection implementation with one
  282. from (cos)
  283. HDFS-754. Reduce ivy console output to observable level (cos)
  284. HDFS-832. HDFS side of HADOOP-6222. (cos)
  285. HDFS-840. Change tests to use FileContext test helper introduced in
  286. HADOOP-6394. (Jitendra Nath Pandey via suresh)
  287. HDFS-685. Use the user-to-groups mapping service in the NameNode.
  288. (boryas, acmurthy)
  289. HDFS-755. Read multiple checksum chunks at once in DFSInputStream.
  290. (Todd Lipcon via tomwhite)
  291. HDFS-786. Implement getContentSummary in HftpFileSystem.
  292. (Tsz Wo (Nicholas), SZE via cdouglas)
  293. HDFS-587. Add support for specifying queue name in mapreduce tests.
  294. (Erik Steffl via suresh)
  295. HDFS-902 Move contrib/raid to MapReduce. (Eli Collins via omalley)
  296. HDFS-800. The last block of a file under construction may change to the
  297. COMPLETE state in response to getAdditionalBlock or completeFileInternal.
  298. (hairong)
  299. HDFS-899. Delegation Token Implementation
  300. and corresponding changes in Namenode and DFS Api to issue,
  301. renew and cancel delegation tokens. (jnp via boryas)
  302. HDFS-844. Log the filename when file locking fails. (tomwhite)
  303. HDFS-914. Refactor DFSOutputStream and DFSInputStream out of DFSClient.
  304. (Todd Lipcon via tomwhite)
  305. HDFS-949. Move DelegationToken into Common so that it can be used by
  306. MapReduce. (omalley)
  307. HDFS-930. Better error message for DATA_TRANSFER_VERSION mismatched.
  308. (Kay Kay via szetszwo)
  309. HDFS-986. Delegation token renewing and cancelling should provide
  310. meaningful exceptions when there are failures instead of returning
  311. false. (omalley)
  312. HADOOP-6579. Upgrade the commons-codec library to 1.4. (omalley)
  313. HDFS-991. Allow authentication to the web ui via a delegation token.
  314. (omalley)
  315. HDFS-994. Allow fetching of delegation token from NameNode for hftp.
  316. (Jakob Homan via acmurthy)
  317. HDFS-998. Quote blocks streamed through jsps. (cdouglas)
  318. HDFS-729. NameNode API to list files that have missing blocks.
  319. (Rodrigo Schmidt via dhruba)
  320. HDFS-850. The WebUI display more details about namenode memory usage.
  321. (Dmytro Molkov via dhruba)
  322. HDFS-826. The DFSOutputStream has a API that returns the number of
  323. active datanode(s) in the current pipeline. (dhruba)
  324. HDFS-985. HDFS should issue multiple RPCs for listing a large
  325. directory. (hairong)
  326. HDFS-1043. NNThroughputBenchmark modifications to support benchmarking of
  327. server-side user group resolution. (shv)
  328. HDFS-892. Optionally use Avro reflection for Namenode RPC. This
  329. is not a complete implementation yet, but rather a starting point.
  330. (cutting)
  331. HDFS-854. Datanode should scan devices in parallel to generate
  332. block report. (Dmytro Molkov via jhoman)
  333. HDFS-1032. fsck has an option to list corrupt files.
  334. (Andre Oriai via dhruba)
  335. HDFS-1024. SecondaryNameNode verifies size of fsimage and edits file.
  336. (Dmytro Molkov via dhruba)
  337. HDFS-1011. hdfsproxy: Improve log messages by restoring the previous
  338. thread name. (Srikanth Sundarrajan via szetszwo)
  339. HDFS-997. Allow datanode storage directory permissions to be configurable.
  340. (Luke Lu via cdouglas)
  341. HDFS-1012. hdfsproxy: Support for fully qualified HDFS path in addition to
  342. simple unqualified path. (Srikanth Sundarrajan via szetszwo)
  343. HDFS-933. Namenode should issue a delegation token only for kerberos
  344. authenticated clients.(jnp via boryas)
  345. HDFS-1087. Modify audit log to use a StringBuilder rather than a Formatter.
  346. (cdouglas)
  347. HDFS-1083. Update TestHDFSCLI not to expect exception class name
  348. in error messages. (suresh)
  349. HDFS-1099. Add test for umask backward compatibility. (suresh)
  350. HDFS-1092. Use logging rather than System.err in MiniDFSCluster.
  351. (Kay Kay via jghoman)
  352. HDFS-1047. Install/deploy source jars to Maven repo.
  353. (Patrick Angeles via jghoman)
  354. HDFS-666. Unit test for FsShell -text. (cdouglas via jghoman)
  355. HDFS-1054. Remove unnecessary sleep after failure in nextBlockOutputStream.
  356. (Todd Lipcon via jghoman)
  357. HDFS-921. Convert TestDFSClientRetries::testNotYetReplicatedErrors
  358. to Mockito. (jghoman)
  359. HDFS-1100. Override unwrapException in TestFcHdfsSymlink to test
  360. symlink API conformance. (Eli Collins via suresh).
  361. HDFS-1089. Remove uses of FileContext#isFile, isDirectory, and exists.
  362. (Eli Collins via hairong)
  363. HDFS-1028. Efficient splitting of path components reduces the time
  364. to load in fsimage by 20%. (Dmytro Molkov via dhruba)
  365. HDFS-1109. HFTP supports filenames that contains the character "+".
  366. (Dmytro Molkov via dhruba)
  367. HDFS-853. The HDFS webUI displays the balanced-ness of the cluster.
  368. (Dmytro Molkov via dhruba)
  369. HDFS-1126. Change HDFS to depend on Hadoop 'common' artifacts instead
  370. of 'core'. (tomwhite)
  371. HDFS-995. Replace usage of FileStatus#isDir(). (Eli Collins via
  372. tomwhite)
  373. HDFS-1161. Make DN minimum valid volumes configurable.
  374. (Eli Collins via tomwhite)
  375. OPTIMIZATIONS
  376. HDFS-946. NameNode should not return full path name when lisitng a
  377. diretory or getting the status of a file. (hairong)
  378. BUG FIXES
  379. HDFS-1193. -mvn-system-deploy target is broken which inturn fails the
  380. mvn-deploy task leading to unstable mapreduce build (Giridharan
  381. Kesavan via cos)
  382. HDFS-1159. clean-cache target removes wrong ivy cache (cos)
  383. HDFS-76. Better error message to users when commands fail because of
  384. lack of quota. Allow quota to be set even if the limit is lower than
  385. current consumption. (Boris Shkolnik via rangadi)
  386. HADOOP-4687. HDFS is split from Hadoop Core. It is a subproject under
  387. Hadoop (Owen O'Malley)
  388. HADOOP-6096. Fix Eclipse project and classpath files following project
  389. split. (tomwhite)
  390. HDFS-195. Handle expired tokens when write pipeline is reestablished.
  391. (Kan Zhang via rangadi)
  392. HDFS-181. Validate src path in FSNamesystem.getFileInfo(..). (Todd
  393. Lipcon via szetszwo)
  394. HDFS-441. Remove TestFTPFileSystem. (szetszwo)
  395. HDFS-440. Fix javadoc broken links in DFSClient. (szetszwo)
  396. HDFS-480. Fix a typo in the jar name in build.xml.
  397. (Konstantin Shvachko via gkesavan)
  398. HDFS-438. Check for NULL before invoking GenericArgumentParser in
  399. DataNode. (Raghu Angadi)
  400. HDFS-415. BlockReceiver hangs in case of certain runtime exceptions.
  401. (Konstantin Boudnik via rangadi)
  402. HDFS-462. loadFSImage should close edits file. (Jakob Homan via shv)
  403. HDFS-489. Update TestHDFSCLI for the -skipTrash option in rm. (Jakob Homan
  404. via szetszwo)
  405. HDFS-445. pread() does not pick up changes to block locations.
  406. (Kan Zhang via rangadi)
  407. HDFS-463. CreateEditLog utility broken after HDFS-396 (URI for
  408. FSImage). (Suresh Srinivas via rangadi)
  409. HDFS-484. Fix bin-package and package target to package jar files.
  410. (gkesavan)
  411. HDFS-490. Eliminate the deprecated warnings introduced by H-5438.
  412. (He Yongqiang via szetszwo)
  413. HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
  414. (Suresh Srinivas via shv)
  415. HDFS-534. Include avro in ivy. (szetszwo)
  416. HDFS-532. Allow applications to know that a read request failed
  417. because block is missing. (dhruba)
  418. HDFS-561. Fix write pipeline READ_TIMEOUT in DataTransferProtocol.
  419. (Kan Zhang via szetszwo)
  420. HDFS-553. BlockSender reports wrong failed position in ChecksumException.
  421. (hairong)
  422. HDFS-568. Set mapred.job.tracker.retire.jobs to false in
  423. src/test/mapred-site.xml for mapreduce tests to run. (Amareshwari
  424. Sriramadasu via szetszwo)
  425. HDFS-15. All replicas end up on 1 rack. (Jitendra Nath Pandey via hairong)
  426. HDFS-586. TestBlocksWithNotEnoughRacks sometimes fails.
  427. (Jitendra Nath Pandey via hairong)
  428. HADOOP-6243. Fixed a NullPointerException in handling deprecated keys.
  429. (Sreekanth Ramakrishnan via yhemanth)
  430. HDFS-605. Do not run fault injection tests in the run-test-hdfs-with-mr
  431. target. (Konstantin Boudnik via szetszwo)
  432. HDFS-606. Fix ConcurrentModificationException in invalidateCorruptReplicas()
  433. (shv)
  434. HDFS-601. TestBlockReport obtains data directories directly from
  435. MiniHDFSCluster. (Konstantin Boudnik via shv)
  436. HDFS-614. TestDatanodeBlockScanner obtains data directories directly from
  437. MiniHDFSCluster. (shv)
  438. HDFS-612. Remove the use of org.mortbay.log.Log in FSDataset. (szetszwo)
  439. HDFS-622. checkMinReplication should count live nodes only. (shv)
  440. HDFS-629. Remove ReplicationTargetChooser.java along with fixing
  441. import warnings generated by Eclipse. (dhruba)
  442. HDFS-637. DataNode sends a Success ack when block write fails. (hairong)
  443. HDFS-640. Fixed TestHDFSFileContextMainOperations.java build failure. (suresh)
  444. HDFS-547. TestHDFSFileSystemContract#testOutputStreamClosedTwice
  445. sometimes fails with CloseByInterruptException. (hairong)
  446. HDFS-588. Fix TestFiDataTransferProtocol and TestAppend2 failures. (shv)
  447. HDFS-550. DataNode restarts may introduce corrupt/duplicated/lost replicas
  448. when handling detached replicas. (hairong)
  449. HDFS-659. If the the last block is not complete, update its length with
  450. one of its replica's length stored in datanode. (szetszwo)
  451. HDFS-649. Check null pointers for DataTransferTest. (Konstantin Boudnik
  452. via szetszwo)
  453. HDFS-661. DataNode upgrade fails on non-existant current directory.
  454. (hairong)
  455. HDFS-597. Mofication introduced by HDFS-537 breakes an advice binding in
  456. FSDatasetAspects. (Konstantin Boudnik via szetszwo)
  457. HDFS-665. TestFileAppend2 sometimes hangs. (hairong)
  458. HDFS-676. Fix NPE in FSDataset.updateReplicaUnderRecovery() (shv)
  459. HDFS-673. BlockReceiver#PacketResponder should not remove a packet from
  460. the ack queue before its ack is sent. (hairong)
  461. HDFS-682. Fix bugs in TestBlockUnderConstruction. (szetszwo)
  462. HDFS-668. TestFileAppend3#TC7 sometimes hangs. (hairong)
  463. HDFS-679. Appending to a partial chunk incorrectly assumes the
  464. first packet fills up the partial chunk. (hairong)
  465. HDFS-722. Fix callCreateBlockWriteStream pointcut in FSDatasetAspects.
  466. (szetszwo)
  467. HDFS-690. TestAppend2#testComplexAppend failed on "Too many open files".
  468. (hairong)
  469. HDFS-725. Support the build error fix for HADOOP-6327. (Sanjay Radia via
  470. szetszwo)
  471. HDFS-625. Fix NullPointerException thrown from ListPathServlet. (suresh)
  472. HDFS-735. TestReadWhileWriting has wrong line termination symbols (cos)
  473. HDFS-691. Fix an overflow error in DFSClient.DFSInputStream.available().
  474. (szetszwo)
  475. HDFS-733. TestBlockReport fails intermittently. (cos)
  476. HDFS-774. Intermittent race condition in TestFiPipelines (cos)
  477. HDFS-741. TestHFlush test doesn't seek() past previously written part of
  478. the file (cos, szetszwo)
  479. HDFS-706. Intermittent failures in TestFiHFlush (cos)
  480. HDFS-646. Fix test-patch failure by adding test-contrib ant target.
  481. (gkesavan)
  482. HDFS-791. Build is broken after HDFS-787 patch has been applied (cos)
  483. HDFS-792. TestHDFSCLI is failing. (Todd Lipcon via cos)
  484. HDFS-781. Namenode metrics PendingDeletionBlocks is not decremented.
  485. (Suresh)
  486. HDFS-192. Fix TestBackupNode failures. (shv)
  487. HDFS-797. TestHDFSCLI much slower after HDFS-265 merge. (Todd Lipcon via cos)
  488. HDFS-824. Stop lease checker in TestReadWhileWriting. (szetszwo)
  489. HDFS-823. CheckPointer should use addInternalServlet for image-fetching
  490. servlet (jghoman)
  491. HDFS-456. Fix URI generation for windows file paths. (shv)
  492. HDFS-812. FSNamesystem#internalReleaseLease throws NullPointerException on
  493. a single-block file's lease recovery. (cos)
  494. HDFS-724. Pipeline hangs if one of the block receiver is not responsive.
  495. (hairong)
  496. HDFS-564. Adding pipeline tests 17-35. (hairong)
  497. HDFS-849. TestFiDataTransferProtocol2#pipeline_Fi_18 sometimes fails.
  498. (hairong)
  499. HDFS-762. Balancer causes Null Pointer Exception.
  500. (Cristian Ivascu via dhruba)
  501. HDFS-868. Fix link to Hadoop Upgrade Wiki. (Chris A. Mattmann via shv)
  502. HDFS-880. TestNNLeaseRecovery fails on windows (cos, shv)
  503. HDFS-699. Primary datanode should compare replicas' on disk lengths.
  504. (hairong)
  505. HDFS-897. Fix a bug related to generation stamp comparison in
  506. ReplicasMap. (suresh)
  507. HDFS-793. Data node should receive the whole packet ack message before it
  508. constructs and sends its own ack message for the packet. (hairong)
  509. HDFS-101. DFS write pipeline: DFSClient sometimes does not detect second
  510. datanode failure. (hairong)
  511. HDFS-822. Appends to already-finalized blocks can rename across volumes.
  512. (hairong)
  513. HDFS-1046. Fix Tomcat version in hdfsproxy/build.xml. (Srikanth
  514. Sundarrajan via szetszwo)
  515. HDFS-1072. Fix TestReadWhileWriting failure. (Erik Steffl via shv)
  516. HDFS-132. Fix namenode to not report files deleted metrics for deletions
  517. done while replaying edits during startup. (suresh)
  518. HDFS-913. Rename fault injection test TestRename.java to TestFiRename.java
  519. to include it in tests run by ant target run-test-hdfs-fault-inject.
  520. (suresh)
  521. HDFS-695. RaidNode should read in configuration from hdfs-site.xml.
  522. (dhruba)
  523. HDFS-726. Eclipse .classpath template has outdated jar files and is
  524. missing some new ones. (cos)
  525. HDFS-750. Fix build failure due to TestRename. (suresh)
  526. HDFS-712. Move libhdfs from mapreduce subproject to hdfs subproject.
  527. (Eli Collins via dhruba)
  528. HDFS-757. Enable Unit test for HDFS Raid. (dhruba)
  529. HDFS-611. Prevent DataNode heartbeat times from increasing even when
  530. the DataNode has many blocks to delete. (Zheng Shao via dhruba)
  531. HDFS-751. Fix TestCrcCorruption to pick up the correct datablocks to
  532. corrupt. (dhruba)
  533. HDFS-763. Fix slightly misleading report from DataBlockScanner
  534. about corrupted scans. (dhruba)
  535. HDFS-727. bug setting block size hdfsOpenFile (Eli Collins via cos)
  536. HDFS-756. libhdfs unit tests do not run. (Eli Collins via cos)
  537. HDFS-783. libhdfs tests brakes code coverage runs with Clover (cos)
  538. HDFS-785. Add Apache license to several namenode unit tests.
  539. (Ravi Phulari via jghoman)
  540. HDFS-802. Update Eclipse configuration to match changes to Ivy
  541. configuration (Edwin Chan via cos)
  542. HDFS-423. Unbreak FUSE build and fuse_dfs_wrapper.sh (Eli Collins via cos)
  543. HDFS-825. Build fails to pull latest hadoop-core-* artifacts (cos)
  544. HDFS-94. The Heap Size printed in the NameNode WebUI is accurate.
  545. (Dmytro Molkov via dhruba)
  546. HDFS-767. An improved retry policy when the DFSClient is unable to fetch a
  547. block from the datanode. (Ning Zhang via dhruba)
  548. HDFS-775. FSDataset calls getCapacity() twice. (stevel)
  549. HDFS-885. Datanode toString() NPEs on null dnRegistration. (stevel)
  550. HDFS-877. Client-driven block verification not functioning. (Todd
  551. Lipcon via hairong)
  552. HDFS-630. In DFSOutputStream.nextBlockOutputStream(), the client can
  553. exclude specific datanodes when locating the next block.
  554. (Cosmin Lehene via Stack)
  555. HDFS-922. Remove unnecessary semicolon added by HDFS-877 that causes
  556. problems for Eclipse compilation. (jghoman)
  557. HDFS-927 DFSInputStream retries too many times for new block locations
  558. (Todd Lipcon via Stack)
  559. HDFS-938. Replace calls to UGI.getUserName() with UGI.getShortUserName()
  560. (jghoman)
  561. HDFS-894. DatanodeID.ipcPort is not updated when existing node
  562. re-registers. (Todd Lipcon via tomwhite)
  563. HDFS-965. Split TestDelegationToken in to two parts and fix configuration
  564. to allow proxy users in the test. (Jitendra Pandey via omalley)
  565. HDFS-999. Secondary namenode should login using kerberos if security is
  566. configured (boryas)
  567. HDFS-856. Hardcoded replication level for new files in fuse-dfs.
  568. (Brian Bockelman via tomwhite)
  569. HDFS-857. Incorrect type for fuse-dfs capacity can cause "df" to return
  570. negative values on 32-bit machines. (Brian Bockelman via tomwhite)
  571. HDFS-858. Incorrect return codes for fuse-dfs. (Brian Bockelman via
  572. tomwhite)
  573. HDFS-859. fuse-dfs utime behavior causes issues with tar.
  574. (Brian Bockelman via tomwhite)
  575. HDFS-861. fuse-dfs does not support O_RDWR. (Brian Bockelman via tomwhite)
  576. HDFS-961. dfs_readdir incorrectly parses paths. (Eli Collins via tomwhite)
  577. HDFS-1015. Fix intermittent failure in TestSecurityTokenEditLog.
  578. (Jitendra Nath Pandey via suresh)
  579. HDFS-939. libhdfs test is broken. (Eli Collins via tomwhite)
  580. HDFS-1074. hdfsproxy: Fix bugs in TestProxyUtil. (Srikanth Sundarrajan
  581. via szetszwo)
  582. HDFS-481. hdfsproxy: Bug Fixes + HdfsProxy to use proxy user to
  583. impresonate the real user. (Srikanth Sundarrajan via szetszwo)
  584. HDFS-482. Move HsftpFileSystem's ssl.client.do.not.authenticate.server
  585. configuration setting to ssl-client.xml. (Srikanth Sundarrajan via
  586. szetszwo)
  587. HDFS-1010. hdfsproxy: Retrieve groups from UnixUserGroupInformation
  588. instead of LdapEntry. (Srikanth Sundarrajan via szetszwo)
  589. HDFS-466. hdfs_write infinite loop when dfs fails and cannot write
  590. files > 2 GB. (Pete Wyckoff via tomwhite)
  591. HDFS-651. HDFS Docs - fix listing of docs in the doc menu.
  592. (Corinne Chandel via tomwhite)
  593. HDFS-1014. Error in reading delegation tokens from edit logs.
  594. (Jitendra Nath Pandey via jhoman)
  595. HDFS-1088. Prevent renaming a symbolik link to its target.
  596. (Eli Collins via suresh)
  597. HDFS-966. NameNode does not recovers lease when it is in safemode.
  598. (dhruba)
  599. HDFS-833. Datanode shutdown should log problems with Storage.unlockAll()
  600. (Steve Loughran via dhruba)
  601. HDFS-1101. TestDiskError.testLocalDirs() fails. (cdouglas via jghoman)
  602. HDFS-1031. Enhance the webUi to list a few of the corrupted files in HDFS.
  603. (Andre Orian via dhruba)
  604. HDFS-1078. Create static and dynamic versions of libhdfs.
  605. (Sam Rash via dhruba)
  606. HDFS-1104. Fsck triggers full GC on NameNode. (hairong)
  607. HDFS-1141. Closing a file is successful only if the client still has a
  608. valid lease. (Todd Lipcon via dhruba)
  609. HDFS-1138. Prevent erroneous updation of modification time of a directory
  610. when fsimage loads. (Dmytro Molkov via dhruba)
  611. Release 0.20.3 - Unreleased
  612. IMPROVEMENTS
  613. BUG FIXES
  614. HDFS-955. New implementation of saveNamespace() to avoid loss of edits
  615. when name-node fails during saving. (shv)
  616. HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
  617. the first datanode fails. (szetszwo)
  618. HDFS-909. Wait until edits syncing is finishes before purging edits.
  619. (Todd Lipcon via shv)
  620. Release 0.20.2 - Unreleased
  621. IMPROVEMENTS
  622. HDFS-737. Add full path name of the file to the block information and
  623. summary of total number of files, blocks, live and deadnodes to
  624. metasave output. (Jitendra Nath Pandey via suresh)
  625. HDFS-919. Create test to validate the BlocksVerified metric (Gary Murry
  626. via cos)
  627. HDFS-907. Add tests for getBlockLocations and totalLoad metrics.
  628. (Ravi Phulari via cos)
  629. BUG FIXES
  630. HDFS-686. NullPointerException is thrown while merging edit log and image.
  631. (hairong)
  632. HDFS-677. Rename failure when both source and destination quota exceeds
  633. results in deletion of source. (suresh)
  634. HDFS-709. Fix TestDFSShell failure due to rename bug introduced by
  635. HDFS-677. (suresh)
  636. HDFS-579. Fix DfsTask to follow the semantics of 0.19, regarding non-zero
  637. return values as failures. (Christian Kunz via cdouglas)
  638. HDFS-723. Fix deadlock in DFSClient#DFSOutputStream. (hairong)
  639. HDFS-596. Fix memory leak in hdfsFreeFileInfo() for libhdfs.
  640. (Zhang Bingjun via dhruba)
  641. HDFS-185. Disallow chown, chgrp, chmod, setQuota, and setSpaceQuota when
  642. name-node is in safemode. (Ravi Phulari via shv)
  643. HDFS-187. Initialize secondary namenode http address in TestStartup.
  644. (Todd Lipcon via szetszwo)
  645. HDFS-464. Fix memory leaks in libhdfs. (Christian Kunz via suresh)
  646. Release 0.20.1 - 2009-09-01
  647. IMPROVEMENTS
  648. HDFS-438. Improve help message for space quota command. (Raghu Angadi)
  649. BUG FIXES
  650. HDFS-167. Fix a bug in DFSClient that caused infinite retries on write.
  651. (Bill Zeller via szetszwo)
  652. HDFS-527. Remove/deprecate unnecessary DFSClient constructors. (szetszwo)
  653. HDFS-525. The SimpleDateFormat object in ListPathsServlet is not thread
  654. safe. (Suresh Srinivas and cdouglas)
  655. HDFS-761. Fix failure to process rename operation from edits log due to
  656. quota verification. (suresh)