CHANGES.txt 70 KB

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