CHANGES.txt 135 KB

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