CHANGES.txt 48 KB

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