CHANGES.txt 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. Hadoop Change Log
  2. Trunk (unreleased changes)
  3. 1. HADOOP-427. Replace some uses of DatanodeDescriptor in the DFS
  4. web UI code with DatanodeInfo, the preferred public class.
  5. (Devaraj Das via cutting)
  6. 2. HADOOP-426. Fix streaming contrib module to work correctly on
  7. Solaris. This was causing nightly builds to fail.
  8. (Michel Tourn via cutting)
  9. 3. HADOOP-400. Improvements to task assignment. Tasks are no longer
  10. re-run on nodes where they have failed (unless no other node is
  11. available). Also, tasks are better load-balanced among nodes.
  12. (omalley via cutting)
  13. 4. HADOOP-324. Fix datanode to not exit when a disk is full, but
  14. rather simply to fail writes. (Wendy Chien via cutting)
  15. 5. HADOOP-434. Change smallJobsBenchmark to use standard Hadoop
  16. scripts. (Sanjay Dahiya via cutting)
  17. 6. HADOOP-453. Fix a bug in Text.setCapacity(). (siren via cutting)
  18. 7. HADOOP-450. Change so that input types are determined by the
  19. RecordReader rather than specified directly in the JobConf. This
  20. facilitates jobs with a variety of input types.
  21. WARNING: This contains incompatible API changes! The RecordReader
  22. interface has two new methods that all user-defined InputFormats
  23. must now define. Also, the values returned by TextInputFormat are
  24. no longer of class UTF8, but now of class Text.
  25. 8. HADOOP-436. Fix an error-handling bug in the web ui.
  26. (Devaraj Das via cutting)
  27. 9. HADOOP-455. Fix a bug in Text, where DEL was not permitted.
  28. (Hairong Kuang via cutting)
  29. 10. HADOOP-456. Change the DFS namenode to keep a persistent record
  30. of the set of known datanodes. This will be used to implement a
  31. "safe mode" where filesystem changes are prohibited when a
  32. critical percentage of the datanodes are unavailable.
  33. (Konstantin Shvachko via cutting)
  34. 11. HADOOP-322. Add a job control utility. This permits one to
  35. specify job interdependencies. Each job is submitted only after
  36. the jobs it depends on have successfully completed.
  37. (Runping Qi via cutting)
  38. 12. HADOOP-176. Fix a bug in IntWritable.Comparator.
  39. (Dick King via cutting)
  40. 13. HADOOP-421. Replace uses of String in recordio package with Text
  41. class, for improved handling of UTF-8 data.
  42. (Milind Bhandarkar via cutting)
  43. 14. HADOOP-464. Improved error message when job jar not found.
  44. (Michel Tourn via cutting)
  45. 15. HADOOP-469. Fix /bin/bash specifics that have crept into our
  46. /bin/sh scripts since HADOOP-352.
  47. (Jean-Baptiste Quenot via cutting)
  48. 16. HADOOP-468. Add HADOOP_NICENESS environment variable to set
  49. scheduling priority for daemons. (Vetle Roeim via cutting)
  50. 17. HADOOP-473. Fix TextInputFormat to correctly handle more EOL
  51. formats. Things now work correctly with CR, LF or CRLF.
  52. (Dennis Kubes & James White via cutting)
  53. 18. HADOOP-461. Make Java 1.5 an explicit requirement. (cutting)
  54. 19. HADOOP-54. Add block compression to SequenceFile. One may now
  55. specify that blocks of keys and values are compressed together,
  56. improving compression for small keys and values.
  57. SequenceFile.Writer's constructor is now deprecated and replaced
  58. with a factory method. (Arun C Murthy via cutting)
  59. 20. HADOOP-281. Prohibit DFS files that are also directories.
  60. (Wendy Chien via cutting)
  61. 21. HADOOP-486. Add the job username to JobStatus instances returned
  62. by JobClient. (Mahadev Konar via cutting)
  63. 22. HADOOP-437. contrib/streaming: Add support for gzipped inputs.
  64. (Michel Tourn via cutting)
  65. 23. HADOOP-463. Add variable expansion to config files.
  66. Configuration property values may now contain variable
  67. expressions. A variable is referenced with the syntax
  68. '${variable}'. Variables values are found first in the
  69. configuration, and then in Java system properties. The default
  70. configuration is modified so that temporary directories are now
  71. under ${hadoop.tmp.dir}, which is, by default,
  72. /tmp/hadoop-${user.name}. (Michel Tourn via cutting)
  73. 24. HADOOP-419. Fix a NullPointerException finding the ClassLoader
  74. when using libhdfs. (omalley via cutting)
  75. Release 0.5.0 - 2006-08-04
  76. 1. HADOOP-352. Fix shell scripts to use /bin/sh instead of
  77. /bin/bash, for better portability.
  78. (Jean-Baptiste Quenot via cutting)
  79. 2. HADOOP-313. Permit task state to be saved so that single tasks
  80. may be manually re-executed when debugging. (omalley via cutting)
  81. 3. HADOOP-339. Add method to JobClient API listing jobs that are
  82. not yet complete, i.e., that are queued or running.
  83. (Mahadev Konar via cutting)
  84. 4. HADOOP-355. Updates to the streaming contrib module, including
  85. API fixes, making reduce optional, and adding an input type for
  86. StreamSequenceRecordReader. (Michel Tourn via cutting)
  87. 5. HADOOP-358. Fix a NPE bug in Path.equals().
  88. (Frédéric Bertin via cutting)
  89. 6. HADOOP-327. Fix ToolBase to not call System.exit() when
  90. exceptions are thrown. (Hairong Kuang via cutting)
  91. 7. HADOOP-359. Permit map output to be compressed.
  92. (omalley via cutting)
  93. 8. HADOOP-341. Permit input URI to CopyFiles to use the HTTP
  94. protocol. This lets one, e.g., more easily copy log files into
  95. DFS. (Arun C Murthy via cutting)
  96. 9. HADOOP-361. Remove unix dependencies from streaming contrib
  97. module tests, making them pure java. (Michel Tourn via cutting)
  98. 10. HADOOP-354. Make public methods to stop DFS daemons.
  99. (Barry Kaplan via cutting)
  100. 11. HADOOP-252. Add versioning to RPC protocols.
  101. (Milind Bhandarkar via cutting)
  102. 12. HADOOP-356. Add contrib to "compile" and "test" build targets, so
  103. that this code is better maintained. (Michel Tourn via cutting)
  104. 13. HADOOP-307. Add smallJobsBenchmark contrib module. This runs
  105. lots of small jobs, in order to determine per-task overheads.
  106. (Sanjay Dahiya via cutting)
  107. 14. HADOOP-342. Add a tool for log analysis: Logalyzer.
  108. (Arun C Murthy via cutting)
  109. 15. HADOOP-347. Add web-based browsing of DFS content. The namenode
  110. redirects browsing requests to datanodes. Content requests are
  111. redirected to datanodes where the data is local when possible.
  112. (Devaraj Das via cutting)
  113. 16. HADOOP-351. Make Hadoop IPC kernel independent of Jetty.
  114. (Devaraj Das via cutting)
  115. 17. HADOOP-237. Add metric reporting to DFS and MapReduce. With only
  116. minor configuration changes, one can now monitor many Hadoop
  117. system statistics using Ganglia or other monitoring systems.
  118. (Milind Bhandarkar via cutting)
  119. 18. HADOOP-376. Fix datanode's HTTP server to scan for a free port.
  120. (omalley via cutting)
  121. 19. HADOOP-260. Add --config option to shell scripts, specifying an
  122. alternate configuration directory. (Milind Bhandarkar via cutting)
  123. 20. HADOOP-381. Permit developers to save the temporary files for
  124. tasks whose names match a regular expression, to facilliate
  125. debugging. (omalley via cutting)
  126. 21. HADOOP-344. Fix some Windows-related problems with DF.
  127. (Konstantin Shvachko via cutting)
  128. 22. HADOOP-380. Fix reduce tasks to poll less frequently for map
  129. outputs. (Mahadev Konar via cutting)
  130. 23. HADOOP-321. Refactor DatanodeInfo, in preparation for
  131. HADOOP-306. (Konstantin Shvachko & omalley via cutting)
  132. 24. HADOOP-385. Fix some bugs in record io code generation.
  133. (Milind Bhandarkar via cutting)
  134. 25. HADOOP-302. Add new Text class to replace UTF8, removing
  135. limitations of that class. Also refactor utility methods for
  136. writing zero-compressed integers (VInts and VLongs).
  137. (Hairong Kuang via cutting)
  138. 26. HADOOP-335. Refactor DFS namespace/transaction logging in
  139. namenode. (Konstantin Shvachko via cutting)
  140. 27. HADOOP-375. Fix handling of the datanode HTTP daemon's port so
  141. that multiple datanode's can be run on a single host.
  142. (Devaraj Das via cutting)
  143. 28. HADOOP-386. When removing excess DFS block replicas, remove those
  144. on nodes with the least free space first.
  145. (Johan Oskarson via cutting)
  146. 29. HADOOP-389. Fix intermittent failures of mapreduce unit tests.
  147. Also fix some build dependencies.
  148. (Mahadev & Konstantin via cutting)
  149. 30. HADOOP-362. Fix a problem where jobs hang when status messages
  150. are recieved out-of-order. (omalley via cutting)
  151. 31. HADOOP-394. Change order of DFS shutdown in unit tests to
  152. minimize errors logged. (Konstantin Shvachko via cutting)
  153. 32. HADOOP-396. Make DatanodeID implement Writable.
  154. (Konstantin Shvachko via cutting)
  155. 33. HADOOP-377. Permit one to add URL resources to a Configuration.
  156. (Jean-Baptiste Quenot via cutting)
  157. 34. HADOOP-345. Permit iteration over Configuration key/value pairs.
  158. (Michel Tourn via cutting)
  159. 35. HADOOP-409. Streaming contrib module: make configuration
  160. properties available to commands as environment variables.
  161. (Michel Tourn via cutting)
  162. 36. HADOOP-369. Add -getmerge option to dfs command that appends all
  163. files in a directory into a single local file.
  164. (Johan Oskarson via cutting)
  165. 37. HADOOP-410. Replace some TreeMaps with HashMaps in DFS, for
  166. a 17% performance improvement. (Milind Bhandarkar via cutting)
  167. 38. HADOOP-411. Add unit tests for command line parser.
  168. (Hairong Kuang via cutting)
  169. 39. HADOOP-412. Add MapReduce input formats that support filtering
  170. of SequenceFile data, including sampling and regex matching.
  171. Also, move JobConf.newInstance() to a new utility class.
  172. (Hairong Kuang via cutting)
  173. 40. HADOOP-226. Fix fsck command to properly consider replication
  174. counts, now that these can vary per file. (Bryan Pendleton via cutting)
  175. 41. HADOOP-425. Add a Python MapReduce example, using Jython.
  176. (omalley via cutting)
  177. Release 0.4.0 - 2006-06-28
  178. 1. HADOOP-298. Improved progress reports for CopyFiles utility, the
  179. distributed file copier. (omalley via cutting)
  180. 2. HADOOP-299. Fix the task tracker, permitting multiple jobs to
  181. more easily execute at the same time. (omalley via cutting)
  182. 3. HADOOP-250. Add an HTTP user interface to the namenode, running
  183. on port 50070. (Devaraj Das via cutting)
  184. 4. HADOOP-123. Add MapReduce unit tests that run a jobtracker and
  185. tasktracker, greatly increasing code coverage.
  186. (Milind Bhandarkar via cutting)
  187. 5. HADOOP-271. Add links from jobtracker's web ui to tasktracker's
  188. web ui. Also attempt to log a thread dump of child processes
  189. before they're killed. (omalley via cutting)
  190. 6. HADOOP-210. Change RPC server to use a selector instead of a
  191. thread per connection. This should make it easier to scale to
  192. larger clusters. Note that this incompatibly changes the RPC
  193. protocol: clients and servers must both be upgraded to the new
  194. version to ensure correct operation. (Devaraj Das via cutting)
  195. 7. HADOOP-311. Change DFS client to retry failed reads, so that a
  196. single read failure will not alone cause failure of a task.
  197. (omalley via cutting)
  198. 8. HADOOP-314. Remove the "append" phase when reducing. Map output
  199. files are now directly passed to the sorter, without first
  200. appending them into a single file. Now, the first third of reduce
  201. progress is "copy" (transferring map output to reduce nodes), the
  202. middle third is "sort" (sorting map output) and the last third is
  203. "reduce" (generating output). Long-term, the "sort" phase will
  204. also be removed. (omalley via cutting)
  205. 9. HADOOP-316. Fix a potential deadlock in the jobtracker.
  206. (omalley via cutting)
  207. 10. HADOOP-319. Fix FileSystem.close() to remove the FileSystem
  208. instance from the cache. (Hairong Kuang via cutting)
  209. 11. HADOOP-135. Fix potential deadlock in JobTracker by acquiring
  210. locks in a consistent order. (omalley via cutting)
  211. 12. HADOOP-278. Check for existence of input directories before
  212. starting MapReduce jobs, making it easier to debug this common
  213. error. (omalley via cutting)
  214. 13. HADOOP-304. Improve error message for
  215. UnregisterdDatanodeException to include expected node name.
  216. (Konstantin Shvachko via cutting)
  217. 14. HADOOP-305. Fix TaskTracker to ask for new tasks as soon as a
  218. task is finished, rather than waiting for the next heartbeat.
  219. This improves performance when tasks are short.
  220. (Mahadev Konar via cutting)
  221. 15. HADOOP-59. Add support for generic command line options. One may
  222. now specify the filesystem (-fs), the MapReduce jobtracker (-jt),
  223. a config file (-conf) or any configuration property (-D). The
  224. "dfs", "fsck", "job", and "distcp" commands currently support
  225. this, with more to be added. (Hairong Kuang via cutting)
  226. 16. HADOOP-296. Permit specification of the amount of reserved space
  227. on a DFS datanode. One may specify both the percentage free and
  228. the number of bytes. (Johan Oskarson via cutting)
  229. 17. HADOOP-325. Fix a problem initializing RPC parameter classes, and
  230. remove the workaround used to initialize classes.
  231. (omalley via cutting)
  232. 18. HADOOP-328. Add an option to the "distcp" command to ignore read
  233. errors while copying. (omalley via cutting)
  234. 19. HADOOP-27. Don't allocate tasks to trackers whose local free
  235. space is too low. (Johan Oskarson via cutting)
  236. 20. HADOOP-318. Keep slow DFS output from causing task timeouts.
  237. This incompatibly changes some public interfaces, adding a
  238. parameter to OutputFormat.getRecordWriter() and the new method
  239. Reporter.progress(), but it makes lots of tasks succeed that were
  240. previously failing. (Milind Bhandarkar via cutting)
  241. Release 0.3.2 - 2006-06-09
  242. 1. HADOOP-275. Update the streaming contrib module to use log4j for
  243. its logging. (Michel Tourn via cutting)
  244. 2. HADOOP-279. Provide defaults for log4j logging parameters, so
  245. that things still work reasonably when Hadoop-specific system
  246. properties are not provided. (omalley via cutting)
  247. 3. HADOOP-280. Fix a typo in AllTestDriver which caused the wrong
  248. test to be run when "DistributedFSCheck" was specified.
  249. (Konstantin Shvachko via cutting)
  250. 4. HADOOP-240. DFS's mkdirs() implementation no longer logs a warning
  251. when the directory already exists. (Hairong Kuang via cutting)
  252. 5. HADOOP-285. Fix DFS datanodes to be able to re-join the cluster
  253. after the connection to the namenode is lost. (omalley via cutting)
  254. 6. HADOOP-277. Fix a race condition when creating directories.
  255. (Sameer Paranjpye via cutting)
  256. 7. HADOOP-289. Improved exception handling in DFS datanode.
  257. (Konstantin Shvachko via cutting)
  258. 8. HADOOP-292. Fix client-side logging to go to standard error
  259. rather than standard output, so that it can be distinguished from
  260. application output. (omalley via cutting)
  261. 9. HADOOP-294. Fixed bug where conditions for retrying after errors
  262. in the DFS client were reversed. (omalley via cutting)
  263. Release 0.3.1 - 2006-06-05
  264. 1. HADOOP-272. Fix a bug in bin/hadoop setting log
  265. parameters. (omalley & cutting)
  266. 2. HADOOP-274. Change applications to log to standard output rather
  267. than to a rolling log file like daemons. (omalley via cutting)
  268. 3. HADOOP-262. Fix reduce tasks to report progress while they're
  269. waiting for map outputs, so that they do not time out.
  270. (Mahadev Konar via cutting)
  271. 4. HADOOP-245 and HADOOP-246. Improvements to record io package.
  272. (Mahadev Konar via cutting)
  273. 5. HADOOP-276. Add logging config files to jar file so that they're
  274. always found. (omalley via cutting)
  275. Release 0.3.0 - 2006-06-02
  276. 1. HADOOP-208. Enhance MapReduce web interface, adding new pages
  277. for failed tasks, and tasktrackers. (omalley via cutting)
  278. 2. HADOOP-204. Tweaks to metrics package. (David Bowen via cutting)
  279. 3. HADOOP-209. Add a MapReduce-based file copier. This will
  280. copy files within or between file systems in parallel.
  281. (Milind Bhandarkar via cutting)
  282. 4. HADOOP-146. Fix DFS to check when randomly generating a new block
  283. id that no existing blocks already have that id.
  284. (Milind Bhandarkar via cutting)
  285. 5. HADOOP-180. Make a daemon thread that does the actual task clean ups, so
  286. that the main offerService thread in the taskTracker doesn't get stuck
  287. and miss his heartbeat window. This was killing many task trackers as
  288. big jobs finished (300+ tasks / node). (omalley via cutting)
  289. 6. HADOOP-200. Avoid transmitting entire list of map task names to
  290. reduce tasks. Instead just transmit the number of map tasks and
  291. henceforth refer to them by number when collecting map output.
  292. (omalley via cutting)
  293. 7. HADOOP-219. Fix a NullPointerException when handling a checksum
  294. exception under SequenceFile.Sorter.sort(). (cutting & stack)
  295. 8. HADOOP-212. Permit alteration of the file block size in DFS. The
  296. default block size for new files may now be specified in the
  297. configuration with the dfs.block.size property. The block size
  298. may also be specified when files are opened.
  299. (omalley via cutting)
  300. 9. HADOOP-218. Avoid accessing configuration while looping through
  301. tasks in JobTracker. (Mahadev Konar via cutting)
  302. 10. HADOOP-161. Add hashCode() method to DFS's Block.
  303. (Milind Bhandarkar via cutting)
  304. 11. HADOOP-115. Map output types may now be specified. These are also
  305. used as reduce input types, thus permitting reduce input types to
  306. differ from reduce output types. (Runping Qi via cutting)
  307. 12. HADOOP-216. Add task progress to task status page.
  308. (Bryan Pendelton via cutting)
  309. 13. HADOOP-233. Add web server to task tracker that shows running
  310. tasks and logs. Also add log access to job tracker web interface.
  311. (omalley via cutting)
  312. 14. HADOOP-205. Incorporate pending tasks into tasktracker load
  313. calculations. (Mahadev Konar via cutting)
  314. 15. HADOOP-247. Fix sort progress to better handle exceptions.
  315. (Mahadev Konar via cutting)
  316. 16. HADOOP-195. Improve performance of the transfer of map outputs to
  317. reduce nodes by performing multiple transfers in parallel, each on
  318. a separate socket. (Sameer Paranjpye via cutting)
  319. 17. HADOOP-251. Fix task processes to be tolerant of failed progress
  320. reports to their parent process. (omalley via cutting)
  321. 18. HADOOP-325. Improve the FileNotFound exceptions thrown by
  322. LocalFileSystem to include the name of the file.
  323. (Benjamin Reed via cutting)
  324. 19. HADOOP-254. Use HTTP to transfer map output data to reduce
  325. nodes. This, together with HADOOP-195, greatly improves the
  326. performance of these transfers. (omalley via cutting)
  327. 20. HADOOP-163. Cause datanodes that\ are unable to either read or
  328. write data to exit, so that the namenode will no longer target
  329. them for new blocks and will replicate their data on other nodes.
  330. (Hairong Kuang via cutting)
  331. 21. HADOOP-222. Add a -setrep option to the dfs commands that alters
  332. file replication levels. (Johan Oskarson via cutting)
  333. 22. HADOOP-75. In DFS, only check for a complete file when the file
  334. is closed, rather than as each block is written.
  335. (Milind Bhandarkar via cutting)
  336. 23. HADOOP-124. Change DFS so that datanodes are identified by a
  337. persistent ID rather than by host and port. This solves a number
  338. of filesystem integrity problems, when, e.g., datanodes are
  339. restarted. (Konstantin Shvachko via cutting)
  340. 24. HADOOP-256. Add a C API for DFS. (Arun C Murthy via cutting)
  341. 25. HADOOP-211. Switch to use the Jakarta Commons logging internally,
  342. configured to use log4j by default. (Arun C Murthy and cutting)
  343. 26. HADOOP-265. Tasktracker now fails to start if it does not have a
  344. writable local directory for temporary files. In this case, it
  345. logs a message to the JobTracker and exits. (Hairong Kuang via cutting)
  346. 27. HADOOP-270. Fix potential deadlock in datanode shutdown.
  347. (Hairong Kuang via cutting)
  348. Release 0.2.1 - 2006-05-12
  349. 1. HADOOP-199. Fix reduce progress (broken by HADOOP-182).
  350. (omalley via cutting)
  351. 2. HADOOP-201. Fix 'bin/hadoop dfs -report'. (cutting)
  352. 3. HADOOP-207. Fix JDK 1.4 incompatibility introduced by HADOOP-96.
  353. System.getenv() does not work in JDK 1.4. (Hairong Kuang via cutting)
  354. Release 0.2.0 - 2006-05-05
  355. 1. Fix HADOOP-126. 'bin/hadoop dfs -cp' now correctly copies .crc
  356. files. (Konstantin Shvachko via cutting)
  357. 2. Fix HADOOP-51. Change DFS to support per-file replication counts.
  358. (Konstantin Shvachko via cutting)
  359. 3. Fix HADOOP-131. Add scripts to start/stop dfs and mapred daemons.
  360. Use these in start/stop-all scripts. (Chris Mattmann via cutting)
  361. 4. Stop using ssh options by default that are not yet in widely used
  362. versions of ssh. Folks can still enable their use by uncommenting
  363. a line in conf/hadoop-env.sh. (cutting)
  364. 5. Fix HADOOP-92. Show information about all attempts to run each
  365. task in the web ui. (Mahadev konar via cutting)
  366. 6. Fix HADOOP-128. Improved DFS error handling. (Owen O'Malley via cutting)
  367. 7. Fix HADOOP-129. Replace uses of java.io.File with new class named
  368. Path. This fixes bugs where java.io.File methods were called
  369. directly when FileSystem methods were desired, and reduces the
  370. likelihood of such bugs in the future. It also makes the handling
  371. of pathnames more consistent between local and dfs FileSystems and
  372. between Windows and Unix. java.io.File-based methods are still
  373. available for back-compatibility, but are deprecated and will be
  374. removed once 0.2 is released. (cutting)
  375. 8. Change dfs.data.dir and mapred.local.dir to be comma-separated
  376. lists of directories, no longer be space-separated. This fixes
  377. several bugs on Windows. (cutting)
  378. 9. Fix HADOOP-144. Use mapred task id for dfs client id, to
  379. facilitate debugging. (omalley via cutting)
  380. 10. Fix HADOOP-143. Do not line-wrap stack-traces in web ui.
  381. (omalley via cutting)
  382. 11. Fix HADOOP-118. In DFS, improve clean up of abandoned file
  383. creations. (omalley via cutting)
  384. 12. Fix HADOOP-138. Stop multiple tasks in a single heartbeat, rather
  385. than one per heartbeat. (Stefan via cutting)
  386. 13. Fix HADOOP-139. Remove a potential deadlock in
  387. LocalFileSystem.lock(). (Igor Bolotin via cutting)
  388. 14. Fix HADOOP-134. Don't hang jobs when the tasktracker is
  389. misconfigured to use an un-writable local directory. (omalley via cutting)
  390. 15. Fix HADOOP-115. Correct an error message. (Stack via cutting)
  391. 16. Fix HADOOP-133. Retry pings from child to parent, in case of
  392. (local) communcation problems. Also log exit status, so that one
  393. can distinguish patricide from other deaths. (omalley via cutting)
  394. 17. Fix HADOOP-142. Avoid re-running a task on a host where it has
  395. previously failed. (omalley via cutting)
  396. 18. Fix HADOOP-148. Maintain a task failure count for each
  397. tasktracker and display it in the web ui. (omalley via cutting)
  398. 19. Fix HADOOP-151. Close a potential socket leak, where new IPC
  399. connection pools were created per configuration instance that RPCs
  400. use. Now a global RPC connection pool is used again, as
  401. originally intended. (cutting)
  402. 20. Fix HADOOP-69. Don't throw a NullPointerException when getting
  403. hints for non-existing file split. (Bryan Pendelton via cutting)
  404. 21. Fix HADOOP-157. When a task that writes dfs files (e.g., a reduce
  405. task) failed and was retried, it would fail again and again,
  406. eventually failing the job. The problem was that dfs did not yet
  407. know that the failed task had abandoned the files, and would not
  408. yet let another task create files with the same names. Dfs now
  409. retries when creating a file long enough for locks on abandoned
  410. files to expire. (omalley via cutting)
  411. 22. Fix HADOOP-150. Improved task names that include job
  412. names. (omalley via cutting)
  413. 23. Fix HADOOP-162. Fix ConcurrentModificationException when
  414. releasing file locks. (omalley via cutting)
  415. 24. Fix HADOOP-132. Initial check-in of new Metrics API, including
  416. implementations for writing metric data to a file and for sending
  417. it to Ganglia. (David Bowen via cutting)
  418. 25. Fix HADOOP-160. Remove some uneeded synchronization around
  419. time-consuming operations in the TaskTracker. (omalley via cutting)
  420. 26. Fix HADOOP-166. RPCs failed when passed subclasses of a declared
  421. parameter type. This is fixed by changing ObjectWritable to store
  422. both the declared type and the instance type for Writables. Note
  423. that this incompatibly changes the format of ObjectWritable and
  424. will render unreadable any ObjectWritables stored in files.
  425. Nutch only uses ObjectWritable in intermediate files, so this
  426. should not be a problem for Nutch. (Stefan & cutting)
  427. 27. Fix HADOOP-168. MapReduce RPC protocol methods should all declare
  428. IOException, so that timeouts are handled appropriately.
  429. (omalley via cutting)
  430. 28. Fix HADOOP-169. Don't fail a reduce task if a call to the
  431. jobtracker to locate map outputs fails. (omalley via cutting)
  432. 29. Fix HADOOP-170. Permit FileSystem clients to examine and modify
  433. the replication count of individual files. Also fix a few
  434. replication-related bugs. (Konstantin Shvachko via cutting)
  435. 30. Permit specification of a higher replication levels for job
  436. submission files (job.xml and job.jar). This helps with large
  437. clusters, since these files are read by every node. (cutting)
  438. 31. HADOOP-173. Optimize allocation of tasks with local data. (cutting)
  439. 32. HADOOP-167. Reduce number of Configurations and JobConf's
  440. created. (omalley via cutting)
  441. 33. NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  442. file. The lack of a .crc file was causing warnings. (cutting)
  443. 34. HADOOP-174. Change JobClient to not abort job until it has failed
  444. to contact the job tracker for five attempts, not just one as
  445. before. (omalley via cutting)
  446. 35. HADOOP-177. Change MapReduce web interface to page through tasks.
  447. Previously, when jobs had more than a few thousand tasks they
  448. could crash web browsers. (Mahadev Konar via cutting)
  449. 36. HADOOP-178. In DFS, piggyback blockwork requests from datanodes
  450. on heartbeat responses from namenode. This reduces the volume of
  451. RPC traffic. Also move startup delay in blockwork from datanode
  452. to namenode. This fixes a problem where restarting the namenode
  453. triggered a lot of uneeded replication. (Hairong Kuang via cutting)
  454. 37. HADOOP-183. If the DFS namenode is restarted with different
  455. minimum and/or maximum replication counts, existing files'
  456. replication counts are now automatically adjusted to be within the
  457. newly configured bounds. (Hairong Kuang via cutting)
  458. 38. HADOOP-186. Better error handling in TaskTracker's top-level
  459. loop. Also improve calculation of time to send next heartbeat.
  460. (omalley via cutting)
  461. 39. HADOOP-187. Add two MapReduce examples/benchmarks. One creates
  462. files containing random data. The second sorts the output of the
  463. first. (omalley via cutting)
  464. 40. HADOOP-185. Fix so that, when a task tracker times out making the
  465. RPC asking for a new task to run, the job tracker does not think
  466. that it is actually running the task returned. (omalley via cutting)
  467. 41. HADOOP-190. If a child process hangs after it has reported
  468. completion, its output should not be lost. (Stack via cutting)
  469. 42. HADOOP-184. Re-structure some test code to better support testing
  470. on a cluster. (Mahadev Konar via cutting)
  471. 43. HADOOP-191 Add streaming package, Hadoop's first contrib module.
  472. This permits folks to easily submit MapReduce jobs whose map and
  473. reduce functions are implemented by shell commands. Use
  474. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.
  475. (Michel Tourn via cutting)
  476. 44. HADOOP-189. Fix MapReduce in standalone configuration to
  477. correctly handle job jar files that contain a lib directory with
  478. nested jar files. (cutting)
  479. 45. HADOOP-65. Initial version of record I/O framework that enables
  480. the specification of record types and generates marshalling code
  481. in both Java and C++. Generated Java code implements
  482. WritableComparable, but is not yet otherwise used by
  483. Hadoop. (Milind Bhandarkar via cutting)
  484. 46. HADOOP-193. Add a MapReduce-based FileSystem benchmark.
  485. (Konstantin Shvachko via cutting)
  486. 47. HADOOP-194. Add a MapReduce-based FileSystem checker. This reads
  487. every block in every file in the filesystem. (Konstantin Shvachko
  488. via cutting)
  489. 48. HADOOP-182. Fix so that lost task trackers to not change the
  490. status of reduce tasks or completed jobs. Also fixes the progress
  491. meter so that failed tasks are subtracted. (omalley via cutting)
  492. 49. HADOOP-96. Logging improvements. Log files are now separate from
  493. standard output and standard error files. Logs are now rolled.
  494. Logging of all DFS state changes can be enabled, to facilitate
  495. debugging. (Hairong Kuang via cutting)
  496. Release 0.1.1 - 2006-04-08
  497. 1. Added CHANGES.txt, logging all significant changes to Hadoop. (cutting)
  498. 2. Fix MapReduceBase.close() to throw IOException, as declared in the
  499. Closeable interface. This permits subclasses which override this
  500. method to throw that exception. (cutting)
  501. 3. Fix HADOOP-117. Pathnames were mistakenly transposed in
  502. JobConf.getLocalFile() causing many mapred temporary files to not
  503. be removed. (Raghavendra Prabhu via cutting)
  504. 4. Fix HADOOP-116. Clean up job submission files when jobs complete.
  505. (cutting)
  506. 5. Fix HADOOP-125. Fix handling of absolute paths on Windows (cutting)
  507. Release 0.1.0 - 2006-04-01
  508. 1. The first release of Hadoop.