CHANGES.txt 77 KB

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