CHANGES.txt 56 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391
  1. Hadoop Change Log
  2. Trunk (unreleased changes)
  3. 1. HADOOP-763. Change DFS namenode benchmark to not use MapReduce.
  4. (Nigel Daley via cutting)
  5. 2. HADOOP-777. Use fully-qualified hostnames for tasktrackers and
  6. datanodes. (Mahadev Konar via cutting)
  7. 3. HADOOP-621. Change 'dfs -cat' to exit sooner when output has been
  8. closed. (Dhruba Borthakur via cutting)
  9. 4. HADOOP-752. Rationalize some synchronization in DFS namenode.
  10. (Dhruba Borthakur via cutting)
  11. 5. HADOOP-629. Fix RPC services to better check the protocol name and
  12. version. (omalley via cutting)
  13. 6. HADOOP-774. Limit the number of invalid blocks returned with
  14. heartbeats by the namenode to datanodes. Transmitting and
  15. processing very large invalid block lists can tie up both the
  16. namenode and datanode for too long. (Dhruba Borthakur via cutting)
  17. 7. HADOOP-738. Change 'dfs -get' command to not create CRC files by
  18. default, adding a -crc option to force their creation.
  19. (Milind Bhandarkar via cutting)
  20. 8. HADOOP-676. Improved exceptions and error messages for common job
  21. input specification errors. (Sanjay Dahiya via cutting)
  22. 9. HADOOP-639. Restructure InterTrackerProtocol to make task
  23. accounting more reliable. (Arun C Murthy via cutting)
  24. 10. HADOOP-756. Add new dfsadmin option to wait for filesystem to be
  25. operational. (Dhruba Borthakur via cutting)
  26. 11. HADOOP-770. Fix jobtracker web interface to display, on restart,
  27. jobs that were running when it was last stopped.
  28. (Sanjay Dahiya via cutting)
  29. 12. HADOOP-331. Write all map outputs to a single file with an index,
  30. rather than to a separate file per reduce task. This should both
  31. speed the shuffle and make things more scalable.
  32. (Devaraj Das via cutting)
  33. 13. HADOOP-818. Fix contrib unit tests to not depend on core unit
  34. tests. (omalley via cutting)
  35. 14. HADOOP-786. Log common exception at debug level.
  36. (Sanjay Dahiya via cutting)
  37. 15. HADOOP-796. Provide more convenient access to failed task
  38. information in the web interface. (Sanjay Dahiya via cutting)
  39. 16. HADOOP-764. Reduce memory allocations in namenode some.
  40. (Dhruba Borthakur via cutting)
  41. 17. HADOOP-802. Update description of mapred.speculative.execution to
  42. mention reduces. (Nigel Daley via cutting)
  43. 18. HADOOP-806. Include link to datanodes on front page of namenode
  44. web interface. (Raghu Angadi via cutting)
  45. 19. HADOOP-618. Make JobSubmissionProtocol public.
  46. (Arun C Murthy via cutting)
  47. 20. HADOOP-782. Fully remove killed tasks. (Arun C Murthy via cutting)
  48. 21. HADOOP-792. Fix 'dfs -mv' to return correct status.
  49. (Dhruba Borthakur via cutting)
  50. 22. HADOOP-673. Give each task its own working directory again.
  51. (Mahadev Konar via cutting)
  52. 23. HADOOP-571. Extend the syntax of Path to be a URI; to be
  53. optionally qualified with a scheme and authority. The scheme
  54. determines the FileSystem implementation, while the authority
  55. determines the FileSystem instance. New FileSystem
  56. implementations may be provided by defining an fs.<scheme>.impl
  57. property, naming the FileSystem implementation class. This
  58. permits easy integration of new FileSystem implementations.
  59. (cutting)
  60. 24. HADOOP-720. Add an HDFS white paper to website.
  61. (Dhruba Borthakur via cutting)
  62. 25. HADOOP-794. Fix a divide-by-zero exception when a job specifies
  63. zero map tasks. (omalley via cutting)
  64. 26. HADOOP-454. Add a 'dfs -dus' command that provides summary disk
  65. usage. (Hairong Kuang via cutting)
  66. Release 0.9.1 - 2006-12-06
  67. 1. HADOOP-780. Use ReflectionUtils to instantiate key and value
  68. objects. (ab)
  69. 2. HADOOP-779. Fix contrib/streaming to work correctly with gzipped
  70. input files. (Hairong Kuang via cutting)
  71. Release 0.9.0 - 2006-12-01
  72. 1. HADOOP-655. Remove most deprecated code. A few deprecated things
  73. remain, notably UTF8 and some methods that are still required.
  74. Also cleaned up constructors for SequenceFile, MapFile, SetFile,
  75. and ArrayFile a bit. (cutting)
  76. 2. HADOOP-565. Upgrade to Jetty version 6. (Sanjay Dahiya via cutting)
  77. 3. HADOOP-682. Fix DFS format command to work correctly when
  78. configured with a non-existent directory. (Sanjay Dahiya via cutting)
  79. 4. HADOOP-645. Fix a bug in contrib/streaming when -reducer is NONE.
  80. (Dhruba Borthakur via cutting)
  81. 5. HADOOP-687. Fix a classpath bug in bin/hadoop that blocked the
  82. servers from starting. (Sameer Paranjpye via omalley)
  83. 6. HADOOP-683. Remove a script dependency on bash, so it works with
  84. dash, the new default for /bin/sh on Ubuntu. (James Todd via cutting)
  85. 7. HADOOP-382. Extend unit tests to run multiple datanodes.
  86. (Milind Bhandarkar via cutting)
  87. 8. HADOOP-604. Fix some synchronization issues and a
  88. NullPointerException in DFS datanode. (Raghu Angadi via cutting)
  89. 9. HADOOP-459. Fix memory leaks and a host of other issues with
  90. libhdfs. (Sameer Paranjpye via cutting)
  91. 10. HADOOP-694. Fix a NullPointerException in jobtracker.
  92. (Mahadev Konar via cutting)
  93. 11. HADOOP-637. Fix a memory leak in the IPC server. Direct buffers
  94. are not collected like normal buffers, and provided little
  95. advantage. (Raghu Angadi via cutting)
  96. 12. HADOOP-696. Fix TestTextInputFormat unit test to not rely on the
  97. order of directory listings. (Sameer Paranjpye via cutting)
  98. 13. HADOOP-611. Add support for iterator-based merging to
  99. SequenceFile. (Devaraj Das via cutting)
  100. 14. HADOOP-688. Move DFS administrative commands to a separate
  101. command named 'dfsadmin'. (Dhruba Borthakur via cutting)
  102. 15. HADOOP-708. Fix test-libhdfs to return the correct status, so
  103. that failures will break the build. (Nigel Daley via cutting)
  104. 16. HADOOP-646. Fix namenode to handle edits files larger than 2GB.
  105. (Milind Bhandarkar via cutting)
  106. 17. HADOOP-705. Fix a bug in the JobTracker when failed jobs were
  107. not completely cleaned up. (Mahadev Konar via cutting)
  108. 18. HADOOP-613. Perform final merge while reducing. This removes one
  109. sort pass over the data and should consequently significantly
  110. decrease overall processing time. (Devaraj Das via cutting)
  111. 19. HADOOP-661. Make each job's configuration visible through the web
  112. ui. (Arun C Murthy via cutting)
  113. 20. HADOOP-489. In MapReduce, separate user logs from system logs.
  114. Each task's log output is now available through the web ui. (Arun
  115. C Murthy via cutting)
  116. 21. HADOOP-712. Fix record io's xml serialization to correctly handle
  117. control-characters. (Milind Bhandarkar via cutting)
  118. 22. HADOOP-668. Improvements to the web-based DFS browser.
  119. (Hairong Kuang via cutting)
  120. 23. HADOOP-715. Fix build.xml so that test logs are written in build
  121. directory, rather than in CWD. (Arun C Murthy via cutting)
  122. 24. HADOOP-538. Add support for building an optional native library,
  123. libhadoop.so, that improves the performance of zlib-based
  124. compression. To build this, specify -Dcompile.native to Ant.
  125. (Arun C Murthy via cutting)
  126. 25. HADOOP-610. Fix an problem when the DFS block size is configured
  127. to be smaller than the buffer size, typically only when debugging.
  128. (Milind Bhandarkar via cutting)
  129. 26. HADOOP-695. Fix a NullPointerException in contrib/streaming.
  130. (Hairong Kuang via cutting)
  131. 27. HADOOP-652. In DFS, when a file is deleted, the block count is
  132. now decremented. (Vladimir Krokhmalyov via cutting)
  133. 28. HADOOP-725. In DFS, optimize block placement algorithm,
  134. previously a performance bottleneck. (Milind Bhandarkar via cutting)
  135. 29. HADOOP-723. In MapReduce, fix a race condition during the
  136. shuffle, which resulted in FileNotFoundExceptions. (omalley via cutting)
  137. 30. HADOOP-447. In DFS, fix getBlockSize(Path) to work with relative
  138. paths. (Raghu Angadi via cutting)
  139. 31. HADOOP-733. Make exit codes in DFShell consistent and add a unit
  140. test. (Dhruba Borthakur via cutting)
  141. 32. HADOOP-709. Fix contrib/streaming to work with commands that
  142. contain control characters. (Dhruba Borthakur via cutting)
  143. 33. HADOOP-677. In IPC, permit a version header to be transmitted
  144. when connections are established. This will permit us to change
  145. the format of IPC requests back-compatibly in subsequent releases.
  146. (omalley via cutting)
  147. 34. HADOOP-699. Fix DFS web interface so that filesystem browsing
  148. works correctly, using the right port number. Also add support
  149. for sorting datanode list by various columns.
  150. (Raghu Angadi via cutting)
  151. 35. HADOOP-76. Implement speculative reduce. Now when a job is
  152. configured for speculative execution, both maps and reduces will
  153. execute speculatively. Reduce outputs are written to temporary
  154. location and moved to the final location when reduce is complete.
  155. (Sanjay Dahiya via cutting)
  156. 36. HADOOP-736. Roll back to Jetty 5.1.4, due to performance problems
  157. with Jetty 6.0.1.
  158. 37. HADOOP-739. Fix TestIPC to use different port number, making it
  159. more reliable. (Nigel Daley via cutting)
  160. 38. HADOOP-749. Fix a NullPointerException in jobfailures.jsp.
  161. (omalley via cutting)
  162. 39. HADOOP-747. Fix record serialization to work correctly when
  163. records are embedded in Maps. (Milind Bhandarkar via cutting)
  164. 40. HADOOP-698. Fix HDFS client not to retry the same datanode on
  165. read failures. (Milind Bhandarkar via cutting)
  166. 41. HADOOP-689. Add GenericWritable, to facilitate polymorphism in
  167. MapReduce, SequenceFile, etc. (Feng Jiang via cutting)
  168. 42. HADOOP-430. Stop datanode's HTTP server when registration with
  169. namenode fails. (Wendy Chien via cutting)
  170. 43. HADOOP-750. Fix a potential race condition during mapreduce
  171. shuffle. (omalley via cutting)
  172. 44. HADOOP-728. Fix contrib/streaming-related issues, including
  173. '-reducer NONE'. (Sanjay Dahiya via cutting)
  174. Release 0.8.0 - 2006-11-03
  175. 1. HADOOP-477. Extend contrib/streaming to scan the PATH environment
  176. variables when resolving executable program names.
  177. (Dhruba Borthakur via cutting)
  178. 2. HADOOP-583. In DFSClient, reduce the log level of re-connect
  179. attempts from 'info' to 'debug', so they are not normally shown.
  180. (Konstantin Shvachko via cutting)
  181. 3. HADOOP-498. Re-implement DFS integrity checker to run server-side,
  182. for much improved performance. (Milind Bhandarkar via cutting)
  183. 4. HADOOP-586. Use the jar name for otherwise un-named jobs.
  184. (Sanjay Dahiya via cutting)
  185. 5. HADOOP-514. Make DFS heartbeat interval configurable.
  186. (Milind Bhandarkar via cutting)
  187. 6. HADOOP-588. Fix logging and accounting of failed tasks.
  188. (Sanjay Dahiya via cutting)
  189. 7. HADOOP-462. Improve command line parsing in DFSShell, so that
  190. incorrect numbers of arguments result in informative errors rather
  191. than ArrayOutOfBoundsException. (Dhruba Borthakur via cutting)
  192. 8. HADOOP-561. Fix DFS so that one replica of each block is written
  193. locally, if possible. This was the intent, but there as a bug.
  194. (Dhruba Borthakur via cutting)
  195. 9. HADOOP-610. Fix TaskTracker to survive more exceptions, keeping
  196. tasks from becoming lost. (omalley via cutting)
  197. 10. HADOOP-625. Add a servlet to all http daemons that displays a
  198. stack dump, useful for debugging. (omalley via cutting)
  199. 11. HADOOP-554. Fix DFSShell to return -1 for errors.
  200. (Dhruba Borthakur via cutting)
  201. 12. HADOOP-626. Correct the documentation in the NNBench example
  202. code, and also remove a mistaken call there.
  203. (Nigel Daley via cutting)
  204. 13. HADOOP-634. Add missing license to many files.
  205. (Nigel Daley via cutting)
  206. 14. HADOOP-627. Fix some synchronization problems in MiniMRCluster
  207. that sometimes caused unit tests to fail. (Nigel Daley via cutting)
  208. 15. HADOOP-563. Improve the NameNode's lease policy so that leases
  209. are held for one hour without renewal (instead of one minute).
  210. However another attempt to create the same file will still succeed
  211. if the lease has not been renewed within a minute. This prevents
  212. communication or scheduling problems from causing a write to fail
  213. for up to an hour, barring some other process trying to create the
  214. same file. (Dhruba Borthakur via cutting)
  215. 16. HADOOP-635. In DFSShell, permit specification of multiple files
  216. as the source for file copy and move commands.
  217. (Dhruba Borthakur via cutting)
  218. 17. HADOOP-641. Change NameNode to request a fresh block report from
  219. a re-discovered DataNode, so that no-longer-needed replications
  220. are stopped promptly. (Konstantin Shvachko via cutting)
  221. 18. HADOOP-642. Change IPC client to specify an explicit connect
  222. timeout. (Konstantin Shvachko via cutting)
  223. 19. HADOOP-638. Fix an unsynchronized access to TaskTracker's
  224. internal state. (Nigel Daley via cutting)
  225. 20. HADOOP-624. Fix servlet path to stop a Jetty warning on startup.
  226. (omalley via cutting)
  227. 21. HADOOP-578. Failed tasks are no longer placed at the end of the
  228. task queue. This was originally done to work around other
  229. problems that have now been fixed. Re-executing failed tasks
  230. sooner causes buggy jobs to fail faster. (Sanjay Dahiya via cutting)
  231. 22. HADOOP-658. Update source file headers per Apache policy. (cutting)
  232. 23. HADOOP-636. Add MapFile & ArrayFile constructors which accept a
  233. Progressable, and pass it down to SequenceFile. This permits
  234. reduce tasks which use MapFile to still report progress while
  235. writing blocks to the filesystem. (cutting)
  236. 24. HADOOP-576. Enable contrib/streaming to use the file cache. Also
  237. extend the cache to permit symbolic links to cached items, rather
  238. than local file copies. (Mahadev Konar via cutting)
  239. 25. HADOOP-482. Fix unit tests to work when a cluster is running on
  240. the same machine, removing port conflicts. (Wendy Chien via cutting)
  241. 26. HADOOP-90. Permit dfs.name.dir to list multiple directories,
  242. where namenode data is to be replicated. (Milind Bhandarkar via cutting)
  243. 27. HADOOP-651. Fix DFSCk to correctly pass parameters to the servlet
  244. on the namenode. (Milind Bhandarkar via cutting)
  245. 28. HADOOP-553. Change main() routines of DataNode and NameNode to
  246. log exceptions rather than letting the JVM print them to standard
  247. error. Also, change the hadoop-daemon.sh script to rotate
  248. standard i/o log files. (Raghu Angadi via cutting)
  249. 29. HADOOP-399. Fix javadoc warnings. (Nigel Daley via cutting)
  250. 30. HADOOP-599. Fix web ui and command line to correctly report DFS
  251. filesystem size statistics. Also improve web layout.
  252. (Raghu Angadi via cutting)
  253. 31. HADOOP-660. Permit specification of junit test output format.
  254. (Nigel Daley via cutting)
  255. 32. HADOOP-663. Fix a few unit test issues. (Mahadev Konar via cutting)
  256. 33. HADOOP-664. Cause entire build to fail if libhdfs tests fail.
  257. (Nigel Daley via cutting)
  258. 34. HADOOP-633. Keep jobtracker from dying when job initialization
  259. throws exceptions. Also improve exception handling in a few other
  260. places and add more informative thread names.
  261. (omalley via cutting)
  262. 35. HADOOP-669. Fix a problem introduced by HADOOP-90 that can cause
  263. DFS to lose files. (Milind Bhandarkar via cutting)
  264. 36. HADOOP-373. Consistently check the value returned by
  265. FileSystem.mkdirs(). (Wendy Chien via cutting)
  266. 37. HADOOP-670. Code cleanups in some DFS internals: use generic
  267. types, replace Vector with ArrayList, etc.
  268. (Konstantin Shvachko via cutting)
  269. 38. HADOOP-647. Permit map outputs to use a different compression
  270. type than the job output. (omalley via cutting)
  271. 39. HADOOP-671. Fix file cache to check for pre-existence before
  272. creating . (Mahadev Konar via cutting)
  273. 40. HADOOP-665. Extend many DFSShell commands to accept multiple
  274. arguments. Now commands like "ls", "rm", etc. will operate on
  275. multiple files. (Dhruba Borthakur via cutting)
  276. Release 0.7.2 - 2006-10-18
  277. 1. HADOOP-607. Fix a bug where classes included in job jars were not
  278. found by tasks. (Mahadev Konar via cutting)
  279. 2. HADOOP-609. Add a unit test that checks that classes in job jars
  280. can be found by tasks. Also modify unit tests to specify multiple
  281. local directories. (Mahadev Konar via cutting)
  282. Release 0.7.1 - 2006-10-11
  283. 1. HADOOP-593. Fix a NullPointerException in the JobTracker.
  284. (omalley via cutting)
  285. 2. HADOOP-592. Fix a NullPointerException in the IPC Server. Also
  286. consistently log when stale calls are discarded. (omalley via cutting)
  287. 3. HADOOP-594. Increase the DFS safe-mode threshold from .95 to
  288. .999, so that nearly all blocks must be reported before filesystem
  289. modifications are permitted. (Konstantin Shvachko via cutting)
  290. 4. HADOOP-598. Fix tasks to retry when reporting completion, so that
  291. a single RPC timeout won't fail a task. (omalley via cutting)
  292. 5. HADOOP-597. Fix TaskTracker to not discard map outputs for errors
  293. in transmitting them to reduce nodes. (omalley via cutting)
  294. Release 0.7.0 - 2006-10-06
  295. 1. HADOOP-243. Fix rounding in the display of task and job progress
  296. so that things are not shown to be 100% complete until they are in
  297. fact finished. (omalley via cutting)
  298. 2. HADOOP-438. Limit the length of absolute paths in DFS, since the
  299. file format used to store pathnames has some limitations.
  300. (Wendy Chien via cutting)
  301. 3. HADOOP-530. Improve error messages in SequenceFile when keys or
  302. values are of the wrong type. (Hairong Kuang via cutting)
  303. 4. HADOOP-288. Add a file caching system and use it in MapReduce to
  304. cache job jar files on slave nodes. (Mahadev Konar via cutting)
  305. 5. HADOOP-533. Fix unit test to not modify conf directory.
  306. (Hairong Kuang via cutting)
  307. 6. HADOOP-527. Permit specification of the local address that various
  308. Hadoop daemons should bind to. (Philippe Gassmann via cutting)
  309. 7. HADOOP-542. Updates to contrib/streaming: reformatted source code,
  310. on-the-fly merge sort, a fix for HADOOP-540, etc.
  311. (Michel Tourn via cutting)
  312. 8. HADOOP-545. Remove an unused config file parameter.
  313. (Philippe Gassmann via cutting)
  314. 9. HADOOP-548. Add an Ant property "test.output" to build.xml that
  315. causes test output to be logged to the console. (omalley via cutting)
  316. 10. HADOOP-261. Record an error message when map output is lost.
  317. (omalley via cutting)
  318. 11. HADOOP-293. Report the full list of task error messages in the
  319. web ui, not just the most recent. (omalley via cutting)
  320. 12. HADOOP-551. Restore JobClient's console printouts to only include
  321. a maximum of one update per one percent of progress.
  322. (omalley via cutting)
  323. 13. HADOOP-306. Add a "safe" mode to DFS. The name node enters this
  324. when less than a specified percentage of file data is complete.
  325. Currently safe mode is only used on startup, but eventually it
  326. will also be entered when datanodes disconnect and file data
  327. becomes incomplete. While in safe mode no filesystem
  328. modifications are permitted and block replication is inhibited.
  329. (Konstantin Shvachko via cutting)
  330. 14. HADOOP-431. Change 'dfs -rm' to not operate recursively and add a
  331. new command, 'dfs -rmr' which operates recursively.
  332. (Sameer Paranjpye via cutting)
  333. 15. HADOOP-263. Include timestamps for job transitions. The web
  334. interface now displays the start and end times of tasks and the
  335. start times of sorting and reducing for reduce tasks. Also,
  336. extend ObjectWritable to handle enums, so that they can be passed
  337. as RPC parameters. (Sanjay Dahiya via cutting)
  338. 16. HADOOP-556. Contrib/streaming: send keep-alive reports to task
  339. tracker every 10 seconds rather than every 100 records, to avoid
  340. task timeouts. (Michel Tourn via cutting)
  341. 17. HADOOP-547. Fix reduce tasks to ping tasktracker while copying
  342. data, rather than only between copies, avoiding task timeouts.
  343. (Sanjay Dahiya via cutting)
  344. 18. HADOOP-537. Fix src/c++/libhdfs build process to create files in
  345. build/, no longer modifying the source tree.
  346. (Arun C Murthy via cutting)
  347. 19. HADOOP-487. Throw a more informative exception for unknown RPC
  348. hosts. (Sameer Paranjpye via cutting)
  349. 20. HADOOP-559. Add file name globbing (pattern matching) support to
  350. the FileSystem API, and use it in DFSShell ('bin/hadoop dfs')
  351. commands. (Hairong Kuang via cutting)
  352. 21. HADOOP-508. Fix a bug in FSDataInputStream. Incorrect data was
  353. returned after seeking to a random location.
  354. (Milind Bhandarkar via cutting)
  355. 22. HADOOP-560. Add a "killed" task state. This can be used to
  356. distinguish kills from other failures. Task state has also been
  357. converted to use an enum type instead of an int, uncovering a bug
  358. elsewhere. The web interface is also updated to display killed
  359. tasks. (omalley via cutting)
  360. 23. HADOOP-423. Normalize Paths containing directories named "." and
  361. "..", using the standard, unix interpretation. Also add checks in
  362. DFS, prohibiting the use of "." or ".." as directory or file
  363. names. (Wendy Chien via cutting)
  364. 24. HADOOP-513. Replace map output handling with a servlet, rather
  365. than a JSP page. This fixes an issue where
  366. IllegalStateException's were logged, sets content-length
  367. correctly, and better handles some errors. (omalley via cutting)
  368. 25. HADOOP-552. Improved error checking when copying map output files
  369. to reduce nodes. (omalley via cutting)
  370. 26. HADOOP-566. Fix scripts to work correctly when accessed through
  371. relative symbolic links. (Lee Faris via cutting)
  372. 27. HADOOP-519. Add positioned read methods to FSInputStream. These
  373. permit one to read from a stream without moving its position, and
  374. can hence be performed by multiple threads at once on a single
  375. stream. Implement an optimized version for DFS and local FS.
  376. (Milind Bhandarkar via cutting)
  377. 28. HADOOP-522. Permit block compression with MapFile and SetFile.
  378. Since these formats are always sorted, block compression can
  379. provide a big advantage. (cutting)
  380. 29. HADOOP-567. Record version and revision information in builds. A
  381. package manifest is added to the generated jar file containing
  382. version information, and a VersionInfo utility is added that
  383. includes further information, including the build date and user,
  384. and the subversion revision and repository. A 'bin/hadoop
  385. version' comand is added to show this information, and it is also
  386. added to various web interfaces. (omalley via cutting)
  387. 30. HADOOP-568. Fix so that errors while initializing tasks on a
  388. tasktracker correctly report the task as failed to the jobtracker,
  389. so that it will be rescheduled. (omalley via cutting)
  390. 31. HADOOP-550. Disable automatic UTF-8 validation in Text. This
  391. permits, e.g., TextInputFormat to again operate on non-UTF-8 data.
  392. (Hairong and Mahadev via cutting)
  393. 32. HADOOP-343. Fix mapred copying so that a failed tasktracker
  394. doesn't cause other copies to slow. (Sameer Paranjpye via cutting)
  395. 33. HADOOP-239. Add a persistent job history mechanism, so that basic
  396. job statistics are not lost after 24 hours and/or when the
  397. jobtracker is restarted. (Sanjay Dahiya via cutting)
  398. 34. HADOOP-506. Ignore heartbeats from stale task trackers.
  399. (Sanjay Dahiya via cutting)
  400. 35. HADOOP-255. Discard stale, queued IPC calls. Do not process
  401. calls whose clients will likely time out before they receive a
  402. response. When the queue is full, new calls are now received and
  403. queued, and the oldest calls are discarded, so that, when servers
  404. get bogged down, they no longer develop a backlog on the socket.
  405. This should improve some DFS namenode failure modes.
  406. (omalley via cutting)
  407. 36. HADOOP-581. Fix datanode to not reset itself on communications
  408. errors with the namenode. If a request to the namenode fails, the
  409. datanode should retry, not restart. This reduces the load on the
  410. namenode, since restarts cause a resend of the block report.
  411. (omalley via cutting)
  412. Release 0.6.2 - 2006-09-18
  413. 1. HADOOP-532. Fix a bug reading value-compressed sequence files,
  414. where an exception was thrown reporting that the full value had not
  415. been read. (omalley via cutting)
  416. 2. HADOOP-534. Change the default value class in JobConf to be Text
  417. instead of the now-deprecated UTF8. This fixes the Grep example
  418. program, which was updated to use Text, but relies on this
  419. default. (Hairong Kuang via cutting)
  420. Release 0.6.1 - 2006-09-13
  421. 1. HADOOP-520. Fix a bug in libhdfs, where write failures were not
  422. correctly returning error codes. (Arun C Murthy via cutting)
  423. 2. HADOOP-523. Fix a NullPointerException when TextInputFormat is
  424. explicitly specified. Also add a test case for this.
  425. (omalley via cutting)
  426. 3. HADOOP-521. Fix another NullPointerException finding the
  427. ClassLoader when using libhdfs. (omalley via cutting)
  428. 4. HADOOP-526. Fix a NullPointerException when attempting to start
  429. two datanodes in the same directory. (Milind Bhandarkar via cutting)
  430. 5. HADOOP-529. Fix a NullPointerException when opening
  431. value-compressed sequence files generated by pre-0.6.0 Hadoop.
  432. (omalley via cutting)
  433. Release 0.6.0 - 2006-09-08
  434. 1. HADOOP-427. Replace some uses of DatanodeDescriptor in the DFS
  435. web UI code with DatanodeInfo, the preferred public class.
  436. (Devaraj Das via cutting)
  437. 2. HADOOP-426. Fix streaming contrib module to work correctly on
  438. Solaris. This was causing nightly builds to fail.
  439. (Michel Tourn via cutting)
  440. 3. HADOOP-400. Improvements to task assignment. Tasks are no longer
  441. re-run on nodes where they have failed (unless no other node is
  442. available). Also, tasks are better load-balanced among nodes.
  443. (omalley via cutting)
  444. 4. HADOOP-324. Fix datanode to not exit when a disk is full, but
  445. rather simply to fail writes. (Wendy Chien via cutting)
  446. 5. HADOOP-434. Change smallJobsBenchmark to use standard Hadoop
  447. scripts. (Sanjay Dahiya via cutting)
  448. 6. HADOOP-453. Fix a bug in Text.setCapacity(). (siren via cutting)
  449. 7. HADOOP-450. Change so that input types are determined by the
  450. RecordReader rather than specified directly in the JobConf. This
  451. facilitates jobs with a variety of input types.
  452. WARNING: This contains incompatible API changes! The RecordReader
  453. interface has two new methods that all user-defined InputFormats
  454. must now define. Also, the values returned by TextInputFormat are
  455. no longer of class UTF8, but now of class Text.
  456. 8. HADOOP-436. Fix an error-handling bug in the web ui.
  457. (Devaraj Das via cutting)
  458. 9. HADOOP-455. Fix a bug in Text, where DEL was not permitted.
  459. (Hairong Kuang via cutting)
  460. 10. HADOOP-456. Change the DFS namenode to keep a persistent record
  461. of the set of known datanodes. This will be used to implement a
  462. "safe mode" where filesystem changes are prohibited when a
  463. critical percentage of the datanodes are unavailable.
  464. (Konstantin Shvachko via cutting)
  465. 11. HADOOP-322. Add a job control utility. This permits one to
  466. specify job interdependencies. Each job is submitted only after
  467. the jobs it depends on have successfully completed.
  468. (Runping Qi via cutting)
  469. 12. HADOOP-176. Fix a bug in IntWritable.Comparator.
  470. (Dick King via cutting)
  471. 13. HADOOP-421. Replace uses of String in recordio package with Text
  472. class, for improved handling of UTF-8 data.
  473. (Milind Bhandarkar via cutting)
  474. 14. HADOOP-464. Improved error message when job jar not found.
  475. (Michel Tourn via cutting)
  476. 15. HADOOP-469. Fix /bin/bash specifics that have crept into our
  477. /bin/sh scripts since HADOOP-352.
  478. (Jean-Baptiste Quenot via cutting)
  479. 16. HADOOP-468. Add HADOOP_NICENESS environment variable to set
  480. scheduling priority for daemons. (Vetle Roeim via cutting)
  481. 17. HADOOP-473. Fix TextInputFormat to correctly handle more EOL
  482. formats. Things now work correctly with CR, LF or CRLF.
  483. (Dennis Kubes & James White via cutting)
  484. 18. HADOOP-461. Make Java 1.5 an explicit requirement. (cutting)
  485. 19. HADOOP-54. Add block compression to SequenceFile. One may now
  486. specify that blocks of keys and values are compressed together,
  487. improving compression for small keys and values.
  488. SequenceFile.Writer's constructor is now deprecated and replaced
  489. with a factory method. (Arun C Murthy via cutting)
  490. 20. HADOOP-281. Prohibit DFS files that are also directories.
  491. (Wendy Chien via cutting)
  492. 21. HADOOP-486. Add the job username to JobStatus instances returned
  493. by JobClient. (Mahadev Konar via cutting)
  494. 22. HADOOP-437. contrib/streaming: Add support for gzipped inputs.
  495. (Michel Tourn via cutting)
  496. 23. HADOOP-463. Add variable expansion to config files.
  497. Configuration property values may now contain variable
  498. expressions. A variable is referenced with the syntax
  499. '${variable}'. Variables values are found first in the
  500. configuration, and then in Java system properties. The default
  501. configuration is modified so that temporary directories are now
  502. under ${hadoop.tmp.dir}, which is, by default,
  503. /tmp/hadoop-${user.name}. (Michel Tourn via cutting)
  504. 24. HADOOP-419. Fix a NullPointerException finding the ClassLoader
  505. when using libhdfs. (omalley via cutting)
  506. 25. HADOOP-460. Fix contrib/smallJobsBenchmark to use Text instead of
  507. UTF8. (Sanjay Dahiya via cutting)
  508. 26. HADOOP-196. Fix Configuration(Configuration) constructor to work
  509. correctly. (Sami Siren via cutting)
  510. 27. HADOOP-501. Fix Configuration.toString() to handle URL resources.
  511. (Thomas Friol via cutting)
  512. 28. HADOOP-499. Reduce the use of Strings in contrib/streaming,
  513. replacing them with Text for better performance.
  514. (Hairong Kuang via cutting)
  515. 29. HADOOP-64. Manage multiple volumes with a single DataNode.
  516. Previously DataNode would create a separate daemon per configured
  517. volume, each with its own connection to the NameNode. Now all
  518. volumes are handled by a single DataNode daemon, reducing the load
  519. on the NameNode. (Milind Bhandarkar via cutting)
  520. 30. HADOOP-424. Fix MapReduce so that jobs which generate zero splits
  521. do not fail. (Frédéric Bertin via cutting)
  522. 31. HADOOP-408. Adjust some timeouts and remove some others so that
  523. unit tests run faster. (cutting)
  524. 32. HADOOP-507. Fix an IllegalAccessException in DFS.
  525. (omalley via cutting)
  526. 33. HADOOP-320. Fix so that checksum files are correctly copied when
  527. the destination of a file copy is a directory.
  528. (Hairong Kuang via cutting)
  529. 34. HADOOP-286. In DFSClient, avoid pinging the NameNode with
  530. renewLease() calls when no files are being written.
  531. (Konstantin Shvachko via cutting)
  532. 35. HADOOP-312. Close idle IPC connections. All IPC connections were
  533. cached forever. Now, after a connection has been idle for more
  534. than a configurable amount of time (one second by default), the
  535. connection is closed, conserving resources on both client and
  536. server. (Devaraj Das via cutting)
  537. 36. HADOOP-497. Permit the specification of the network interface and
  538. nameserver to be used when determining the local hostname
  539. advertised by datanodes and tasktrackers.
  540. (Lorenzo Thione via cutting)
  541. 37. HADOOP-441. Add a compression codec API and extend SequenceFile
  542. to use it. This will permit the use of alternate compression
  543. codecs in SequenceFile. (Arun C Murthy via cutting)
  544. 38. HADOOP-483. Improvements to libhdfs build and documentation.
  545. (Arun C Murthy via cutting)
  546. 39. HADOOP-458. Fix a memory corruption bug in libhdfs.
  547. (Arun C Murthy via cutting)
  548. 40. HADOOP-517. Fix a contrib/streaming bug in end-of-line detection.
  549. (Hairong Kuang via cutting)
  550. 41. HADOOP-474. Add CompressionCodecFactory, and use it in
  551. TextInputFormat and TextOutputFormat. Compressed input files are
  552. automatically decompressed when they have the correct extension.
  553. Output files will, when output compression is specified, be
  554. generated with an approprate extension. Also add a gzip codec and
  555. fix problems with UTF8 text inputs. (omalley via cutting)
  556. Release 0.5.0 - 2006-08-04
  557. 1. HADOOP-352. Fix shell scripts to use /bin/sh instead of
  558. /bin/bash, for better portability.
  559. (Jean-Baptiste Quenot via cutting)
  560. 2. HADOOP-313. Permit task state to be saved so that single tasks
  561. may be manually re-executed when debugging. (omalley via cutting)
  562. 3. HADOOP-339. Add method to JobClient API listing jobs that are
  563. not yet complete, i.e., that are queued or running.
  564. (Mahadev Konar via cutting)
  565. 4. HADOOP-355. Updates to the streaming contrib module, including
  566. API fixes, making reduce optional, and adding an input type for
  567. StreamSequenceRecordReader. (Michel Tourn via cutting)
  568. 5. HADOOP-358. Fix a NPE bug in Path.equals().
  569. (Frédéric Bertin via cutting)
  570. 6. HADOOP-327. Fix ToolBase to not call System.exit() when
  571. exceptions are thrown. (Hairong Kuang via cutting)
  572. 7. HADOOP-359. Permit map output to be compressed.
  573. (omalley via cutting)
  574. 8. HADOOP-341. Permit input URI to CopyFiles to use the HTTP
  575. protocol. This lets one, e.g., more easily copy log files into
  576. DFS. (Arun C Murthy via cutting)
  577. 9. HADOOP-361. Remove unix dependencies from streaming contrib
  578. module tests, making them pure java. (Michel Tourn via cutting)
  579. 10. HADOOP-354. Make public methods to stop DFS daemons.
  580. (Barry Kaplan via cutting)
  581. 11. HADOOP-252. Add versioning to RPC protocols.
  582. (Milind Bhandarkar via cutting)
  583. 12. HADOOP-356. Add contrib to "compile" and "test" build targets, so
  584. that this code is better maintained. (Michel Tourn via cutting)
  585. 13. HADOOP-307. Add smallJobsBenchmark contrib module. This runs
  586. lots of small jobs, in order to determine per-task overheads.
  587. (Sanjay Dahiya via cutting)
  588. 14. HADOOP-342. Add a tool for log analysis: Logalyzer.
  589. (Arun C Murthy via cutting)
  590. 15. HADOOP-347. Add web-based browsing of DFS content. The namenode
  591. redirects browsing requests to datanodes. Content requests are
  592. redirected to datanodes where the data is local when possible.
  593. (Devaraj Das via cutting)
  594. 16. HADOOP-351. Make Hadoop IPC kernel independent of Jetty.
  595. (Devaraj Das via cutting)
  596. 17. HADOOP-237. Add metric reporting to DFS and MapReduce. With only
  597. minor configuration changes, one can now monitor many Hadoop
  598. system statistics using Ganglia or other monitoring systems.
  599. (Milind Bhandarkar via cutting)
  600. 18. HADOOP-376. Fix datanode's HTTP server to scan for a free port.
  601. (omalley via cutting)
  602. 19. HADOOP-260. Add --config option to shell scripts, specifying an
  603. alternate configuration directory. (Milind Bhandarkar via cutting)
  604. 20. HADOOP-381. Permit developers to save the temporary files for
  605. tasks whose names match a regular expression, to facilliate
  606. debugging. (omalley via cutting)
  607. 21. HADOOP-344. Fix some Windows-related problems with DF.
  608. (Konstantin Shvachko via cutting)
  609. 22. HADOOP-380. Fix reduce tasks to poll less frequently for map
  610. outputs. (Mahadev Konar via cutting)
  611. 23. HADOOP-321. Refactor DatanodeInfo, in preparation for
  612. HADOOP-306. (Konstantin Shvachko & omalley via cutting)
  613. 24. HADOOP-385. Fix some bugs in record io code generation.
  614. (Milind Bhandarkar via cutting)
  615. 25. HADOOP-302. Add new Text class to replace UTF8, removing
  616. limitations of that class. Also refactor utility methods for
  617. writing zero-compressed integers (VInts and VLongs).
  618. (Hairong Kuang via cutting)
  619. 26. HADOOP-335. Refactor DFS namespace/transaction logging in
  620. namenode. (Konstantin Shvachko via cutting)
  621. 27. HADOOP-375. Fix handling of the datanode HTTP daemon's port so
  622. that multiple datanode's can be run on a single host.
  623. (Devaraj Das via cutting)
  624. 28. HADOOP-386. When removing excess DFS block replicas, remove those
  625. on nodes with the least free space first.
  626. (Johan Oskarson via cutting)
  627. 29. HADOOP-389. Fix intermittent failures of mapreduce unit tests.
  628. Also fix some build dependencies.
  629. (Mahadev & Konstantin via cutting)
  630. 30. HADOOP-362. Fix a problem where jobs hang when status messages
  631. are recieved out-of-order. (omalley via cutting)
  632. 31. HADOOP-394. Change order of DFS shutdown in unit tests to
  633. minimize errors logged. (Konstantin Shvachko via cutting)
  634. 32. HADOOP-396. Make DatanodeID implement Writable.
  635. (Konstantin Shvachko via cutting)
  636. 33. HADOOP-377. Permit one to add URL resources to a Configuration.
  637. (Jean-Baptiste Quenot via cutting)
  638. 34. HADOOP-345. Permit iteration over Configuration key/value pairs.
  639. (Michel Tourn via cutting)
  640. 35. HADOOP-409. Streaming contrib module: make configuration
  641. properties available to commands as environment variables.
  642. (Michel Tourn via cutting)
  643. 36. HADOOP-369. Add -getmerge option to dfs command that appends all
  644. files in a directory into a single local file.
  645. (Johan Oskarson via cutting)
  646. 37. HADOOP-410. Replace some TreeMaps with HashMaps in DFS, for
  647. a 17% performance improvement. (Milind Bhandarkar via cutting)
  648. 38. HADOOP-411. Add unit tests for command line parser.
  649. (Hairong Kuang via cutting)
  650. 39. HADOOP-412. Add MapReduce input formats that support filtering
  651. of SequenceFile data, including sampling and regex matching.
  652. Also, move JobConf.newInstance() to a new utility class.
  653. (Hairong Kuang via cutting)
  654. 40. HADOOP-226. Fix fsck command to properly consider replication
  655. counts, now that these can vary per file. (Bryan Pendleton via cutting)
  656. 41. HADOOP-425. Add a Python MapReduce example, using Jython.
  657. (omalley via cutting)
  658. Release 0.4.0 - 2006-06-28
  659. 1. HADOOP-298. Improved progress reports for CopyFiles utility, the
  660. distributed file copier. (omalley via cutting)
  661. 2. HADOOP-299. Fix the task tracker, permitting multiple jobs to
  662. more easily execute at the same time. (omalley via cutting)
  663. 3. HADOOP-250. Add an HTTP user interface to the namenode, running
  664. on port 50070. (Devaraj Das via cutting)
  665. 4. HADOOP-123. Add MapReduce unit tests that run a jobtracker and
  666. tasktracker, greatly increasing code coverage.
  667. (Milind Bhandarkar via cutting)
  668. 5. HADOOP-271. Add links from jobtracker's web ui to tasktracker's
  669. web ui. Also attempt to log a thread dump of child processes
  670. before they're killed. (omalley via cutting)
  671. 6. HADOOP-210. Change RPC server to use a selector instead of a
  672. thread per connection. This should make it easier to scale to
  673. larger clusters. Note that this incompatibly changes the RPC
  674. protocol: clients and servers must both be upgraded to the new
  675. version to ensure correct operation. (Devaraj Das via cutting)
  676. 7. HADOOP-311. Change DFS client to retry failed reads, so that a
  677. single read failure will not alone cause failure of a task.
  678. (omalley via cutting)
  679. 8. HADOOP-314. Remove the "append" phase when reducing. Map output
  680. files are now directly passed to the sorter, without first
  681. appending them into a single file. Now, the first third of reduce
  682. progress is "copy" (transferring map output to reduce nodes), the
  683. middle third is "sort" (sorting map output) and the last third is
  684. "reduce" (generating output). Long-term, the "sort" phase will
  685. also be removed. (omalley via cutting)
  686. 9. HADOOP-316. Fix a potential deadlock in the jobtracker.
  687. (omalley via cutting)
  688. 10. HADOOP-319. Fix FileSystem.close() to remove the FileSystem
  689. instance from the cache. (Hairong Kuang via cutting)
  690. 11. HADOOP-135. Fix potential deadlock in JobTracker by acquiring
  691. locks in a consistent order. (omalley via cutting)
  692. 12. HADOOP-278. Check for existence of input directories before
  693. starting MapReduce jobs, making it easier to debug this common
  694. error. (omalley via cutting)
  695. 13. HADOOP-304. Improve error message for
  696. UnregisterdDatanodeException to include expected node name.
  697. (Konstantin Shvachko via cutting)
  698. 14. HADOOP-305. Fix TaskTracker to ask for new tasks as soon as a
  699. task is finished, rather than waiting for the next heartbeat.
  700. This improves performance when tasks are short.
  701. (Mahadev Konar via cutting)
  702. 15. HADOOP-59. Add support for generic command line options. One may
  703. now specify the filesystem (-fs), the MapReduce jobtracker (-jt),
  704. a config file (-conf) or any configuration property (-D). The
  705. "dfs", "fsck", "job", and "distcp" commands currently support
  706. this, with more to be added. (Hairong Kuang via cutting)
  707. 16. HADOOP-296. Permit specification of the amount of reserved space
  708. on a DFS datanode. One may specify both the percentage free and
  709. the number of bytes. (Johan Oskarson via cutting)
  710. 17. HADOOP-325. Fix a problem initializing RPC parameter classes, and
  711. remove the workaround used to initialize classes.
  712. (omalley via cutting)
  713. 18. HADOOP-328. Add an option to the "distcp" command to ignore read
  714. errors while copying. (omalley via cutting)
  715. 19. HADOOP-27. Don't allocate tasks to trackers whose local free
  716. space is too low. (Johan Oskarson via cutting)
  717. 20. HADOOP-318. Keep slow DFS output from causing task timeouts.
  718. This incompatibly changes some public interfaces, adding a
  719. parameter to OutputFormat.getRecordWriter() and the new method
  720. Reporter.progress(), but it makes lots of tasks succeed that were
  721. previously failing. (Milind Bhandarkar via cutting)
  722. Release 0.3.2 - 2006-06-09
  723. 1. HADOOP-275. Update the streaming contrib module to use log4j for
  724. its logging. (Michel Tourn via cutting)
  725. 2. HADOOP-279. Provide defaults for log4j logging parameters, so
  726. that things still work reasonably when Hadoop-specific system
  727. properties are not provided. (omalley via cutting)
  728. 3. HADOOP-280. Fix a typo in AllTestDriver which caused the wrong
  729. test to be run when "DistributedFSCheck" was specified.
  730. (Konstantin Shvachko via cutting)
  731. 4. HADOOP-240. DFS's mkdirs() implementation no longer logs a warning
  732. when the directory already exists. (Hairong Kuang via cutting)
  733. 5. HADOOP-285. Fix DFS datanodes to be able to re-join the cluster
  734. after the connection to the namenode is lost. (omalley via cutting)
  735. 6. HADOOP-277. Fix a race condition when creating directories.
  736. (Sameer Paranjpye via cutting)
  737. 7. HADOOP-289. Improved exception handling in DFS datanode.
  738. (Konstantin Shvachko via cutting)
  739. 8. HADOOP-292. Fix client-side logging to go to standard error
  740. rather than standard output, so that it can be distinguished from
  741. application output. (omalley via cutting)
  742. 9. HADOOP-294. Fixed bug where conditions for retrying after errors
  743. in the DFS client were reversed. (omalley via cutting)
  744. Release 0.3.1 - 2006-06-05
  745. 1. HADOOP-272. Fix a bug in bin/hadoop setting log
  746. parameters. (omalley & cutting)
  747. 2. HADOOP-274. Change applications to log to standard output rather
  748. than to a rolling log file like daemons. (omalley via cutting)
  749. 3. HADOOP-262. Fix reduce tasks to report progress while they're
  750. waiting for map outputs, so that they do not time out.
  751. (Mahadev Konar via cutting)
  752. 4. HADOOP-245 and HADOOP-246. Improvements to record io package.
  753. (Mahadev Konar via cutting)
  754. 5. HADOOP-276. Add logging config files to jar file so that they're
  755. always found. (omalley via cutting)
  756. Release 0.3.0 - 2006-06-02
  757. 1. HADOOP-208. Enhance MapReduce web interface, adding new pages
  758. for failed tasks, and tasktrackers. (omalley via cutting)
  759. 2. HADOOP-204. Tweaks to metrics package. (David Bowen via cutting)
  760. 3. HADOOP-209. Add a MapReduce-based file copier. This will
  761. copy files within or between file systems in parallel.
  762. (Milind Bhandarkar via cutting)
  763. 4. HADOOP-146. Fix DFS to check when randomly generating a new block
  764. id that no existing blocks already have that id.
  765. (Milind Bhandarkar via cutting)
  766. 5. HADOOP-180. Make a daemon thread that does the actual task clean ups, so
  767. that the main offerService thread in the taskTracker doesn't get stuck
  768. and miss his heartbeat window. This was killing many task trackers as
  769. big jobs finished (300+ tasks / node). (omalley via cutting)
  770. 6. HADOOP-200. Avoid transmitting entire list of map task names to
  771. reduce tasks. Instead just transmit the number of map tasks and
  772. henceforth refer to them by number when collecting map output.
  773. (omalley via cutting)
  774. 7. HADOOP-219. Fix a NullPointerException when handling a checksum
  775. exception under SequenceFile.Sorter.sort(). (cutting & stack)
  776. 8. HADOOP-212. Permit alteration of the file block size in DFS. The
  777. default block size for new files may now be specified in the
  778. configuration with the dfs.block.size property. The block size
  779. may also be specified when files are opened.
  780. (omalley via cutting)
  781. 9. HADOOP-218. Avoid accessing configuration while looping through
  782. tasks in JobTracker. (Mahadev Konar via cutting)
  783. 10. HADOOP-161. Add hashCode() method to DFS's Block.
  784. (Milind Bhandarkar via cutting)
  785. 11. HADOOP-115. Map output types may now be specified. These are also
  786. used as reduce input types, thus permitting reduce input types to
  787. differ from reduce output types. (Runping Qi via cutting)
  788. 12. HADOOP-216. Add task progress to task status page.
  789. (Bryan Pendelton via cutting)
  790. 13. HADOOP-233. Add web server to task tracker that shows running
  791. tasks and logs. Also add log access to job tracker web interface.
  792. (omalley via cutting)
  793. 14. HADOOP-205. Incorporate pending tasks into tasktracker load
  794. calculations. (Mahadev Konar via cutting)
  795. 15. HADOOP-247. Fix sort progress to better handle exceptions.
  796. (Mahadev Konar via cutting)
  797. 16. HADOOP-195. Improve performance of the transfer of map outputs to
  798. reduce nodes by performing multiple transfers in parallel, each on
  799. a separate socket. (Sameer Paranjpye via cutting)
  800. 17. HADOOP-251. Fix task processes to be tolerant of failed progress
  801. reports to their parent process. (omalley via cutting)
  802. 18. HADOOP-325. Improve the FileNotFound exceptions thrown by
  803. LocalFileSystem to include the name of the file.
  804. (Benjamin Reed via cutting)
  805. 19. HADOOP-254. Use HTTP to transfer map output data to reduce
  806. nodes. This, together with HADOOP-195, greatly improves the
  807. performance of these transfers. (omalley via cutting)
  808. 20. HADOOP-163. Cause datanodes that\ are unable to either read or
  809. write data to exit, so that the namenode will no longer target
  810. them for new blocks and will replicate their data on other nodes.
  811. (Hairong Kuang via cutting)
  812. 21. HADOOP-222. Add a -setrep option to the dfs commands that alters
  813. file replication levels. (Johan Oskarson via cutting)
  814. 22. HADOOP-75. In DFS, only check for a complete file when the file
  815. is closed, rather than as each block is written.
  816. (Milind Bhandarkar via cutting)
  817. 23. HADOOP-124. Change DFS so that datanodes are identified by a
  818. persistent ID rather than by host and port. This solves a number
  819. of filesystem integrity problems, when, e.g., datanodes are
  820. restarted. (Konstantin Shvachko via cutting)
  821. 24. HADOOP-256. Add a C API for DFS. (Arun C Murthy via cutting)
  822. 25. HADOOP-211. Switch to use the Jakarta Commons logging internally,
  823. configured to use log4j by default. (Arun C Murthy and cutting)
  824. 26. HADOOP-265. Tasktracker now fails to start if it does not have a
  825. writable local directory for temporary files. In this case, it
  826. logs a message to the JobTracker and exits. (Hairong Kuang via cutting)
  827. 27. HADOOP-270. Fix potential deadlock in datanode shutdown.
  828. (Hairong Kuang via cutting)
  829. Release 0.2.1 - 2006-05-12
  830. 1. HADOOP-199. Fix reduce progress (broken by HADOOP-182).
  831. (omalley via cutting)
  832. 2. HADOOP-201. Fix 'bin/hadoop dfs -report'. (cutting)
  833. 3. HADOOP-207. Fix JDK 1.4 incompatibility introduced by HADOOP-96.
  834. System.getenv() does not work in JDK 1.4. (Hairong Kuang via cutting)
  835. Release 0.2.0 - 2006-05-05
  836. 1. Fix HADOOP-126. 'bin/hadoop dfs -cp' now correctly copies .crc
  837. files. (Konstantin Shvachko via cutting)
  838. 2. Fix HADOOP-51. Change DFS to support per-file replication counts.
  839. (Konstantin Shvachko via cutting)
  840. 3. Fix HADOOP-131. Add scripts to start/stop dfs and mapred daemons.
  841. Use these in start/stop-all scripts. (Chris Mattmann via cutting)
  842. 4. Stop using ssh options by default that are not yet in widely used
  843. versions of ssh. Folks can still enable their use by uncommenting
  844. a line in conf/hadoop-env.sh. (cutting)
  845. 5. Fix HADOOP-92. Show information about all attempts to run each
  846. task in the web ui. (Mahadev konar via cutting)
  847. 6. Fix HADOOP-128. Improved DFS error handling. (Owen O'Malley via cutting)
  848. 7. Fix HADOOP-129. Replace uses of java.io.File with new class named
  849. Path. This fixes bugs where java.io.File methods were called
  850. directly when FileSystem methods were desired, and reduces the
  851. likelihood of such bugs in the future. It also makes the handling
  852. of pathnames more consistent between local and dfs FileSystems and
  853. between Windows and Unix. java.io.File-based methods are still
  854. available for back-compatibility, but are deprecated and will be
  855. removed once 0.2 is released. (cutting)
  856. 8. Change dfs.data.dir and mapred.local.dir to be comma-separated
  857. lists of directories, no longer be space-separated. This fixes
  858. several bugs on Windows. (cutting)
  859. 9. Fix HADOOP-144. Use mapred task id for dfs client id, to
  860. facilitate debugging. (omalley via cutting)
  861. 10. Fix HADOOP-143. Do not line-wrap stack-traces in web ui.
  862. (omalley via cutting)
  863. 11. Fix HADOOP-118. In DFS, improve clean up of abandoned file
  864. creations. (omalley via cutting)
  865. 12. Fix HADOOP-138. Stop multiple tasks in a single heartbeat, rather
  866. than one per heartbeat. (Stefan via cutting)
  867. 13. Fix HADOOP-139. Remove a potential deadlock in
  868. LocalFileSystem.lock(). (Igor Bolotin via cutting)
  869. 14. Fix HADOOP-134. Don't hang jobs when the tasktracker is
  870. misconfigured to use an un-writable local directory. (omalley via cutting)
  871. 15. Fix HADOOP-115. Correct an error message. (Stack via cutting)
  872. 16. Fix HADOOP-133. Retry pings from child to parent, in case of
  873. (local) communcation problems. Also log exit status, so that one
  874. can distinguish patricide from other deaths. (omalley via cutting)
  875. 17. Fix HADOOP-142. Avoid re-running a task on a host where it has
  876. previously failed. (omalley via cutting)
  877. 18. Fix HADOOP-148. Maintain a task failure count for each
  878. tasktracker and display it in the web ui. (omalley via cutting)
  879. 19. Fix HADOOP-151. Close a potential socket leak, where new IPC
  880. connection pools were created per configuration instance that RPCs
  881. use. Now a global RPC connection pool is used again, as
  882. originally intended. (cutting)
  883. 20. Fix HADOOP-69. Don't throw a NullPointerException when getting
  884. hints for non-existing file split. (Bryan Pendelton via cutting)
  885. 21. Fix HADOOP-157. When a task that writes dfs files (e.g., a reduce
  886. task) failed and was retried, it would fail again and again,
  887. eventually failing the job. The problem was that dfs did not yet
  888. know that the failed task had abandoned the files, and would not
  889. yet let another task create files with the same names. Dfs now
  890. retries when creating a file long enough for locks on abandoned
  891. files to expire. (omalley via cutting)
  892. 22. Fix HADOOP-150. Improved task names that include job
  893. names. (omalley via cutting)
  894. 23. Fix HADOOP-162. Fix ConcurrentModificationException when
  895. releasing file locks. (omalley via cutting)
  896. 24. Fix HADOOP-132. Initial check-in of new Metrics API, including
  897. implementations for writing metric data to a file and for sending
  898. it to Ganglia. (David Bowen via cutting)
  899. 25. Fix HADOOP-160. Remove some uneeded synchronization around
  900. time-consuming operations in the TaskTracker. (omalley via cutting)
  901. 26. Fix HADOOP-166. RPCs failed when passed subclasses of a declared
  902. parameter type. This is fixed by changing ObjectWritable to store
  903. both the declared type and the instance type for Writables. Note
  904. that this incompatibly changes the format of ObjectWritable and
  905. will render unreadable any ObjectWritables stored in files.
  906. Nutch only uses ObjectWritable in intermediate files, so this
  907. should not be a problem for Nutch. (Stefan & cutting)
  908. 27. Fix HADOOP-168. MapReduce RPC protocol methods should all declare
  909. IOException, so that timeouts are handled appropriately.
  910. (omalley via cutting)
  911. 28. Fix HADOOP-169. Don't fail a reduce task if a call to the
  912. jobtracker to locate map outputs fails. (omalley via cutting)
  913. 29. Fix HADOOP-170. Permit FileSystem clients to examine and modify
  914. the replication count of individual files. Also fix a few
  915. replication-related bugs. (Konstantin Shvachko via cutting)
  916. 30. Permit specification of a higher replication levels for job
  917. submission files (job.xml and job.jar). This helps with large
  918. clusters, since these files are read by every node. (cutting)
  919. 31. HADOOP-173. Optimize allocation of tasks with local data. (cutting)
  920. 32. HADOOP-167. Reduce number of Configurations and JobConf's
  921. created. (omalley via cutting)
  922. 33. NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  923. file. The lack of a .crc file was causing warnings. (cutting)
  924. 34. HADOOP-174. Change JobClient to not abort job until it has failed
  925. to contact the job tracker for five attempts, not just one as
  926. before. (omalley via cutting)
  927. 35. HADOOP-177. Change MapReduce web interface to page through tasks.
  928. Previously, when jobs had more than a few thousand tasks they
  929. could crash web browsers. (Mahadev Konar via cutting)
  930. 36. HADOOP-178. In DFS, piggyback blockwork requests from datanodes
  931. on heartbeat responses from namenode. This reduces the volume of
  932. RPC traffic. Also move startup delay in blockwork from datanode
  933. to namenode. This fixes a problem where restarting the namenode
  934. triggered a lot of uneeded replication. (Hairong Kuang via cutting)
  935. 37. HADOOP-183. If the DFS namenode is restarted with different
  936. minimum and/or maximum replication counts, existing files'
  937. replication counts are now automatically adjusted to be within the
  938. newly configured bounds. (Hairong Kuang via cutting)
  939. 38. HADOOP-186. Better error handling in TaskTracker's top-level
  940. loop. Also improve calculation of time to send next heartbeat.
  941. (omalley via cutting)
  942. 39. HADOOP-187. Add two MapReduce examples/benchmarks. One creates
  943. files containing random data. The second sorts the output of the
  944. first. (omalley via cutting)
  945. 40. HADOOP-185. Fix so that, when a task tracker times out making the
  946. RPC asking for a new task to run, the job tracker does not think
  947. that it is actually running the task returned. (omalley via cutting)
  948. 41. HADOOP-190. If a child process hangs after it has reported
  949. completion, its output should not be lost. (Stack via cutting)
  950. 42. HADOOP-184. Re-structure some test code to better support testing
  951. on a cluster. (Mahadev Konar via cutting)
  952. 43. HADOOP-191 Add streaming package, Hadoop's first contrib module.
  953. This permits folks to easily submit MapReduce jobs whose map and
  954. reduce functions are implemented by shell commands. Use
  955. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.
  956. (Michel Tourn via cutting)
  957. 44. HADOOP-189. Fix MapReduce in standalone configuration to
  958. correctly handle job jar files that contain a lib directory with
  959. nested jar files. (cutting)
  960. 45. HADOOP-65. Initial version of record I/O framework that enables
  961. the specification of record types and generates marshalling code
  962. in both Java and C++. Generated Java code implements
  963. WritableComparable, but is not yet otherwise used by
  964. Hadoop. (Milind Bhandarkar via cutting)
  965. 46. HADOOP-193. Add a MapReduce-based FileSystem benchmark.
  966. (Konstantin Shvachko via cutting)
  967. 47. HADOOP-194. Add a MapReduce-based FileSystem checker. This reads
  968. every block in every file in the filesystem. (Konstantin Shvachko
  969. via cutting)
  970. 48. HADOOP-182. Fix so that lost task trackers to not change the
  971. status of reduce tasks or completed jobs. Also fixes the progress
  972. meter so that failed tasks are subtracted. (omalley via cutting)
  973. 49. HADOOP-96. Logging improvements. Log files are now separate from
  974. standard output and standard error files. Logs are now rolled.
  975. Logging of all DFS state changes can be enabled, to facilitate
  976. debugging. (Hairong Kuang via cutting)
  977. Release 0.1.1 - 2006-04-08
  978. 1. Added CHANGES.txt, logging all significant changes to Hadoop. (cutting)
  979. 2. Fix MapReduceBase.close() to throw IOException, as declared in the
  980. Closeable interface. This permits subclasses which override this
  981. method to throw that exception. (cutting)
  982. 3. Fix HADOOP-117. Pathnames were mistakenly transposed in
  983. JobConf.getLocalFile() causing many mapred temporary files to not
  984. be removed. (Raghavendra Prabhu via cutting)
  985. 4. Fix HADOOP-116. Clean up job submission files when jobs complete.
  986. (cutting)
  987. 5. Fix HADOOP-125. Fix handling of absolute paths on Windows (cutting)
  988. Release 0.1.0 - 2006-04-01
  989. 1. The first release of Hadoop.