CHANGES.txt 98 KB

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