CHANGES.txt 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. Hadoop Change Log
  2. Trunk (unreleased)
  3. 1. Fix HADOOP-126. 'bin/hadoop dfs -cp' now correctly copies .crc
  4. files. (Konstantin Shvachko via cutting)
  5. 2. Fix HADOOP-51. Change DFS to support per-file replication counts.
  6. (Konstantin Shvachko via cutting)
  7. 3. Fix HADOOP-131. Add scripts to start/stop dfs and mapred daemons.
  8. Use these in start/stop-all scripts. (Chris Mattmann via cutting)
  9. 4. Stop using ssh options by default that are not yet in widely used
  10. versions of ssh. Folks can still enable their use by uncommenting
  11. a line in conf/hadoop-env.sh. (cutting)
  12. 5. Fix HADOOP-92. Show information about all attempts to run each
  13. task in the web ui. (Mahadev konar via cutting)
  14. 6. Fix HADOOP-128. Improved DFS error handling. (Owen O'Malley via cutting)
  15. 7. Fix HADOOP-129. Replace uses of java.io.File with new class named
  16. Path. This fixes bugs where java.io.File methods were called
  17. directly when FileSystem methods were desired, and reduces the
  18. likelihood of such bugs in the future. It also makes the handling
  19. of pathnames more consistent between local and dfs FileSystems and
  20. between Windows and Unix. java.io.File-based methods are still
  21. available for back-compatibility, but are deprecated and will be
  22. removed once 0.2 is released. (cutting)
  23. 8. Change dfs.data.dir and mapred.local.dir to be comma-separated
  24. lists of directories, no longer be space-separated. This fixes
  25. several bugs on Windows. (cutting)
  26. 9. Fix HADOOP-144. Use mapred task id for dfs client id, to
  27. facilitate debugging. (omalley via cutting)
  28. 10. Fix HADOOP-143. Do not line-wrap stack-traces in web ui.
  29. (omalley via cutting)
  30. 11. Fix HADOOP-118. In DFS, improve clean up of abandoned file
  31. creations. (omalley via cutting)
  32. 12. Fix HADOOP-138. Stop multiple tasks in a single heartbeat, rather
  33. than one per heartbeat. (Stefan via cutting)
  34. 13. Fix HADOOP-139. Remove a potential deadlock in
  35. LocalFileSystem.lock(). (Igor Bolotin via cutting)
  36. 14. Fix HADOOP-134. Don't hang jobs when the tasktracker is
  37. misconfigured to use an un-writable local directory. (omalley via cutting)
  38. 15. Fix HADOOP-115. Correct an error message. (Stack via cutting)
  39. 16. Fix HADOOP-133. Retry pings from child to parent, in case of
  40. (local) communcation problems. Also log exit status, so that one
  41. can distinguish patricide from other deaths. (omalley via cutting)
  42. 17. Fix HADOOP-142. Avoid re-running a task on a host where it has
  43. previously failed. (omalley via cutting)
  44. 18. Fix HADOOP-148. Maintain a task failure count for each
  45. tasktracker and display it in the web ui. (omalley via cutting)
  46. 19. Fix HADOOP-151. Close a potential socket leak, where new IPC
  47. connection pools were created per configuration instance that RPCs
  48. use. Now a global RPC connection pool is used again, as
  49. originally intended. (cutting)
  50. 20. Fix HADOOP-69. Don't throw a NullPointerException when getting
  51. hints for non-existing file split. (Bryan Pendelton via cutting)
  52. 21. Fix HADOOP-157. When a task that writes dfs files (e.g., a reduce
  53. task) failed and was retried, it would fail again and again,
  54. eventually failing the job. The problem was that dfs did not yet
  55. know that the failed task had abandoned the files, and would not
  56. yet let another task create files with the same names. Dfs now
  57. retries when creating a file long enough for locks on abandoned
  58. files to expire. (omalley via cutting)
  59. 22. Fix HADOOP-150. Improved task names that include job
  60. names. (omalley via cutting)
  61. 23. Fix HADOOP-162. Fix ConcurrentModificationException when
  62. releasing file locks. (omalley via cutting)
  63. 24. Fix HADOOP-132. Initial check-in of new Metrics API, including
  64. implementations for writing metric data to a file and for sending
  65. it to Ganglia. (David Bowen via cutting)
  66. 25. Fix HADOOP-160. Remove some uneeded synchronization around
  67. time-consuming operations in the TaskTracker. (omalley via cutting)
  68. 26. Fix HADOOP-166. RPCs failed when passed subclasses of a declared
  69. parameter type. This is fixed by changing ObjectWritable to store
  70. both the declared type and the instance type for Writables. Note
  71. that this incompatibly changes the format of ObjectWritable and
  72. will render unreadable any ObjectWritables stored in files.
  73. Nutch only uses ObjectWritable in intermediate files, so this
  74. should not be a problem for Nutch. (Stefan & cutting)
  75. 27. Fix HADOOP-168. MapReduce RPC protocol methods should all declare
  76. IOException, so that timeouts are handled appropriately.
  77. (omalley via cutting)
  78. 28. Fix HADOOP-169. Don't fail a reduce task if a call to the
  79. jobtracker to locate map outputs fails. (omalley via cutting)
  80. 29. Fix HADOOP-170. Permit FileSystem clients to examine and modify
  81. the replication count of individual files. Also fix a few
  82. replication-related bugs. (Konstantin Shvachko via cutting)
  83. 30. Permit specification of a higher replication levels for job
  84. submission files (job.xml and job.jar). This helps with large
  85. clusters, since these files are read by every node. (cutting)
  86. 31. HADOOP-173. Optimize allocation of tasks with local data. (cutting)
  87. 32. HADOOP-167. Reduce number of Configurations and JobConf's
  88. created. (omalley via cutting)
  89. 33. NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  90. file. The lack of a .crc file was causing warnings. (cutting)
  91. 34. HADOOP-174. Change JobClient to not abort job until it has failed
  92. to contact the job tracker for five attempts, not just one as
  93. before. (omalley via cutting)
  94. 35. HADOOP-177. Change MapReduce web interface to page through tasks.
  95. Previously, when jobs had more than a few thousand tasks they
  96. could crash web browsers. (Mahadev Konar via cutting)
  97. 36. HADOOP-178. In DFS, piggyback blockwork requests from datanodes
  98. on heartbeat responses from namenode. This reduces the volume of
  99. RPC traffic. Also move startup delay in blockwork from datanode
  100. to namenode. This fixes a problem where restarting the namenode
  101. triggered a lot of uneeded replication. (Hairong Kuang via cutting)
  102. 37. HADOOP-183. If the DFS namenode is restarted with different
  103. minimum and/or maximum replication counts, existing files'
  104. replication counts are now automatically adjusted to be within the
  105. newly configured bounds. (Hairong Kuang via cutting)
  106. 38. HADOOP-186. Better error handling in TaskTracker's top-level
  107. loop. Also improve calculation of time to send next heartbeat.
  108. (omalley via cutting)
  109. 39. HADOOP-187. Add two MapReduce examples/benchmarks. One creates
  110. files containing random data. The second sorts the output of the
  111. first. (omalley via cutting)
  112. 40. HADOOP-185. Fix so that, when a task tracker times out making the
  113. RPC asking for a new task to run, the job tracker does not think
  114. that it is actually running the task returned. (omalley via cutting)
  115. 41. HADOOP-190. If a child process hangs after it has reported
  116. completion, its output should not be lost. (Stack via cutting)
  117. 42. HADOOP-184. Re-structure some test code to better support testing
  118. on a cluster. (Mahadev Konar via cutting)
  119. 43. HADOOP-191 Add streaming package, Hadoop's first contrib module.
  120. This permits folks to easily submit MapReduce jobs whose map and
  121. reduce functions are implemented by shell commands. Use
  122. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.
  123. (Michel Tourn via cutting)
  124. 44. HADOOP-189. Fix MapReduce in standalone configuration to
  125. correctly handle job jar files that contain a lib directory with
  126. nested jar files. (cutting)
  127. 45. HADOOP-65. Initial version of record I/O framework that enables
  128. the specification of record types and generates marshalling code
  129. in both Java and C++. Generated Java code implements
  130. WritableComparable, but is not yet otherwise used by
  131. Hadoop. (Milind Bhandarkar via cutting)
  132. Release 0.1.1 - 2006-04-08
  133. 1. Added CHANGES.txt, logging all significant changes to Hadoop. (cutting)
  134. 2. Fix MapReduceBase.close() to throw IOException, as declared in the
  135. Closeable interface. This permits subclasses which override this
  136. method to throw that exception. (cutting)
  137. 3. Fix HADOOP-117. Pathnames were mistakenly transposed in
  138. JobConf.getLocalFile() causing many mapred temporary files to not
  139. be removed. (Raghavendra Prabhu via cutting)
  140. 4. Fix HADOOP-116. Clean up job submission files when jobs complete.
  141. (cutting)
  142. 5. Fix HADOOP-125. Fix handling of absolute paths on Windows (cutting)
  143. Release 0.1.0 - 2006-04-01
  144. 1. The first release of Hadoop.