CHANGES.txt 134 KB

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