CHANGES.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. Hadoop Change Log
  2. Trunk (unreleased changes)
  3. 1. HADOOP-272. Fix a bug in bin/hadoop setting log
  4. parameters. (omalley & cutting)
  5. 2. HADOOP-274. Change applications to log to standard output rather
  6. than to a rolling log file like daemons. (omalley via cutting)
  7. 3. HADOOP-262. Fix reduce tasks to report progress while they're
  8. waiting for map outputs, so that they do not time out.
  9. (Mahadev Konar via cutting)
  10. Release 0.3.0 - 2006-06-02
  11. 1. HADOOP-208. Enhance MapReduce web interface, adding new pages
  12. for failed tasks, and tasktrackers. (omalley via cutting)
  13. 2. HADOOP-204. Tweaks to metrics package. (David Bowen via cutting)
  14. 3. HADOOP-209. Add a MapReduce-based file copier. This will
  15. copy files within or between file systems in parallel.
  16. (Milind Bhandarkar via cutting)
  17. 4. HADOOP-146. Fix DFS to check when randomly generating a new block
  18. id that no existing blocks already have that id.
  19. (Milind Bhandarkar via cutting)
  20. 5. HADOOP-180. Make a daemon thread that does the actual task clean ups, so
  21. that the main offerService thread in the taskTracker doesn't get stuck
  22. and miss his heartbeat window. This was killing many task trackers as
  23. big jobs finished (300+ tasks / node). (omalley via cutting)
  24. 6. HADOOP-200. Avoid transmitting entire list of map task names to
  25. reduce tasks. Instead just transmit the number of map tasks and
  26. henceforth refer to them by number when collecting map output.
  27. (omalley via cutting)
  28. 7. HADOOP-219. Fix a NullPointerException when handling a checksum
  29. exception under SequenceFile.Sorter.sort(). (cutting & stack)
  30. 8. HADOOP-212. Permit alteration of the file block size in DFS. The
  31. default block size for new files may now be specified in the
  32. configuration with the dfs.block.size property. The block size
  33. may also be specified when files are opened.
  34. (omalley via cutting)
  35. 9. HADOOP-218. Avoid accessing configuration while looping through
  36. tasks in JobTracker. (Mahadev Konar via cutting)
  37. 10. HADOOP-161. Add hashCode() method to DFS's Block.
  38. (Milind Bhandarkar via cutting)
  39. 11. HADOOP-115. Map output types may now be specified. These are also
  40. used as reduce input types, thus permitting reduce input types to
  41. differ from reduce output types. (Runping Qi via cutting)
  42. 12. HADOOP-216. Add task progress to task status page.
  43. (Bryan Pendelton via cutting)
  44. 13. HADOOP-233. Add web server to task tracker that shows running
  45. tasks and logs. Also add log access to job tracker web interface.
  46. (omalley via cutting)
  47. 14. HADOOP-205. Incorporate pending tasks into tasktracker load
  48. calculations. (Mahadev Konar via cutting)
  49. 15. HADOOP-247. Fix sort progress to better handle exceptions.
  50. (Mahadev Konar via cutting)
  51. 16. HADOOP-195. Improve performance of the transfer of map outputs to
  52. reduce nodes by performing multiple transfers in parallel, each on
  53. a separate socket. (Sameer Paranjpye via cutting)
  54. 17. HADOOP-251. Fix task processes to be tolerant of failed progress
  55. reports to their parent process. (omalley via cutting)
  56. 18. HADOOP-325. Improve the FileNotFound exceptions thrown by
  57. LocalFileSystem to include the name of the file.
  58. (Benjamin Reed via cutting)
  59. 19. HADOOP-254. Use HTTP to transfer map output data to reduce
  60. nodes. This, together with HADOOP-195, greatly improves the
  61. performance of these transfers. (omalley via cutting)
  62. 20. HADOOP-163. Cause datanodes that\ are unable to either read or
  63. write data to exit, so that the namenode will no longer target
  64. them for new blocks and will replicate their data on other nodes.
  65. (Hairong Kuang via cutting)
  66. 21. HADOOP-222. Add a -setrep option to the dfs commands that alters
  67. file replication levels. (Johan Oskarson via cutting)
  68. 22. HADOOP-75. In DFS, only check for a complete file when the file
  69. is closed, rather than as each block is written.
  70. (Milind Bhandarkar via cutting)
  71. 23. HADOOP-124. Change DFS so that datanodes are identified by a
  72. persistent ID rather than by host and port. This solves a number
  73. of filesystem integrity problems, when, e.g., datanodes are
  74. restarted. (Konstantin Shvachko via cutting)
  75. 24. HADOOP-256. Add a C API for DFS. (Arun C Murthy via cutting)
  76. 25. HADOOP-211. Switch to use the Jakarta Commons logging internally,
  77. configured to use log4j by default. (Arun C Murthy and cutting)
  78. 26. HADOOP-265. Tasktracker now fails to start if it does not have a
  79. writable local directory for temporary files. In this case, it
  80. logs a message to the JobTracker and exits. (Hairong Kuang via cutting)
  81. 27. HADOOP-270. Fix potential deadlock in datanode shutdown.
  82. (Hairong Kuang via cutting)
  83. Release 0.2.1 - 2006-05-12
  84. 1. HADOOP-199. Fix reduce progress (broken by HADOOP-182).
  85. (omalley via cutting)
  86. 2. HADOOP-201. Fix 'bin/hadoop dfs -report'. (cutting)
  87. 3. HADOOP-207. Fix JDK 1.4 incompatibility introduced by HADOOP-96.
  88. System.getenv() does not work in JDK 1.4. (Hairong Kuang via cutting)
  89. Release 0.2.0 - 2006-05-05
  90. 1. Fix HADOOP-126. 'bin/hadoop dfs -cp' now correctly copies .crc
  91. files. (Konstantin Shvachko via cutting)
  92. 2. Fix HADOOP-51. Change DFS to support per-file replication counts.
  93. (Konstantin Shvachko via cutting)
  94. 3. Fix HADOOP-131. Add scripts to start/stop dfs and mapred daemons.
  95. Use these in start/stop-all scripts. (Chris Mattmann via cutting)
  96. 4. Stop using ssh options by default that are not yet in widely used
  97. versions of ssh. Folks can still enable their use by uncommenting
  98. a line in conf/hadoop-env.sh. (cutting)
  99. 5. Fix HADOOP-92. Show information about all attempts to run each
  100. task in the web ui. (Mahadev konar via cutting)
  101. 6. Fix HADOOP-128. Improved DFS error handling. (Owen O'Malley via cutting)
  102. 7. Fix HADOOP-129. Replace uses of java.io.File with new class named
  103. Path. This fixes bugs where java.io.File methods were called
  104. directly when FileSystem methods were desired, and reduces the
  105. likelihood of such bugs in the future. It also makes the handling
  106. of pathnames more consistent between local and dfs FileSystems and
  107. between Windows and Unix. java.io.File-based methods are still
  108. available for back-compatibility, but are deprecated and will be
  109. removed once 0.2 is released. (cutting)
  110. 8. Change dfs.data.dir and mapred.local.dir to be comma-separated
  111. lists of directories, no longer be space-separated. This fixes
  112. several bugs on Windows. (cutting)
  113. 9. Fix HADOOP-144. Use mapred task id for dfs client id, to
  114. facilitate debugging. (omalley via cutting)
  115. 10. Fix HADOOP-143. Do not line-wrap stack-traces in web ui.
  116. (omalley via cutting)
  117. 11. Fix HADOOP-118. In DFS, improve clean up of abandoned file
  118. creations. (omalley via cutting)
  119. 12. Fix HADOOP-138. Stop multiple tasks in a single heartbeat, rather
  120. than one per heartbeat. (Stefan via cutting)
  121. 13. Fix HADOOP-139. Remove a potential deadlock in
  122. LocalFileSystem.lock(). (Igor Bolotin via cutting)
  123. 14. Fix HADOOP-134. Don't hang jobs when the tasktracker is
  124. misconfigured to use an un-writable local directory. (omalley via cutting)
  125. 15. Fix HADOOP-115. Correct an error message. (Stack via cutting)
  126. 16. Fix HADOOP-133. Retry pings from child to parent, in case of
  127. (local) communcation problems. Also log exit status, so that one
  128. can distinguish patricide from other deaths. (omalley via cutting)
  129. 17. Fix HADOOP-142. Avoid re-running a task on a host where it has
  130. previously failed. (omalley via cutting)
  131. 18. Fix HADOOP-148. Maintain a task failure count for each
  132. tasktracker and display it in the web ui. (omalley via cutting)
  133. 19. Fix HADOOP-151. Close a potential socket leak, where new IPC
  134. connection pools were created per configuration instance that RPCs
  135. use. Now a global RPC connection pool is used again, as
  136. originally intended. (cutting)
  137. 20. Fix HADOOP-69. Don't throw a NullPointerException when getting
  138. hints for non-existing file split. (Bryan Pendelton via cutting)
  139. 21. Fix HADOOP-157. When a task that writes dfs files (e.g., a reduce
  140. task) failed and was retried, it would fail again and again,
  141. eventually failing the job. The problem was that dfs did not yet
  142. know that the failed task had abandoned the files, and would not
  143. yet let another task create files with the same names. Dfs now
  144. retries when creating a file long enough for locks on abandoned
  145. files to expire. (omalley via cutting)
  146. 22. Fix HADOOP-150. Improved task names that include job
  147. names. (omalley via cutting)
  148. 23. Fix HADOOP-162. Fix ConcurrentModificationException when
  149. releasing file locks. (omalley via cutting)
  150. 24. Fix HADOOP-132. Initial check-in of new Metrics API, including
  151. implementations for writing metric data to a file and for sending
  152. it to Ganglia. (David Bowen via cutting)
  153. 25. Fix HADOOP-160. Remove some uneeded synchronization around
  154. time-consuming operations in the TaskTracker. (omalley via cutting)
  155. 26. Fix HADOOP-166. RPCs failed when passed subclasses of a declared
  156. parameter type. This is fixed by changing ObjectWritable to store
  157. both the declared type and the instance type for Writables. Note
  158. that this incompatibly changes the format of ObjectWritable and
  159. will render unreadable any ObjectWritables stored in files.
  160. Nutch only uses ObjectWritable in intermediate files, so this
  161. should not be a problem for Nutch. (Stefan & cutting)
  162. 27. Fix HADOOP-168. MapReduce RPC protocol methods should all declare
  163. IOException, so that timeouts are handled appropriately.
  164. (omalley via cutting)
  165. 28. Fix HADOOP-169. Don't fail a reduce task if a call to the
  166. jobtracker to locate map outputs fails. (omalley via cutting)
  167. 29. Fix HADOOP-170. Permit FileSystem clients to examine and modify
  168. the replication count of individual files. Also fix a few
  169. replication-related bugs. (Konstantin Shvachko via cutting)
  170. 30. Permit specification of a higher replication levels for job
  171. submission files (job.xml and job.jar). This helps with large
  172. clusters, since these files are read by every node. (cutting)
  173. 31. HADOOP-173. Optimize allocation of tasks with local data. (cutting)
  174. 32. HADOOP-167. Reduce number of Configurations and JobConf's
  175. created. (omalley via cutting)
  176. 33. NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  177. file. The lack of a .crc file was causing warnings. (cutting)
  178. 34. HADOOP-174. Change JobClient to not abort job until it has failed
  179. to contact the job tracker for five attempts, not just one as
  180. before. (omalley via cutting)
  181. 35. HADOOP-177. Change MapReduce web interface to page through tasks.
  182. Previously, when jobs had more than a few thousand tasks they
  183. could crash web browsers. (Mahadev Konar via cutting)
  184. 36. HADOOP-178. In DFS, piggyback blockwork requests from datanodes
  185. on heartbeat responses from namenode. This reduces the volume of
  186. RPC traffic. Also move startup delay in blockwork from datanode
  187. to namenode. This fixes a problem where restarting the namenode
  188. triggered a lot of uneeded replication. (Hairong Kuang via cutting)
  189. 37. HADOOP-183. If the DFS namenode is restarted with different
  190. minimum and/or maximum replication counts, existing files'
  191. replication counts are now automatically adjusted to be within the
  192. newly configured bounds. (Hairong Kuang via cutting)
  193. 38. HADOOP-186. Better error handling in TaskTracker's top-level
  194. loop. Also improve calculation of time to send next heartbeat.
  195. (omalley via cutting)
  196. 39. HADOOP-187. Add two MapReduce examples/benchmarks. One creates
  197. files containing random data. The second sorts the output of the
  198. first. (omalley via cutting)
  199. 40. HADOOP-185. Fix so that, when a task tracker times out making the
  200. RPC asking for a new task to run, the job tracker does not think
  201. that it is actually running the task returned. (omalley via cutting)
  202. 41. HADOOP-190. If a child process hangs after it has reported
  203. completion, its output should not be lost. (Stack via cutting)
  204. 42. HADOOP-184. Re-structure some test code to better support testing
  205. on a cluster. (Mahadev Konar via cutting)
  206. 43. HADOOP-191 Add streaming package, Hadoop's first contrib module.
  207. This permits folks to easily submit MapReduce jobs whose map and
  208. reduce functions are implemented by shell commands. Use
  209. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.
  210. (Michel Tourn via cutting)
  211. 44. HADOOP-189. Fix MapReduce in standalone configuration to
  212. correctly handle job jar files that contain a lib directory with
  213. nested jar files. (cutting)
  214. 45. HADOOP-65. Initial version of record I/O framework that enables
  215. the specification of record types and generates marshalling code
  216. in both Java and C++. Generated Java code implements
  217. WritableComparable, but is not yet otherwise used by
  218. Hadoop. (Milind Bhandarkar via cutting)
  219. 46. HADOOP-193. Add a MapReduce-based FileSystem benchmark.
  220. (Konstantin Shvachko via cutting)
  221. 47. HADOOP-194. Add a MapReduce-based FileSystem checker. This reads
  222. every block in every file in the filesystem. (Konstantin Shvachko
  223. via cutting)
  224. 48. HADOOP-182. Fix so that lost task trackers to not change the
  225. status of reduce tasks or completed jobs. Also fixes the progress
  226. meter so that failed tasks are subtracted. (omalley via cutting)
  227. 49. HADOOP-96. Logging improvements. Log files are now separate from
  228. standard output and standard error files. Logs are now rolled.
  229. Logging of all DFS state changes can be enabled, to facilitate
  230. debugging. (Hairong Kuang via cutting)
  231. Release 0.1.1 - 2006-04-08
  232. 1. Added CHANGES.txt, logging all significant changes to Hadoop. (cutting)
  233. 2. Fix MapReduceBase.close() to throw IOException, as declared in the
  234. Closeable interface. This permits subclasses which override this
  235. method to throw that exception. (cutting)
  236. 3. Fix HADOOP-117. Pathnames were mistakenly transposed in
  237. JobConf.getLocalFile() causing many mapred temporary files to not
  238. be removed. (Raghavendra Prabhu via cutting)
  239. 4. Fix HADOOP-116. Clean up job submission files when jobs complete.
  240. (cutting)
  241. 5. Fix HADOOP-125. Fix handling of absolute paths on Windows (cutting)
  242. Release 0.1.0 - 2006-04-01
  243. 1. The first release of Hadoop.