CHANGES.txt 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090
  1. Hadoop Change Log
  2. Release 0.14.2 (unreleased changes)
  3. BUG FIXES
  4. HADOOP-1783. Make S3 FileSystem return Paths fully-qualified with
  5. scheme and host. (tomwhite)
  6. HADOOP-1948. Removed spurious error message during block crc upgrade.
  7. (Raghu Angadi via dhruba)
  8. HADOOP-1862. reduces are getting stuck trying to find map outputs.
  9. (Arun C. Murthy via ddas)
  10. HADOOP-1977. Fixed handling of ToolBase cli options in JobClient.
  11. (enis via omalley)
  12. HADOOP-1972. Fix LzoCompressor to ensure the user has actually asked
  13. to finish compression. (arun via omalley)
  14. HADOOP-1970. Fix deadlock in progress reporting in the task. (Vivek
  15. Ratan via omalley)
  16. Release 0.14.1 - 2007-09-04
  17. BUG FIXES
  18. HADOOP-1740. Fix null pointer exception in sorting map outputs. (Devaraj
  19. Das via omalley)
  20. HADOOP-1790. Fix tasktracker to work correctly on multi-homed
  21. boxes. (Torsten Curdt via cutting)
  22. HADOOP-1798. Fix jobtracker to correctly account for failed
  23. tasks. (omalley via cutting)
  24. Release 0.14.0 - 2007-08-17
  25. INCOMPATIBLE CHANGES
  26. 1. HADOOP-1134.
  27. CONFIG/API - dfs.block.size must now be a multiple of
  28. io.byte.per.checksum, otherwise new files can not be written.
  29. LAYOUT - DFS layout version changed from -6 to -7, which will require an
  30. upgrade from previous versions.
  31. PROTOCOL - Datanode RPC protocol version changed from 7 to 8.
  32. 2. HADOOP-1283
  33. API - deprecated file locking API.
  34. 3. HADOOP-894
  35. PROTOCOL - changed ClientProtocol to fetch parts of block locations.
  36. 4. HADOOP-1336
  37. CONFIG - Enable speculative execution by default.
  38. 5. HADOOP-1197
  39. API - deprecated method for Configuration.getObject, because
  40. Configurations should only contain strings.
  41. 6. HADOOP-1343
  42. API - deprecate Configuration.set(String,Object) so that only strings are
  43. put in Configrations.
  44. 7. HADOOP-1207
  45. CLI - Fix FsShell 'rm' command to continue when a non-existent file is
  46. encountered.
  47. 8. HADOOP-1473
  48. CLI/API - Job, TIP, and Task id formats have changed and are now unique
  49. across job tracker restarts.
  50. 9. HADOOP-1400
  51. API - JobClient constructor now takes a JobConf object instead of a
  52. Configuration object.
  53. NEW FEATURES and BUG FIXES
  54. 1. HADOOP-1197. In Configuration, deprecate getObject() and add
  55. getRaw(), which skips variable expansion. (omalley via cutting)
  56. 2. HADOOP-1343. In Configuration, deprecate set(String,Object) and
  57. implement Iterable. (omalley via cutting)
  58. 3. HADOOP-1344. Add RunningJob#getJobName(). (Michael Bieniosek via cutting)
  59. 4. HADOOP-1342. In aggregators, permit one to limit the number of
  60. unique values per key. (Runping Qi via cutting)
  61. 5. HADOOP-1340. Set the replication factor of the MD5 file in the filecache
  62. to be the same as the replication factor of the original file.
  63. (Dhruba Borthakur via tomwhite.)
  64. 6. HADOOP-1355. Fix null pointer dereference in
  65. TaskLogAppender.append(LoggingEvent). (Arun C Murthy via tomwhite.)
  66. 7. HADOOP-1357. Fix CopyFiles to correctly avoid removing "/".
  67. (Arun C Murthy via cutting)
  68. 8. HADOOP-234. Add pipes facility, which permits writing MapReduce
  69. programs in C++.
  70. 9. HADOOP-1359. Fix a potential NullPointerException in HDFS.
  71. (Hairong Kuang via cutting)
  72. 10. HADOOP-1364. Fix inconsistent synchronization in SequenceFile.
  73. (omalley via cutting)
  74. 11. HADOOP-1379. Add findbugs target to build.xml.
  75. (Nigel Daley via cutting)
  76. 12. HADOOP-1364. Fix various inconsistent synchronization issues.
  77. (Devaraj Das via cutting)
  78. 13. HADOOP-1393. Remove a potential unexpected negative number from
  79. uses of random number generator. (omalley via cutting)
  80. 14. HADOOP-1387. A number of "performance" code-cleanups suggested
  81. by findbugs. (Arun C Murthy via cutting)
  82. 15. HADOOP-1401. Add contrib/hbase javadoc to tree. (stack via cutting)
  83. 16. HADOOP-894. Change HDFS so that the client only retrieves a limited
  84. number of block locations per request from the namenode.
  85. (Konstantin Shvachko via cutting)
  86. 17. HADOOP-1406. Plug a leak in MapReduce's use of metrics.
  87. (David Bowen via cutting)
  88. 18. HADOOP-1394. Implement "performance" code-cleanups in HDFS
  89. suggested by findbugs. (Raghu Angadi via cutting)
  90. 19. HADOOP-1413. Add example program that uses Knuth's dancing links
  91. algorithm to solve pentomino problems. (omalley via cutting)
  92. 20. HADOOP-1226. Change HDFS so that paths it returns are always
  93. fully qualified. (Dhruba Borthakur via cutting)
  94. 21. HADOOP-800. Improvements to HDFS web-based file browser.
  95. (Enis Soztutar via cutting)
  96. 22. HADOOP-1408. Fix a compiler warning by adding a class to replace
  97. a generic. (omalley via cutting)
  98. 23. HADOOP-1376. Modify RandomWriter example so that it can generate
  99. data for the Terasort benchmark. (Devaraj Das via cutting)
  100. 24. HADOOP-1429. Stop logging exceptions during normal IPC server
  101. shutdown. (stack via cutting)
  102. 25. HADOOP-1461. Fix the synchronization of the task tracker to
  103. avoid lockups in job cleanup. (Arun C Murthy via omalley)
  104. 26. HADOOP-1446. Update the TaskTracker metrics while the task is
  105. running. (Devaraj via omalley)
  106. 27. HADOOP-1414. Fix a number of issues identified by FindBugs as
  107. "Bad Practice". (Dhruba Borthakur via cutting)
  108. 28. HADOOP-1392. Fix "correctness" bugs identified by FindBugs in
  109. fs and dfs packages. (Raghu Angadi via cutting)
  110. 29. HADOOP-1412. Fix "dodgy" bugs identified by FindBugs in fs and
  111. io packages. (Hairong Kuang via cutting)
  112. 30. HADOOP-1261. Remove redundant events from HDFS namenode's edit
  113. log when a datanode restarts. (Raghu Angadi via cutting)
  114. 31. HADOOP-1336. Re-enable speculative execution by
  115. default. (omalley via cutting)
  116. 32. HADOOP-1311. Fix a bug in BytesWritable#set() where start offset
  117. was ignored. (Dhruba Borthakur via cutting)
  118. 33. HADOOP-1450. Move checksumming closer to user code, so that
  119. checksums are created before data is stored in large buffers and
  120. verified after data is read from large buffers, to better catch
  121. memory errors. (cutting)
  122. 34. HADOOP-1447. Add support in contrib/data_join for text inputs.
  123. (Senthil Subramanian via cutting)
  124. 35. HADOOP-1456. Fix TestDecommission assertion failure by setting
  125. the namenode to ignore the load on datanodes while allocating
  126. replicas. (Dhruba Borthakur via tomwhite)
  127. 36. HADOOP-1396. Fix FileNotFoundException on DFS block.
  128. (Dhruba Borthakur via tomwhite)
  129. 37. HADOOP-1467. Remove redundant counters from WordCount example.
  130. (Owen O'Malley via tomwhite)
  131. 38. HADOOP-1139. Log HDFS block transitions at INFO level, to better
  132. enable diagnosis of problems. (Dhruba Borthakur via cutting)
  133. 39. HADOOP-1269. Finer grained locking in HDFS namenode.
  134. (Dhruba Borthakur via cutting)
  135. 40. HADOOP-1438. Improve HDFS documentation, correcting typos and
  136. making images appear in PDF. Also update copyright date for all
  137. docs. (Luke Nezda via cutting)
  138. 41. HADOOP-1457. Add counters for monitoring task assignments.
  139. (Arun C Murthy via tomwhite)
  140. 42. HADOOP-1472. Fix so that timed-out tasks are counted as failures
  141. rather than as killed. (Arun C Murthy via cutting)
  142. 43. HADOOP-1234. Fix a race condition in file cache that caused
  143. tasktracker to not be able to find cached files.
  144. (Arun C Murthy via cutting)
  145. 44. HADOOP-1482. Fix secondary namenode to roll info port.
  146. (Dhruba Borthakur via cutting)
  147. 45. HADOOP-1300. Improve removal of excess block replicas to be
  148. rack-aware. Attempts are now made to keep replicas on more
  149. racks. (Hairong Kuang via cutting)
  150. 46. HADOOP-1417. Disable a few FindBugs checks that generate a lot
  151. of spurious warnings. (Nigel Daley via cutting)
  152. 47. HADOOP-1320. Rewrite RandomWriter example to bypass reduce.
  153. (Arun C Murthy via cutting)
  154. 48. HADOOP-1449. Add some examples to contrib/data_join.
  155. (Senthil Subramanian via cutting)
  156. 49. HADOOP-1459. Fix so that, in HDFS, getFileCacheHints() returns
  157. hostnames instead of IP addresses. (Dhruba Borthakur via cutting)
  158. 50. HADOOP-1493. Permit specification of "java.library.path" system
  159. property in "mapred.child.java.opts" configuration property.
  160. (Enis Soztutar via cutting)
  161. 51. HADOOP-1372. Use LocalDirAllocator for HDFS temporary block
  162. files, so that disk space, writability, etc. is considered.
  163. (Dhruba Borthakur via cutting)
  164. 52. HADOOP-1193. Pool allocation of compression codecs. This
  165. eliminates a memory leak that could cause OutOfMemoryException,
  166. and also substantially improves performance.
  167. (Arun C Murthy via cutting)
  168. 53. HADOOP-1492. Fix a NullPointerException handling version
  169. mismatch during datanode registration.
  170. (Konstantin Shvachko via cutting)
  171. 54. HADOOP-1442. Fix handling of zero-length input splits.
  172. (Senthil Subramanian via cutting)
  173. 55. HADOOP-1444. Fix HDFS block id generation to check pending
  174. blocks for duplicates. (Dhruba Borthakur via cutting)
  175. 56. HADOOP-1207. Fix FsShell's 'rm' command to not stop when one of
  176. the named files does not exist. (Tsz Wo Sze via cutting)
  177. 57. HADOOP-1475. Clear tasktracker's file cache before it
  178. re-initializes, to avoid confusion. (omalley via cutting)
  179. 58. HADOOP-1505. Remove spurious stacktrace in ZlibFactory
  180. introduced in HADOOP-1093. (Michael Stack via tomwhite)
  181. 59. HADOOP-1484. Permit one to kill jobs from the web ui. Note that
  182. this is disabled by default. One must set
  183. "webinterface.private.actions" to enable this.
  184. (Enis Soztutar via cutting)
  185. 60. HADOOP-1003. Remove flushing of namenode edit log from primary
  186. namenode lock, increasing namenode throughput.
  187. (Dhruba Borthakur via cutting)
  188. 61. HADOOP-1023. Add links to searchable mail archives.
  189. (tomwhite via cutting)
  190. 62. HADOOP-1504. Fix terminate-hadoop-cluster script in contrib/ec2
  191. to only terminate Hadoop instances, and not other instances
  192. started by the same user. (tomwhite via cutting)
  193. 63. HADOOP-1462. Improve task progress reporting. Progress reports
  194. are no longer blocking since i/o is performed in a separate
  195. thread. Reporting during sorting and more is also more
  196. consistent. (Vivek Ratan via cutting)
  197. 64. [ intentionally blank ]
  198. 65. HADOOP-1453. Remove some unneeded calls to FileSystem#exists()
  199. when opening files, reducing the namenode load somewhat.
  200. (Raghu Angadi via cutting)
  201. 66. HADOOP-1489. Fix text input truncation bug due to mark/reset.
  202. Add a unittest. (Bwolen Yang via cutting)
  203. 67. HADOOP-1455. Permit specification of arbitrary job options on
  204. pipes command line. (Devaraj Das via cutting)
  205. 68. HADOOP-1501. Better randomize sending of block reports to
  206. namenode, so reduce load spikes. (Dhruba Borthakur via cutting)
  207. 69. HADOOP-1147. Remove @author tags from Java source files.
  208. 70. HADOOP-1283. Convert most uses of UTF8 in the namenode to be
  209. String. (Konstantin Shvachko via cutting)
  210. 71. HADOOP-1511. Speedup hbase unit tests. (stack via cutting)
  211. 72. HADOOP-1517. Remove some synchronization in namenode to permit
  212. finer grained locking previously added. (Konstantin Shvachko via cutting)
  213. 73. HADOOP-1512. Fix failing TestTextInputFormat on Windows.
  214. (Senthil Subramanian via nigel)
  215. 74. HADOOP-1518. Add a session id to job metrics, for use by HOD.
  216. (David Bowen via cutting)
  217. 75. HADOOP-1292. Change 'bin/hadoop fs -get' to first copy files to
  218. a temporary name, then rename them to their final name, so that
  219. failures don't leave partial files. (Tsz Wo Sze via cutting)
  220. 76. HADOOP-1377. Add support for modification time to FileSystem and
  221. implement in HDFS and local implementations. Also, alter access
  222. to file properties to be through a new FileStatus interface.
  223. (Dhruba Borthakur via cutting)
  224. 77. HADOOP-1515. Add MultiFileInputFormat, which can pack multiple,
  225. typically small, input files into each split. (Enis Soztutar via cutting)
  226. 78. HADOOP-1514. Make reducers report progress while waiting for map
  227. outputs, so they're not killed. (Vivek Ratan via cutting)
  228. 79. HADOOP-1508. Add an Ant task for FsShell operations. Also add
  229. new FsShell commands "touchz", "test" and "stat".
  230. (Chris Douglas via cutting)
  231. 80. HADOOP-1028. Add log messages for server startup and shutdown.
  232. (Tsz Wo Sze via cutting)
  233. 81. HADOOP-1485. Add metrics for monitoring shuffle.
  234. (Devaraj Das via cutting)
  235. 82. HADOOP-1536. Remove file locks from libhdfs tests.
  236. (Dhruba Borthakur via nigel)
  237. 83. HADOOP-1520. Add appropriate synchronization to FSEditsLog.
  238. (Dhruba Borthakur via nigel)
  239. 84. HADOOP-1513. Fix a race condition in directory creation.
  240. (Devaraj via omalley)
  241. 85. HADOOP-1546. Remove spurious column from HDFS web UI.
  242. (Dhruba Borthakur via cutting)
  243. 86. HADOOP-1556. Make LocalJobRunner delete working files at end of
  244. job run. (Devaraj Das via tomwhite)
  245. 87. HADOOP-1571. Add contrib lib directories to root build.xml
  246. javadoc classpath. (Michael Stack via tomwhite)
  247. 88. HADOOP-1554. Log killed tasks to the job history and display them on the
  248. web/ui. (Devaraj Das via omalley)
  249. 89. HADOOP-1533. Add persistent error logging for distcp. The logs are stored
  250. into a specified hdfs directory. (Senthil Subramanian via omalley)
  251. 90. HADOOP-1286. Add support to HDFS for distributed upgrades, which
  252. permits coordinated upgrade of datanode data.
  253. (Konstantin Shvachko via cutting)
  254. 91. HADOOP-1580. Improve contrib/streaming so that subprocess exit
  255. status is displayed for errors. (John Heidemann via cutting)
  256. 92. HADOOP-1448. In HDFS, randomize lists of non-local block
  257. locations returned to client, so that load is better balanced.
  258. (Hairong Kuang via cutting)
  259. 93. HADOOP-1578. Fix datanode to send its storage id to namenode
  260. during registration. (Konstantin Shvachko via cutting)
  261. 94. HADOOP-1584. Fix a bug in GenericWritable which limited it to
  262. 128 types instead of 256. (Espen Amble Kolstad via cutting)
  263. 95. HADOOP-1473. Make job ids unique across jobtracker restarts.
  264. (omalley via cutting)
  265. 96. HADOOP-1582. Fix hdfslib to return 0 instead of -1 at
  266. end-of-file, per C conventions. (Christian Kunz via cutting)
  267. 97. HADOOP-911. Fix a multithreading bug in libhdfs.
  268. (Christian Kunz)
  269. 98. HADOOP-1486. Fix so that fatal exceptions in namenode cause it
  270. to exit. (Dhruba Borthakur via cutting)
  271. 99. HADOOP-1470. Factor checksum generation and validation out of
  272. ChecksumFileSystem so that it can be reused by FileSystem's with
  273. built-in checksumming. (Hairong Kuang via cutting)
  274. 100. HADOOP-1590. Use relative urls in jobtracker jsp pages, so that
  275. webapp can be used in non-root contexts. (Thomas Friol via cutting)
  276. 101. HADOOP-1596. Fix the parsing of taskids by streaming and improve the
  277. error reporting. (omalley)
  278. 102. HADOOP-1535. Fix the user-controlled grouping to the reduce function.
  279. (Vivek Ratan via omalley)
  280. 103. HADOOP-1585. Modify GenericWritable to declare the classes as subtypes
  281. of Writable (Espen Amble Kolstad via omalley)
  282. 104. HADOOP-1576. Fix errors in count of completed tasks when
  283. speculative execution is enabled. (Arun C Murthy via cutting)
  284. 105. HADOOP-1598. Fix license headers: adding missing; updating old.
  285. (Enis Soztutar via cutting)
  286. 106. HADOOP-1547. Provide examples for aggregate library.
  287. (Runping Qi via tomwhite)
  288. 107. HADOOP-1570. Permit jobs to enable and disable the use of
  289. hadoop's native library. (Arun C Murthy via cutting)
  290. 108. HADOOP-1433. Add job priority. (Johan Oskarsson via tomwhite)
  291. 109. HADOOP-1597. Add status reports and post-upgrade options to HDFS
  292. distributed upgrade. (Konstantin Shvachko via cutting)
  293. 110. HADOOP-1524. Permit user task logs to appear as they're
  294. created. (Michael Bieniosek via cutting)
  295. 111. HADOOP-1599. Fix distcp bug on Windows. (Senthil Subramanian via cutting)
  296. 112. HADOOP-1562. Add JVM metrics, including GC and logging stats.
  297. (David Bowen via cutting)
  298. 113. HADOOP-1613. Fix "DFS Health" page to display correct time of
  299. last contact. (Dhruba Borthakur via cutting)
  300. 114. HADOOP-1134. Add optimized checksum support to HDFS. Checksums
  301. are now stored with each block, rather than as parallel files.
  302. This reduces the namenode's memory requirements and increases
  303. data integrity. (Raghu Angadi via cutting)
  304. 115. HADOOP-1400. Make JobClient retry requests, so that clients can
  305. survive jobtracker problems. (omalley via cutting)
  306. 116. HADOOP-1564. Add unit tests for HDFS block-level checksums.
  307. (Dhruba Borthakur via cutting)
  308. 117. HADOOP-1620. Reduce the number of abstract FileSystem methods,
  309. simplifying implementations. (cutting)
  310. 118. HADOOP-1625. Fix a "could not move files" exception in datanode.
  311. (Raghu Angadi via cutting)
  312. 119. HADOOP-1624. Fix an infinite loop in datanode. (Raghu Angadi via cutting)
  313. 120. HADOOP-1084. Switch mapred file cache to use file modification
  314. time instead of checksum to detect file changes, as checksums are
  315. no longer easily accessed. (Arun C Murthy via cutting)
  316. 130. HADOOP-1623. Fix an infinite loop when copying directories.
  317. (Dhruba Borthakur via cutting)
  318. 131. HADOOP-1603. Fix a bug in namenode initialization where
  319. default replication is sometimes reset to one on restart.
  320. (Raghu Angadi via cutting)
  321. 132. HADOOP-1635. Remove hardcoded keypair name and fix launch-hadoop-cluster
  322. to support later versions of ec2-api-tools. (Stu Hood via tomwhite)
  323. 133. HADOOP-1638. Fix contrib EC2 scripts to support NAT addressing.
  324. (Stu Hood via tomwhite)
  325. 134. HADOOP-1632. Fix an IllegalArgumentException in fsck.
  326. (Hairong Kuang via cutting)
  327. 135. HADOOP-1619. Fix FSInputChecker to not attempt to read past EOF.
  328. (Hairong Kuang via cutting)
  329. 136. HADOOP-1640. Fix TestDecommission on Windows.
  330. (Dhruba Borthakur via cutting)
  331. 137. HADOOP-1587. Fix TestSymLink to get required system properties.
  332. (Devaraj Das via omalley)
  333. 138. HADOOP-1628. Add block CRC protocol unit tests. (Raghu Angadi via omalley)
  334. 139. HADOOP-1653. FSDirectory code-cleanups. FSDirectory.INode
  335. becomes a static class. (Christophe Taton via dhruba)
  336. 140. HADOOP-1066. Restructure documentation to make more user
  337. friendly. (Connie Kleinjans and Jeff Hammerbacher via cutting)
  338. 141. HADOOP-1551. libhdfs supports setting replication factor and
  339. retrieving modification time of files. (Sameer Paranjpye via dhruba)
  340. 141. HADOOP-1647. FileSystem.getFileStatus returns valid values for "/".
  341. (Dhruba Borthakur via dhruba)
  342. 142. HADOOP-1657. Fix NNBench to ensure that the block size is a
  343. multiple of bytes.per.checksum. (Raghu Angadi via dhruba)
  344. 143. HADOOP-1553. Replace user task output and log capture code to use shell
  345. redirection instead of copier threads in the TaskTracker. Capping the
  346. size of the output is now done via tail in memory and thus should not be
  347. large. The output of the tasklog servlet is not forced into UTF8 and is
  348. not buffered entirely in memory. (omalley)
  349. Configuration changes to hadoop-default.xml:
  350. remove mapred.userlog.num.splits
  351. remove mapred.userlog.purge.splits
  352. change default mapred.userlog.limit.kb to 0 (no limit)
  353. change default mapred.userlog.retain.hours to 24
  354. Configuration changes to log4j.properties:
  355. remove log4j.appender.TLA.noKeepSplits
  356. remove log4j.appender.TLA.purgeLogSplits
  357. remove log4j.appender.TLA.logsRetainHours
  358. URL changes:
  359. http://<tasktracker>/tasklog.jsp -> http://<tasktracker>tasklog with
  360. parameters limited to start and end, which may be positive (from
  361. start) or negative (from end).
  362. Environment:
  363. require bash (v2 or later) and tail
  364. 144. HADOOP-1659. Fix a job id/job name mixup. (Arun C. Murthy via omalley)
  365. 145. HADOOP-1665. With HDFS Trash enabled and the same file was created
  366. and deleted more than once, the suceeding deletions creates Trash item
  367. names suffixed with a integer. (Dhruba Borthakur via dhruba)
  368. 146. HADOOP-1666. FsShell object can be used for multiple fs commands.
  369. Contributed by Dhruba Borthakur.
  370. 147. HADOOP-1654. Remove performance regression introduced by Block CRC.
  371. (Raghu Angadi via dhruba)
  372. 148. HADOOP-1680. Improvements to Block CRC upgrade messages.
  373. (Raghu Angadi via dhruba)
  374. 149. HADOOP-71. Allow Text and SequenceFile Map/Reduce inputs from non-default
  375. filesystems. (omalley)
  376. 150. HADOOP-1568. Expose HDFS as xml/http filesystem to provide cross-version
  377. compatability. (Chris Douglas via omalley)
  378. 151. HADOOP-1668. Added an INCOMPATIBILITY section to CHANGES.txt. (nigel)
  379. 152. HADOOP-1629. Added a upgrade test for HADOOP-1134.
  380. (Raghu Angadi via nigel)
  381. 153. HADOOP-1698. Fix performance problems on map output sorting for jobs
  382. with large numbers of reduces. (Devaraj Das via omalley)
  383. 154. HADOOP-1716. Fix a Pipes wordcount example to remove the 'file:'
  384. schema from its output path. (omalley via cutting)
  385. 155. HADOOP-1714. Fix TestDFSUpgradeFromImage to work on Windows.
  386. (Raghu Angadi via nigel)
  387. 156. HADOOP-1663. Return a non-zero exit code if streaming fails. (Lohit Renu
  388. via omalley)
  389. 157. HADOOP-1712. Fix an unhandled exception on datanode during block
  390. CRC upgrade. (Raghu Angadi via cutting)
  391. 158. HADOOP-1717. Fix TestDFSUpgradeFromImage to work on Solaris.
  392. (nigel via cutting)
  393. 159. HADOOP-1437. Add Eclipse plugin in contrib.
  394. (Eugene Hung and Christophe Taton via cutting)
  395. 160. HADOOP-1740. Fix null pointer exception in sorting map outputs. (Devaraj
  396. Das via omalley)
  397. Release 0.13.0 - 2007-06-08
  398. 1. HADOOP-1047. Fix TestReplication to succeed more reliably.
  399. (Hairong Kuang via cutting)
  400. 2. HADOOP-1063. Fix a race condition in MiniDFSCluster test code.
  401. (Hairong Kuang via cutting)
  402. 3. HADOOP-1101. In web ui, split shuffle statistics from reduce
  403. statistics, and add some task averages. (Devaraj Das via cutting)
  404. 4. HADOOP-1071. Improve handling of protocol version mismatch in
  405. JobTracker. (Tahir Hashmi via cutting)
  406. 5. HADOOP-1116. Increase heap size used for contrib unit tests.
  407. (Philippe Gassmann via cutting)
  408. 6. HADOOP-1120. Add contrib/data_join, tools to simplify joining
  409. data from multiple sources using MapReduce. (Runping Qi via cutting)
  410. 7. HADOOP-1064. Reduce log level of some DFSClient messages.
  411. (Dhruba Borthakur via cutting)
  412. 8. HADOOP-1137. Fix StatusHttpServer to work correctly when
  413. resources are in a jar file. (Benjamin Reed via cutting)
  414. 9. HADOOP-1094. Optimize generated Writable implementations for
  415. records to not allocate a new BinaryOutputArchive or
  416. BinaryInputArchive per call. (Milind Bhandarkar via cutting)
  417. 10. HADOOP-1068. Improve error message for clusters with 0 datanodes.
  418. (Dhruba Borthakur via tomwhite)
  419. 11. HADOOP-1122. Fix divide-by-zero exception in FSNamesystem
  420. chooseTarget method. (Dhruba Borthakur via tomwhite)
  421. 12. HADOOP-1131. Add a closeAll() static method to FileSystem.
  422. (Philippe Gassmann via tomwhite)
  423. 13. HADOOP-1085. Improve port selection in HDFS and MapReduce test
  424. code. Ports are now selected by the OS during testing rather than
  425. by probing for free ports, improving test reliability.
  426. (Arun C Murthy via cutting)
  427. 14. HADOOP-1153. Fix HDFS daemons to correctly stop their threads.
  428. (Konstantin Shvachko via cutting)
  429. 15. HADOOP-1146. Add a counter for reduce input keys and rename the
  430. "reduce input records" counter to be "reduce input groups".
  431. (David Bowen via cutting)
  432. 16. HADOOP-1165. In records, replace idential generated toString
  433. methods with a method on the base class. (Milind Bhandarkar via cutting)
  434. 17. HADOOP-1164. Fix TestReplicationPolicy to specify port zero, so
  435. that a free port is automatically selected. (omalley via cutting)
  436. 18. HADOOP-1166. Add a NullOutputFormat and use it in the
  437. RandomWriter example. (omalley via cutting)
  438. 19. HADOOP-1169. Fix a cut/paste error in CopyFiles utility so that
  439. S3-based source files are correctly copied. (Michael Stack via cutting)
  440. 20. HADOOP-1167. Remove extra synchronization in InMemoryFileSystem.
  441. (omalley via cutting)
  442. 21. HADOOP-1110. Fix an off-by-one error counting map inputs.
  443. (David Bowen via cutting)
  444. 22. HADOOP-1178. Fix a NullPointerException during namenode startup.
  445. (Dhruba Borthakur via cutting)
  446. 23. HADOOP-1011. Fix a ConcurrentModificationException when viewing
  447. job history. (Tahir Hashmi via cutting)
  448. 24. HADOOP-672. Improve help for fs shell commands.
  449. (Dhruba Borthakur via cutting)
  450. 25. HADOOP-1170. Improve datanode performance by removing device
  451. checks from common operations. (Igor Bolotin via cutting)
  452. 26. HADOOP-1090. Fix SortValidator's detection of whether the input
  453. file belongs to the sort-input or sort-output directory.
  454. (Arun C Murthy via tomwhite)
  455. 27. HADOOP-1081. Fix bin/hadoop on Darwin. (Michael Bieniosek via cutting)
  456. 28. HADOOP-1045. Add contrib/hbase, a BigTable-like online database.
  457. (Jim Kellerman via cutting)
  458. 29. HADOOP-1156. Fix a NullPointerException in MiniDFSCluster.
  459. (Hairong Kuang via cutting)
  460. 30. HADOOP-702. Add tools to help automate HDFS upgrades.
  461. (Konstantin Shvachko via cutting)
  462. 31. HADOOP-1163. Fix ganglia metrics to aggregate metrics from different
  463. hosts properly. (Michael Bieniosek via tomwhite)
  464. 32. HADOOP-1194. Make compression style record level for map output
  465. compression. (Arun C Murthy via tomwhite)
  466. 33. HADOOP-1187. Improve DFS Scalability: avoid scanning entire list of
  467. datanodes in getAdditionalBlocks. (Dhruba Borthakur via tomwhite)
  468. 34. HADOOP-1133. Add tool to analyze and debug namenode on a production
  469. cluster. (Dhruba Borthakur via tomwhite)
  470. 35. HADOOP-1151. Remove spurious printing to stderr in streaming
  471. PipeMapRed. (Koji Noguchi via tomwhite)
  472. 36. HADOOP-988. Change namenode to use a single map of blocks to metadata.
  473. (Raghu Angadi via tomwhite)
  474. 37. HADOOP-1203. Change UpgradeUtilities used by DFS tests to use
  475. MiniDFSCluster to start and stop NameNode/DataNodes.
  476. (Nigel Daley via tomwhite)
  477. 38. HADOOP-1217. Add test.timeout property to build.xml, so that
  478. long-running unit tests may be automatically terminated.
  479. (Nigel Daley via cutting)
  480. 39. HADOOP-1149. Improve DFS Scalability: make
  481. processOverReplicatedBlock() a no-op if blocks are not
  482. over-replicated. (Raghu Angadi via tomwhite)
  483. 40. HADOOP-1149. Improve DFS Scalability: optimize getDistance(),
  484. contains(), and isOnSameRack() in NetworkTopology.
  485. (Hairong Kuang via tomwhite)
  486. 41. HADOOP-1218. Make synchronization on TaskTracker's RunningJob
  487. object consistent. (Devaraj Das via tomwhite)
  488. 42. HADOOP-1219. Ignore progress report once a task has reported as
  489. 'done'. (Devaraj Das via tomwhite)
  490. 43. HADOOP-1114. Permit user to specify additional CLASSPATH elements
  491. with a HADOOP_CLASSPATH environment variable. (cutting)
  492. 44. HADOOP-1198. Remove ipc.client.timeout parameter override from
  493. unit test configuration. Using the default is more robust and
  494. has almost the same run time. (Arun C Murthy via tomwhite)
  495. 45. HADOOP-1211. Remove deprecated constructor and unused static
  496. members in DataNode class. (Konstantin Shvachko via tomwhite)
  497. 46. HADOOP-1136. Fix ArrayIndexOutOfBoundsException in
  498. FSNamesystem$UnderReplicatedBlocks add() method.
  499. (Hairong Kuang via tomwhite)
  500. 47. HADOOP-978. Add the client name and the address of the node that
  501. previously started to create the file to the description of
  502. AlreadyBeingCreatedException. (Konstantin Shvachko via tomwhite)
  503. 48. HADOOP-1001. Check the type of keys and values generated by the
  504. mapper against the types specified in JobConf.
  505. (Tahir Hashmi via tomwhite)
  506. 49. HADOOP-971. Improve DFS Scalability: Improve name node performance
  507. by adding a hostname to datanodes map. (Hairong Kuang via tomwhite)
  508. 50. HADOOP-1189. Fix 'No space left on device' exceptions on datanodes.
  509. (Raghu Angadi via tomwhite)
  510. 51. HADOOP-819. Change LineRecordWriter to not insert a tab between
  511. key and value when either is null, and to print nothing when both
  512. are null. (Runping Qi via cutting)
  513. 52. HADOOP-1204. Rename InputFormatBase to be FileInputFormat, and
  514. deprecate InputFormatBase. Also make LineRecordReader easier to
  515. extend. (Runping Qi via cutting)
  516. 53. HADOOP-1213. Improve logging of errors by IPC server, to
  517. consistently include the service name and the call. (cutting)
  518. 54. HADOOP-1238. Fix metrics reporting by TaskTracker to correctly
  519. track maps_running and reduces_running.
  520. (Michael Bieniosek via cutting)
  521. 55. HADOOP-1093. Fix a race condition in HDFS where blocks were
  522. sometimes erased before they were reported written.
  523. (Dhruba Borthakur via cutting)
  524. 56. HADOOP-1239. Add a package name to some testjar test classes.
  525. (Jim Kellerman via cutting)
  526. 57. HADOOP-1241. Fix NullPointerException in processReport when
  527. namenode is restarted. (Dhruba Borthakur via tomwhite)
  528. 58. HADOOP-1244. Fix stop-dfs.sh to no longer incorrectly specify
  529. slaves file for stopping datanode.
  530. (Michael Bieniosek via tomwhite)
  531. 59. HADOOP-1253. Fix ConcurrentModificationException and
  532. NullPointerException in JobControl.
  533. (Johan Oskarson via tomwhite)
  534. 60. HADOOP-1256. Fix NameNode so that multiple DataNodeDescriptors
  535. can no longer be created on startup. (Hairong Kuang via cutting)
  536. 61. HADOOP-1214. Replace streaming classes with new counterparts
  537. from Hadoop core. (Runping Qi via tomwhite)
  538. 62. HADOOP-1250. Move a chmod utility from streaming to FileUtil.
  539. (omalley via cutting)
  540. 63. HADOOP-1258. Fix TestCheckpoint test case to wait for
  541. MiniDFSCluster to be active. (Nigel Daley via tomwhite)
  542. 64. HADOOP-1148. Re-indent all Java source code to consistently use
  543. two spaces per indent level. (cutting)
  544. 65. HADOOP-1251. Add a method to Reporter to get the map InputSplit.
  545. (omalley via cutting)
  546. 66. HADOOP-1224. Fix "Browse the filesystem" link to no longer point
  547. to dead datanodes. (Enis Soztutar via tomwhite)
  548. 67. HADOOP-1154. Fail a streaming task if the threads reading from or
  549. writing to the streaming process fail. (Koji Noguchi via tomwhite)
  550. 68. HADOOP-968. Move shuffle and sort to run in reduce's child JVM,
  551. rather than in TaskTracker. (Devaraj Das via cutting)
  552. 69. HADOOP-1111. Add support for client notification of job
  553. completion. If the job configuration has a job.end.notification.url
  554. property it will make a HTTP GET request to the specified URL.
  555. The number of retries and the interval between retries is also
  556. configurable. (Alejandro Abdelnur via tomwhite)
  557. 70. HADOOP-1275. Fix misspelled job notification property in
  558. hadoop-default.xml. (Alejandro Abdelnur via tomwhite)
  559. 71. HADOOP-1152. Fix race condition in MapOutputCopier.copyOutput file
  560. rename causing possible reduce task hang.
  561. (Tahir Hashmi via tomwhite)
  562. 72. HADOOP-1050. Distinguish between failed and killed tasks so as to
  563. not count a lost tasktracker against the job.
  564. (Arun C Murthy via tomwhite)
  565. 73. HADOOP-1271. Fix StreamBaseRecordReader to be able to log record
  566. data that's not UTF-8. (Arun C Murthy via tomwhite)
  567. 74. HADOOP-1190. Fix unchecked warnings in main Hadoop code.
  568. (tomwhite)
  569. 75. HADOOP-1127. Fix AlreadyBeingCreatedException in namenode for
  570. jobs run with speculative execution.
  571. (Arun C Murthy via tomwhite)
  572. 76. HADOOP-1282. Omnibus HBase patch. Improved tests & configuration.
  573. (Jim Kellerman via cutting)
  574. 77. HADOOP-1262. Make dfs client try to read from a different replica
  575. of the checksum file when a checksum error is detected.
  576. (Hairong Kuang via tomwhite)
  577. 78. HADOOP-1279. Fix JobTracker to maintain list of recently
  578. completed jobs by order of completion, not submission.
  579. (Arun C Murthy via cutting)
  580. 79. HADOOP-1284. In contrib/streaming, permit flexible specification
  581. of field delimiter and fields for partitioning and sorting.
  582. (Runping Qi via cutting)
  583. 80. HADOOP-1176. Fix a bug where reduce would hang when a map had
  584. more than 2GB of output for it. (Arun C Murthy via cutting)
  585. 81. HADOOP-1293. Fix contrib/streaming to print more than the first
  586. twenty lines of standard error. (Koji Noguchi via cutting)
  587. 82. HADOOP-1297. Fix datanode so that requests to remove blocks that
  588. do not exist no longer causes block reports to be re-sent every
  589. second. (Dhruba Borthakur via cutting)
  590. 83. HADOOP-1216. Change MapReduce so that, when numReduceTasks is
  591. zero, map outputs are written directly as final output, skipping
  592. shuffle, sort and reduce. Use this to implement reduce=NONE
  593. option in contrib/streaming. (Runping Qi via cutting)
  594. 84. HADOOP-1294. Fix unchecked warnings in main Hadoop code under
  595. Java 6. (tomwhite)
  596. 85. HADOOP-1299. Fix so that RPC will restart after RPC.stopClient()
  597. has been called. (Michael Stack via cutting)
  598. 86. HADOOP-1278. Improve blacklisting of TaskTrackers by JobTracker,
  599. to reduce false positives. (Arun C Murthy via cutting)
  600. 87. HADOOP-1290. Move contrib/abacus into mapred/lib/aggregate.
  601. (Runping Qi via cutting)
  602. 88. HADOOP-1272. Extract inner classes from FSNamesystem into separate
  603. classes. (Dhruba Borthakur via tomwhite)
  604. 89. HADOOP-1247. Add support to contrib/streaming for aggregate
  605. package, formerly called Abacus. (Runping Qi via cutting)
  606. 90. HADOOP-1061. Fix bug in listing files in the S3 filesystem.
  607. NOTE: this change is not backwards compatible! You should use the
  608. MigrationTool supplied to migrate existing S3 filesystem data to
  609. the new format. Please backup your data first before upgrading
  610. (using 'hadoop distcp' for example). (tomwhite)
  611. 91. HADOOP-1304. Make configurable the maximum number of task
  612. attempts before a job fails. (Devaraj Das via cutting)
  613. 92. HADOOP-1308. Use generics to restrict types when classes are
  614. passed as parameters to JobConf methods. (Michael Bieniosek via cutting)
  615. 93. HADOOP-1312. Fix a ConcurrentModificationException in NameNode
  616. that killed the heartbeat monitoring thread.
  617. (Dhruba Borthakur via cutting)
  618. 94. HADOOP-1315. Clean up contrib/streaming, switching it to use core
  619. classes more and removing unused code. (Runping Qi via cutting)
  620. 95. HADOOP-485. Allow a different comparator for grouping keys in
  621. calls to reduce. (Tahir Hashmi via cutting)
  622. 96. HADOOP-1322. Fix TaskTracker blacklisting to work correctly in
  623. one- and two-node clusters. (Arun C Murthy via cutting)
  624. 97. HADOOP-1144. Permit one to specify a maximum percentage of tasks
  625. that can fail before a job is aborted. The default is zero.
  626. (Arun C Murthy via cutting)
  627. 98. HADOOP-1184. Fix HDFS decomissioning to complete when the only
  628. copy of a block is on a decommissioned node. (Dhruba Borthakur via cutting)
  629. 99. HADOOP-1263. Change DFSClient to retry certain namenode calls
  630. with a random, exponentially increasing backoff time, to avoid
  631. overloading the namenode on, e.g., job start. (Hairong Kuang via cutting)
  632. 100. HADOOP-1325. First complete, functioning version of HBase.
  633. (Jim Kellerman via cutting)
  634. 101. HADOOP-1276. Make tasktracker expiry interval configurable.
  635. (Arun C Murthy via cutting)
  636. 102. HADOOP-1326. Change JobClient#RunJob() to return the job.
  637. (omalley via cutting)
  638. 103. HADOOP-1270. Randomize the fetch of map outputs, speeding the
  639. shuffle. (Arun C Murthy via cutting)
  640. 104. HADOOP-1200. Restore disk checking lost in HADOOP-1170.
  641. (Hairong Kuang via cutting)
  642. 105. HADOOP-1252. Changed MapReduce's allocation of local files to
  643. use round-robin among available devices, rather than a hashcode.
  644. More care is also taken to not allocate files on full or offline
  645. drives. (Devaraj Das via cutting)
  646. 106. HADOOP-1324. Change so that an FSError kills only the task that
  647. generates it rather than the entire task tracker.
  648. (Arun C Murthy via cutting)
  649. 107. HADOOP-1310. Fix unchecked warnings in aggregate code. (tomwhite)
  650. 108. HADOOP-1255. Fix a bug where the namenode falls into an infinite
  651. loop trying to remove a dead node. (Hairong Kuang via cutting)
  652. 109. HADOOP-1160. Fix DistributedFileSystem.close() to close the
  653. underlying FileSystem, correctly aborting files being written.
  654. (Hairong Kuang via cutting)
  655. 110. HADOOP-1341. Fix intermittent failures in HBase unit tests
  656. caused by deadlock. (Jim Kellerman via cutting)
  657. 111. HADOOP-1350. Fix shuffle performance problem caused by forcing
  658. chunked encoding of map outputs. (Devaraj Das via cutting)
  659. 112. HADOOP-1345. Fix HDFS to correctly retry another replica when a
  660. checksum error is encountered. (Hairong Kuang via cutting)
  661. 113. HADOOP-1205. Improve synchronization around HDFS block map.
  662. (Hairong Kuang via cutting)
  663. 114. HADOOP-1353. Fix a potential NullPointerException in namenode.
  664. (Dhruba Borthakur via cutting)
  665. 115. HADOOP-1354. Fix a potential NullPointerException in FsShell.
  666. (Hairong Kuang via cutting)
  667. 116. HADOOP-1358. Fix a potential bug when DFSClient calls skipBytes.
  668. (Hairong Kuang via cutting)
  669. 117. HADOOP-1356. Fix a bug in ValueHistogram. (Runping Qi via cutting)
  670. 118. HADOOP-1363. Fix locking bug in JobClient#waitForCompletion().
  671. (omalley via cutting)
  672. 119. HADOOP-1368. Fix inconsistent synchronization in JobInProgress.
  673. (omalley via cutting)
  674. 120. HADOOP-1369. Fix inconsistent synchronization in TaskTracker.
  675. (omalley via cutting)
  676. 121. HADOOP-1361. Fix various calls to skipBytes() to check return
  677. value. (Hairong Kuang via cutting)
  678. 122. HADOOP-1388. Fix a potential NullPointerException in web ui.
  679. (Devaraj Das via cutting)
  680. 123. HADOOP-1385. Fix MD5Hash#hashCode() to generally hash to more
  681. than 256 values. (omalley via cutting)
  682. 124. HADOOP-1386. Fix Path to not permit the empty string as a
  683. path, as this has lead to accidental file deletion. Instead
  684. force applications to use "." to name the default directory.
  685. (Hairong Kuang via cutting)
  686. 125. HADOOP-1407. Fix integer division bug in JobInProgress which
  687. meant failed tasks didn't cause the job to fail.
  688. (Arun C Murthy via tomwhite)
  689. 126. HADOOP-1427. Fix a typo that caused GzipCodec to incorrectly use
  690. a very small input buffer. (Espen Amble Kolstad via cutting)
  691. 127. HADOOP-1435. Fix globbing code to no longer use the empty string
  692. to indicate the default directory, per HADOOP-1386.
  693. (Hairong Kuang via cutting)
  694. 128. HADOOP-1411. Make task retry framework handle
  695. AlreadyBeingCreatedException when wrapped as a RemoteException.
  696. (Hairong Kuang via tomwhite)
  697. 129. HADOOP-1242. Improve handling of DFS upgrades.
  698. (Konstantin Shvachko via cutting)
  699. 130. HADOOP-1332. Fix so that TaskTracker exits reliably during unit
  700. tests on Windows. (omalley via cutting)
  701. 131. HADOOP-1431. Fix so that sort progress reporting during map runs
  702. only while sorting, so that stuck maps are correctly terminated.
  703. (Devaraj Das and Arun C Murthy via cutting)
  704. 132. HADOOP-1452. Change TaskTracker.MapOutputServlet.doGet.totalRead
  705. to a long, permitting map outputs to exceed 2^31 bytes.
  706. (omalley via cutting)
  707. 133. HADOOP-1443. Fix a bug opening zero-length files in HDFS.
  708. (Konstantin Shvachko via cutting)
  709. Release 0.12.3 - 2007-04-06
  710. 1. HADOOP-1162. Fix bug in record CSV and XML serialization of
  711. binary values. (Milind Bhandarkar via cutting)
  712. 2. HADOOP-1123. Fix NullPointerException in LocalFileSystem when
  713. trying to recover from a checksum error.
  714. (Hairong Kuang & Nigel Daley via tomwhite)
  715. 3. HADOOP-1177. Fix bug where IOException in MapOutputLocation.getFile
  716. was not being logged. (Devaraj Das via tomwhite)
  717. 4. HADOOP-1175. Fix bugs in JSP for displaying a task's log messages.
  718. (Arun C Murthy via cutting)
  719. 5. HADOOP-1191. Fix map tasks to wait until sort progress thread has
  720. stopped before reporting the task done. (Devaraj Das via cutting)
  721. 6. HADOOP-1192. Fix an integer overflow bug in FSShell's 'dus'
  722. command and a performance problem in HDFS's implementation of it.
  723. (Hairong Kuang via cutting)
  724. 7. HADOOP-1105. Fix reducers to make "progress" while iterating
  725. through values. (Devaraj Das & Owen O'Malley via tomwhite)
  726. 8. HADOOP-1179. Make Task Tracker close index file as soon as the read
  727. is done when serving get-map-output requests.
  728. (Devaraj Das via tomwhite)
  729. Release 0.12.2 - 2007-23-17
  730. 1. HADOOP-1135. Fix bug in block report processing which may cause
  731. the namenode to delete blocks. (Dhruba Borthakur via tomwhite)
  732. 2. HADOOP-1145. Make XML serializer and deserializer classes public
  733. in record package. (Milind Bhandarkar via cutting)
  734. 3. HADOOP-1140. Fix a deadlock in metrics. (David Bowen via cutting)
  735. 4. HADOOP-1150. Fix streaming -reducer and -mapper to give them
  736. defaults. (Owen O'Malley via tomwhite)
  737. Release 0.12.1 - 2007-03-17
  738. 1. HADOOP-1035. Fix a StackOverflowError in FSDataSet.
  739. (Raghu Angadi via cutting)
  740. 2. HADOOP-1053. Fix VInt representation of negative values. Also
  741. remove references in generated record code to methods outside of
  742. the record package and improve some record documentation.
  743. (Milind Bhandarkar via cutting)
  744. 3. HADOOP-1067. Compile fails if Checkstyle jar is present in lib
  745. directory. Also remove dependency on a particular Checkstyle
  746. version number. (tomwhite)
  747. 4. HADOOP-1060. Fix an IndexOutOfBoundsException in the JobTracker
  748. that could cause jobs to hang. (Arun C Murthy via cutting)
  749. 5. HADOOP-1077. Fix a race condition fetching map outputs that could
  750. hang reduces. (Devaraj Das via cutting)
  751. 6. HADOOP-1083. Fix so that when a cluster restarts with a missing
  752. datanode, its blocks are replicated. (Hairong Kuang via cutting)
  753. 7. HADOOP-1082. Fix a NullPointerException in ChecksumFileSystem.
  754. (Hairong Kuang via cutting)
  755. 8. HADOOP-1088. Fix record serialization of negative values.
  756. (Milind Bhandarkar via cutting)
  757. 9. HADOOP-1080. Fix bug in bin/hadoop on Windows when native
  758. libraries are present. (ab via cutting)
  759. 10. HADOOP-1091. Fix a NullPointerException in MetricsRecord.
  760. (David Bowen via tomwhite)
  761. 11. HADOOP-1092. Fix a NullPointerException in HeartbeatMonitor
  762. thread. (Hairong Kuang via tomwhite)
  763. 12. HADOOP-1112. Fix a race condition in Hadoop metrics.
  764. (David Bowen via tomwhite)
  765. 13. HADOOP-1108. Checksummed file system should retry reading if a
  766. different replica is found when handling ChecksumException.
  767. (Hairong Kuang via tomwhite)
  768. 14. HADOOP-1070. Fix a problem with number of racks and datanodes
  769. temporarily doubling. (Konstantin Shvachko via tomwhite)
  770. 15. HADOOP-1099. Fix NullPointerException in JobInProgress.
  771. (Gautam Kowshik via tomwhite)
  772. 16. HADOOP-1115. Fix bug where FsShell copyToLocal doesn't
  773. copy directories. (Hairong Kuang via tomwhite)
  774. 17. HADOOP-1109. Fix NullPointerException in StreamInputFormat.
  775. (Koji Noguchi via tomwhite)
  776. 18. HADOOP-1117. Fix DFS scalability: when the namenode is
  777. restarted it consumes 80% CPU. (Dhruba Borthakur via
  778. tomwhite)
  779. 19. HADOOP-1089. Make the C++ version of write and read v-int
  780. agree with the Java versions. (Milind Bhandarkar via
  781. tomwhite)
  782. 20. HADOOP-1096. Rename InputArchive and OutputArchive and
  783. make them public. (Milind Bhandarkar via tomwhite)
  784. 21. HADOOP-1128. Fix missing progress information in map tasks.
  785. (Espen Amble Kolstad, Andrzej Bialecki, and Owen O'Malley
  786. via tomwhite)
  787. 22. HADOOP-1129. Fix DFSClient to not hide IOExceptions in
  788. flush method. (Hairong Kuang via tomwhite)
  789. 23. HADOOP-1126. Optimize CPU usage for under replicated blocks
  790. when cluster restarts. (Hairong Kuang via tomwhite)
  791. Release 0.12.0 - 2007-03-02
  792. 1. HADOOP-975. Separate stdout and stderr from tasks.
  793. (Arun C Murthy via cutting)
  794. 2. HADOOP-982. Add some setters and a toString() method to
  795. BytesWritable. (omalley via cutting)
  796. 3. HADOOP-858. Move contrib/smallJobsBenchmark to src/test, removing
  797. obsolete bits. (Nigel Daley via cutting)
  798. 4. HADOOP-992. Fix MiniMR unit tests to use MiniDFS when specified,
  799. rather than the local FS. (omalley via cutting)
  800. 5. HADOOP-954. Change use of metrics to use callback mechanism.
  801. Also rename utility class Metrics to MetricsUtil.
  802. (David Bowen & Nigel Daley via cutting)
  803. 6. HADOOP-893. Improve HDFS client's handling of dead datanodes.
  804. The set is no longer reset with each block, but rather is now
  805. maintained for the life of an open file. (Raghu Angadi via cutting)
  806. 7. HADOOP-882. Upgrade to jets3t version 0.5, used by the S3
  807. FileSystem. This version supports retries. (Michael Stack via cutting)
  808. 8. HADOOP-977. Send task's stdout and stderr to JobClient's stdout
  809. and stderr respectively, with each line tagged by the task's name.
  810. (Arun C Murthy via cutting)
  811. 9. HADOOP-761. Change unit tests to not use /tmp. (Nigel Daley via cutting)
  812. 10. HADOOP-1007. Make names of metrics used in Hadoop unique.
  813. (Nigel Daley via cutting)
  814. 11. HADOOP-491. Change mapred.task.timeout to be per-job, and make a
  815. value of zero mean no timeout. Also change contrib/streaming to
  816. disable task timeouts. (Arun C Murthy via cutting)
  817. 12. HADOOP-1010. Add Reporter.NULL, a Reporter implementation that
  818. does nothing. (Runping Qi via cutting)
  819. 13. HADOOP-923. In HDFS NameNode, move replication computation to a
  820. separate thread, to improve heartbeat processing time.
  821. (Dhruba Borthakur via cutting)
  822. 14. HADOOP-476. Rewrite contrib/streaming command-line processing,
  823. improving parameter validation. (Sanjay Dahiya via cutting)
  824. 15. HADOOP-973. Improve error messages in Namenode. This should help
  825. to track down a problem that was appearing as a
  826. NullPointerException. (Dhruba Borthakur via cutting)
  827. 16. HADOOP-649. Fix so that jobs with no tasks are not lost.
  828. (Thomas Friol via cutting)
  829. 17. HADOOP-803. Reduce memory use by HDFS namenode, phase I.
  830. (Raghu Angadi via cutting)
  831. 18. HADOOP-1021. Fix MRCaching-based unit tests on Windows.
  832. (Nigel Daley via cutting)
  833. 19. HADOOP-889. Remove duplicate code from HDFS unit tests.
  834. (Milind Bhandarkar via cutting)
  835. 20. HADOOP-943. Improve HDFS's fsck command to display the filename
  836. for under-replicated blocks. (Dhruba Borthakur via cutting)
  837. 21. HADOOP-333. Add validator for sort benchmark output.
  838. (Arun C Murthy via cutting)
  839. 22. HADOOP-947. Improve performance of datanode decomissioning.
  840. (Dhruba Borthakur via cutting)
  841. 23. HADOOP-442. Permit one to specify hosts allowed to connect to
  842. namenode and jobtracker with include and exclude files. (Wendy
  843. Chien via cutting)
  844. 24. HADOOP-1017. Cache constructors, for improved performance.
  845. (Ron Bodkin via cutting)
  846. 25. HADOOP-867. Move split creation out of JobTracker to client.
  847. Splits are now saved in a separate file, read by task processes
  848. directly, so that user code is no longer required in the
  849. JobTracker. (omalley via cutting)
  850. 26. HADOOP-1006. Remove obsolete '-local' option from test code.
  851. (Gautam Kowshik via cutting)
  852. 27. HADOOP-952. Create a public (shared) Hadoop EC2 AMI.
  853. The EC2 scripts now support launch of public AMIs.
  854. (tomwhite)
  855. 28. HADOOP-1025. Remove some obsolete code in ipc.Server. (cutting)
  856. 29. HADOOP-997. Implement S3 retry mechanism for failed block
  857. transfers. This includes a generic retry mechanism for use
  858. elsewhere in Hadoop. (tomwhite)
  859. 30. HADOOP-990. Improve HDFS support for full datanode volumes.
  860. (Raghu Angadi via cutting)
  861. 31. HADOOP-564. Replace uses of "dfs://" URIs with the more standard
  862. "hdfs://". (Wendy Chien via cutting)
  863. 32. HADOOP-1030. In unit tests, unify setting of ipc.client.timeout.
  864. Also increase the value used from one to two seconds, in hopes of
  865. making tests complete more reliably. (cutting)
  866. 33. HADOOP-654. Stop assigning tasks to a tasktracker if it has
  867. failed more than a specified number in the job.
  868. (Arun C Murthy via cutting)
  869. 34. HADOOP-985. Change HDFS to identify nodes by IP address rather
  870. than by DNS hostname. (Raghu Angadi via cutting)
  871. 35. HADOOP-248. Optimize location of map outputs to not use random
  872. probes. (Devaraj Das via cutting)
  873. 36. HADOOP-1029. Fix streaming's input format to correctly seek to
  874. the start of splits. (Arun C Murthy via cutting)
  875. 37. HADOOP-492. Add per-job and per-task counters. These are
  876. incremented via the Reporter interface and available through the
  877. web ui and the JobClient API. The mapreduce framework maintains a
  878. few basic counters, and applications may add their own. Counters
  879. are also passed to the metrics system.
  880. (David Bowen via cutting)
  881. 38. HADOOP-1034. Fix datanode to better log exceptions.
  882. (Philippe Gassmann via cutting)
  883. 39. HADOOP-878. In contrib/streaming, fix reducer=NONE to work with
  884. multiple maps. (Arun C Murthy via cutting)
  885. 40. HADOOP-1039. In HDFS's TestCheckpoint, avoid restarting
  886. MiniDFSCluster so often, speeding this test. (Dhruba Borthakur via cutting)
  887. 41. HADOOP-1040. Update RandomWriter example to use counters and
  888. user-defined input and output formats. (omalley via cutting)
  889. 42. HADOOP-1027. Fix problems with in-memory merging during shuffle
  890. and re-enable this optimization. (Devaraj Das via cutting)
  891. 43. HADOOP-1036. Fix exception handling in TaskTracker to keep tasks
  892. from being lost. (Arun C Murthy via cutting)
  893. 44. HADOOP-1042. Improve the handling of failed map output fetches.
  894. (Devaraj Das via cutting)
  895. 45. HADOOP-928. Make checksums optional per FileSystem.
  896. (Hairong Kuang via cutting)
  897. 46. HADOOP-1044. Fix HDFS's TestDecommission to not spuriously fail.
  898. (Wendy Chien via cutting)
  899. 47. HADOOP-972. Optimize HDFS's rack-aware block placement algorithm.
  900. (Hairong Kuang via cutting)
  901. 48. HADOOP-1043. Optimize shuffle, increasing parallelism.
  902. (Devaraj Das via cutting)
  903. 49. HADOOP-940. Improve HDFS's replication scheduling.
  904. (Dhruba Borthakur via cutting)
  905. 50. HADOOP-1020. Fix a bug in Path resolution, and a with unit tests
  906. on Windows. (cutting)
  907. 51. HADOOP-941. Enhance record facility.
  908. (Milind Bhandarkar via cutting)
  909. 52. HADOOP-1000. Fix so that log messages in task subprocesses are
  910. not written to a task's standard error. (Arun C Murthy via cutting)
  911. 53. HADOOP-1037. Fix bin/slaves.sh, which currently only works with
  912. /bin/bash, to specify /bin/bash rather than /bin/sh. (cutting)
  913. 54. HADOOP-1046. Clean up tmp from partially received stale block files. (ab)
  914. 55. HADOOP-1041. Optimize mapred counter implementation. Also group
  915. counters by their declaring Enum. (David Bowen via cutting)
  916. 56. HADOOP-1032. Permit one to specify jars that will be cached
  917. across multiple jobs. (Gautam Kowshik via cutting)
  918. 57. HADOOP-1051. Add optional checkstyle task to build.xml. To use
  919. this developers must download the (LGPL'd) checkstyle jar
  920. themselves. (tomwhite via cutting)
  921. 58. HADOOP-1049. Fix a race condition in IPC client.
  922. (Devaraj Das via cutting)
  923. 60. HADOOP-1056. Check HDFS include/exclude node lists with both IP
  924. address and hostname. (Wendy Chien via cutting)
  925. 61. HADOOP-994. In HDFS, limit the number of blocks invalidated at
  926. once. Large lists were causing datenodes to timeout.
  927. (Dhruba Borthakur via cutting)
  928. 62. HADOOP-432. Add a trash feature, disabled by default. When
  929. enabled, the FSShell 'rm' command will move things to a trash
  930. directory in the filesystem. In HDFS, a thread periodically
  931. checkpoints the trash and removes old checkpoints. (cutting)
  932. Release 0.11.2 - 2007-02-16
  933. 1. HADOOP-1009. Fix an infinite loop in the HDFS namenode.
  934. (Dhruba Borthakur via cutting)
  935. 2. HADOOP-1014. Disable in-memory merging during shuffle, as this is
  936. causing data corruption. (Devaraj Das via cutting)
  937. Release 0.11.1 - 2007-02-09
  938. 1. HADOOP-976. Make SequenceFile.Metadata public. (Runping Qi via cutting)
  939. 2. HADOOP-917. Fix a NullPointerException in SequenceFile's merger
  940. with large map outputs. (omalley via cutting)
  941. 3. HADOOP-984. Fix a bug in shuffle error handling introduced by
  942. HADOOP-331. If a map output is unavailable, the job tracker is
  943. once more informed. (Arun C Murthy via cutting)
  944. 4. HADOOP-987. Fix a problem in HDFS where blocks were not removed
  945. from neededReplications after a replication target was selected.
  946. (Hairong Kuang via cutting)
  947. Release 0.11.0 - 2007-02-02
  948. 1. HADOOP-781. Remove methods deprecated in 0.10 that are no longer
  949. widely used. (cutting)
  950. 2. HADOOP-842. Change HDFS protocol so that the open() method is
  951. passed the client hostname, to permit the namenode to order block
  952. locations on the basis of network topology.
  953. (Hairong Kuang via cutting)
  954. 3. HADOOP-852. Add an ant task to compile record definitions, and
  955. use it to compile record unit tests. (Milind Bhandarkar via cutting)
  956. 4. HADOOP-757. Fix "Bad File Descriptor" exception in HDFS client
  957. when an output file is closed twice. (Raghu Angadi via cutting)
  958. 5. [ intentionally blank ]
  959. 6. HADOOP-890. Replace dashes in metric names with underscores,
  960. for better compatibility with some monitoring systems.
  961. (Nigel Daley via cutting)
  962. 7. HADOOP-801. Add to jobtracker a log of task completion events.
  963. (Sanjay Dahiya via cutting)
  964. 8. HADOOP-855. In HDFS, try to repair files with checksum errors.
  965. An exception is still thrown, but corrupt blocks are now removed
  966. when they have replicas. (Wendy Chien via cutting)
  967. 9. HADOOP-886. Reduce number of timer threads created by metrics API
  968. by pooling contexts. (Nigel Daley via cutting)
  969. 10. HADOOP-897. Add a "javac.args" property to build.xml that permits
  970. one to pass arbitrary options to javac. (Milind Bhandarkar via cutting)
  971. 11. HADOOP-899. Update libhdfs for changes in HADOOP-871.
  972. (Sameer Paranjpye via cutting)
  973. 12. HADOOP-905. Remove some dead code from JobClient. (cutting)
  974. 13. HADOOP-902. Fix a NullPointerException in HDFS client when
  975. closing output streams. (Raghu Angadi via cutting)
  976. 14. HADOOP-735. Switch generated record code to use BytesWritable to
  977. represent fields of type 'buffer'. (Milind Bhandarkar via cutting)
  978. 15. HADOOP-830. Improve mapreduce merge performance by buffering and
  979. merging multiple map outputs as they arrive at reduce nodes before
  980. they're written to disk. (Devaraj Das via cutting)
  981. 16. HADOOP-908. Add a new contrib package, Abacus, that simplifies
  982. counting and aggregation, built on MapReduce. (Runping Qi via cutting)
  983. 17. HADOOP-901. Add support for recursive renaming to the S3 filesystem.
  984. (Tom White via cutting)
  985. 18. HADOOP-912. Fix a bug in TaskTracker.isIdle() that was
  986. sporadically causing unit test failures. (Arun C Murthy via cutting)
  987. 19. HADOOP-909. Fix the 'du' command to correctly compute the size of
  988. FileSystem directory trees. (Hairong Kuang via cutting)
  989. 20. HADOOP-731. When a checksum error is encountered on a file stored
  990. in HDFS, try another replica of the data, if any.
  991. (Wendy Chien via cutting)
  992. 21. HADOOP-732. Add support to SequenceFile for arbitrary metadata,
  993. as a set of attribute value pairs. (Runping Qi via cutting)
  994. 22. HADOOP-929. Fix PhasedFileSystem to pass configuration to
  995. underlying FileSystem. (Sanjay Dahiya via cutting)
  996. 23. HADOOP-935. Fix contrib/abacus to not delete pre-existing output
  997. files, but rather to fail in this case. (Runping Qi via cutting)
  998. 24. HADOOP-936. More metric renamings, as in HADOOP-890.
  999. (Nigel Daley via cutting)
  1000. 25. HADOOP-856. Fix HDFS's fsck command to not report that
  1001. non-existent filesystems are healthy. (Milind Bhandarkar via cutting)
  1002. 26. HADOOP-602. Remove the dependency on Lucene's PriorityQueue
  1003. utility, by copying it into Hadoop. This facilitates using Hadoop
  1004. with different versions of Lucene without worrying about CLASSPATH
  1005. order. (Milind Bhandarkar via cutting)
  1006. 27. [ intentionally blank ]
  1007. 28. HADOOP-227. Add support for backup namenodes, which periodically
  1008. get snapshots of the namenode state. (Dhruba Borthakur via cutting)
  1009. 29. HADOOP-884. Add scripts in contrib/ec2 to facilitate running
  1010. Hadoop on an Amazon's EC2 cluster. (Tom White via cutting)
  1011. 30. HADOOP-937. Change the namenode to request re-registration of
  1012. datanodes in more circumstances. (Hairong Kuang via cutting)
  1013. 31. HADOOP-922. Optimize small forward seeks in HDFS. If data is has
  1014. likely already in flight, skip ahead rather than re-opening the
  1015. block. (Dhruba Borthakur via cutting)
  1016. 32. HADOOP-961. Add a 'job -events' sub-command that prints job
  1017. events, including task completions and failures. (omalley via cutting)
  1018. 33. HADOOP-959. Fix namenode snapshot code added in HADOOP-227 to
  1019. work on Windows. (Dhruba Borthakur via cutting)
  1020. 34. HADOOP-934. Fix TaskTracker to catch metrics exceptions that were
  1021. causing heartbeats to fail. (Arun Murthy via cutting)
  1022. 35. HADOOP-881. Fix JobTracker web interface to display the correct
  1023. number of task failures. (Sanjay Dahiya via cutting)
  1024. 36. HADOOP-788. Change contrib/streaming to subclass TextInputFormat,
  1025. permitting it to take advantage of native compression facilities.
  1026. (Sanjay Dahiya via cutting)
  1027. 37. HADOOP-962. In contrib/ec2: make scripts executable in tar file;
  1028. add a README; make the environment file use a template.
  1029. (Tom White via cutting)
  1030. 38. HADOOP-549. Fix a NullPointerException in TaskReport's
  1031. serialization. (omalley via cutting)
  1032. 39. HADOOP-963. Fix remote exceptions to have the stack trace of the
  1033. caller thread, not the IPC listener thread. (omalley via cutting)
  1034. 40. HADOOP-967. Change RPC clients to start sending a version header.
  1035. (omalley via cutting)
  1036. 41. HADOOP-964. Fix a bug introduced by HADOOP-830 where jobs failed
  1037. whose comparators and/or i/o types were in the job's jar.
  1038. (Dennis Kubes via cutting)
  1039. 42. HADOOP-969. Fix a deadlock in JobTracker. (omalley via cutting)
  1040. 43. HADOOP-862. Add support for the S3 FileSystem to the CopyFiles
  1041. tool. (Michael Stack via cutting)
  1042. 44. HADOOP-965. Fix IsolationRunner so that job's jar can be found.
  1043. (Dennis Kubes via cutting)
  1044. 45. HADOOP-309. Fix two NullPointerExceptions in StatusHttpServer.
  1045. (navychen via cutting)
  1046. 46. HADOOP-692. Add rack awareness to HDFS's placement of blocks.
  1047. (Hairong Kuang via cutting)
  1048. Release 0.10.1 - 2007-01-10
  1049. 1. HADOOP-857. Fix S3 FileSystem implementation to permit its use
  1050. for MapReduce input and output. (Tom White via cutting)
  1051. 2. HADOOP-863. Reduce logging verbosity introduced by HADOOP-813.
  1052. (Devaraj Das via cutting)
  1053. 3. HADOOP-815. Fix memory leaks in JobTracker. (Arun C Murthy via cutting)
  1054. 4. HADOOP-600. Fix a race condition in JobTracker.
  1055. (Arun C Murthy via cutting)
  1056. 5. HADOOP-864. Fix 'bin/hadoop -jar' to operate correctly when
  1057. hadoop.tmp.dir does not yet exist. (omalley via cutting)
  1058. 6. HADOOP-866. Fix 'dfs -get' command to remove existing crc files,
  1059. if any. (Milind Bhandarkar via cutting)
  1060. 7. HADOOP-871. Fix a bug in bin/hadoop setting JAVA_LIBRARY_PATH.
  1061. (Arun C Murthy via cutting)
  1062. 8. HADOOP-868. Decrease the number of open files during map,
  1063. respecting io.sort.fa ctor. (Devaraj Das via cutting)
  1064. 9. HADOOP-865. Fix S3 FileSystem so that partially created files can
  1065. be deleted. (Tom White via cutting)
  1066. 10. HADOOP-873. Pass java.library.path correctly to child processes.
  1067. (omalley via cutting)
  1068. 11. HADOOP-851. Add support for the LZO codec. This is much faster
  1069. than the default, zlib-based compression, but it is only available
  1070. when the native library is built. (Arun C Murthy via cutting)
  1071. 12. HADOOP-880. Fix S3 FileSystem to remove directories.
  1072. (Tom White via cutting)
  1073. 13. HADOOP-879. Fix InputFormatBase to handle output generated by
  1074. MapFileOutputFormat. (cutting)
  1075. 14. HADOOP-659. In HDFS, prioritize replication of blocks based on
  1076. current replication level. Blocks which are severely
  1077. under-replicated should be further replicated before blocks which
  1078. are less under-replicated. (Hairong Kuang via cutting)
  1079. 15. HADOOP-726. Deprecate FileSystem locking methods. They are not
  1080. currently usable. Locking should eventually provided as an
  1081. independent service. (Raghu Angadi via cutting)
  1082. 16. HADOOP-758. Fix exception handling during reduce so that root
  1083. exceptions are not masked by exceptions in cleanups.
  1084. (Raghu Angadi via cutting)
  1085. Release 0.10.0 - 2007-01-05
  1086. 1. HADOOP-763. Change DFS namenode benchmark to not use MapReduce.
  1087. (Nigel Daley via cutting)
  1088. 2. HADOOP-777. Use fully-qualified hostnames for tasktrackers and
  1089. datanodes. (Mahadev Konar via cutting)
  1090. 3. HADOOP-621. Change 'dfs -cat' to exit sooner when output has been
  1091. closed. (Dhruba Borthakur via cutting)
  1092. 4. HADOOP-752. Rationalize some synchronization in DFS namenode.
  1093. (Dhruba Borthakur via cutting)
  1094. 5. HADOOP-629. Fix RPC services to better check the protocol name and
  1095. version. (omalley via cutting)
  1096. 6. HADOOP-774. Limit the number of invalid blocks returned with
  1097. heartbeats by the namenode to datanodes. Transmitting and
  1098. processing very large invalid block lists can tie up both the
  1099. namenode and datanode for too long. (Dhruba Borthakur via cutting)
  1100. 7. HADOOP-738. Change 'dfs -get' command to not create CRC files by
  1101. default, adding a -crc option to force their creation.
  1102. (Milind Bhandarkar via cutting)
  1103. 8. HADOOP-676. Improved exceptions and error messages for common job
  1104. input specification errors. (Sanjay Dahiya via cutting)
  1105. 9. [Included in 0.9.2 release]
  1106. 10. HADOOP-756. Add new dfsadmin option to wait for filesystem to be
  1107. operational. (Dhruba Borthakur via cutting)
  1108. 11. HADOOP-770. Fix jobtracker web interface to display, on restart,
  1109. jobs that were running when it was last stopped.
  1110. (Sanjay Dahiya via cutting)
  1111. 12. HADOOP-331. Write all map outputs to a single file with an index,
  1112. rather than to a separate file per reduce task. This should both
  1113. speed the shuffle and make things more scalable.
  1114. (Devaraj Das via cutting)
  1115. 13. HADOOP-818. Fix contrib unit tests to not depend on core unit
  1116. tests. (omalley via cutting)
  1117. 14. HADOOP-786. Log common exception at debug level.
  1118. (Sanjay Dahiya via cutting)
  1119. 15. HADOOP-796. Provide more convenient access to failed task
  1120. information in the web interface. (Sanjay Dahiya via cutting)
  1121. 16. HADOOP-764. Reduce memory allocations in namenode some.
  1122. (Dhruba Borthakur via cutting)
  1123. 17. HADOOP-802. Update description of mapred.speculative.execution to
  1124. mention reduces. (Nigel Daley via cutting)
  1125. 18. HADOOP-806. Include link to datanodes on front page of namenode
  1126. web interface. (Raghu Angadi via cutting)
  1127. 19. HADOOP-618. Make JobSubmissionProtocol public.
  1128. (Arun C Murthy via cutting)
  1129. 20. HADOOP-782. Fully remove killed tasks. (Arun C Murthy via cutting)
  1130. 21. HADOOP-792. Fix 'dfs -mv' to return correct status.
  1131. (Dhruba Borthakur via cutting)
  1132. 22. HADOOP-673. Give each task its own working directory again.
  1133. (Mahadev Konar via cutting)
  1134. 23. HADOOP-571. Extend the syntax of Path to be a URI; to be
  1135. optionally qualified with a scheme and authority. The scheme
  1136. determines the FileSystem implementation, while the authority
  1137. determines the FileSystem instance. New FileSystem
  1138. implementations may be provided by defining an fs.<scheme>.impl
  1139. property, naming the FileSystem implementation class. This
  1140. permits easy integration of new FileSystem implementations.
  1141. (cutting)
  1142. 24. HADOOP-720. Add an HDFS white paper to website.
  1143. (Dhruba Borthakur via cutting)
  1144. 25. HADOOP-794. Fix a divide-by-zero exception when a job specifies
  1145. zero map tasks. (omalley via cutting)
  1146. 26. HADOOP-454. Add a 'dfs -dus' command that provides summary disk
  1147. usage. (Hairong Kuang via cutting)
  1148. 27. HADOOP-574. Add an Amazon S3 implementation of FileSystem. To
  1149. use this, one need only specify paths of the form
  1150. s3://id:secret@bucket/. Alternately, the AWS access key id and
  1151. secret can be specified in your config, with the properties
  1152. fs.s3.awsAccessKeyId and fs.s3.awsSecretAccessKey.
  1153. (Tom White via cutting)
  1154. 28. HADOOP-824. Rename DFSShell to be FsShell, since it applies
  1155. generically to all FileSystem implementations. (cutting)
  1156. 29. HADOOP-813. Fix map output sorting to report progress, so that
  1157. sorts which take longer than the task timeout do not fail.
  1158. (Devaraj Das via cutting)
  1159. 30. HADOOP-825. Fix HDFS daemons when configured with new URI syntax.
  1160. (omalley via cutting)
  1161. 31. HADOOP-596. Fix a bug in phase reporting during reduce.
  1162. (Sanjay Dahiya via cutting)
  1163. 32. HADOOP-811. Add a utility, MultithreadedMapRunner.
  1164. (Alejandro Abdelnur via cutting)
  1165. 33. HADOOP-829. Within HDFS, clearly separate three different
  1166. representations for datanodes: one for RPCs, one for
  1167. namenode-internal use, and one for namespace persistence.
  1168. (Dhruba Borthakur via cutting)
  1169. 34. HADOOP-823. Fix problem starting datanode when not all configured
  1170. data directories exist. (Bryan Pendleton via cutting)
  1171. 35. HADOOP-451. Add a Split interface. CAUTION: This incompatibly
  1172. changes the InputFormat and RecordReader interfaces. Not only is
  1173. FileSplit replaced with Split, but a FileSystem parameter is no
  1174. longer passed in several methods, input validation has changed,
  1175. etc. (omalley via cutting)
  1176. 36. HADOOP-814. Optimize locking in namenode. (Dhruba Borthakur via cutting)
  1177. 37. HADOOP-738. Change 'fs -put' and 'fs -get' commands to accept
  1178. standard input and output, respectively. Standard i/o is
  1179. specified by a file named '-'. (Wendy Chien via cutting)
  1180. 38. HADOOP-835. Fix a NullPointerException reading record-compressed
  1181. SequenceFiles. (Hairong Kuang via cutting)
  1182. 39. HADOOP-836. Fix a MapReduce bug on Windows, where the wrong
  1183. FileSystem was used. Also add a static FileSystem.getLocal()
  1184. method and better Path checking in HDFS, to help avoid such issues
  1185. in the future. (omalley via cutting)
  1186. 40. HADOOP-837. Improve RunJar utility to unpack jar file
  1187. hadoop.tmp.dir, rather than the system temporary directory.
  1188. (Hairong Kuang via cutting)
  1189. 41. HADOOP-841. Fix native library to build 32-bit version even when
  1190. on a 64-bit host, if a 32-bit JVM is used. (Arun C Murthy via cutting)
  1191. 42. HADOOP-838. Fix tasktracker to pass java.library.path to
  1192. sub-processes, so that libhadoop.a is found.
  1193. (Arun C Murthy via cutting)
  1194. 43. HADOOP-844. Send metrics messages on a fixed-delay schedule
  1195. instead of a fixed-rate schedule. (David Bowen via cutting)
  1196. 44. HADOOP-849. Fix OutOfMemory exceptions in TaskTracker due to a
  1197. file handle leak in SequenceFile. (Devaraj Das via cutting)
  1198. 45. HADOOP-745. Fix a synchronization bug in the HDFS namenode.
  1199. (Dhruba Borthakur via cutting)
  1200. 46. HADOOP-850. Add Writable implementations for variable-length
  1201. integers. (ab via cutting)
  1202. 47. HADOOP-525. Add raw comparators to record types. This greatly
  1203. improves record sort performance. (Milind Bhandarkar via cutting)
  1204. 48. HADOOP-628. Fix a problem with 'fs -cat' command, where some
  1205. characters were replaced with question marks. (Wendy Chien via cutting)
  1206. 49. HADOOP-804. Reduce verbosity of MapReduce logging.
  1207. (Sanjay Dahiya via cutting)
  1208. 50. HADOOP-853. Rename 'site' to 'docs', in preparation for inclusion
  1209. in releases. (cutting)
  1210. 51. HADOOP-371. Include contrib jars and site documentation in
  1211. distributions. Also add contrib and example documentation to
  1212. distributed javadoc, in separate sections. (Nigel Daley via cutting)
  1213. 52. HADOOP-846. Report progress during entire map, as sorting of
  1214. intermediate outputs may happen at any time, potentially causing
  1215. task timeouts. (Devaraj Das via cutting)
  1216. 53. HADOOP-840. In task tracker, queue task cleanups and perform them
  1217. in a separate thread. (omalley & Mahadev Konar via cutting)
  1218. 54. HADOOP-681. Add to HDFS the ability to decommission nodes. This
  1219. causes their blocks to be re-replicated on other nodes, so that
  1220. they may be removed from a cluster. (Dhruba Borthakur via cutting)
  1221. 55. HADOOP-470. In HDFS web ui, list the datanodes containing each
  1222. copy of a block. (Hairong Kuang via cutting)
  1223. 56. HADOOP-700. Change bin/hadoop to only include core jar file on
  1224. classpath, not example, test, etc. Also rename core jar to
  1225. hadoop-${version}-core.jar so that it can be more easily
  1226. identified. (Nigel Daley via cutting)
  1227. 57. HADOOP-619. Extend InputFormatBase to accept individual files and
  1228. glob patterns as MapReduce inputs, not just directories. Also
  1229. change contrib/streaming to use this. (Sanjay Dahia via cutting)
  1230. Release 0.9.2 - 2006-12-15
  1231. 1. HADOOP-639. Restructure InterTrackerProtocol to make task
  1232. accounting more reliable. (Arun C Murthy via cutting)
  1233. 2. HADOOP-827. Turn off speculative execution by default, since it's
  1234. currently broken. (omalley via cutting)
  1235. 3. HADOOP-791. Fix a deadlock in the task tracker.
  1236. (Mahadev Konar via cutting)
  1237. Release 0.9.1 - 2006-12-06
  1238. 1. HADOOP-780. Use ReflectionUtils to instantiate key and value
  1239. objects. (ab)
  1240. 2. HADOOP-779. Fix contrib/streaming to work correctly with gzipped
  1241. input files. (Hairong Kuang via cutting)
  1242. Release 0.9.0 - 2006-12-01
  1243. 1. HADOOP-655. Remove most deprecated code. A few deprecated things
  1244. remain, notably UTF8 and some methods that are still required.
  1245. Also cleaned up constructors for SequenceFile, MapFile, SetFile,
  1246. and ArrayFile a bit. (cutting)
  1247. 2. HADOOP-565. Upgrade to Jetty version 6. (Sanjay Dahiya via cutting)
  1248. 3. HADOOP-682. Fix DFS format command to work correctly when
  1249. configured with a non-existent directory. (Sanjay Dahiya via cutting)
  1250. 4. HADOOP-645. Fix a bug in contrib/streaming when -reducer is NONE.
  1251. (Dhruba Borthakur via cutting)
  1252. 5. HADOOP-687. Fix a classpath bug in bin/hadoop that blocked the
  1253. servers from starting. (Sameer Paranjpye via omalley)
  1254. 6. HADOOP-683. Remove a script dependency on bash, so it works with
  1255. dash, the new default for /bin/sh on Ubuntu. (James Todd via cutting)
  1256. 7. HADOOP-382. Extend unit tests to run multiple datanodes.
  1257. (Milind Bhandarkar via cutting)
  1258. 8. HADOOP-604. Fix some synchronization issues and a
  1259. NullPointerException in DFS datanode. (Raghu Angadi via cutting)
  1260. 9. HADOOP-459. Fix memory leaks and a host of other issues with
  1261. libhdfs. (Sameer Paranjpye via cutting)
  1262. 10. HADOOP-694. Fix a NullPointerException in jobtracker.
  1263. (Mahadev Konar via cutting)
  1264. 11. HADOOP-637. Fix a memory leak in the IPC server. Direct buffers
  1265. are not collected like normal buffers, and provided little
  1266. advantage. (Raghu Angadi via cutting)
  1267. 12. HADOOP-696. Fix TestTextInputFormat unit test to not rely on the
  1268. order of directory listings. (Sameer Paranjpye via cutting)
  1269. 13. HADOOP-611. Add support for iterator-based merging to
  1270. SequenceFile. (Devaraj Das via cutting)
  1271. 14. HADOOP-688. Move DFS administrative commands to a separate
  1272. command named 'dfsadmin'. (Dhruba Borthakur via cutting)
  1273. 15. HADOOP-708. Fix test-libhdfs to return the correct status, so
  1274. that failures will break the build. (Nigel Daley via cutting)
  1275. 16. HADOOP-646. Fix namenode to handle edits files larger than 2GB.
  1276. (Milind Bhandarkar via cutting)
  1277. 17. HADOOP-705. Fix a bug in the JobTracker when failed jobs were
  1278. not completely cleaned up. (Mahadev Konar via cutting)
  1279. 18. HADOOP-613. Perform final merge while reducing. This removes one
  1280. sort pass over the data and should consequently significantly
  1281. decrease overall processing time. (Devaraj Das via cutting)
  1282. 19. HADOOP-661. Make each job's configuration visible through the web
  1283. ui. (Arun C Murthy via cutting)
  1284. 20. HADOOP-489. In MapReduce, separate user logs from system logs.
  1285. Each task's log output is now available through the web ui. (Arun
  1286. C Murthy via cutting)
  1287. 21. HADOOP-712. Fix record io's xml serialization to correctly handle
  1288. control-characters. (Milind Bhandarkar via cutting)
  1289. 22. HADOOP-668. Improvements to the web-based DFS browser.
  1290. (Hairong Kuang via cutting)
  1291. 23. HADOOP-715. Fix build.xml so that test logs are written in build
  1292. directory, rather than in CWD. (Arun C Murthy via cutting)
  1293. 24. HADOOP-538. Add support for building an optional native library,
  1294. libhadoop.so, that improves the performance of zlib-based
  1295. compression. To build this, specify -Dcompile.native to Ant.
  1296. (Arun C Murthy via cutting)
  1297. 25. HADOOP-610. Fix an problem when the DFS block size is configured
  1298. to be smaller than the buffer size, typically only when debugging.
  1299. (Milind Bhandarkar via cutting)
  1300. 26. HADOOP-695. Fix a NullPointerException in contrib/streaming.
  1301. (Hairong Kuang via cutting)
  1302. 27. HADOOP-652. In DFS, when a file is deleted, the block count is
  1303. now decremented. (Vladimir Krokhmalyov via cutting)
  1304. 28. HADOOP-725. In DFS, optimize block placement algorithm,
  1305. previously a performance bottleneck. (Milind Bhandarkar via cutting)
  1306. 29. HADOOP-723. In MapReduce, fix a race condition during the
  1307. shuffle, which resulted in FileNotFoundExceptions. (omalley via cutting)
  1308. 30. HADOOP-447. In DFS, fix getBlockSize(Path) to work with relative
  1309. paths. (Raghu Angadi via cutting)
  1310. 31. HADOOP-733. Make exit codes in DFShell consistent and add a unit
  1311. test. (Dhruba Borthakur via cutting)
  1312. 32. HADOOP-709. Fix contrib/streaming to work with commands that
  1313. contain control characters. (Dhruba Borthakur via cutting)
  1314. 33. HADOOP-677. In IPC, permit a version header to be transmitted
  1315. when connections are established. This will permit us to change
  1316. the format of IPC requests back-compatibly in subsequent releases.
  1317. (omalley via cutting)
  1318. 34. HADOOP-699. Fix DFS web interface so that filesystem browsing
  1319. works correctly, using the right port number. Also add support
  1320. for sorting datanode list by various columns.
  1321. (Raghu Angadi via cutting)
  1322. 35. HADOOP-76. Implement speculative reduce. Now when a job is
  1323. configured for speculative execution, both maps and reduces will
  1324. execute speculatively. Reduce outputs are written to temporary
  1325. location and moved to the final location when reduce is complete.
  1326. (Sanjay Dahiya via cutting)
  1327. 36. HADOOP-736. Roll back to Jetty 5.1.4, due to performance problems
  1328. with Jetty 6.0.1.
  1329. 37. HADOOP-739. Fix TestIPC to use different port number, making it
  1330. more reliable. (Nigel Daley via cutting)
  1331. 38. HADOOP-749. Fix a NullPointerException in jobfailures.jsp.
  1332. (omalley via cutting)
  1333. 39. HADOOP-747. Fix record serialization to work correctly when
  1334. records are embedded in Maps. (Milind Bhandarkar via cutting)
  1335. 40. HADOOP-698. Fix HDFS client not to retry the same datanode on
  1336. read failures. (Milind Bhandarkar via cutting)
  1337. 41. HADOOP-689. Add GenericWritable, to facilitate polymorphism in
  1338. MapReduce, SequenceFile, etc. (Feng Jiang via cutting)
  1339. 42. HADOOP-430. Stop datanode's HTTP server when registration with
  1340. namenode fails. (Wendy Chien via cutting)
  1341. 43. HADOOP-750. Fix a potential race condition during mapreduce
  1342. shuffle. (omalley via cutting)
  1343. 44. HADOOP-728. Fix contrib/streaming-related issues, including
  1344. '-reducer NONE'. (Sanjay Dahiya via cutting)
  1345. Release 0.8.0 - 2006-11-03
  1346. 1. HADOOP-477. Extend contrib/streaming to scan the PATH environment
  1347. variables when resolving executable program names.
  1348. (Dhruba Borthakur via cutting)
  1349. 2. HADOOP-583. In DFSClient, reduce the log level of re-connect
  1350. attempts from 'info' to 'debug', so they are not normally shown.
  1351. (Konstantin Shvachko via cutting)
  1352. 3. HADOOP-498. Re-implement DFS integrity checker to run server-side,
  1353. for much improved performance. (Milind Bhandarkar via cutting)
  1354. 4. HADOOP-586. Use the jar name for otherwise un-named jobs.
  1355. (Sanjay Dahiya via cutting)
  1356. 5. HADOOP-514. Make DFS heartbeat interval configurable.
  1357. (Milind Bhandarkar via cutting)
  1358. 6. HADOOP-588. Fix logging and accounting of failed tasks.
  1359. (Sanjay Dahiya via cutting)
  1360. 7. HADOOP-462. Improve command line parsing in DFSShell, so that
  1361. incorrect numbers of arguments result in informative errors rather
  1362. than ArrayOutOfBoundsException. (Dhruba Borthakur via cutting)
  1363. 8. HADOOP-561. Fix DFS so that one replica of each block is written
  1364. locally, if possible. This was the intent, but there as a bug.
  1365. (Dhruba Borthakur via cutting)
  1366. 9. HADOOP-610. Fix TaskTracker to survive more exceptions, keeping
  1367. tasks from becoming lost. (omalley via cutting)
  1368. 10. HADOOP-625. Add a servlet to all http daemons that displays a
  1369. stack dump, useful for debugging. (omalley via cutting)
  1370. 11. HADOOP-554. Fix DFSShell to return -1 for errors.
  1371. (Dhruba Borthakur via cutting)
  1372. 12. HADOOP-626. Correct the documentation in the NNBench example
  1373. code, and also remove a mistaken call there.
  1374. (Nigel Daley via cutting)
  1375. 13. HADOOP-634. Add missing license to many files.
  1376. (Nigel Daley via cutting)
  1377. 14. HADOOP-627. Fix some synchronization problems in MiniMRCluster
  1378. that sometimes caused unit tests to fail. (Nigel Daley via cutting)
  1379. 15. HADOOP-563. Improve the NameNode's lease policy so that leases
  1380. are held for one hour without renewal (instead of one minute).
  1381. However another attempt to create the same file will still succeed
  1382. if the lease has not been renewed within a minute. This prevents
  1383. communication or scheduling problems from causing a write to fail
  1384. for up to an hour, barring some other process trying to create the
  1385. same file. (Dhruba Borthakur via cutting)
  1386. 16. HADOOP-635. In DFSShell, permit specification of multiple files
  1387. as the source for file copy and move commands.
  1388. (Dhruba Borthakur via cutting)
  1389. 17. HADOOP-641. Change NameNode to request a fresh block report from
  1390. a re-discovered DataNode, so that no-longer-needed replications
  1391. are stopped promptly. (Konstantin Shvachko via cutting)
  1392. 18. HADOOP-642. Change IPC client to specify an explicit connect
  1393. timeout. (Konstantin Shvachko via cutting)
  1394. 19. HADOOP-638. Fix an unsynchronized access to TaskTracker's
  1395. internal state. (Nigel Daley via cutting)
  1396. 20. HADOOP-624. Fix servlet path to stop a Jetty warning on startup.
  1397. (omalley via cutting)
  1398. 21. HADOOP-578. Failed tasks are no longer placed at the end of the
  1399. task queue. This was originally done to work around other
  1400. problems that have now been fixed. Re-executing failed tasks
  1401. sooner causes buggy jobs to fail faster. (Sanjay Dahiya via cutting)
  1402. 22. HADOOP-658. Update source file headers per Apache policy. (cutting)
  1403. 23. HADOOP-636. Add MapFile & ArrayFile constructors which accept a
  1404. Progressable, and pass it down to SequenceFile. This permits
  1405. reduce tasks which use MapFile to still report progress while
  1406. writing blocks to the filesystem. (cutting)
  1407. 24. HADOOP-576. Enable contrib/streaming to use the file cache. Also
  1408. extend the cache to permit symbolic links to cached items, rather
  1409. than local file copies. (Mahadev Konar via cutting)
  1410. 25. HADOOP-482. Fix unit tests to work when a cluster is running on
  1411. the same machine, removing port conflicts. (Wendy Chien via cutting)
  1412. 26. HADOOP-90. Permit dfs.name.dir to list multiple directories,
  1413. where namenode data is to be replicated. (Milind Bhandarkar via cutting)
  1414. 27. HADOOP-651. Fix DFSCk to correctly pass parameters to the servlet
  1415. on the namenode. (Milind Bhandarkar via cutting)
  1416. 28. HADOOP-553. Change main() routines of DataNode and NameNode to
  1417. log exceptions rather than letting the JVM print them to standard
  1418. error. Also, change the hadoop-daemon.sh script to rotate
  1419. standard i/o log files. (Raghu Angadi via cutting)
  1420. 29. HADOOP-399. Fix javadoc warnings. (Nigel Daley via cutting)
  1421. 30. HADOOP-599. Fix web ui and command line to correctly report DFS
  1422. filesystem size statistics. Also improve web layout.
  1423. (Raghu Angadi via cutting)
  1424. 31. HADOOP-660. Permit specification of junit test output format.
  1425. (Nigel Daley via cutting)
  1426. 32. HADOOP-663. Fix a few unit test issues. (Mahadev Konar via cutting)
  1427. 33. HADOOP-664. Cause entire build to fail if libhdfs tests fail.
  1428. (Nigel Daley via cutting)
  1429. 34. HADOOP-633. Keep jobtracker from dying when job initialization
  1430. throws exceptions. Also improve exception handling in a few other
  1431. places and add more informative thread names.
  1432. (omalley via cutting)
  1433. 35. HADOOP-669. Fix a problem introduced by HADOOP-90 that can cause
  1434. DFS to lose files. (Milind Bhandarkar via cutting)
  1435. 36. HADOOP-373. Consistently check the value returned by
  1436. FileSystem.mkdirs(). (Wendy Chien via cutting)
  1437. 37. HADOOP-670. Code cleanups in some DFS internals: use generic
  1438. types, replace Vector with ArrayList, etc.
  1439. (Konstantin Shvachko via cutting)
  1440. 38. HADOOP-647. Permit map outputs to use a different compression
  1441. type than the job output. (omalley via cutting)
  1442. 39. HADOOP-671. Fix file cache to check for pre-existence before
  1443. creating . (Mahadev Konar via cutting)
  1444. 40. HADOOP-665. Extend many DFSShell commands to accept multiple
  1445. arguments. Now commands like "ls", "rm", etc. will operate on
  1446. multiple files. (Dhruba Borthakur via cutting)
  1447. Release 0.7.2 - 2006-10-18
  1448. 1. HADOOP-607. Fix a bug where classes included in job jars were not
  1449. found by tasks. (Mahadev Konar via cutting)
  1450. 2. HADOOP-609. Add a unit test that checks that classes in job jars
  1451. can be found by tasks. Also modify unit tests to specify multiple
  1452. local directories. (Mahadev Konar via cutting)
  1453. Release 0.7.1 - 2006-10-11
  1454. 1. HADOOP-593. Fix a NullPointerException in the JobTracker.
  1455. (omalley via cutting)
  1456. 2. HADOOP-592. Fix a NullPointerException in the IPC Server. Also
  1457. consistently log when stale calls are discarded. (omalley via cutting)
  1458. 3. HADOOP-594. Increase the DFS safe-mode threshold from .95 to
  1459. .999, so that nearly all blocks must be reported before filesystem
  1460. modifications are permitted. (Konstantin Shvachko via cutting)
  1461. 4. HADOOP-598. Fix tasks to retry when reporting completion, so that
  1462. a single RPC timeout won't fail a task. (omalley via cutting)
  1463. 5. HADOOP-597. Fix TaskTracker to not discard map outputs for errors
  1464. in transmitting them to reduce nodes. (omalley via cutting)
  1465. Release 0.7.0 - 2006-10-06
  1466. 1. HADOOP-243. Fix rounding in the display of task and job progress
  1467. so that things are not shown to be 100% complete until they are in
  1468. fact finished. (omalley via cutting)
  1469. 2. HADOOP-438. Limit the length of absolute paths in DFS, since the
  1470. file format used to store pathnames has some limitations.
  1471. (Wendy Chien via cutting)
  1472. 3. HADOOP-530. Improve error messages in SequenceFile when keys or
  1473. values are of the wrong type. (Hairong Kuang via cutting)
  1474. 4. HADOOP-288. Add a file caching system and use it in MapReduce to
  1475. cache job jar files on slave nodes. (Mahadev Konar via cutting)
  1476. 5. HADOOP-533. Fix unit test to not modify conf directory.
  1477. (Hairong Kuang via cutting)
  1478. 6. HADOOP-527. Permit specification of the local address that various
  1479. Hadoop daemons should bind to. (Philippe Gassmann via cutting)
  1480. 7. HADOOP-542. Updates to contrib/streaming: reformatted source code,
  1481. on-the-fly merge sort, a fix for HADOOP-540, etc.
  1482. (Michel Tourn via cutting)
  1483. 8. HADOOP-545. Remove an unused config file parameter.
  1484. (Philippe Gassmann via cutting)
  1485. 9. HADOOP-548. Add an Ant property "test.output" to build.xml that
  1486. causes test output to be logged to the console. (omalley via cutting)
  1487. 10. HADOOP-261. Record an error message when map output is lost.
  1488. (omalley via cutting)
  1489. 11. HADOOP-293. Report the full list of task error messages in the
  1490. web ui, not just the most recent. (omalley via cutting)
  1491. 12. HADOOP-551. Restore JobClient's console printouts to only include
  1492. a maximum of one update per one percent of progress.
  1493. (omalley via cutting)
  1494. 13. HADOOP-306. Add a "safe" mode to DFS. The name node enters this
  1495. when less than a specified percentage of file data is complete.
  1496. Currently safe mode is only used on startup, but eventually it
  1497. will also be entered when datanodes disconnect and file data
  1498. becomes incomplete. While in safe mode no filesystem
  1499. modifications are permitted and block replication is inhibited.
  1500. (Konstantin Shvachko via cutting)
  1501. 14. HADOOP-431. Change 'dfs -rm' to not operate recursively and add a
  1502. new command, 'dfs -rmr' which operates recursively.
  1503. (Sameer Paranjpye via cutting)
  1504. 15. HADOOP-263. Include timestamps for job transitions. The web
  1505. interface now displays the start and end times of tasks and the
  1506. start times of sorting and reducing for reduce tasks. Also,
  1507. extend ObjectWritable to handle enums, so that they can be passed
  1508. as RPC parameters. (Sanjay Dahiya via cutting)
  1509. 16. HADOOP-556. Contrib/streaming: send keep-alive reports to task
  1510. tracker every 10 seconds rather than every 100 records, to avoid
  1511. task timeouts. (Michel Tourn via cutting)
  1512. 17. HADOOP-547. Fix reduce tasks to ping tasktracker while copying
  1513. data, rather than only between copies, avoiding task timeouts.
  1514. (Sanjay Dahiya via cutting)
  1515. 18. HADOOP-537. Fix src/c++/libhdfs build process to create files in
  1516. build/, no longer modifying the source tree.
  1517. (Arun C Murthy via cutting)
  1518. 19. HADOOP-487. Throw a more informative exception for unknown RPC
  1519. hosts. (Sameer Paranjpye via cutting)
  1520. 20. HADOOP-559. Add file name globbing (pattern matching) support to
  1521. the FileSystem API, and use it in DFSShell ('bin/hadoop dfs')
  1522. commands. (Hairong Kuang via cutting)
  1523. 21. HADOOP-508. Fix a bug in FSDataInputStream. Incorrect data was
  1524. returned after seeking to a random location.
  1525. (Milind Bhandarkar via cutting)
  1526. 22. HADOOP-560. Add a "killed" task state. This can be used to
  1527. distinguish kills from other failures. Task state has also been
  1528. converted to use an enum type instead of an int, uncovering a bug
  1529. elsewhere. The web interface is also updated to display killed
  1530. tasks. (omalley via cutting)
  1531. 23. HADOOP-423. Normalize Paths containing directories named "." and
  1532. "..", using the standard, unix interpretation. Also add checks in
  1533. DFS, prohibiting the use of "." or ".." as directory or file
  1534. names. (Wendy Chien via cutting)
  1535. 24. HADOOP-513. Replace map output handling with a servlet, rather
  1536. than a JSP page. This fixes an issue where
  1537. IllegalStateException's were logged, sets content-length
  1538. correctly, and better handles some errors. (omalley via cutting)
  1539. 25. HADOOP-552. Improved error checking when copying map output files
  1540. to reduce nodes. (omalley via cutting)
  1541. 26. HADOOP-566. Fix scripts to work correctly when accessed through
  1542. relative symbolic links. (Lee Faris via cutting)
  1543. 27. HADOOP-519. Add positioned read methods to FSInputStream. These
  1544. permit one to read from a stream without moving its position, and
  1545. can hence be performed by multiple threads at once on a single
  1546. stream. Implement an optimized version for DFS and local FS.
  1547. (Milind Bhandarkar via cutting)
  1548. 28. HADOOP-522. Permit block compression with MapFile and SetFile.
  1549. Since these formats are always sorted, block compression can
  1550. provide a big advantage. (cutting)
  1551. 29. HADOOP-567. Record version and revision information in builds. A
  1552. package manifest is added to the generated jar file containing
  1553. version information, and a VersionInfo utility is added that
  1554. includes further information, including the build date and user,
  1555. and the subversion revision and repository. A 'bin/hadoop
  1556. version' comand is added to show this information, and it is also
  1557. added to various web interfaces. (omalley via cutting)
  1558. 30. HADOOP-568. Fix so that errors while initializing tasks on a
  1559. tasktracker correctly report the task as failed to the jobtracker,
  1560. so that it will be rescheduled. (omalley via cutting)
  1561. 31. HADOOP-550. Disable automatic UTF-8 validation in Text. This
  1562. permits, e.g., TextInputFormat to again operate on non-UTF-8 data.
  1563. (Hairong and Mahadev via cutting)
  1564. 32. HADOOP-343. Fix mapred copying so that a failed tasktracker
  1565. doesn't cause other copies to slow. (Sameer Paranjpye via cutting)
  1566. 33. HADOOP-239. Add a persistent job history mechanism, so that basic
  1567. job statistics are not lost after 24 hours and/or when the
  1568. jobtracker is restarted. (Sanjay Dahiya via cutting)
  1569. 34. HADOOP-506. Ignore heartbeats from stale task trackers.
  1570. (Sanjay Dahiya via cutting)
  1571. 35. HADOOP-255. Discard stale, queued IPC calls. Do not process
  1572. calls whose clients will likely time out before they receive a
  1573. response. When the queue is full, new calls are now received and
  1574. queued, and the oldest calls are discarded, so that, when servers
  1575. get bogged down, they no longer develop a backlog on the socket.
  1576. This should improve some DFS namenode failure modes.
  1577. (omalley via cutting)
  1578. 36. HADOOP-581. Fix datanode to not reset itself on communications
  1579. errors with the namenode. If a request to the namenode fails, the
  1580. datanode should retry, not restart. This reduces the load on the
  1581. namenode, since restarts cause a resend of the block report.
  1582. (omalley via cutting)
  1583. Release 0.6.2 - 2006-09-18
  1584. 1. HADOOP-532. Fix a bug reading value-compressed sequence files,
  1585. where an exception was thrown reporting that the full value had not
  1586. been read. (omalley via cutting)
  1587. 2. HADOOP-534. Change the default value class in JobConf to be Text
  1588. instead of the now-deprecated UTF8. This fixes the Grep example
  1589. program, which was updated to use Text, but relies on this
  1590. default. (Hairong Kuang via cutting)
  1591. Release 0.6.1 - 2006-09-13
  1592. 1. HADOOP-520. Fix a bug in libhdfs, where write failures were not
  1593. correctly returning error codes. (Arun C Murthy via cutting)
  1594. 2. HADOOP-523. Fix a NullPointerException when TextInputFormat is
  1595. explicitly specified. Also add a test case for this.
  1596. (omalley via cutting)
  1597. 3. HADOOP-521. Fix another NullPointerException finding the
  1598. ClassLoader when using libhdfs. (omalley via cutting)
  1599. 4. HADOOP-526. Fix a NullPointerException when attempting to start
  1600. two datanodes in the same directory. (Milind Bhandarkar via cutting)
  1601. 5. HADOOP-529. Fix a NullPointerException when opening
  1602. value-compressed sequence files generated by pre-0.6.0 Hadoop.
  1603. (omalley via cutting)
  1604. Release 0.6.0 - 2006-09-08
  1605. 1. HADOOP-427. Replace some uses of DatanodeDescriptor in the DFS
  1606. web UI code with DatanodeInfo, the preferred public class.
  1607. (Devaraj Das via cutting)
  1608. 2. HADOOP-426. Fix streaming contrib module to work correctly on
  1609. Solaris. This was causing nightly builds to fail.
  1610. (Michel Tourn via cutting)
  1611. 3. HADOOP-400. Improvements to task assignment. Tasks are no longer
  1612. re-run on nodes where they have failed (unless no other node is
  1613. available). Also, tasks are better load-balanced among nodes.
  1614. (omalley via cutting)
  1615. 4. HADOOP-324. Fix datanode to not exit when a disk is full, but
  1616. rather simply to fail writes. (Wendy Chien via cutting)
  1617. 5. HADOOP-434. Change smallJobsBenchmark to use standard Hadoop
  1618. scripts. (Sanjay Dahiya via cutting)
  1619. 6. HADOOP-453. Fix a bug in Text.setCapacity(). (siren via cutting)
  1620. 7. HADOOP-450. Change so that input types are determined by the
  1621. RecordReader rather than specified directly in the JobConf. This
  1622. facilitates jobs with a variety of input types.
  1623. WARNING: This contains incompatible API changes! The RecordReader
  1624. interface has two new methods that all user-defined InputFormats
  1625. must now define. Also, the values returned by TextInputFormat are
  1626. no longer of class UTF8, but now of class Text.
  1627. 8. HADOOP-436. Fix an error-handling bug in the web ui.
  1628. (Devaraj Das via cutting)
  1629. 9. HADOOP-455. Fix a bug in Text, where DEL was not permitted.
  1630. (Hairong Kuang via cutting)
  1631. 10. HADOOP-456. Change the DFS namenode to keep a persistent record
  1632. of the set of known datanodes. This will be used to implement a
  1633. "safe mode" where filesystem changes are prohibited when a
  1634. critical percentage of the datanodes are unavailable.
  1635. (Konstantin Shvachko via cutting)
  1636. 11. HADOOP-322. Add a job control utility. This permits one to
  1637. specify job interdependencies. Each job is submitted only after
  1638. the jobs it depends on have successfully completed.
  1639. (Runping Qi via cutting)
  1640. 12. HADOOP-176. Fix a bug in IntWritable.Comparator.
  1641. (Dick King via cutting)
  1642. 13. HADOOP-421. Replace uses of String in recordio package with Text
  1643. class, for improved handling of UTF-8 data.
  1644. (Milind Bhandarkar via cutting)
  1645. 14. HADOOP-464. Improved error message when job jar not found.
  1646. (Michel Tourn via cutting)
  1647. 15. HADOOP-469. Fix /bin/bash specifics that have crept into our
  1648. /bin/sh scripts since HADOOP-352.
  1649. (Jean-Baptiste Quenot via cutting)
  1650. 16. HADOOP-468. Add HADOOP_NICENESS environment variable to set
  1651. scheduling priority for daemons. (Vetle Roeim via cutting)
  1652. 17. HADOOP-473. Fix TextInputFormat to correctly handle more EOL
  1653. formats. Things now work correctly with CR, LF or CRLF.
  1654. (Dennis Kubes & James White via cutting)
  1655. 18. HADOOP-461. Make Java 1.5 an explicit requirement. (cutting)
  1656. 19. HADOOP-54. Add block compression to SequenceFile. One may now
  1657. specify that blocks of keys and values are compressed together,
  1658. improving compression for small keys and values.
  1659. SequenceFile.Writer's constructor is now deprecated and replaced
  1660. with a factory method. (Arun C Murthy via cutting)
  1661. 20. HADOOP-281. Prohibit DFS files that are also directories.
  1662. (Wendy Chien via cutting)
  1663. 21. HADOOP-486. Add the job username to JobStatus instances returned
  1664. by JobClient. (Mahadev Konar via cutting)
  1665. 22. HADOOP-437. contrib/streaming: Add support for gzipped inputs.
  1666. (Michel Tourn via cutting)
  1667. 23. HADOOP-463. Add variable expansion to config files.
  1668. Configuration property values may now contain variable
  1669. expressions. A variable is referenced with the syntax
  1670. '${variable}'. Variables values are found first in the
  1671. configuration, and then in Java system properties. The default
  1672. configuration is modified so that temporary directories are now
  1673. under ${hadoop.tmp.dir}, which is, by default,
  1674. /tmp/hadoop-${user.name}. (Michel Tourn via cutting)
  1675. 24. HADOOP-419. Fix a NullPointerException finding the ClassLoader
  1676. when using libhdfs. (omalley via cutting)
  1677. 25. HADOOP-460. Fix contrib/smallJobsBenchmark to use Text instead of
  1678. UTF8. (Sanjay Dahiya via cutting)
  1679. 26. HADOOP-196. Fix Configuration(Configuration) constructor to work
  1680. correctly. (Sami Siren via cutting)
  1681. 27. HADOOP-501. Fix Configuration.toString() to handle URL resources.
  1682. (Thomas Friol via cutting)
  1683. 28. HADOOP-499. Reduce the use of Strings in contrib/streaming,
  1684. replacing them with Text for better performance.
  1685. (Hairong Kuang via cutting)
  1686. 29. HADOOP-64. Manage multiple volumes with a single DataNode.
  1687. Previously DataNode would create a separate daemon per configured
  1688. volume, each with its own connection to the NameNode. Now all
  1689. volumes are handled by a single DataNode daemon, reducing the load
  1690. on the NameNode. (Milind Bhandarkar via cutting)
  1691. 30. HADOOP-424. Fix MapReduce so that jobs which generate zero splits
  1692. do not fail. (Frédéric Bertin via cutting)
  1693. 31. HADOOP-408. Adjust some timeouts and remove some others so that
  1694. unit tests run faster. (cutting)
  1695. 32. HADOOP-507. Fix an IllegalAccessException in DFS.
  1696. (omalley via cutting)
  1697. 33. HADOOP-320. Fix so that checksum files are correctly copied when
  1698. the destination of a file copy is a directory.
  1699. (Hairong Kuang via cutting)
  1700. 34. HADOOP-286. In DFSClient, avoid pinging the NameNode with
  1701. renewLease() calls when no files are being written.
  1702. (Konstantin Shvachko via cutting)
  1703. 35. HADOOP-312. Close idle IPC connections. All IPC connections were
  1704. cached forever. Now, after a connection has been idle for more
  1705. than a configurable amount of time (one second by default), the
  1706. connection is closed, conserving resources on both client and
  1707. server. (Devaraj Das via cutting)
  1708. 36. HADOOP-497. Permit the specification of the network interface and
  1709. nameserver to be used when determining the local hostname
  1710. advertised by datanodes and tasktrackers.
  1711. (Lorenzo Thione via cutting)
  1712. 37. HADOOP-441. Add a compression codec API and extend SequenceFile
  1713. to use it. This will permit the use of alternate compression
  1714. codecs in SequenceFile. (Arun C Murthy via cutting)
  1715. 38. HADOOP-483. Improvements to libhdfs build and documentation.
  1716. (Arun C Murthy via cutting)
  1717. 39. HADOOP-458. Fix a memory corruption bug in libhdfs.
  1718. (Arun C Murthy via cutting)
  1719. 40. HADOOP-517. Fix a contrib/streaming bug in end-of-line detection.
  1720. (Hairong Kuang via cutting)
  1721. 41. HADOOP-474. Add CompressionCodecFactory, and use it in
  1722. TextInputFormat and TextOutputFormat. Compressed input files are
  1723. automatically decompressed when they have the correct extension.
  1724. Output files will, when output compression is specified, be
  1725. generated with an approprate extension. Also add a gzip codec and
  1726. fix problems with UTF8 text inputs. (omalley via cutting)
  1727. Release 0.5.0 - 2006-08-04
  1728. 1. HADOOP-352. Fix shell scripts to use /bin/sh instead of
  1729. /bin/bash, for better portability.
  1730. (Jean-Baptiste Quenot via cutting)
  1731. 2. HADOOP-313. Permit task state to be saved so that single tasks
  1732. may be manually re-executed when debugging. (omalley via cutting)
  1733. 3. HADOOP-339. Add method to JobClient API listing jobs that are
  1734. not yet complete, i.e., that are queued or running.
  1735. (Mahadev Konar via cutting)
  1736. 4. HADOOP-355. Updates to the streaming contrib module, including
  1737. API fixes, making reduce optional, and adding an input type for
  1738. StreamSequenceRecordReader. (Michel Tourn via cutting)
  1739. 5. HADOOP-358. Fix a NPE bug in Path.equals().
  1740. (Frédéric Bertin via cutting)
  1741. 6. HADOOP-327. Fix ToolBase to not call System.exit() when
  1742. exceptions are thrown. (Hairong Kuang via cutting)
  1743. 7. HADOOP-359. Permit map output to be compressed.
  1744. (omalley via cutting)
  1745. 8. HADOOP-341. Permit input URI to CopyFiles to use the HTTP
  1746. protocol. This lets one, e.g., more easily copy log files into
  1747. DFS. (Arun C Murthy via cutting)
  1748. 9. HADOOP-361. Remove unix dependencies from streaming contrib
  1749. module tests, making them pure java. (Michel Tourn via cutting)
  1750. 10. HADOOP-354. Make public methods to stop DFS daemons.
  1751. (Barry Kaplan via cutting)
  1752. 11. HADOOP-252. Add versioning to RPC protocols.
  1753. (Milind Bhandarkar via cutting)
  1754. 12. HADOOP-356. Add contrib to "compile" and "test" build targets, so
  1755. that this code is better maintained. (Michel Tourn via cutting)
  1756. 13. HADOOP-307. Add smallJobsBenchmark contrib module. This runs
  1757. lots of small jobs, in order to determine per-task overheads.
  1758. (Sanjay Dahiya via cutting)
  1759. 14. HADOOP-342. Add a tool for log analysis: Logalyzer.
  1760. (Arun C Murthy via cutting)
  1761. 15. HADOOP-347. Add web-based browsing of DFS content. The namenode
  1762. redirects browsing requests to datanodes. Content requests are
  1763. redirected to datanodes where the data is local when possible.
  1764. (Devaraj Das via cutting)
  1765. 16. HADOOP-351. Make Hadoop IPC kernel independent of Jetty.
  1766. (Devaraj Das via cutting)
  1767. 17. HADOOP-237. Add metric reporting to DFS and MapReduce. With only
  1768. minor configuration changes, one can now monitor many Hadoop
  1769. system statistics using Ganglia or other monitoring systems.
  1770. (Milind Bhandarkar via cutting)
  1771. 18. HADOOP-376. Fix datanode's HTTP server to scan for a free port.
  1772. (omalley via cutting)
  1773. 19. HADOOP-260. Add --config option to shell scripts, specifying an
  1774. alternate configuration directory. (Milind Bhandarkar via cutting)
  1775. 20. HADOOP-381. Permit developers to save the temporary files for
  1776. tasks whose names match a regular expression, to facilliate
  1777. debugging. (omalley via cutting)
  1778. 21. HADOOP-344. Fix some Windows-related problems with DF.
  1779. (Konstantin Shvachko via cutting)
  1780. 22. HADOOP-380. Fix reduce tasks to poll less frequently for map
  1781. outputs. (Mahadev Konar via cutting)
  1782. 23. HADOOP-321. Refactor DatanodeInfo, in preparation for
  1783. HADOOP-306. (Konstantin Shvachko & omalley via cutting)
  1784. 24. HADOOP-385. Fix some bugs in record io code generation.
  1785. (Milind Bhandarkar via cutting)
  1786. 25. HADOOP-302. Add new Text class to replace UTF8, removing
  1787. limitations of that class. Also refactor utility methods for
  1788. writing zero-compressed integers (VInts and VLongs).
  1789. (Hairong Kuang via cutting)
  1790. 26. HADOOP-335. Refactor DFS namespace/transaction logging in
  1791. namenode. (Konstantin Shvachko via cutting)
  1792. 27. HADOOP-375. Fix handling of the datanode HTTP daemon's port so
  1793. that multiple datanode's can be run on a single host.
  1794. (Devaraj Das via cutting)
  1795. 28. HADOOP-386. When removing excess DFS block replicas, remove those
  1796. on nodes with the least free space first.
  1797. (Johan Oskarson via cutting)
  1798. 29. HADOOP-389. Fix intermittent failures of mapreduce unit tests.
  1799. Also fix some build dependencies.
  1800. (Mahadev & Konstantin via cutting)
  1801. 30. HADOOP-362. Fix a problem where jobs hang when status messages
  1802. are recieved out-of-order. (omalley via cutting)
  1803. 31. HADOOP-394. Change order of DFS shutdown in unit tests to
  1804. minimize errors logged. (Konstantin Shvachko via cutting)
  1805. 32. HADOOP-396. Make DatanodeID implement Writable.
  1806. (Konstantin Shvachko via cutting)
  1807. 33. HADOOP-377. Permit one to add URL resources to a Configuration.
  1808. (Jean-Baptiste Quenot via cutting)
  1809. 34. HADOOP-345. Permit iteration over Configuration key/value pairs.
  1810. (Michel Tourn via cutting)
  1811. 35. HADOOP-409. Streaming contrib module: make configuration
  1812. properties available to commands as environment variables.
  1813. (Michel Tourn via cutting)
  1814. 36. HADOOP-369. Add -getmerge option to dfs command that appends all
  1815. files in a directory into a single local file.
  1816. (Johan Oskarson via cutting)
  1817. 37. HADOOP-410. Replace some TreeMaps with HashMaps in DFS, for
  1818. a 17% performance improvement. (Milind Bhandarkar via cutting)
  1819. 38. HADOOP-411. Add unit tests for command line parser.
  1820. (Hairong Kuang via cutting)
  1821. 39. HADOOP-412. Add MapReduce input formats that support filtering
  1822. of SequenceFile data, including sampling and regex matching.
  1823. Also, move JobConf.newInstance() to a new utility class.
  1824. (Hairong Kuang via cutting)
  1825. 40. HADOOP-226. Fix fsck command to properly consider replication
  1826. counts, now that these can vary per file. (Bryan Pendleton via cutting)
  1827. 41. HADOOP-425. Add a Python MapReduce example, using Jython.
  1828. (omalley via cutting)
  1829. Release 0.4.0 - 2006-06-28
  1830. 1. HADOOP-298. Improved progress reports for CopyFiles utility, the
  1831. distributed file copier. (omalley via cutting)
  1832. 2. HADOOP-299. Fix the task tracker, permitting multiple jobs to
  1833. more easily execute at the same time. (omalley via cutting)
  1834. 3. HADOOP-250. Add an HTTP user interface to the namenode, running
  1835. on port 50070. (Devaraj Das via cutting)
  1836. 4. HADOOP-123. Add MapReduce unit tests that run a jobtracker and
  1837. tasktracker, greatly increasing code coverage.
  1838. (Milind Bhandarkar via cutting)
  1839. 5. HADOOP-271. Add links from jobtracker's web ui to tasktracker's
  1840. web ui. Also attempt to log a thread dump of child processes
  1841. before they're killed. (omalley via cutting)
  1842. 6. HADOOP-210. Change RPC server to use a selector instead of a
  1843. thread per connection. This should make it easier to scale to
  1844. larger clusters. Note that this incompatibly changes the RPC
  1845. protocol: clients and servers must both be upgraded to the new
  1846. version to ensure correct operation. (Devaraj Das via cutting)
  1847. 7. HADOOP-311. Change DFS client to retry failed reads, so that a
  1848. single read failure will not alone cause failure of a task.
  1849. (omalley via cutting)
  1850. 8. HADOOP-314. Remove the "append" phase when reducing. Map output
  1851. files are now directly passed to the sorter, without first
  1852. appending them into a single file. Now, the first third of reduce
  1853. progress is "copy" (transferring map output to reduce nodes), the
  1854. middle third is "sort" (sorting map output) and the last third is
  1855. "reduce" (generating output). Long-term, the "sort" phase will
  1856. also be removed. (omalley via cutting)
  1857. 9. HADOOP-316. Fix a potential deadlock in the jobtracker.
  1858. (omalley via cutting)
  1859. 10. HADOOP-319. Fix FileSystem.close() to remove the FileSystem
  1860. instance from the cache. (Hairong Kuang via cutting)
  1861. 11. HADOOP-135. Fix potential deadlock in JobTracker by acquiring
  1862. locks in a consistent order. (omalley via cutting)
  1863. 12. HADOOP-278. Check for existence of input directories before
  1864. starting MapReduce jobs, making it easier to debug this common
  1865. error. (omalley via cutting)
  1866. 13. HADOOP-304. Improve error message for
  1867. UnregisterdDatanodeException to include expected node name.
  1868. (Konstantin Shvachko via cutting)
  1869. 14. HADOOP-305. Fix TaskTracker to ask for new tasks as soon as a
  1870. task is finished, rather than waiting for the next heartbeat.
  1871. This improves performance when tasks are short.
  1872. (Mahadev Konar via cutting)
  1873. 15. HADOOP-59. Add support for generic command line options. One may
  1874. now specify the filesystem (-fs), the MapReduce jobtracker (-jt),
  1875. a config file (-conf) or any configuration property (-D). The
  1876. "dfs", "fsck", "job", and "distcp" commands currently support
  1877. this, with more to be added. (Hairong Kuang via cutting)
  1878. 16. HADOOP-296. Permit specification of the amount of reserved space
  1879. on a DFS datanode. One may specify both the percentage free and
  1880. the number of bytes. (Johan Oskarson via cutting)
  1881. 17. HADOOP-325. Fix a problem initializing RPC parameter classes, and
  1882. remove the workaround used to initialize classes.
  1883. (omalley via cutting)
  1884. 18. HADOOP-328. Add an option to the "distcp" command to ignore read
  1885. errors while copying. (omalley via cutting)
  1886. 19. HADOOP-27. Don't allocate tasks to trackers whose local free
  1887. space is too low. (Johan Oskarson via cutting)
  1888. 20. HADOOP-318. Keep slow DFS output from causing task timeouts.
  1889. This incompatibly changes some public interfaces, adding a
  1890. parameter to OutputFormat.getRecordWriter() and the new method
  1891. Reporter.progress(), but it makes lots of tasks succeed that were
  1892. previously failing. (Milind Bhandarkar via cutting)
  1893. Release 0.3.2 - 2006-06-09
  1894. 1. HADOOP-275. Update the streaming contrib module to use log4j for
  1895. its logging. (Michel Tourn via cutting)
  1896. 2. HADOOP-279. Provide defaults for log4j logging parameters, so
  1897. that things still work reasonably when Hadoop-specific system
  1898. properties are not provided. (omalley via cutting)
  1899. 3. HADOOP-280. Fix a typo in AllTestDriver which caused the wrong
  1900. test to be run when "DistributedFSCheck" was specified.
  1901. (Konstantin Shvachko via cutting)
  1902. 4. HADOOP-240. DFS's mkdirs() implementation no longer logs a warning
  1903. when the directory already exists. (Hairong Kuang via cutting)
  1904. 5. HADOOP-285. Fix DFS datanodes to be able to re-join the cluster
  1905. after the connection to the namenode is lost. (omalley via cutting)
  1906. 6. HADOOP-277. Fix a race condition when creating directories.
  1907. (Sameer Paranjpye via cutting)
  1908. 7. HADOOP-289. Improved exception handling in DFS datanode.
  1909. (Konstantin Shvachko via cutting)
  1910. 8. HADOOP-292. Fix client-side logging to go to standard error
  1911. rather than standard output, so that it can be distinguished from
  1912. application output. (omalley via cutting)
  1913. 9. HADOOP-294. Fixed bug where conditions for retrying after errors
  1914. in the DFS client were reversed. (omalley via cutting)
  1915. Release 0.3.1 - 2006-06-05
  1916. 1. HADOOP-272. Fix a bug in bin/hadoop setting log
  1917. parameters. (omalley & cutting)
  1918. 2. HADOOP-274. Change applications to log to standard output rather
  1919. than to a rolling log file like daemons. (omalley via cutting)
  1920. 3. HADOOP-262. Fix reduce tasks to report progress while they're
  1921. waiting for map outputs, so that they do not time out.
  1922. (Mahadev Konar via cutting)
  1923. 4. HADOOP-245 and HADOOP-246. Improvements to record io package.
  1924. (Mahadev Konar via cutting)
  1925. 5. HADOOP-276. Add logging config files to jar file so that they're
  1926. always found. (omalley via cutting)
  1927. Release 0.3.0 - 2006-06-02
  1928. 1. HADOOP-208. Enhance MapReduce web interface, adding new pages
  1929. for failed tasks, and tasktrackers. (omalley via cutting)
  1930. 2. HADOOP-204. Tweaks to metrics package. (David Bowen via cutting)
  1931. 3. HADOOP-209. Add a MapReduce-based file copier. This will
  1932. copy files within or between file systems in parallel.
  1933. (Milind Bhandarkar via cutting)
  1934. 4. HADOOP-146. Fix DFS to check when randomly generating a new block
  1935. id that no existing blocks already have that id.
  1936. (Milind Bhandarkar via cutting)
  1937. 5. HADOOP-180. Make a daemon thread that does the actual task clean ups, so
  1938. that the main offerService thread in the taskTracker doesn't get stuck
  1939. and miss his heartbeat window. This was killing many task trackers as
  1940. big jobs finished (300+ tasks / node). (omalley via cutting)
  1941. 6. HADOOP-200. Avoid transmitting entire list of map task names to
  1942. reduce tasks. Instead just transmit the number of map tasks and
  1943. henceforth refer to them by number when collecting map output.
  1944. (omalley via cutting)
  1945. 7. HADOOP-219. Fix a NullPointerException when handling a checksum
  1946. exception under SequenceFile.Sorter.sort(). (cutting & stack)
  1947. 8. HADOOP-212. Permit alteration of the file block size in DFS. The
  1948. default block size for new files may now be specified in the
  1949. configuration with the dfs.block.size property. The block size
  1950. may also be specified when files are opened.
  1951. (omalley via cutting)
  1952. 9. HADOOP-218. Avoid accessing configuration while looping through
  1953. tasks in JobTracker. (Mahadev Konar via cutting)
  1954. 10. HADOOP-161. Add hashCode() method to DFS's Block.
  1955. (Milind Bhandarkar via cutting)
  1956. 11. HADOOP-115. Map output types may now be specified. These are also
  1957. used as reduce input types, thus permitting reduce input types to
  1958. differ from reduce output types. (Runping Qi via cutting)
  1959. 12. HADOOP-216. Add task progress to task status page.
  1960. (Bryan Pendelton via cutting)
  1961. 13. HADOOP-233. Add web server to task tracker that shows running
  1962. tasks and logs. Also add log access to job tracker web interface.
  1963. (omalley via cutting)
  1964. 14. HADOOP-205. Incorporate pending tasks into tasktracker load
  1965. calculations. (Mahadev Konar via cutting)
  1966. 15. HADOOP-247. Fix sort progress to better handle exceptions.
  1967. (Mahadev Konar via cutting)
  1968. 16. HADOOP-195. Improve performance of the transfer of map outputs to
  1969. reduce nodes by performing multiple transfers in parallel, each on
  1970. a separate socket. (Sameer Paranjpye via cutting)
  1971. 17. HADOOP-251. Fix task processes to be tolerant of failed progress
  1972. reports to their parent process. (omalley via cutting)
  1973. 18. HADOOP-325. Improve the FileNotFound exceptions thrown by
  1974. LocalFileSystem to include the name of the file.
  1975. (Benjamin Reed via cutting)
  1976. 19. HADOOP-254. Use HTTP to transfer map output data to reduce
  1977. nodes. This, together with HADOOP-195, greatly improves the
  1978. performance of these transfers. (omalley via cutting)
  1979. 20. HADOOP-163. Cause datanodes that\ are unable to either read or
  1980. write data to exit, so that the namenode will no longer target
  1981. them for new blocks and will replicate their data on other nodes.
  1982. (Hairong Kuang via cutting)
  1983. 21. HADOOP-222. Add a -setrep option to the dfs commands that alters
  1984. file replication levels. (Johan Oskarson via cutting)
  1985. 22. HADOOP-75. In DFS, only check for a complete file when the file
  1986. is closed, rather than as each block is written.
  1987. (Milind Bhandarkar via cutting)
  1988. 23. HADOOP-124. Change DFS so that datanodes are identified by a
  1989. persistent ID rather than by host and port. This solves a number
  1990. of filesystem integrity problems, when, e.g., datanodes are
  1991. restarted. (Konstantin Shvachko via cutting)
  1992. 24. HADOOP-256. Add a C API for DFS. (Arun C Murthy via cutting)
  1993. 25. HADOOP-211. Switch to use the Jakarta Commons logging internally,
  1994. configured to use log4j by default. (Arun C Murthy and cutting)
  1995. 26. HADOOP-265. Tasktracker now fails to start if it does not have a
  1996. writable local directory for temporary files. In this case, it
  1997. logs a message to the JobTracker and exits. (Hairong Kuang via cutting)
  1998. 27. HADOOP-270. Fix potential deadlock in datanode shutdown.
  1999. (Hairong Kuang via cutting)
  2000. Release 0.2.1 - 2006-05-12
  2001. 1. HADOOP-199. Fix reduce progress (broken by HADOOP-182).
  2002. (omalley via cutting)
  2003. 2. HADOOP-201. Fix 'bin/hadoop dfs -report'. (cutting)
  2004. 3. HADOOP-207. Fix JDK 1.4 incompatibility introduced by HADOOP-96.
  2005. System.getenv() does not work in JDK 1.4. (Hairong Kuang via cutting)
  2006. Release 0.2.0 - 2006-05-05
  2007. 1. Fix HADOOP-126. 'bin/hadoop dfs -cp' now correctly copies .crc
  2008. files. (Konstantin Shvachko via cutting)
  2009. 2. Fix HADOOP-51. Change DFS to support per-file replication counts.
  2010. (Konstantin Shvachko via cutting)
  2011. 3. Fix HADOOP-131. Add scripts to start/stop dfs and mapred daemons.
  2012. Use these in start/stop-all scripts. (Chris Mattmann via cutting)
  2013. 4. Stop using ssh options by default that are not yet in widely used
  2014. versions of ssh. Folks can still enable their use by uncommenting
  2015. a line in conf/hadoop-env.sh. (cutting)
  2016. 5. Fix HADOOP-92. Show information about all attempts to run each
  2017. task in the web ui. (Mahadev konar via cutting)
  2018. 6. Fix HADOOP-128. Improved DFS error handling. (Owen O'Malley via cutting)
  2019. 7. Fix HADOOP-129. Replace uses of java.io.File with new class named
  2020. Path. This fixes bugs where java.io.File methods were called
  2021. directly when FileSystem methods were desired, and reduces the
  2022. likelihood of such bugs in the future. It also makes the handling
  2023. of pathnames more consistent between local and dfs FileSystems and
  2024. between Windows and Unix. java.io.File-based methods are still
  2025. available for back-compatibility, but are deprecated and will be
  2026. removed once 0.2 is released. (cutting)
  2027. 8. Change dfs.data.dir and mapred.local.dir to be comma-separated
  2028. lists of directories, no longer be space-separated. This fixes
  2029. several bugs on Windows. (cutting)
  2030. 9. Fix HADOOP-144. Use mapred task id for dfs client id, to
  2031. facilitate debugging. (omalley via cutting)
  2032. 10. Fix HADOOP-143. Do not line-wrap stack-traces in web ui.
  2033. (omalley via cutting)
  2034. 11. Fix HADOOP-118. In DFS, improve clean up of abandoned file
  2035. creations. (omalley via cutting)
  2036. 12. Fix HADOOP-138. Stop multiple tasks in a single heartbeat, rather
  2037. than one per heartbeat. (Stefan via cutting)
  2038. 13. Fix HADOOP-139. Remove a potential deadlock in
  2039. LocalFileSystem.lock(). (Igor Bolotin via cutting)
  2040. 14. Fix HADOOP-134. Don't hang jobs when the tasktracker is
  2041. misconfigured to use an un-writable local directory. (omalley via cutting)
  2042. 15. Fix HADOOP-115. Correct an error message. (Stack via cutting)
  2043. 16. Fix HADOOP-133. Retry pings from child to parent, in case of
  2044. (local) communcation problems. Also log exit status, so that one
  2045. can distinguish patricide from other deaths. (omalley via cutting)
  2046. 17. Fix HADOOP-142. Avoid re-running a task on a host where it has
  2047. previously failed. (omalley via cutting)
  2048. 18. Fix HADOOP-148. Maintain a task failure count for each
  2049. tasktracker and display it in the web ui. (omalley via cutting)
  2050. 19. Fix HADOOP-151. Close a potential socket leak, where new IPC
  2051. connection pools were created per configuration instance that RPCs
  2052. use. Now a global RPC connection pool is used again, as
  2053. originally intended. (cutting)
  2054. 20. Fix HADOOP-69. Don't throw a NullPointerException when getting
  2055. hints for non-existing file split. (Bryan Pendelton via cutting)
  2056. 21. Fix HADOOP-157. When a task that writes dfs files (e.g., a reduce
  2057. task) failed and was retried, it would fail again and again,
  2058. eventually failing the job. The problem was that dfs did not yet
  2059. know that the failed task had abandoned the files, and would not
  2060. yet let another task create files with the same names. Dfs now
  2061. retries when creating a file long enough for locks on abandoned
  2062. files to expire. (omalley via cutting)
  2063. 22. Fix HADOOP-150. Improved task names that include job
  2064. names. (omalley via cutting)
  2065. 23. Fix HADOOP-162. Fix ConcurrentModificationException when
  2066. releasing file locks. (omalley via cutting)
  2067. 24. Fix HADOOP-132. Initial check-in of new Metrics API, including
  2068. implementations for writing metric data to a file and for sending
  2069. it to Ganglia. (David Bowen via cutting)
  2070. 25. Fix HADOOP-160. Remove some uneeded synchronization around
  2071. time-consuming operations in the TaskTracker. (omalley via cutting)
  2072. 26. Fix HADOOP-166. RPCs failed when passed subclasses of a declared
  2073. parameter type. This is fixed by changing ObjectWritable to store
  2074. both the declared type and the instance type for Writables. Note
  2075. that this incompatibly changes the format of ObjectWritable and
  2076. will render unreadable any ObjectWritables stored in files.
  2077. Nutch only uses ObjectWritable in intermediate files, so this
  2078. should not be a problem for Nutch. (Stefan & cutting)
  2079. 27. Fix HADOOP-168. MapReduce RPC protocol methods should all declare
  2080. IOException, so that timeouts are handled appropriately.
  2081. (omalley via cutting)
  2082. 28. Fix HADOOP-169. Don't fail a reduce task if a call to the
  2083. jobtracker to locate map outputs fails. (omalley via cutting)
  2084. 29. Fix HADOOP-170. Permit FileSystem clients to examine and modify
  2085. the replication count of individual files. Also fix a few
  2086. replication-related bugs. (Konstantin Shvachko via cutting)
  2087. 30. Permit specification of a higher replication levels for job
  2088. submission files (job.xml and job.jar). This helps with large
  2089. clusters, since these files are read by every node. (cutting)
  2090. 31. HADOOP-173. Optimize allocation of tasks with local data. (cutting)
  2091. 32. HADOOP-167. Reduce number of Configurations and JobConf's
  2092. created. (omalley via cutting)
  2093. 33. NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  2094. file. The lack of a .crc file was causing warnings. (cutting)
  2095. 34. HADOOP-174. Change JobClient to not abort job until it has failed
  2096. to contact the job tracker for five attempts, not just one as
  2097. before. (omalley via cutting)
  2098. 35. HADOOP-177. Change MapReduce web interface to page through tasks.
  2099. Previously, when jobs had more than a few thousand tasks they
  2100. could crash web browsers. (Mahadev Konar via cutting)
  2101. 36. HADOOP-178. In DFS, piggyback blockwork requests from datanodes
  2102. on heartbeat responses from namenode. This reduces the volume of
  2103. RPC traffic. Also move startup delay in blockwork from datanode
  2104. to namenode. This fixes a problem where restarting the namenode
  2105. triggered a lot of uneeded replication. (Hairong Kuang via cutting)
  2106. 37. HADOOP-183. If the DFS namenode is restarted with different
  2107. minimum and/or maximum replication counts, existing files'
  2108. replication counts are now automatically adjusted to be within the
  2109. newly configured bounds. (Hairong Kuang via cutting)
  2110. 38. HADOOP-186. Better error handling in TaskTracker's top-level
  2111. loop. Also improve calculation of time to send next heartbeat.
  2112. (omalley via cutting)
  2113. 39. HADOOP-187. Add two MapReduce examples/benchmarks. One creates
  2114. files containing random data. The second sorts the output of the
  2115. first. (omalley via cutting)
  2116. 40. HADOOP-185. Fix so that, when a task tracker times out making the
  2117. RPC asking for a new task to run, the job tracker does not think
  2118. that it is actually running the task returned. (omalley via cutting)
  2119. 41. HADOOP-190. If a child process hangs after it has reported
  2120. completion, its output should not be lost. (Stack via cutting)
  2121. 42. HADOOP-184. Re-structure some test code to better support testing
  2122. on a cluster. (Mahadev Konar via cutting)
  2123. 43. HADOOP-191 Add streaming package, Hadoop's first contrib module.
  2124. This permits folks to easily submit MapReduce jobs whose map and
  2125. reduce functions are implemented by shell commands. Use
  2126. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.
  2127. (Michel Tourn via cutting)
  2128. 44. HADOOP-189. Fix MapReduce in standalone configuration to
  2129. correctly handle job jar files that contain a lib directory with
  2130. nested jar files. (cutting)
  2131. 45. HADOOP-65. Initial version of record I/O framework that enables
  2132. the specification of record types and generates marshalling code
  2133. in both Java and C++. Generated Java code implements
  2134. WritableComparable, but is not yet otherwise used by
  2135. Hadoop. (Milind Bhandarkar via cutting)
  2136. 46. HADOOP-193. Add a MapReduce-based FileSystem benchmark.
  2137. (Konstantin Shvachko via cutting)
  2138. 47. HADOOP-194. Add a MapReduce-based FileSystem checker. This reads
  2139. every block in every file in the filesystem. (Konstantin Shvachko
  2140. via cutting)
  2141. 48. HADOOP-182. Fix so that lost task trackers to not change the
  2142. status of reduce tasks or completed jobs. Also fixes the progress
  2143. meter so that failed tasks are subtracted. (omalley via cutting)
  2144. 49. HADOOP-96. Logging improvements. Log files are now separate from
  2145. standard output and standard error files. Logs are now rolled.
  2146. Logging of all DFS state changes can be enabled, to facilitate
  2147. debugging. (Hairong Kuang via cutting)
  2148. Release 0.1.1 - 2006-04-08
  2149. 1. Added CHANGES.txt, logging all significant changes to Hadoop. (cutting)
  2150. 2. Fix MapReduceBase.close() to throw IOException, as declared in the
  2151. Closeable interface. This permits subclasses which override this
  2152. method to throw that exception. (cutting)
  2153. 3. Fix HADOOP-117. Pathnames were mistakenly transposed in
  2154. JobConf.getLocalFile() causing many mapred temporary files to not
  2155. be removed. (Raghavendra Prabhu via cutting)
  2156. 4. Fix HADOOP-116. Clean up job submission files when jobs complete.
  2157. (cutting)
  2158. 5. Fix HADOOP-125. Fix handling of absolute paths on Windows (cutting)
  2159. Release 0.1.0 - 2006-04-01
  2160. 1. The first release of Hadoop.