CHANGES.txt 91 KB

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