changes.html 433 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701
  1. <!--
  2. **********************************************************
  3. ** WARNING: This file is generated from CHANGES.txt by the
  4. ** Perl script 'changes2html.pl'.
  5. ** Do *not* edit this file!
  6. **********************************************************
  7. ****************************************************************************
  8. * Licensed to the Apache Software Foundation (ASF) under one or more
  9. * contributor license agreements. See the NOTICE file distributed with
  10. * this work for additional information regarding copyright ownership.
  11. * The ASF licenses this file to You under the Apache License, Version 2.0
  12. * (the "License"); you may not use this file except in compliance with
  13. * the License. You may obtain a copy of the License at
  14. *
  15. * http://www.apache.org/licenses/LICENSE-2.0
  16. *
  17. * Unless required by applicable law or agreed to in writing, software
  18. * distributed under the License is distributed on an "AS IS" BASIS,
  19. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  20. * See the License for the specific language governing permissions and
  21. * limitations under the License.
  22. ****************************************************************************
  23. -->
  24. <html>
  25. <head>
  26. <title>Hadoop Change Log</title>
  27. <link rel="stylesheet" href="ChangesFancyStyle.css" title="Fancy">
  28. <link rel="alternate stylesheet" href="ChangesSimpleStyle.css" title="Simple">
  29. <META http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  30. <SCRIPT>
  31. function toggleList(e) {
  32. element = document.getElementById(e).style;
  33. element.display == 'none' ? element.display = 'block' : element.display='none';
  34. }
  35. function collapse() {
  36. for (var i = 0; i < document.getElementsByTagName("ul").length; i++) {
  37. var list = document.getElementsByTagName("ul")[i];
  38. if (list.id != 'trunk_(unreleased_changes)_' && list.id != 'release_0.19.0_-_unreleased_') {
  39. list.style.display = "none";
  40. }
  41. }
  42. for (var i = 0; i < document.getElementsByTagName("ol").length; i++) {
  43. document.getElementsByTagName("ol")[i].style.display = "none";
  44. }
  45. }
  46. window.onload = collapse;
  47. </SCRIPT>
  48. </head>
  49. <body>
  50. <a href="http://hadoop.apache.org/core/"><img class="logoImage" alt="Hadoop" src="images/hadoop-logo.jpg" title="Scalable Computing Platform"></a>
  51. <h1>Hadoop Change Log</h1>
  52. <h2><a href="javascript:toggleList('trunk_(unreleased_changes)_')">Trunk (unreleased changes)
  53. </a></h2>
  54. <ul id="trunk_(unreleased_changes)_">
  55. <li><a href="javascript:toggleList('trunk_(unreleased_changes)_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  56. </a>&nbsp;&nbsp;&nbsp;(2)
  57. <ol id="trunk_(unreleased_changes)_._incompatible_changes_">
  58. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4210">HADOOP-4210</a>. Fix findbugs warnings for equals implementations of mapred ID
  59. classes. Removed public, static ID::read and ID::forName; made ID an
  60. abstract class.<br />(Suresh Srinivas via cdouglas)</li>
  61. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4253">HADOOP-4253</a>. Fix various warnings generated by findbugs.
  62. Following deprecated methods in RawLocalFileSystem are removed:
  63. public String getName()
  64. public void lock(Path p, boolean shared)
  65. public void release(Path p)<br />(Suresh Srinivas via johan)</li>
  66. </ol>
  67. </li>
  68. <li><a href="javascript:toggleList('trunk_(unreleased_changes)_._new_features_')"> NEW FEATURES
  69. </a>&nbsp;&nbsp;&nbsp;(none)
  70. <ol id="trunk_(unreleased_changes)_._new_features_">
  71. </ol>
  72. </li>
  73. <li><a href="javascript:toggleList('trunk_(unreleased_changes)_._improvements_')"> IMPROVEMENTS
  74. </a>&nbsp;&nbsp;&nbsp;(7)
  75. <ol id="trunk_(unreleased_changes)_._improvements_">
  76. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4234">HADOOP-4234</a>. Fix KFS "glue" layer to allow applications to interface
  77. with multiple KFS metaservers.<br />(Sriram Rao via lohit)</li>
  78. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4245">HADOOP-4245</a>. Update to latest version of KFS "glue" library jar.<br />(Sriram Rao via lohit)</li>
  79. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4244">HADOOP-4244</a>. Change test-patch.sh to check Eclipse classpath no matter
  80. it is run by Hudson or not.<br />(szetszwo)</li>
  81. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3180">HADOOP-3180</a>. Add name of missing class to WritableName.getClass
  82. IOException.<br />(Pete Wyckoff via omalley)</li>
  83. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4178">HADOOP-4178</a>. Make the capacity scheduler's default values configurable.<br />(Sreekanth Ramakrishnan via omalley)</li>
  84. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4262">HADOOP-4262</a>. Generate better error message when client exception has null
  85. message.<br />(stevel via omalley)</li>
  86. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4226">HADOOP-4226</a>. Refactor and document LineReader to make it more readily
  87. understandable.<br />(Yuri Pradkin via cdouglas)</li>
  88. </ol>
  89. </li>
  90. <li><a href="javascript:toggleList('trunk_(unreleased_changes)_._optimizations_')"> OPTIMIZATIONS
  91. </a>&nbsp;&nbsp;&nbsp;(none)
  92. <ol id="trunk_(unreleased_changes)_._optimizations_">
  93. </ol>
  94. </li>
  95. <li><a href="javascript:toggleList('trunk_(unreleased_changes)_._bug_fixes_')"> BUG FIXES
  96. </a>&nbsp;&nbsp;&nbsp;(3)
  97. <ol id="trunk_(unreleased_changes)_._bug_fixes_">
  98. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4204">HADOOP-4204</a>. Fix findbugs warnings related to unused variables, naive
  99. Number subclass instantiation, Map iteration, and badly scoped inner
  100. classes.<br />(Suresh Srinivas via cdouglas)</li>
  101. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4207">HADOOP-4207</a>. Update derby jar file to release 10.4.2 release.<br />(Prasad Chakka via dhruba)</li>
  102. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4325">HADOOP-4325</a>. SocketInputStream.read() should return -1 in case EOF.<br />(Raghu Angadi)</li>
  103. </ol>
  104. </li>
  105. </ul>
  106. <h2><a href="javascript:toggleList('release_0.19.0_-_unreleased_')">Release 0.19.0 - Unreleased
  107. </a></h2>
  108. <ul id="release_0.19.0_-_unreleased_">
  109. <li><a href="javascript:toggleList('release_0.19.0_-_unreleased_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  110. </a>&nbsp;&nbsp;&nbsp;(20)
  111. <ol id="release_0.19.0_-_unreleased_._incompatible_changes_">
  112. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3595">HADOOP-3595</a>. Remove deprecated methods for mapred.combine.once
  113. functionality, which was necessary to providing backwards
  114. compatible combiner semantics for 0.18.<br />(cdouglas via omalley)</li>
  115. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3667">HADOOP-3667</a>. Remove the following deprecated methods from JobConf:
  116. addInputPath(Path)
  117. getInputPaths()
  118. getMapOutputCompressionType()
  119. getOutputPath()
  120. getSystemDir()
  121. setInputPath(Path)
  122. setMapOutputCompressionType(CompressionType style)
  123. setOutputPath(Path)<br />(Amareshwari Sriramadasu via omalley)</li>
  124. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3652">HADOOP-3652</a>. Remove deprecated class OutputFormatBase.<br />(Amareshwari Sriramadasu via cdouglas)</li>
  125. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2885">HADOOP-2885</a>. Break the hadoop.dfs package into separate packages under
  126. hadoop.hdfs that reflect whether they are client, server, protocol,
  127. etc. DistributedFileSystem and DFSClient have moved and are now
  128. considered package private.<br />(Sanjay Radia via omalley)</li>
  129. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2325">HADOOP-2325</a>. Require Java 6.<br />(cutting)</li>
  130. <li><a href="http://issues.apache.org/jira/browse/HADOOP-372">HADOOP-372</a>. Add support for multiple input paths with a different
  131. InputFormat and Mapper for each path.<br />(Chris Smith via tomwhite)</li>
  132. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1700">HADOOP-1700</a>. Support appending to file in HDFS.<br />(dhruba)</li>
  133. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3792">HADOOP-3792</a>. Make FsShell -test consistent with unix semantics, returning
  134. zero for true and non-zero for false.<br />(Ben Slusky via cdouglas)</li>
  135. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3664">HADOOP-3664</a>. Remove the deprecated method InputFormat.validateInput,
  136. which is no longer needed.<br />(tomwhite via omalley)</li>
  137. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3549">HADOOP-3549</a>. Give more meaningful errno's in libhdfs. In particular,
  138. EACCES is returned for permission problems.<br />(Ben Slusky via omalley)</li>
  139. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4036">HADOOP-4036</a>. ResourceStatus was added to TaskTrackerStatus by <a href="http://issues.apache.org/jira/browse/HADOOP-3759">HADOOP-3759</a>,
  140. so increment the InterTrackerProtocol version.<br />(Hemanth Yamijala via
  141. omalley)</li>
  142. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3150">HADOOP-3150</a>. Moves task promotion to tasks. Defines a new interface for
  143. committing output files. Moves job setup to jobclient, and moves jobcleanup
  144. to a separate task.<br />(Amareshwari Sriramadasu via ddas)</li>
  145. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3446">HADOOP-3446</a>. Keep map outputs in memory during the reduce. Remove
  146. fs.inmemory.size.mb and replace with properties defining in memory map
  147. output retention during the shuffle and reduce relative to maximum heap
  148. usage.<br />(cdouglas)</li>
  149. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3245">HADOOP-3245</a>. Adds the feature for supporting JobTracker restart. Running
  150. jobs can be recovered from the history file. The history file format has
  151. been modified to support recovery. The task attempt ID now has the
  152. JobTracker start time to disinguish attempts of the same TIP across
  153. restarts.<br />(Amar Ramesh Kamat via ddas)</li>
  154. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4007">HADOOP-4007</a>. REMOVE DFSFileInfo - FileStatus is sufficient.<br />(Sanjay Radia via hairong)</li>
  155. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3722">HADOOP-3722</a>. Fixed Hadoop Streaming and Hadoop Pipes to use the Tool
  156. interface and GenericOptionsParser.<br />(Enis Soztutar via acmurthy)</li>
  157. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2816">HADOOP-2816</a>. Cluster summary at name node web reports the space
  158. utilization as:
  159. Configured Capacity: capacity of all the data directories - Reserved space
  160. Present Capacity: Space available for dfs,i.e. remaining+used space
  161. DFS Used%: DFS used space/Present Capacity<br />(Suresh Srinivas via hairong)</li>
  162. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3938">HADOOP-3938</a>. Disk space quotas for HDFS. This is similar to namespace
  163. quotas in 0.18.<br />(rangadi)</li>
  164. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4293">HADOOP-4293</a>. Make Configuration Writable and remove unreleased
  165. WritableJobConf. Configuration.write is renamed to writeXml.<br />(omalley)</li>
  166. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4281">HADOOP-4281</a>. Change dfsadmin to report available disk space in a format
  167. consistent with the web interface as defined in <a href="http://issues.apache.org/jira/browse/HADOOP-2816">HADOOP-2816</a>.<br />(Suresh
  168. Srinivas via cdouglas)</li>
  169. </ol>
  170. </li>
  171. <li><a href="javascript:toggleList('release_0.19.0_-_unreleased_._new_features_')"> NEW FEATURES
  172. </a>&nbsp;&nbsp;&nbsp;(40)
  173. <ol id="release_0.19.0_-_unreleased_._new_features_">
  174. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3341">HADOOP-3341</a>. Allow streaming jobs to specify the field separator for map
  175. and reduce input and output. The new configuration values are:
  176. stream.map.input.field.separator
  177. stream.map.output.field.separator
  178. stream.reduce.input.field.separator
  179. stream.reduce.output.field.separator
  180. All of them default to "\t".<br />(Zheng Shao via omalley)</li>
  181. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3479">HADOOP-3479</a>. Defines the configuration file for the resource manager in
  182. Hadoop. You can configure various parameters related to scheduling, such
  183. as queues and queue properties here. The properties for a queue follow a
  184. naming convention,such as, hadoop.rm.queue.queue-name.property-name.<br />(Hemanth Yamijala via ddas)</li>
  185. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3149">HADOOP-3149</a>. Adds a way in which map/reducetasks can create multiple
  186. outputs.<br />(Alejandro Abdelnur via ddas)</li>
  187. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3714">HADOOP-3714</a>. Add a new contrib, bash-tab-completion, which enables
  188. bash tab completion for the bin/hadoop script. See the README file
  189. in the contrib directory for the installation.<br />(Chris Smith via enis)</li>
  190. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3730">HADOOP-3730</a>. Adds a new JobConf constructor that disables loading
  191. default configurations.<br />(Alejandro Abdelnur via ddas)</li>
  192. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3772">HADOOP-3772</a>. Add a new Hadoop Instrumentation api for the JobTracker and
  193. the TaskTracker, refactor Hadoop Metrics as an implementation of the api.<br />(Ari Rabkin via acmurthy)</li>
  194. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2302">HADOOP-2302</a>. Provides a comparator for numerical sorting of key fields.<br />(ddas)</li>
  195. <li><a href="http://issues.apache.org/jira/browse/HADOOP-153">HADOOP-153</a>. Provides a way to skip bad records.<br />(Sharad Agarwal via ddas)</li>
  196. <li><a href="http://issues.apache.org/jira/browse/HADOOP-657">HADOOP-657</a>. Free disk space should be modelled and used by the scheduler
  197. to make scheduling decisions.<br />(Ari Rabkin via omalley)</li>
  198. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3719">HADOOP-3719</a>. Initial checkin of Chukwa, which is a data collection and
  199. analysis framework.<br />(Jerome Boulon, Andy Konwinski, Ari Rabkin,
  200. and Eric Yang)</li>
  201. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3873">HADOOP-3873</a>. Add -filelimit and -sizelimit options to distcp to cap the
  202. number of files/bytes copied in a particular run to support incremental
  203. updates and mirroring. (TszWo (Nicholas), SZE via cdouglas)
  204. </li>
  205. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3585">HADOOP-3585</a>. FailMon package for hardware failure monitoring and
  206. analysis of anomalies.<br />(Ioannis Koltsidas via dhruba)</li>
  207. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1480">HADOOP-1480</a>. Add counters to the C++ Pipes API.<br />(acmurthy via omalley)</li>
  208. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3854">HADOOP-3854</a>. Add support for pluggable servlet filters in the HttpServers.
  209. (Tsz Wo (Nicholas) Sze via omalley)
  210. </li>
  211. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3759">HADOOP-3759</a>. Provides ability to run memory intensive jobs without
  212. affecting other running tasks on the nodes.<br />(Hemanth Yamijala via ddas)</li>
  213. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3746">HADOOP-3746</a>. Add a fair share scheduler.<br />(Matei Zaharia via omalley)</li>
  214. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3754">HADOOP-3754</a>. Add a thrift interface to access HDFS.<br />(dhruba via omalley)</li>
  215. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3828">HADOOP-3828</a>. Provides a way to write skipped records to DFS.<br />(Sharad Agarwal via ddas)</li>
  216. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3948">HADOOP-3948</a>. Separate name-node edits and fsimage directories.<br />(Lohit Vijayarenu via shv)</li>
  217. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3939">HADOOP-3939</a>. Add an option to DistCp to delete files at the destination
  218. not present at the source. (Tsz Wo (Nicholas) Sze via cdouglas)
  219. </li>
  220. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3601">HADOOP-3601</a>. Add a new contrib module for Hive, which is a sql-like
  221. query processing tool that uses map/reduce.<br />(Ashish Thusoo via omalley)</li>
  222. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3866">HADOOP-3866</a>. Added sort and multi-job updates in the JobTracker web ui.<br />(Craig Weisenfluh via omalley)</li>
  223. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3698">HADOOP-3698</a>. Add access control to control who is allowed to submit or
  224. modify jobs in the JobTracker.<br />(Hemanth Yamijala via omalley)</li>
  225. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1869">HADOOP-1869</a>. Support access times for HDFS files.<br />(dhruba)</li>
  226. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3941">HADOOP-3941</a>. Extend FileSystem API to return file-checksums.<br />(szetszwo)</li>
  227. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3581">HADOOP-3581</a>. Prevents memory intensive user tasks from taking down
  228. nodes.<br />(Vinod K V via ddas)</li>
  229. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3970">HADOOP-3970</a>. Provides a way to recover counters written to JobHistory.<br />(Amar Kamat via ddas)</li>
  230. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3702">HADOOP-3702</a>. Adds ChainMapper and ChainReducer classes allow composing
  231. chains of Maps and Reduces in a single Map/Reduce job, something like
  232. MAP+ / REDUCE MAP*.<br />(Alejandro Abdelnur via ddas)</li>
  233. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3445">HADOOP-3445</a>. Add capacity scheduler that provides guaranteed capacities to
  234. queues as a percentage of the cluster.<br />(Vivek Ratan via omalley)</li>
  235. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3992">HADOOP-3992</a>. Add a synthetic load generation facility to the test
  236. directory.<br />(hairong via szetszwo)</li>
  237. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3981">HADOOP-3981</a>. Implement a distributed file checksum algorithm in HDFS
  238. and change DistCp to use file checksum for comparing src and dst files<br />(szetszwo)</li>
  239. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3829">HADOOP-3829</a>. Narrown down skipped records based on user acceptable value.<br />(Sharad Agarwal via ddas)</li>
  240. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3930">HADOOP-3930</a>. Add common interfaces for the pluggable schedulers and the
  241. cli &amp; gui clients.<br />(Sreekanth Ramakrishnan via omalley)</li>
  242. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4176">HADOOP-4176</a>. Implement getFileChecksum(Path) in HftpFileSystem.<br />(szetszwo)</li>
  243. <li><a href="http://issues.apache.org/jira/browse/HADOOP-249">HADOOP-249</a>. Reuse JVMs across Map-Reduce Tasks.
  244. Configuration changes to hadoop-default.xml:
  245. add mapred.job.reuse.jvm.num.tasks<br />(Devaraj Das via acmurthy)</li>
  246. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4070">HADOOP-4070</a>. Provide a mechanism in Hive for registering UDFs from the
  247. query language.<br />(tomwhite)</li>
  248. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2536">HADOOP-2536</a>. Implement a JDBC based database input and output formats to
  249. allow Map-Reduce applications to work with databases.<br />(Fredrik Hedberg and
  250. Enis Soztutar via acmurthy)</li>
  251. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3019">HADOOP-3019</a>. A new library to support total order partitions.<br />(cdouglas via omalley)</li>
  252. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3924">HADOOP-3924</a>. Added a 'KILLED' job status.<br />(Subramaniam Krishnan via
  253. acmurthy)</li>
  254. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2421">HADOOP-2421</a>. Add jdiff output to documentation, listing all API
  255. changes from the prior release.<br />(cutting)</li>
  256. </ol>
  257. </li>
  258. <li><a href="javascript:toggleList('release_0.19.0_-_unreleased_._improvements_')"> IMPROVEMENTS
  259. </a>&nbsp;&nbsp;&nbsp;(70)
  260. <ol id="release_0.19.0_-_unreleased_._improvements_">
  261. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4205">HADOOP-4205</a>. hive: metastore and ql to use the refactored SerDe library.<br />(zshao)</li>
  262. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4106">HADOOP-4106</a>. libhdfs: add time, permission and user attribute support
  263. (part 2).<br />(Pete Wyckoff through zshao)</li>
  264. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4104">HADOOP-4104</a>. libhdfs: add time, permission and user attribute support.<br />(Pete Wyckoff through zshao)</li>
  265. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3908">HADOOP-3908</a>. libhdfs: better error message if llibhdfs.so doesn't exist.<br />(Pete Wyckoff through zshao)</li>
  266. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3732">HADOOP-3732</a>. Delay intialization of datanode block verification till
  267. the verification thread is started.<br />(rangadi)</li>
  268. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1627">HADOOP-1627</a>. Various small improvements to 'dfsadmin -report' output.<br />(rangadi)</li>
  269. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3577">HADOOP-3577</a>. Tools to inject blocks into name node and simulated
  270. data nodes for testing.<br />(Sanjay Radia via hairong)</li>
  271. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2664">HADOOP-2664</a>. Add a lzop compatible codec, so that files compressed by lzop
  272. may be processed by map/reduce.<br />(cdouglas via omalley)</li>
  273. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3655">HADOOP-3655</a>. Add additional ant properties to control junit.<br />(Steve
  274. Loughran via omalley)</li>
  275. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3543">HADOOP-3543</a>. Update the copyright year to 2008.<br />(cdouglas via omalley)</li>
  276. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3587">HADOOP-3587</a>. Add a unit test for the contrib/data_join framework.<br />(cdouglas)</li>
  277. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3402">HADOOP-3402</a>. Add terasort example program<br />(omalley)</li>
  278. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3660">HADOOP-3660</a>. Add replication factor for injecting blocks in simulated
  279. datanodes.<br />(Sanjay Radia via cdouglas)</li>
  280. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3684">HADOOP-3684</a>. Add a cloning function to the contrib/data_join framework
  281. permitting users to define a more efficient method for cloning values from
  282. the reduce than serialization/deserialization.<br />(Runping Qi via cdouglas)</li>
  283. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3478">HADOOP-3478</a>. Improves the handling of map output fetching. Now the
  284. randomization is by the hosts (and not the map outputs themselves).<br />(Jothi Padmanabhan via ddas)</li>
  285. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3617">HADOOP-3617</a>. Removed redundant checks of accounting space in MapTask and
  286. makes the spill thread persistent so as to avoid creating a new one for
  287. each spill.<br />(Chris Douglas via acmurthy)</li>
  288. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3412">HADOOP-3412</a>. Factor the scheduler out of the JobTracker and make
  289. it pluggable.<br />(Tom White and Brice Arnould via omalley)</li>
  290. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3756">HADOOP-3756</a>. Minor. Remove unused dfs.client.buffer.dir from
  291. hadoop-default.xml.<br />(rangadi)</li>
  292. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3747">HADOOP-3747</a>. Adds counter suport for MultipleOutputs.<br />(Alejandro Abdelnur via ddas)</li>
  293. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3169">HADOOP-3169</a>. LeaseChecker daemon should not be started in DFSClient
  294. constructor. (TszWo (Nicholas), SZE via hairong)
  295. </li>
  296. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3824">HADOOP-3824</a>. Move base functionality of StatusHttpServer to a core
  297. package. (TszWo (Nicholas), SZE via cdouglas)
  298. </li>
  299. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3646">HADOOP-3646</a>. Add a bzip2 compatible codec, so bzip compressed data
  300. may be processed by map/reduce.<br />(Abdul Qadeer via cdouglas)</li>
  301. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3861">HADOOP-3861</a>. MapFile.Reader and Writer should implement Closeable.<br />(tomwhite via omalley)</li>
  302. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3791">HADOOP-3791</a>. Introduce generics into ReflectionUtils.<br />(Chris Smith via
  303. cdouglas)</li>
  304. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3694">HADOOP-3694</a>. Improve unit test performance by changing
  305. MiniDFSCluster to listen only on 127.0.0.1.<br />(cutting)</li>
  306. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3620">HADOOP-3620</a>. Namenode should synchronously resolve a datanode's network
  307. location when the datanode registers.<br />(hairong)</li>
  308. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3860">HADOOP-3860</a>. NNThroughputBenchmark is extended with rename and delete
  309. benchmarks.<br />(shv)</li>
  310. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3892">HADOOP-3892</a>. Include unix group name in JobConf.<br />(Matei Zaharia via johan)</li>
  311. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3875">HADOOP-3875</a>. Change the time period between heartbeats to be relative to
  312. the end of the heartbeat rpc, rather than the start. This causes better
  313. behavior if the JobTracker is overloaded.<br />(acmurthy via omalley)</li>
  314. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3853">HADOOP-3853</a>. Move multiple input format (<a href="http://issues.apache.org/jira/browse/HADOOP-372">HADOOP-372</a>) extension to
  315. library package.<br />(tomwhite via johan)</li>
  316. <li><a href="http://issues.apache.org/jira/browse/HADOOP-9">HADOOP-9</a>. Use roulette scheduling for temporary space when the size
  317. is not known.<br />(Ari Rabkin via omalley)</li>
  318. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3202">HADOOP-3202</a>. Use recursive delete rather than FileUtil.fullyDelete.<br />(Amareshwari Sriramadasu via omalley)</li>
  319. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3368">HADOOP-3368</a>. Remove common-logging.properties from conf.<br />(Steve Loughran
  320. via omalley)</li>
  321. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3851">HADOOP-3851</a>. Fix spelling mistake in FSNamesystemMetrics.<br />(Steve Loughran
  322. via omalley)</li>
  323. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3780">HADOOP-3780</a>. Remove asynchronous resolution of network topology in the
  324. JobTracker<br />(Amar Kamat via omalley)</li>
  325. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3852">HADOOP-3852</a>. Add ShellCommandExecutor.toString method to make nicer
  326. error messages.<br />(Steve Loughran via omalley)</li>
  327. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3844">HADOOP-3844</a>. Include message of local exception in RPC client failures.<br />(Steve Loughran via omalley)</li>
  328. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3935">HADOOP-3935</a>. Split out inner classes from DataNode.java.<br />(johan)</li>
  329. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3905">HADOOP-3905</a>. Create generic interfaces for edit log streams.<br />(shv)</li>
  330. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3062">HADOOP-3062</a>. Add metrics to DataNode and TaskTracker to record network
  331. traffic for HDFS reads/writes and MR shuffling.<br />(cdouglas)</li>
  332. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3742">HADOOP-3742</a>. Remove HDFS from public java doc and add javadoc-dev for
  333. generative javadoc for developers.<br />(Sanjay Radia via omalley)</li>
  334. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3944">HADOOP-3944</a>. Improve documentation for public TupleWritable class in
  335. join package.<br />(Chris Douglas via enis)</li>
  336. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2330">HADOOP-2330</a>. Preallocate HDFS transaction log to improve performance.<br />(dhruba and hairong)</li>
  337. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3965">HADOOP-3965</a>. Convert DataBlockScanner into a package private class.<br />(shv)</li>
  338. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3488">HADOOP-3488</a>. Prevent hadoop-daemon from rsync'ing log files<br />(Stefan
  339. Groshupf and Craig Macdonald via omalley)</li>
  340. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3342">HADOOP-3342</a>. Change the kill task actions to require http post instead of
  341. get to prevent accidental crawls from triggering it.<br />(enis via omalley)</li>
  342. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3937">HADOOP-3937</a>. Limit the job name in the job history filename to 50
  343. characters.<br />(Matei Zaharia via omalley)</li>
  344. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3943">HADOOP-3943</a>. Remove unnecessary synchronization in
  345. NetworkTopology.pseudoSortByDistance.<br />(hairong via omalley)</li>
  346. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3498">HADOOP-3498</a>. File globbing alternation should be able to span path
  347. components.<br />(tomwhite)</li>
  348. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3361">HADOOP-3361</a>. Implement renames for NativeS3FileSystem.<br />(Albert Chern via tomwhite)</li>
  349. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3605">HADOOP-3605</a>. Make EC2 scripts show an error message if AWS_ACCOUNT_ID is
  350. unset.<br />(Al Hoang via tomwhite)</li>
  351. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4147">HADOOP-4147</a>. Remove unused class JobWithTaskContext from class
  352. JobInProgress.<br />(Amareshwari Sriramadasu via johan)</li>
  353. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4151">HADOOP-4151</a>. Add a byte-comparable interface that both Text and
  354. BytesWritable implement.<br />(cdouglas via omalley)</li>
  355. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4174">HADOOP-4174</a>. Move fs image/edit log methods from ClientProtocol to
  356. NamenodeProtocol.<br />(shv via szetszwo)</li>
  357. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4181">HADOOP-4181</a>. Include a .gitignore and saveVersion.sh change to support
  358. developing under git.<br />(omalley)</li>
  359. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4186">HADOOP-4186</a>. Factor LineReader out of LineRecordReader.<br />(tomwhite via
  360. omalley)</li>
  361. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4184">HADOOP-4184</a>. Break the module dependencies between core, hdfs, and
  362. mapred.<br />(tomwhite via omalley)</li>
  363. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4075">HADOOP-4075</a>. test-patch.sh now spits out ant commands that it runs.<br />(Ramya R via nigel)</li>
  364. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4117">HADOOP-4117</a>. Improve configurability of Hadoop EC2 instances.<br />(tomwhite)</li>
  365. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2411">HADOOP-2411</a>. Add support for larger CPU EC2 instance types.<br />(Chris K Wensel via tomwhite)</li>
  366. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4083">HADOOP-4083</a>. Changed the configuration attribute queue.name to
  367. mapred.job.queue.name.<br />(Hemanth Yamijala via acmurthy)</li>
  368. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4194">HADOOP-4194</a>. Added the JobConf and JobID to job-related methods in
  369. JobTrackerInstrumentation for better metrics.<br />(Mac Yang via acmurthy)</li>
  370. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3975">HADOOP-3975</a>. Change test-patch script to report working the dir
  371. modifications preventing the suite from being run.<br />(Ramya R via cdouglas)</li>
  372. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4124">HADOOP-4124</a>. Added a command-line switch to allow users to set job
  373. priorities, also allow it to be manipulated via the web-ui.<br />(Hemanth
  374. Yamijala via acmurthy)</li>
  375. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2165">HADOOP-2165</a>. Augmented JobHistory to include the URIs to the tasks'
  376. userlogs.<br />(Vinod Kumar Vavilapalli via acmurthy)</li>
  377. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4062">HADOOP-4062</a>. Remove the synchronization on the output stream when a
  378. connection is closed and also remove an undesirable exception when
  379. a client is stoped while there is no pending RPC request.<br />(hairong)</li>
  380. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4227">HADOOP-4227</a>. Remove the deprecated class org.apache.hadoop.fs.ShellCommand.<br />(szetszwo)</li>
  381. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4006">HADOOP-4006</a>. Clean up FSConstants and move some of the constants to
  382. better places.<br />(Sanjay Radia via rangadi)</li>
  383. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4279">HADOOP-4279</a>. Trace the seeds of random sequences in append unit tests to
  384. make itermitant failures reproducible.<br />(szetszwo via cdouglas)</li>
  385. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4209">HADOOP-4209</a>. Remove the change to the format of task attempt id by
  386. incrementing the task attempt numbers by 1000 when the job restarts.<br />(Amar Kamat via omalley)</li>
  387. </ol>
  388. </li>
  389. <li><a href="javascript:toggleList('release_0.19.0_-_unreleased_._optimizations_')"> OPTIMIZATIONS
  390. </a>&nbsp;&nbsp;&nbsp;(9)
  391. <ol id="release_0.19.0_-_unreleased_._optimizations_">
  392. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3556">HADOOP-3556</a>. Removed lock contention in MD5Hash by changing the
  393. singleton MessageDigester by an instance per Thread using
  394. ThreadLocal.<br />(Iv?n de Prado via omalley)</li>
  395. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3328">HADOOP-3328</a>. When client is writing data to DFS, only the last
  396. datanode in the pipeline needs to verify the checksum. Saves around
  397. 30% CPU on intermediate datanodes.<br />(rangadi)</li>
  398. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3863">HADOOP-3863</a>. Use a thread-local string encoder rather than a static one
  399. that is protected by a lock.<br />(acmurthy via omalley)</li>
  400. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3864">HADOOP-3864</a>. Prevent the JobTracker from locking up when a job is being
  401. initialized.<br />(acmurthy via omalley)</li>
  402. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3816">HADOOP-3816</a>. Faster directory listing in KFS.<br />(Sriram Rao via omalley)</li>
  403. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2130">HADOOP-2130</a>. Pipes submit job should have both blocking and non-blocking
  404. versions.<br />(acmurthy via omalley)</li>
  405. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3769">HADOOP-3769</a>. Make the SampleMapper and SampleReducer from
  406. GenericMRLoadGenerator public, so they can be used in other contexts.<br />(Lingyun Yang via omalley)</li>
  407. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3514">HADOOP-3514</a>. Inline the CRCs in intermediate files as opposed to reading
  408. it from a different .crc file.<br />(Jothi Padmanabhan via ddas)</li>
  409. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3638">HADOOP-3638</a>. Caches the iFile index files in memory to reduce seeks<br />(Jothi Padmanabhan via ddas)</li>
  410. </ol>
  411. </li>
  412. <li><a href="javascript:toggleList('release_0.19.0_-_unreleased_._bug_fixes_')"> BUG FIXES
  413. </a>&nbsp;&nbsp;&nbsp;(108)
  414. <ol id="release_0.19.0_-_unreleased_._bug_fixes_">
  415. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3563">HADOOP-3563</a>. Refactor the distributed upgrade code so that it is
  416. easier to identify datanode and namenode related code.<br />(dhruba)</li>
  417. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3640">HADOOP-3640</a>. Fix the read method in the NativeS3InputStream.<br />(tomwhite via
  418. omalley)</li>
  419. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3711">HADOOP-3711</a>. Fixes the Streaming input parsing to properly find the
  420. separator.<br />(Amareshwari Sriramadasu via ddas)</li>
  421. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3725">HADOOP-3725</a>. Prevent TestMiniMRMapDebugScript from swallowing exceptions.<br />(Steve Loughran via cdouglas)</li>
  422. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3726">HADOOP-3726</a>. Throw exceptions from TestCLI setup and teardown instead of
  423. swallowing them.<br />(Steve Loughran via cdouglas)</li>
  424. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3721">HADOOP-3721</a>. Refactor CompositeRecordReader and related mapred.join classes
  425. to make them clearer.<br />(cdouglas)</li>
  426. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3720">HADOOP-3720</a>. Re-read the config file when dfsadmin -refreshNodes is invoked
  427. so dfs.hosts and dfs.hosts.exclude are observed.<br />(lohit vijayarenu via
  428. cdouglas)</li>
  429. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3485">HADOOP-3485</a>. Allow writing to files over fuse.<br />(Pete Wyckoff via dhruba)</li>
  430. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3723">HADOOP-3723</a>. The flags to the libhdfs.create call can be treated as
  431. a bitmask.<br />(Pete Wyckoff via dhruba)</li>
  432. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3643">HADOOP-3643</a>. Filter out completed tasks when asking for running tasks in
  433. the JobTracker web/ui.<br />(Amar Kamat via omalley)</li>
  434. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3777">HADOOP-3777</a>. Ensure that Lzo compressors/decompressors correctly handle the
  435. case where native libraries aren't available.<br />(Chris Douglas via acmurthy)</li>
  436. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3728">HADOOP-3728</a>. Fix SleepJob so that it doesn't depend on temporary files,
  437. this ensures we can now run more than one instance of SleepJob
  438. simultaneously.<br />(Chris Douglas via acmurthy)</li>
  439. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3795">HADOOP-3795</a>. Fix saving image files on Namenode with different checkpoint
  440. stamps.<br />(Lohit Vijayarenu via mahadev)</li>
  441. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3624">HADOOP-3624</a>. Improving createeditslog to create tree directory structure.<br />(Lohit Vijayarenu via mahadev)</li>
  442. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3778">HADOOP-3778</a>. DFSInputStream.seek() did not retry in case of some errors.<br />(LN via rangadi)</li>
  443. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3661">HADOOP-3661</a>. The handling of moving files deleted through fuse-dfs to
  444. Trash made similar to the behaviour from dfs shell.<br />(Pete Wyckoff via dhruba)</li>
  445. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3819">HADOOP-3819</a>. Unset LANG and LC_CTYPE in saveVersion.sh to make it
  446. compatible with non-English locales.<br />(Rong-En Fan via cdouglas)</li>
  447. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3848">HADOOP-3848</a>. Cache calls to getSystemDir in the TaskTracker instead of
  448. calling it for each task start.<br />(acmurthy via omalley)</li>
  449. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3131">HADOOP-3131</a>. Fix reduce progress reporting for compressed intermediate
  450. data.<br />(Matei Zaharia via acmurthy)</li>
  451. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3796">HADOOP-3796</a>. fuse-dfs configuration is implemented as file system
  452. mount options.<br />(Pete Wyckoff via dhruba)</li>
  453. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3836">HADOOP-3836</a>. Fix TestMultipleOutputs to correctly clean up.<br />(Alejandro
  454. Abdelnur via acmurthy)</li>
  455. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3805">HADOOP-3805</a>. Improve fuse-dfs write performance.<br />(Pete Wyckoff via zshao)</li>
  456. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3846">HADOOP-3846</a>. Fix unit test CreateEditsLog to generate paths correctly.<br />(Lohit Vjayarenu via cdouglas)</li>
  457. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3904">HADOOP-3904</a>. Fix unit tests using the old dfs package name.
  458. (TszWo (Nicholas), SZE via johan)
  459. </li>
  460. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3319">HADOOP-3319</a>. Fix some HOD error messages to go stderr instead of
  461. stdout.<br />(Vinod Kumar Vavilapalli via omalley)</li>
  462. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3907">HADOOP-3907</a>. Move INodeDirectoryWithQuota to its own .java file.
  463. (Tsz Wo (Nicholas), SZE via hairong)
  464. </li>
  465. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3919">HADOOP-3919</a>. Fix attribute name in hadoop-default for
  466. mapred.jobtracker.instrumentation.<br />(Ari Rabkin via omalley)</li>
  467. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3903">HADOOP-3903</a>. Change the package name for the servlets to be hdfs instead of
  468. dfs. (Tsz Wo (Nicholas) Sze via omalley)
  469. </li>
  470. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3773">HADOOP-3773</a>. Change Pipes to set the default map output key and value
  471. types correctly.<br />(Koji Noguchi via omalley)</li>
  472. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3952">HADOOP-3952</a>. Fix compilation error in TestDataJoin referencing dfs package.<br />(omalley)</li>
  473. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3951">HADOOP-3951</a>. Fix package name for FSNamesystem logs and modify other
  474. hard-coded Logs to use the class name.<br />(cdouglas)</li>
  475. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3889">HADOOP-3889</a>. Improve error reporting from HftpFileSystem, handling in
  476. DistCp. (Tsz Wo (Nicholas), SZE via cdouglas)
  477. </li>
  478. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3946">HADOOP-3946</a>. Fix TestMapRed after hadoop-3664.<br />(tomwhite via omalley)</li>
  479. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3949">HADOOP-3949</a>. Remove duplicate jars from Chukwa.<br />(Jerome Boulon via omalley)</li>
  480. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3933">HADOOP-3933</a>. DataNode sometimes sends up to io.byte.per.checksum bytes
  481. more than required to client.<br />(Ning Li via rangadi)</li>
  482. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3962">HADOOP-3962</a>. Shell command "fs -count" should support paths with different
  483. file systems. (Tsz Wo (Nicholas), SZE via mahadev)
  484. </li>
  485. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3957">HADOOP-3957</a>. Fix javac warnings in DistCp and TestCopyFiles. (Tsz Wo
  486. (Nicholas), SZE via cdouglas)
  487. </li>
  488. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3958">HADOOP-3958</a>. Fix TestMapRed to check the success of test-job.<br />(omalley via
  489. acmurthy)</li>
  490. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3985">HADOOP-3985</a>. Fix TestHDFSServerPorts to use random ports.<br />(Hairong Kuang
  491. via omalley)</li>
  492. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3964">HADOOP-3964</a>. Fix javadoc warnings introduced by FailMon.<br />(dhruba)</li>
  493. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3785">HADOOP-3785</a>. Fix FileSystem cache to be case-insensitive for scheme and
  494. authority.<br />(Bill de hOra via cdouglas)</li>
  495. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3506">HADOOP-3506</a>. Fix a rare NPE caused by error handling in S3.<br />(Tom White via
  496. cdouglas)</li>
  497. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3705">HADOOP-3705</a>. Fix mapred.join parser to accept InputFormats named with
  498. underscore and static, inner classes.<br />(cdouglas)</li>
  499. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4023">HADOOP-4023</a>. Fix javadoc warnings introduced when the HDFS javadoc was
  500. made private.<br />(omalley)</li>
  501. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4030">HADOOP-4030</a>. Remove lzop from the default list of codecs.<br />(Arun Murthy via
  502. cdouglas)</li>
  503. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3961">HADOOP-3961</a>. Fix task disk space requirement estimates for virtual
  504. input jobs. Delays limiting task placement until after 10% of the maps
  505. have finished.<br />(Ari Rabkin via omalley)</li>
  506. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2168">HADOOP-2168</a>. Fix problem with C++ record reader's progress not being
  507. reported to framework.<br />(acmurthy via omalley)</li>
  508. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3966">HADOOP-3966</a>. Copy findbugs generated output files to PATCH_DIR while
  509. running test-patch.<br />(Ramya R via lohit)</li>
  510. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4037">HADOOP-4037</a>. Fix the eclipse plugin for versions of kfs and log4j.<br />(nigel
  511. via omalley)</li>
  512. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3950">HADOOP-3950</a>. Cause the Mini MR cluster to wait for task trackers to
  513. register before continuing.<br />(enis via omalley)</li>
  514. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3910">HADOOP-3910</a>. Remove unused ClusterTestDFSNamespaceLogging and
  515. ClusterTestDFS. (Tsz Wo (Nicholas), SZE via cdouglas)
  516. </li>
  517. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3954">HADOOP-3954</a>. Disable record skipping by default.<br />(Sharad Agarwal via
  518. cdouglas)</li>
  519. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4050">HADOOP-4050</a>. Fix TestFairScheduler to use absolute paths for the work
  520. directory.<br />(Matei Zaharia via omalley)</li>
  521. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4069">HADOOP-4069</a>. Keep temporary test files from TestKosmosFileSystem under
  522. test.build.data instead of /tmp.<br />(lohit via omalley)</li>
  523. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4078">HADOOP-4078</a>. Create test files for TestKosmosFileSystem in separate
  524. directory under test.build.data.<br />(lohit)</li>
  525. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3968">HADOOP-3968</a>. Fix getFileBlockLocations calls to use FileStatus instead
  526. of Path reflecting the new API.<br />(Pete Wyckoff via lohit)</li>
  527. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3963">HADOOP-3963</a>. libhdfs does not exit on its own, instead it returns error
  528. to the caller and behaves as a true library.<br />(Pete Wyckoff via dhruba)</li>
  529. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4100">HADOOP-4100</a>. Removes the cleanupTask scheduling from the Scheduler
  530. implementations and moves it to the JobTracker.<br />(Amareshwari Sriramadasu via ddas)</li>
  531. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4097">HADOOP-4097</a>. Make hive work well with speculative execution turned on.<br />(Joydeep Sen Sarma via dhruba)</li>
  532. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4113">HADOOP-4113</a>. Changes to libhdfs to not exit on its own, rather return
  533. an error code to the caller.<br />(Pete Wyckoff via dhruba)</li>
  534. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4054">HADOOP-4054</a>. Remove duplicate lease removal during edit log loading.<br />(hairong)</li>
  535. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4071">HADOOP-4071</a>. FSNameSystem.isReplicationInProgress should add an
  536. underReplicated block to the neededReplication queue using method
  537. "add" not "update".<br />(hairong)</li>
  538. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4154">HADOOP-4154</a>. Fix type warnings in WritableUtils.<br />(szetszwo via omalley)</li>
  539. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4133">HADOOP-4133</a>. Log files generated by Hive should reside in the
  540. build directory.<br />(Prasad Chakka via dhruba)</li>
  541. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4094">HADOOP-4094</a>. Hive now has hive-default.xml and hive-site.xml similar
  542. to core hadoop.<br />(Prasad Chakka via dhruba)</li>
  543. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4112">HADOOP-4112</a>. Handles cleanupTask in JobHistory<br />(Amareshwari Sriramadasu via ddas)</li>
  544. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3831">HADOOP-3831</a>. Very slow reading clients sometimes failed while reading.<br />(rangadi)</li>
  545. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4155">HADOOP-4155</a>. Use JobTracker's start time while initializing JobHistory's
  546. JobTracker Unique String.<br />(lohit)</li>
  547. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4099">HADOOP-4099</a>. Fix null pointer when using HFTP from an 0.18 server.<br />(dhruba via omalley)</li>
  548. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3570">HADOOP-3570</a>. Includes user specified libjar files in the client side
  549. classpath path.<br />(Sharad Agarwal via ddas)</li>
  550. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4129">HADOOP-4129</a>. Changed memory limits of TaskTracker and Tasks to be in
  551. KiloBytes rather than bytes.<br />(Vinod Kumar Vavilapalli via acmurthy)</li>
  552. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4139">HADOOP-4139</a>. Optimize Hive multi group-by.<br />(Namin Jain via dhruba)</li>
  553. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3911">HADOOP-3911</a>. Add a check to fsck options to make sure -files is not
  554. the first option to resolve conflicts with GenericOptionsParser<br />(lohit)</li>
  555. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3623">HADOOP-3623</a>. Refactor LeaseManager.<br />(szetszwo)</li>
  556. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4125">HADOOP-4125</a>. Handles Reduce cleanup tip on the web ui.<br />(Amareshwari Sriramadasu via ddas)</li>
  557. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4087">HADOOP-4087</a>. Hive Metastore API for php and python clients.<br />(Prasad Chakka via dhruba)</li>
  558. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4197">HADOOP-4197</a>. Update DATA_TRANSFER_VERSION for <a href="http://issues.apache.org/jira/browse/HADOOP-3981">HADOOP-3981</a>.<br />(szetszwo)</li>
  559. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4138">HADOOP-4138</a>. Refactor the Hive SerDe library to better structure
  560. the interfaces to the serializer and de-serializer.<br />(Zheng Shao via dhruba)</li>
  561. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4195">HADOOP-4195</a>. Close compressor before returning to codec pool.<br />(acmurthy via omalley)</li>
  562. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2403">HADOOP-2403</a>. Escapes some special characters before logging to
  563. history files.<br />(Amareshwari Sriramadasu via ddas)</li>
  564. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4200">HADOOP-4200</a>. Fix a bug in the test-patch.sh script.<br />(Ramya R via nigel)</li>
  565. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4084">HADOOP-4084</a>. Add explain plan capabilities to Hive Query Language.<br />(Ashish Thusoo via dhruba)</li>
  566. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4121">HADOOP-4121</a>. Preserve cause for exception if the initialization of
  567. HistoryViewer for JobHistory fails.<br />(Amareshwari Sri Ramadasu via
  568. acmurthy)</li>
  569. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4213">HADOOP-4213</a>. Fixes NPE in TestLimitTasksPerJobTaskScheduler.<br />(Sreekanth Ramakrishnan via ddas)</li>
  570. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4077">HADOOP-4077</a>. Setting access and modification time for a file
  571. requires write permissions on the file.<br />(dhruba)</li>
  572. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3592">HADOOP-3592</a>. Fix a couple of possible file leaks in FileUtil<br />(Bill de hOra via rangadi)</li>
  573. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4120">HADOOP-4120</a>. Hive interactive shell records the time taken by a
  574. query.<br />(Raghotham Murthy via dhruba)</li>
  575. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4090">HADOOP-4090</a>. The hive scripts pick up hadoop from HADOOP_HOME
  576. and then the path.<br />(Raghotham Murthy via dhruba)</li>
  577. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4242">HADOOP-4242</a>. Remove extra ";" in FSDirectory that blocks compilation
  578. in some IDE's.<br />(szetszwo via omalley)</li>
  579. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4249">HADOOP-4249</a>. Fix eclipse path to include the hsqldb.jar.<br />(szetszwo via
  580. omalley)</li>
  581. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4247">HADOOP-4247</a>. Move InputSampler into org.apache.hadoop.mapred.lib, so that
  582. examples.jar doesn't depend on tools.jar.<br />(omalley)</li>
  583. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4269">HADOOP-4269</a>. Fix the deprecation of LineReader by extending the new class
  584. into the old name and deprecating it. Also update the tests to test the
  585. new class.<br />(cdouglas via omalley)</li>
  586. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4280">HADOOP-4280</a>. Fix conversions between seconds in C and milliseconds in
  587. Java for access times for files.<br />(Pete Wyckoff via rangadi)</li>
  588. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4254">HADOOP-4254</a>. -setSpaceQuota command does not convert "TB" extenstion to
  589. terabytes properly. Implementation now uses StringUtils for parsing this.<br />(Raghu Angadi)</li>
  590. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4259">HADOOP-4259</a>. Findbugs should run over tools.jar also.<br />(cdouglas via
  591. omalley)</li>
  592. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4275">HADOOP-4275</a>. Move public method isJobValidName from JobID to a private
  593. method in JobTracker.<br />(omalley)</li>
  594. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4173">HADOOP-4173</a>. fix failures in TestProcfsBasedProcessTree and
  595. TestTaskTrackerMemoryManager tests. ProcfsBasedProcessTree and
  596. memory management in TaskTracker are disabled on Windows.<br />(Vinod K V via rangadi)</li>
  597. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4189">HADOOP-4189</a>. Fixes the history blocksize &amp; intertracker protocol version
  598. issues introduced as part of <a href="http://issues.apache.org/jira/browse/HADOOP-3245">HADOOP-3245</a>.<br />(Amar Kamat via ddas)</li>
  599. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4190">HADOOP-4190</a>. Fixes the backward compatibility issue with Job History.
  600. introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-3245">HADOOP-3245</a> and <a href="http://issues.apache.org/jira/browse/HADOOP-2403">HADOOP-2403</a>.<br />(Amar Kamat via ddas)</li>
  601. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4237">HADOOP-4237</a>. Fixes the TestStreamingBadRecords.testNarrowDown testcase.<br />(Sharad Agarwal via ddas)</li>
  602. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4274">HADOOP-4274</a>. Capacity scheduler accidently modifies the underlying
  603. data structures when browing the job lists.<br />(Hemanth Yamijala via omalley)</li>
  604. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4309">HADOOP-4309</a>. Fix eclipse-plugin compilation.<br />(cdouglas)</li>
  605. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4232">HADOOP-4232</a>. Fix race condition in JVM reuse when multiple slots become
  606. free.<br />(ddas via acmurthy)</li>
  607. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4302">HADOOP-4302</a>. Fix a race condition in TestReduceFetch that can yield false
  608. negatvies.<br />(cdouglas)</li>
  609. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3942">HADOOP-3942</a>. Update distcp documentation to include features introduced in
  610. <a href="http://issues.apache.org/jira/browse/HADOOP-3873">HADOOP-3873</a>, <a href="http://issues.apache.org/jira/browse/HADOOP-3939">HADOOP-3939</a>. (Tsz Wo (Nicholas), SZE via cdouglas)
  611. </li>
  612. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4257">HADOOP-4257</a>. The DFS client should pick only one datanode as the candidate
  613. to initiate lease recovery. (Tsz Wo (Nicholas), SZE via dhruba)
  614. </li>
  615. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4319">HADOOP-4319</a>. fuse-dfs dfs_read function returns as many bytes as it is
  616. told to read unlesss end-of-file is reached.<br />(Pete Wyckoff via dhruba)</li>
  617. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4246">HADOOP-4246</a>. Ensure we have the correct lower bound on the number of
  618. retries for fetching map-outputs; also fixed the case where the reducer
  619. automatically kills on too many unique map-outputs could not be fetched
  620. for small jobs.<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  621. </ol>
  622. </li>
  623. </ul>
  624. <h2><a href="javascript:toggleList('older')">Older Releases</a></h2>
  625. <ul id="older">
  626. <h3><a href="javascript:toggleList('release_0.18.2_-_unreleased_')">Release 0.18.2 - Unreleased
  627. </a></h3>
  628. <ul id="release_0.18.2_-_unreleased_">
  629. <li><a href="javascript:toggleList('release_0.18.2_-_unreleased_._bug_fixes_')"> BUG FIXES
  630. </a>&nbsp;&nbsp;&nbsp;(3)
  631. <ol id="release_0.18.2_-_unreleased_._bug_fixes_">
  632. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4116">HADOOP-4116</a>. Balancer should provide better resource management.<br />(hairong)</li>
  633. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3614">HADOOP-3614</a>. Fix a bug that Datanode may use an old GenerationStamp to get
  634. meta file.<br />(szetszwo)</li>
  635. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4314">HADOOP-4314</a>. Simulated datanodes should not include blocks that are still
  636. being written in their block report.<br />(Raghu Angadi)</li>
  637. </ol>
  638. </li>
  639. </ul>
  640. <h3><a href="javascript:toggleList('release_0.18.1_-_2008-09-17_')">Release 0.18.1 - 2008-09-17
  641. </a></h3>
  642. <ul id="release_0.18.1_-_2008-09-17_">
  643. <li><a href="javascript:toggleList('release_0.18.1_-_2008-09-17_._improvements_')"> IMPROVEMENTS
  644. </a>&nbsp;&nbsp;&nbsp;(1)
  645. <ol id="release_0.18.1_-_2008-09-17_._improvements_">
  646. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3934">HADOOP-3934</a>. Upgrade log4j to 1.2.15.<br />(omalley)</li>
  647. </ol>
  648. </li>
  649. <li><a href="javascript:toggleList('release_0.18.1_-_2008-09-17_._bug_fixes_')"> BUG FIXES
  650. </a>&nbsp;&nbsp;&nbsp;(5)
  651. <ol id="release_0.18.1_-_2008-09-17_._bug_fixes_">
  652. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3995">HADOOP-3995</a>. In case of quota failure on HDFS, rename does not restore
  653. source filename.<br />(rangadi)</li>
  654. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3821">HADOOP-3821</a>. Prevent SequenceFile and IFile from duplicating codecs in
  655. CodecPool when closed more than once.<br />(Arun Murthy via cdouglas)</li>
  656. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4040">HADOOP-4040</a>. Remove coded default of the IPC idle connection timeout
  657. from the TaskTracker, which was causing HDFS client connections to not be
  658. collected.<br />(ddas via omalley)</li>
  659. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4046">HADOOP-4046</a>. Made WritableComparable's constructor protected instead of
  660. private to re-enable class derivation.<br />(cdouglas via omalley)</li>
  661. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3940">HADOOP-3940</a>. Fix in-memory merge condition to wait when there are no map
  662. outputs or when the final map outputs are being fetched without contention.<br />(cdouglas)</li>
  663. </ol>
  664. </li>
  665. </ul>
  666. <h3><a href="javascript:toggleList('release_0.18.0_-_2008-08-19_')">Release 0.18.0 - 2008-08-19
  667. </a></h3>
  668. <ul id="release_0.18.0_-_2008-08-19_">
  669. <li><a href="javascript:toggleList('release_0.18.0_-_2008-08-19_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  670. </a>&nbsp;&nbsp;&nbsp;(23)
  671. <ol id="release_0.18.0_-_2008-08-19_._incompatible_changes_">
  672. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2703">HADOOP-2703</a>. The default options to fsck skips checking files
  673. that are being written to. The output of fsck is incompatible
  674. with previous release.<br />(lohit vijayarenu via dhruba)</li>
  675. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2865">HADOOP-2865</a>. FsShell.ls() printout format changed to print file names
  676. in the end of the line.<br />(Edward J. Yoon via shv)</li>
  677. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3283">HADOOP-3283</a>. The Datanode has a RPC server. It currently supports
  678. two RPCs: the first RPC retrives the metadata about a block and the
  679. second RPC sets the generation stamp of an existing block.
  680. (Tsz Wo (Nicholas), SZE via dhruba)
  681. </li>
  682. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2797">HADOOP-2797</a>. Code related to upgrading to 0.14 (Block CRCs) is
  683. removed. As result, upgrade to 0.18 or later from 0.13 or earlier
  684. is not supported. If upgrading from 0.13 or earlier is required,
  685. please upgrade to an intermediate version (0.14-0.17) and then
  686. to this version.<br />(rangadi)</li>
  687. <li><a href="http://issues.apache.org/jira/browse/HADOOP-544">HADOOP-544</a>. This issue introduces new classes JobID, TaskID and
  688. TaskAttemptID, which should be used instead of their string counterparts.
  689. Functions in JobClient, TaskReport, RunningJob, jobcontrol.Job and
  690. TaskCompletionEvent that use string arguments are deprecated in favor
  691. of the corresponding ones that use ID objects. Applications can use
  692. xxxID.toString() and xxxID.forName() methods to convert/restore objects
  693. to/from strings.<br />(Enis Soztutar via ddas)</li>
  694. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2188">HADOOP-2188</a>. RPC client sends a ping rather than throw timeouts.
  695. RPC server does not throw away old RPCs. If clients and the server are on
  696. different versions, they are not able to function well. In addition,
  697. The property ipc.client.timeout is removed from the default hadoop
  698. configuration. It also removes metrics RpcOpsDiscardedOPsNum.<br />(hairong)</li>
  699. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2181">HADOOP-2181</a>. This issue adds logging for input splits in Jobtracker log
  700. and jobHistory log. Also adds web UI for viewing input splits in job UI
  701. and history UI.<br />(Amareshwari Sriramadasu via ddas)</li>
  702. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3226">HADOOP-3226</a>. Run combiners multiple times over map outputs as they
  703. are merged in both the map and the reduce tasks.<br />(cdouglas via omalley)</li>
  704. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3329">HADOOP-3329</a>. DatanodeDescriptor objects should not be stored in the
  705. fsimage.<br />(dhruba)</li>
  706. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2656">HADOOP-2656</a>. The Block object has a generation stamp inside it.
  707. Existing blocks get a generation stamp of 0. This is needed to support
  708. appends.<br />(dhruba)</li>
  709. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3390">HADOOP-3390</a>. Removed deprecated ClientProtocol.abandonFileInProgress().
  710. (Tsz Wo (Nicholas), SZE via rangadi)
  711. </li>
  712. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3405">HADOOP-3405</a>. Made some map/reduce internal classes non-public:
  713. MapTaskStatus, ReduceTaskStatus, JobSubmissionProtocol,
  714. CompletedJobStatusStore.<br />(enis via omaley)</li>
  715. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3265">HADOOP-3265</a>. Removed depcrecated API getFileCacheHints().<br />(Lohit Vijayarenu via rangadi)</li>
  716. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3310">HADOOP-3310</a>. The namenode instructs the primary datanode to do lease
  717. recovery. The block gets a new generation stamp.
  718. (Tsz Wo (Nicholas), SZE via dhruba)
  719. </li>
  720. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2909">HADOOP-2909</a>. Improve IPC idle connection management. Property
  721. ipc.client.maxidletime is removed from the default configuration,
  722. instead it is defined as twice of the ipc.client.connection.maxidletime.
  723. A connection with outstanding requests won't be treated as idle.<br />(hairong)</li>
  724. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3459">HADOOP-3459</a>. Change in the output format of dfs -ls to more closely match
  725. /bin/ls. New format is: perm repl owner group size date name<br />(Mukund Madhugiri via omally)</li>
  726. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3113">HADOOP-3113</a>. An fsync invoked on a HDFS file really really
  727. persists data! The datanode moves blocks in the tmp directory to
  728. the real block directory on a datanode-restart.<br />(dhruba)</li>
  729. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3452">HADOOP-3452</a>. Change fsck to return non-zero status for a corrupt
  730. FileSystem.<br />(lohit vijayarenu via cdouglas)</li>
  731. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3193">HADOOP-3193</a>. Include the address of the client that found the corrupted
  732. block in the log. Also include a CorruptedBlocks metric to track the size
  733. of the corrupted block map.<br />(cdouglas)</li>
  734. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3512">HADOOP-3512</a>. Separate out the tools into a tools jar.<br />(omalley)</li>
  735. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3598">HADOOP-3598</a>. Ensure that temporary task-output directories are not created
  736. if they are not necessary e.g. for Maps with no side-effect files.<br />(acmurthy)</li>
  737. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3665">HADOOP-3665</a>. Modify WritableComparator so that it only creates instances
  738. of the keytype if the type does not define a WritableComparator. Calling
  739. the superclass compare will throw a NullPointerException. Also define
  740. a RawComparator for NullWritable and permit it to be written as a key
  741. to SequenceFiles.<br />(cdouglas)</li>
  742. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3673">HADOOP-3673</a>. Avoid deadlock caused by DataNode RPC receoverBlock().
  743. (Tsz Wo (Nicholas), SZE via rangadi)
  744. </li>
  745. </ol>
  746. </li>
  747. <li><a href="javascript:toggleList('release_0.18.0_-_2008-08-19_._new_features_')"> NEW FEATURES
  748. </a>&nbsp;&nbsp;&nbsp;(25)
  749. <ol id="release_0.18.0_-_2008-08-19_._new_features_">
  750. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3074">HADOOP-3074</a>. Provides a UrlStreamHandler for DFS and other FS,
  751. relying on FileSystem<br />(taton)</li>
  752. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2585">HADOOP-2585</a>. Name-node imports namespace data from a recent checkpoint
  753. accessible via a NFS mount.<br />(shv)</li>
  754. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3061">HADOOP-3061</a>. Writable types for doubles and bytes.<br />(Andrzej
  755. Bialecki via omalley)</li>
  756. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2857">HADOOP-2857</a>. Allow libhdfs to set jvm options.<br />(Craig Macdonald
  757. via omalley)</li>
  758. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3317">HADOOP-3317</a>. Add default port for HDFS namenode. The port in
  759. "hdfs:" URIs now defaults to 8020, so that one may simply use URIs
  760. of the form "hdfs://example.com/dir/file".<br />(cutting)</li>
  761. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2019">HADOOP-2019</a>. Adds support for .tar, .tgz and .tar.gz files in
  762. DistributedCache<br />(Amareshwari Sriramadasu via ddas)</li>
  763. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3058">HADOOP-3058</a>. Add FSNamesystem status metrics.<br />(Lohit Vjayarenu via rangadi)</li>
  764. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1915">HADOOP-1915</a>. Allow users to specify counters via strings instead
  765. of enumerations.<br />(tomwhite via omalley)</li>
  766. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2065">HADOOP-2065</a>. Delay invalidating corrupt replicas of block until its
  767. is removed from under replicated state. If all replicas are found to
  768. be corrupt, retain all copies and mark the block as corrupt.<br />(Lohit Vjayarenu via rangadi)</li>
  769. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3221">HADOOP-3221</a>. Adds org.apache.hadoop.mapred.lib.NLineInputFormat, which
  770. splits files into splits each of N lines. N can be specified by
  771. configuration property "mapred.line.input.format.linespermap", which
  772. defaults to 1.<br />(Amareshwari Sriramadasu via ddas)</li>
  773. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3336">HADOOP-3336</a>. Direct a subset of annotated FSNamesystem calls for audit
  774. logging.<br />(cdouglas)</li>
  775. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3400">HADOOP-3400</a>. A new API FileSystem.deleteOnExit() that facilitates
  776. handling of temporary files in HDFS.<br />(dhruba)</li>
  777. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4">HADOOP-4</a>. Add fuse-dfs to contrib, permitting one to mount an
  778. HDFS filesystem on systems that support FUSE, e.g., Linux.<br />(Pete Wyckoff via cutting)</li>
  779. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3246">HADOOP-3246</a>. Add FTPFileSystem.<br />(Ankur Goel via cutting)</li>
  780. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3250">HADOOP-3250</a>. Extend FileSystem API to allow appending to files.
  781. (Tsz Wo (Nicholas), SZE via cdouglas)
  782. </li>
  783. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3177">HADOOP-3177</a>. Implement Syncable interface for FileSystem.
  784. (Tsz Wo (Nicholas), SZE via dhruba)
  785. </li>
  786. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1328">HADOOP-1328</a>. Implement user counters in streaming.<br />(tomwhite via
  787. omalley)</li>
  788. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3187">HADOOP-3187</a>. Quotas for namespace management.<br />(Hairong Kuang via ddas)</li>
  789. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3307">HADOOP-3307</a>. Support for Archives in Hadoop.<br />(Mahadev Konar via ddas)</li>
  790. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3460">HADOOP-3460</a>. Add SequenceFileAsBinaryOutputFormat to permit direct
  791. writes of serialized data.<br />(Koji Noguchi via cdouglas)</li>
  792. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3230">HADOOP-3230</a>. Add ability to get counter values from command
  793. line.<br />(tomwhite via omalley)</li>
  794. <li><a href="http://issues.apache.org/jira/browse/HADOOP-930">HADOOP-930</a>. Add support for native S3 files.<br />(tomwhite via cutting)</li>
  795. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3502">HADOOP-3502</a>. Quota API needs documentation in Forrest.<br />(hairong)</li>
  796. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3413">HADOOP-3413</a>. Allow SequenceFile.Reader to use serialization
  797. framework.<br />(tomwhite via omalley)</li>
  798. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3541">HADOOP-3541</a>. Import of the namespace from a checkpoint documented
  799. in hadoop user guide.<br />(shv)</li>
  800. </ol>
  801. </li>
  802. <li><a href="javascript:toggleList('release_0.18.0_-_2008-08-19_._improvements_')"> IMPROVEMENTS
  803. </a>&nbsp;&nbsp;&nbsp;(47)
  804. <ol id="release_0.18.0_-_2008-08-19_._improvements_">
  805. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3677">HADOOP-3677</a>. Simplify generation stamp upgrade by making is a
  806. local upgrade on datandodes. Deleted distributed upgrade.<br />(rangadi)</li>
  807. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2928">HADOOP-2928</a>. Remove deprecated FileSystem.getContentLength().<br />(Lohit Vijayarenu via rangadi)</li>
  808. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3130">HADOOP-3130</a>. Make the connect timeout smaller for getFile.<br />(Amar Ramesh Kamat via ddas)</li>
  809. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3160">HADOOP-3160</a>. Remove deprecated exists() from ClientProtocol and
  810. FSNamesystem<br />(Lohit Vjayarenu via rangadi)</li>
  811. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2910">HADOOP-2910</a>. Throttle IPC Clients during bursts of requests or
  812. server slowdown. Clients retry connection for up to 15 minutes
  813. when socket connection times out.<br />(hairong)</li>
  814. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3295">HADOOP-3295</a>. Allow TextOutputFormat to use configurable spearators.
  815. (Zheng Shao via cdouglas).
  816. </li>
  817. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3308">HADOOP-3308</a>. Improve QuickSort by excluding values eq the pivot from the
  818. partition.<br />(cdouglas)</li>
  819. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2461">HADOOP-2461</a>. Trim property names in configuration.
  820. (Tsz Wo (Nicholas), SZE via shv)
  821. </li>
  822. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2799">HADOOP-2799</a>. Deprecate o.a.h.io.Closable in favor of java.io.Closable.
  823. (Tsz Wo (Nicholas), SZE via cdouglas)
  824. </li>
  825. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3345">HADOOP-3345</a>. Enhance the hudson-test-patch target to cleanup messages,
  826. fix minor defects, and add eclipse plugin and python unit tests.<br />(nigel)</li>
  827. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3144">HADOOP-3144</a>. Improve robustness of LineRecordReader by defining a maximum
  828. line length (mapred.linerecordreader.maxlength), thereby avoiding reading
  829. too far into the following split.<br />(Zheng Shao via cdouglas)</li>
  830. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3334">HADOOP-3334</a>. Move lease handling from FSNamesystem into a seperate class.
  831. (Tsz Wo (Nicholas), SZE via rangadi)
  832. </li>
  833. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3332">HADOOP-3332</a>. Reduces the amount of logging in Reducer's shuffle phase.<br />(Devaraj Das)</li>
  834. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3355">HADOOP-3355</a>. Enhances Configuration class to accept hex numbers for getInt
  835. and getLong.<br />(Amareshwari Sriramadasu via ddas)</li>
  836. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3350">HADOOP-3350</a>. Add an argument to distcp to permit the user to limit the
  837. number of maps.<br />(cdouglas)</li>
  838. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3013">HADOOP-3013</a>. Add corrupt block reporting to fsck.<br />(lohit vijayarenu via cdouglas)</li>
  839. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3377">HADOOP-3377</a>. Remove TaskRunner::replaceAll and replace with equivalent
  840. String::replace.<br />(Brice Arnould via cdouglas)</li>
  841. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3398">HADOOP-3398</a>. Minor improvement to a utility function in that participates
  842. in backoff calculation.<br />(cdouglas)</li>
  843. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3381">HADOOP-3381</a>. Clear referenced when directories are deleted so that
  844. effect of memory leaks are not multiplied.<br />(rangadi)</li>
  845. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2867">HADOOP-2867</a>. Adds the task's CWD to its LD_LIBRARY_PATH.<br />(Amareshwari Sriramadasu via ddas)</li>
  846. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3232">HADOOP-3232</a>. DU class runs the 'du' command in a seperate thread so
  847. that it does not block user. DataNode misses heartbeats in large
  848. nodes otherwise.<br />(Johan Oskarsson via rangadi)</li>
  849. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3035">HADOOP-3035</a>. During block transfers between datanodes, the receiving
  850. datanode, now can report corrupt replicas received from src node to
  851. the namenode.<br />(Lohit Vijayarenu via rangadi)</li>
  852. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3434">HADOOP-3434</a>. Retain the cause of the bind failure in Server::bind.<br />(Steve Loughran via cdouglas)</li>
  853. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3429">HADOOP-3429</a>. Increases the size of the buffers used for the communication
  854. for Streaming jobs.<br />(Amareshwari Sriramadasu via ddas)</li>
  855. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3486">HADOOP-3486</a>. Change default for initial block report to 0 seconds
  856. and document it.<br />(Sanjay Radia via omalley)</li>
  857. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3448">HADOOP-3448</a>. Improve the text in the assertion making sure the
  858. layout versions are consistent in the data node.<br />(Steve Loughran
  859. via omalley)</li>
  860. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2095">HADOOP-2095</a>. Improve the Map-Reduce shuffle/merge by cutting down
  861. buffer-copies; changed intermediate sort/merge to use the new IFile format
  862. rather than SequenceFiles and compression of map-outputs is now
  863. implemented by compressing the entire file rather than SequenceFile
  864. compression. Shuffle also has been changed to use a simple byte-buffer
  865. manager rather than the InMemoryFileSystem.
  866. Configuration changes to hadoop-default.xml:
  867. deprecated mapred.map.output.compression.type<br />(acmurthy)</li>
  868. <li><a href="http://issues.apache.org/jira/browse/HADOOP-236">HADOOP-236</a>. JobTacker now refuses connection from a task tracker with a
  869. different version number.<br />(Sharad Agarwal via ddas)</li>
  870. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3427">HADOOP-3427</a>. Improves the shuffle scheduler. It now waits for notifications
  871. from shuffle threads when it has scheduled enough, before scheduling more.<br />(ddas)</li>
  872. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2393">HADOOP-2393</a>. Moves the handling of dir deletions in the tasktracker to
  873. a separate thread.<br />(Amareshwari Sriramadasu via ddas)</li>
  874. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3501">HADOOP-3501</a>. Deprecate InMemoryFileSystem.<br />(cutting via omalley)</li>
  875. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3366">HADOOP-3366</a>. Stall the shuffle while in-memory merge is in progress.<br />(acmurthy)</li>
  876. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2916">HADOOP-2916</a>. Refactor src structure, but leave package structure alone.<br />(Raghu Angadi via mukund)</li>
  877. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3492">HADOOP-3492</a>. Add forrest documentation for user archives.<br />(Mahadev Konar via hairong)</li>
  878. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3467">HADOOP-3467</a>. Improve documentation for FileSystem::deleteOnExit.
  879. (Tsz Wo (Nicholas), SZE via cdouglas)
  880. </li>
  881. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3379">HADOOP-3379</a>. Documents stream.non.zero.exit.status.is.failure for Streaming.<br />(Amareshwari Sriramadasu via ddas)</li>
  882. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3096">HADOOP-3096</a>. Improves documentation about the Task Execution Environment in
  883. the Map-Reduce tutorial.<br />(Amareshwari Sriramadasu via ddas)</li>
  884. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2984">HADOOP-2984</a>. Add forrest documentation for DistCp.<br />(cdouglas)</li>
  885. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3406">HADOOP-3406</a>. Add forrest documentation for Profiling.<br />(Amareshwari Sriramadasu via ddas)</li>
  886. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2762">HADOOP-2762</a>. Add forrest documentation for controls of memory limits on
  887. hadoop daemons and Map-Reduce tasks.<br />(Amareshwari Sriramadasu via ddas)</li>
  888. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3535">HADOOP-3535</a>. Fix documentation and name of IOUtils.close to
  889. reflect that it should only be used in cleanup contexts.<br />(omalley)</li>
  890. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3593">HADOOP-3593</a>. Updates the mapred tutorial.<br />(ddas)</li>
  891. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3547">HADOOP-3547</a>. Documents the way in which native libraries can be distributed
  892. via the DistributedCache.<br />(Amareshwari Sriramadasu via ddas)</li>
  893. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3606">HADOOP-3606</a>. Updates the Streaming doc.<br />(Amareshwari Sriramadasu via ddas)</li>
  894. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3532">HADOOP-3532</a>. Add jdiff reports to the build scripts.<br />(omalley)</li>
  895. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3100">HADOOP-3100</a>. Develop tests to test the DFS command line interface.<br />(mukund)</li>
  896. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3688">HADOOP-3688</a>. Fix up HDFS docs.<br />(Robert Chansler via hairong)</li>
  897. </ol>
  898. </li>
  899. <li><a href="javascript:toggleList('release_0.18.0_-_2008-08-19_._optimizations_')"> OPTIMIZATIONS
  900. </a>&nbsp;&nbsp;&nbsp;(10)
  901. <ol id="release_0.18.0_-_2008-08-19_._optimizations_">
  902. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3274">HADOOP-3274</a>. The default constructor of BytesWritable creates empty
  903. byte array. (Tsz Wo (Nicholas), SZE via shv)
  904. </li>
  905. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3272">HADOOP-3272</a>. Remove redundant copy of Block object in BlocksMap.<br />(Lohit Vjayarenu via shv)</li>
  906. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3164">HADOOP-3164</a>. Reduce DataNode CPU usage by using FileChannel.tranferTo().
  907. On Linux DataNode takes 5 times less CPU while serving data. Results may
  908. vary on other platforms.<br />(rangadi)</li>
  909. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3248">HADOOP-3248</a>. Optimization of saveFSImage.<br />(Dhruba via shv)</li>
  910. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3297">HADOOP-3297</a>. Fetch more task completion events from the job
  911. tracker and task tracker.<br />(ddas via omalley)</li>
  912. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3364">HADOOP-3364</a>. Faster image and log edits loading.<br />(shv)</li>
  913. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3369">HADOOP-3369</a>. Fast block processing during name-node startup.<br />(shv)</li>
  914. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1702">HADOOP-1702</a>. Reduce buffer copies when data is written to DFS.
  915. DataNodes take 30% less CPU while writing data.<br />(rangadi)</li>
  916. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3095">HADOOP-3095</a>. Speed up split generation in the FileInputSplit,
  917. especially for non-HDFS file systems. Deprecates
  918. InputFormat.validateInput.<br />(tomwhite via omalley)</li>
  919. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3552">HADOOP-3552</a>. Add forrest documentation for Hadoop commands.<br />(Sharad Agarwal via cdouglas)</li>
  920. </ol>
  921. </li>
  922. <li><a href="javascript:toggleList('release_0.18.0_-_2008-08-19_._bug_fixes_')"> BUG FIXES
  923. </a>&nbsp;&nbsp;&nbsp;(144)
  924. <ol id="release_0.18.0_-_2008-08-19_._bug_fixes_">
  925. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2905">HADOOP-2905</a>. 'fsck -move' triggers NPE in NameNode.<br />(Lohit Vjayarenu via rangadi)</li>
  926. <li>Increment ClientProtocol.versionID missed by <a href="http://issues.apache.org/jira/browse/HADOOP-2585">HADOOP-2585</a>.<br />(shv)</li>
  927. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3254">HADOOP-3254</a>. Restructure internal namenode methods that process
  928. heartbeats to use well-defined BlockCommand object(s) instead of
  929. using the base java Object. (Tsz Wo (Nicholas), SZE via dhruba)
  930. </li>
  931. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3176">HADOOP-3176</a>. Change lease record when a open-for-write-file
  932. gets renamed.<br />(dhruba)</li>
  933. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3269">HADOOP-3269</a>. Fix a case when namenode fails to restart
  934. while processing a lease record. ((Tsz Wo (Nicholas), SZE via dhruba)
  935. </li>
  936. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3282">HADOOP-3282</a>. Port issues in TestCheckpoint resolved.<br />(shv)</li>
  937. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3268">HADOOP-3268</a>. file:// URLs issue in TestUrlStreamHandler under Windows.<br />(taton)</li>
  938. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3127">HADOOP-3127</a>. Deleting files in trash should really remove them.<br />(Brice Arnould via omalley)</li>
  939. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3300">HADOOP-3300</a>. Fix locking of explicit locks in NetworkTopology.<br />(tomwhite via omalley)</li>
  940. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3270">HADOOP-3270</a>. Constant DatanodeCommands are stored in static final
  941. immutable variables for better code clarity.
  942. (Tsz Wo (Nicholas), SZE via dhruba)
  943. </li>
  944. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2793">HADOOP-2793</a>. Fix broken links for worst performing shuffle tasks in
  945. the job history page.<br />(Amareshwari Sriramadasu via ddas)</li>
  946. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3313">HADOOP-3313</a>. Avoid unnecessary calls to System.currentTimeMillis
  947. in RPC::Invoker.<br />(cdouglas)</li>
  948. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3318">HADOOP-3318</a>. Recognize "Darwin" as an alias for "Mac OS X" to
  949. support Soylatte.<br />(Sam Pullara via omalley)</li>
  950. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3301">HADOOP-3301</a>. Fix misleading error message when S3 URI hostname
  951. contains an underscore.<br />(tomwhite via omalley)</li>
  952. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3338">HADOOP-3338</a>. Fix Eclipse plugin to compile after <a href="http://issues.apache.org/jira/browse/HADOOP-544">HADOOP-544</a> was
  953. committed. Updated all references to use the new JobID representation.<br />(taton via nigel)</li>
  954. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3337">HADOOP-3337</a>. Loading FSEditLog was broken by <a href="http://issues.apache.org/jira/browse/HADOOP-3283">HADOOP-3283</a> since it
  955. changed Writable serialization of DatanodeInfo. This patch handles it.
  956. (Tsz Wo (Nicholas), SZE via rangadi)
  957. </li>
  958. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3101">HADOOP-3101</a>. Prevent JobClient from throwing an exception when printing
  959. usage.<br />(Edward J. Yoon via cdouglas)</li>
  960. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3119">HADOOP-3119</a>. Update javadoc for Text::getBytes to better describe its
  961. behavior.<br />(Tim Nelson via cdouglas)</li>
  962. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2294">HADOOP-2294</a>. Fix documentation in libhdfs to refer to the correct free
  963. function.<br />(Craig Macdonald via cdouglas)</li>
  964. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3335">HADOOP-3335</a>. Prevent the libhdfs build from deleting the wrong
  965. files on make clean.<br />(cutting via omalley)</li>
  966. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2930">HADOOP-2930</a>. Make {start,stop}-balancer.sh work even if hadoop-daemon.sh
  967. is not in the PATH.<br />(Spiros Papadimitriou via hairong)</li>
  968. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3085">HADOOP-3085</a>. Catch Exception in metrics util classes to ensure that
  969. misconfigured metrics don't prevent others from updating.<br />(cdouglas)</li>
  970. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3299">HADOOP-3299</a>. CompositeInputFormat should configure the sub-input
  971. formats.<br />(cdouglas via omalley)</li>
  972. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3309">HADOOP-3309</a>. Lower io.sort.mb and fs.inmemory.size.mb for MiniMRDFSSort
  973. unit test so it passes on Windows.<br />(lohit vijayarenu via cdouglas)</li>
  974. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3348">HADOOP-3348</a>. TestUrlStreamHandler should set URLStreamFactory after
  975. DataNodes are initialized.<br />(Lohit Vijayarenu via rangadi)</li>
  976. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3371">HADOOP-3371</a>. Ignore InstanceAlreadyExistsException from
  977. MBeanUtil::registerMBean.<br />(lohit vijayarenu via cdouglas)</li>
  978. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3349">HADOOP-3349</a>. A file rename was incorrectly changing the name inside a
  979. lease record. (Tsz Wo (Nicholas), SZE via dhruba)
  980. </li>
  981. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3365">HADOOP-3365</a>. Removes an unnecessary copy of the key from SegmentDescriptor
  982. to MergeQueue.<br />(Devaraj Das)</li>
  983. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3388">HADOOP-3388</a>. Fix for TestDatanodeBlockScanner to handle blocks with
  984. generation stamps in them.<br />(dhruba)</li>
  985. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3203">HADOOP-3203</a>. Fixes TaskTracker::localizeJob to pass correct file sizes
  986. for the jarfile and the jobfile.<br />(Amareshwari Sriramadasu via ddas)</li>
  987. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3391">HADOOP-3391</a>. Fix a findbugs warning introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-3248">HADOOP-3248</a><br />(rangadi)</li>
  988. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3393">HADOOP-3393</a>. Fix datanode shutdown to call DataBlockScanner::shutdown and
  989. close its log, even if the scanner thread is not running.<br />(lohit vijayarenu
  990. via cdouglas)</li>
  991. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3399">HADOOP-3399</a>. A debug message was logged at info level.<br />(rangadi)</li>
  992. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3396">HADOOP-3396</a>. TestDatanodeBlockScanner occationally fails.<br />(Lohit Vijayarenu via rangadi)</li>
  993. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3339">HADOOP-3339</a>. Some of the failures on 3rd datanode in DFS write pipelie
  994. are not detected properly. This could lead to hard failure of client's
  995. write operation.<br />(rangadi)</li>
  996. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3409">HADOOP-3409</a>. Namenode should save the root inode into fsimage.<br />(hairong)</li>
  997. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3296">HADOOP-3296</a>. Fix task cache to work for more than two levels in the cache
  998. hierarchy. This also adds a new counter to track cache hits at levels
  999. greater than two.<br />(Amar Kamat via cdouglas)</li>
  1000. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3375">HADOOP-3375</a>. Lease paths were sometimes not removed from
  1001. LeaseManager.sortedLeasesByPath. (Tsz Wo (Nicholas), SZE via dhruba)
  1002. </li>
  1003. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3424">HADOOP-3424</a>. Values returned by getPartition should be checked to
  1004. make sure they are in the range 0 to #reduces - 1<br />(cdouglas via
  1005. omalley)</li>
  1006. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3408">HADOOP-3408</a>. Change FSNamesystem to send its metrics as integers to
  1007. accommodate collectors that don't support long values.<br />(lohit vijayarenu
  1008. via cdouglas)</li>
  1009. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3403">HADOOP-3403</a>. Fixes a problem in the JobTracker to do with handling of lost
  1010. tasktrackers.<br />(Arun Murthy via ddas)</li>
  1011. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1318">HADOOP-1318</a>. Completed maps are not failed if the number of reducers are
  1012. zero. (Amareshwari Sriramadasu via ddas).
  1013. </li>
  1014. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3351">HADOOP-3351</a>. Fixes the history viewer tool to not do huge StringBuffer
  1015. allocations.<br />(Amareshwari Sriramadasu via ddas)</li>
  1016. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3419">HADOOP-3419</a>. Fixes TestFsck to wait for updates to happen before
  1017. checking results to make the test more reliable.<br />(Lohit Vijaya
  1018. Renu via omalley)</li>
  1019. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3259">HADOOP-3259</a>. Makes failure to read system properties due to a
  1020. security manager non-fatal.<br />(Edward Yoon via omalley)</li>
  1021. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3451">HADOOP-3451</a>. Update libhdfs to use FileSystem::getFileBlockLocations
  1022. instead of removed getFileCacheHints.<br />(lohit vijayarenu via cdouglas)</li>
  1023. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3401">HADOOP-3401</a>. Update FileBench to set the new
  1024. "mapred.work.output.dir" property to work post-3041.<br />(cdouglas via omalley)</li>
  1025. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2669">HADOOP-2669</a>. DFSClient locks pendingCreates appropriately.<br />(dhruba)</li>
  1026. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3410">HADOOP-3410</a>. Fix KFS implemenation to return correct file
  1027. modification time.<br />(Sriram Rao via cutting)</li>
  1028. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3340">HADOOP-3340</a>. Fix DFS metrics for BlocksReplicated, HeartbeatsNum, and
  1029. BlockReportsAverageTime.<br />(lohit vijayarenu via cdouglas)</li>
  1030. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3435">HADOOP-3435</a>. Remove the assuption in the scripts that bash is at
  1031. /bin/bash and fix the test patch to require bash instead of sh.<br />(Brice Arnould via omalley)</li>
  1032. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3471">HADOOP-3471</a>. Fix spurious errors from TestIndexedSort and add additional
  1033. logging to let failures be reproducible.<br />(cdouglas)</li>
  1034. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3443">HADOOP-3443</a>. Avoid copying map output across partitions when renaming a
  1035. single spill.<br />(omalley via cdouglas)</li>
  1036. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3454">HADOOP-3454</a>. Fix Text::find to search only valid byte ranges.<br />(Chad Whipkey
  1037. via cdouglas)</li>
  1038. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3417">HADOOP-3417</a>. Removes the static configuration variable,
  1039. commandLineConfig from JobClient. Moves the cli parsing from
  1040. JobShell to GenericOptionsParser. Thus removes the class
  1041. org.apache.hadoop.mapred.JobShell.<br />(Amareshwari Sriramadasu via
  1042. ddas)</li>
  1043. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2132">HADOOP-2132</a>. Only RUNNING/PREP jobs can be killed.<br />(Jothi Padmanabhan
  1044. via ddas)</li>
  1045. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3476">HADOOP-3476</a>. Code cleanup in fuse-dfs.<br />(Peter Wyckoff via dhruba)</li>
  1046. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2427">HADOOP-2427</a>. Ensure that the cwd of completed tasks is cleaned-up
  1047. correctly on task-completion.<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  1048. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2565">HADOOP-2565</a>. Remove DFSPath cache of FileStatus.
  1049. (Tsz Wo (Nicholas), SZE via hairong)
  1050. </li>
  1051. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3326">HADOOP-3326</a>. Cleanup the local-fs and in-memory merge in the ReduceTask by
  1052. spawing only one thread each for the on-disk and in-memory merge.<br />(Sharad Agarwal via acmurthy)</li>
  1053. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3493">HADOOP-3493</a>. Fix TestStreamingFailure to use FileUtil.fullyDelete to
  1054. ensure correct cleanup.<br />(Lohit Vijayarenu via acmurthy)</li>
  1055. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3455">HADOOP-3455</a>. Fix NPE in ipc.Client in case of connection failure and
  1056. improve its synchronization.<br />(hairong)</li>
  1057. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3240">HADOOP-3240</a>. Fix a testcase to not create files in the current directory.
  1058. Instead the file is created in the test directory<br />(Mahadev Konar via ddas)</li>
  1059. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3496">HADOOP-3496</a>. Fix failure in TestHarFileSystem.testArchives due to change
  1060. in <a href="http://issues.apache.org/jira/browse/HADOOP-3095">HADOOP-3095</a>.<br />(tomwhite)</li>
  1061. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3135">HADOOP-3135</a>. Get the system directory from the JobTracker instead of from
  1062. the conf.<br />(Subramaniam Krishnan via ddas)</li>
  1063. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3503">HADOOP-3503</a>. Fix a race condition when client and namenode start
  1064. simultaneous recovery of the same block. (dhruba &amp; Tsz Wo
  1065. (Nicholas), SZE)
  1066. </li>
  1067. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3440">HADOOP-3440</a>. Fixes DistributedCache to not create symlinks for paths which
  1068. don't have fragments even when createSymLink is true.<br />(Abhijit Bagri via ddas)</li>
  1069. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3463">HADOOP-3463</a>. Hadoop-daemons script should cd to $HADOOP_HOME.<br />(omalley)</li>
  1070. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3489">HADOOP-3489</a>. Fix NPE in SafeModeMonitor.<br />(Lohit Vijayarenu via shv)</li>
  1071. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3509">HADOOP-3509</a>. Fix NPE in FSNamesystem.close. (Tsz Wo (Nicholas), SZE via
  1072. shv)
  1073. </li>
  1074. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3491">HADOOP-3491</a>. Name-node shutdown causes InterruptedException in
  1075. ResolutionMonitor.<br />(Lohit Vijayarenu via shv)</li>
  1076. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3511">HADOOP-3511</a>. Fixes namenode image to not set the root's quota to an
  1077. invalid value when the quota was not saved in the image.<br />(hairong)</li>
  1078. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3516">HADOOP-3516</a>. Ensure the JobClient in HadoopArchives is initialized
  1079. with a configuration.<br />(Subramaniam Krishnan via omalley)</li>
  1080. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3513">HADOOP-3513</a>. Improve NNThroughputBenchmark log messages.<br />(shv)</li>
  1081. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3519">HADOOP-3519</a>. Fix NPE in DFS FileSystem rename.<br />(hairong via tomwhite)</li>
  1082. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3528">HADOOP-3528</a>. Metrics FilesCreated and files_deleted metrics
  1083. do not match.<br />(Lohit via Mahadev)</li>
  1084. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3418">HADOOP-3418</a>. When a directory is deleted, any leases that point to files
  1085. in the subdirectory are removed. ((Tsz Wo (Nicholas), SZE via dhruba)
  1086. </li>
  1087. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3542">HADOOP-3542</a>. Diables the creation of _logs directory for the archives
  1088. directory.<br />(Mahadev Konar via ddas)</li>
  1089. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3544">HADOOP-3544</a>. Fixes a documentation issue for hadoop archives.<br />(Mahadev Konar via ddas)</li>
  1090. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3517">HADOOP-3517</a>. Fixes a problem in the reducer due to which the last InMemory
  1091. merge may be missed.<br />(Arun Murthy via ddas)</li>
  1092. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3548">HADOOP-3548</a>. Fixes build.xml to copy all *.jar files to the dist.<br />(Owen O'Malley via ddas)</li>
  1093. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3363">HADOOP-3363</a>. Fix unformatted storage detection in FSImage.<br />(shv)</li>
  1094. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3560">HADOOP-3560</a>. Fixes a problem to do with split creation in archives.<br />(Mahadev Konar via ddas)</li>
  1095. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3545">HADOOP-3545</a>. Fixes a overflow problem in archives.<br />(Mahadev Konar via ddas)</li>
  1096. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3561">HADOOP-3561</a>. Prevent the trash from deleting its parent directories.<br />(cdouglas)</li>
  1097. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3575">HADOOP-3575</a>. Fix the clover ant target after package refactoring.<br />(Nigel Daley via cdouglas)</li>
  1098. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3539">HADOOP-3539</a>. Fix the tool path in the bin/hadoop script under
  1099. cygwin. (Tsz Wo (Nicholas), Sze via omalley)
  1100. </li>
  1101. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3520">HADOOP-3520</a>. TestDFSUpgradeFromImage triggers a race condition in the
  1102. Upgrade Manager. Fixed.<br />(dhruba)</li>
  1103. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3586">HADOOP-3586</a>. Provide deprecated, backwards compatibile semantics for the
  1104. combiner to be run once and only once on each record.<br />(cdouglas)</li>
  1105. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3533">HADOOP-3533</a>. Add deprecated methods to provide API compatibility
  1106. between 0.18 and 0.17. Remove the deprecated methods in trunk.<br />(omalley)</li>
  1107. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3580">HADOOP-3580</a>. Fixes a problem to do with specifying a har as an input to
  1108. a job.<br />(Mahadev Konar via ddas)</li>
  1109. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3333">HADOOP-3333</a>. Don't assign a task to a tasktracker that it failed to
  1110. execute earlier (used to happen in the case of lost tasktrackers where
  1111. the tasktracker would reinitialize and bind to a different port).<br />(Jothi Padmanabhan and Arun Murthy via ddas)</li>
  1112. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3534">HADOOP-3534</a>. Log IOExceptions that happen in closing the name
  1113. system when the NameNode shuts down. (Tsz Wo (Nicholas) Sze via omalley)
  1114. </li>
  1115. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3546">HADOOP-3546</a>. TaskTracker re-initialization gets stuck in cleaning up.<br />(Amareshwari Sriramadasu via ddas)</li>
  1116. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3576">HADOOP-3576</a>. Fix NullPointerException when renaming a directory
  1117. to its subdirectory. (Tse Wo (Nicholas), SZE via hairong)
  1118. </li>
  1119. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3320">HADOOP-3320</a>. Fix NullPointerException in NetworkTopology.getDistance().<br />(hairong)</li>
  1120. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3569">HADOOP-3569</a>. KFS input stream read() now correctly reads 1 byte
  1121. instead of 4.<br />(Sriram Rao via omalley)</li>
  1122. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3599">HADOOP-3599</a>. Fix JobConf::setCombineOnceOnly to modify the instance rather
  1123. than a parameter.<br />(Owen O'Malley via cdouglas)</li>
  1124. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3590">HADOOP-3590</a>. Null pointer exception in JobTracker when the task tracker is
  1125. not yet resolved.<br />(Amar Ramesh Kamat via ddas)</li>
  1126. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3603">HADOOP-3603</a>. Fix MapOutputCollector to spill when io.sort.spill.percent is
  1127. 1.0 and to detect spills when emitted records write no data.<br />(cdouglas)</li>
  1128. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3615">HADOOP-3615</a>. Set DatanodeProtocol.versionID to the correct value.
  1129. (Tsz Wo (Nicholas), SZE via cdouglas)
  1130. </li>
  1131. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3559">HADOOP-3559</a>. Fix the libhdfs test script and config to work with the
  1132. current semantics.<br />(lohit vijayarenu via cdouglas)</li>
  1133. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3480">HADOOP-3480</a>. Need to update Eclipse template to reflect current trunk.<br />(Brice Arnould via tomwhite)</li>
  1134. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3588">HADOOP-3588</a>. Fixed usability issues with archives.<br />(mahadev)</li>
  1135. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3635">HADOOP-3635</a>. Uncaught exception in DataBlockScanner.
  1136. (Tsz Wo (Nicholas), SZE via hairong)
  1137. </li>
  1138. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3639">HADOOP-3639</a>. Exception when closing DFSClient while multiple files are
  1139. open.<br />(Benjamin Gufler via hairong)</li>
  1140. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3572">HADOOP-3572</a>. SetQuotas usage interface has some minor bugs.<br />(hairong)</li>
  1141. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3649">HADOOP-3649</a>. Fix bug in removing blocks from the corrupted block map.<br />(Lohit Vijayarenu via shv)</li>
  1142. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3604">HADOOP-3604</a>. Work around a JVM synchronization problem observed while
  1143. retrieving the address of direct buffers from compression code by obtaining
  1144. a lock during this call.<br />(Arun C Murthy via cdouglas)</li>
  1145. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3683">HADOOP-3683</a>. Fix dfs metrics to count file listings rather than files
  1146. listed.<br />(lohit vijayarenu via cdouglas)</li>
  1147. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3597">HADOOP-3597</a>. Fix SortValidator to use filesystems other than the default as
  1148. input. Validation job still runs on default fs.<br />(Jothi Padmanabhan via cdouglas)</li>
  1149. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3693">HADOOP-3693</a>. Fix archives, distcp and native library documentation to
  1150. conform to style guidelines.<br />(Amareshwari Sriramadasu via cdouglas)</li>
  1151. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3653">HADOOP-3653</a>. Fix test-patch target to properly account for Eclipse
  1152. classpath jars.<br />(Brice Arnould via nigel)</li>
  1153. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3692">HADOOP-3692</a>. Fix documentation for Cluster setup and Quick start guides.<br />(Amareshwari Sriramadasu via ddas)</li>
  1154. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3691">HADOOP-3691</a>. Fix streaming and tutorial docs.<br />(Jothi Padmanabhan via ddas)</li>
  1155. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3630">HADOOP-3630</a>. Fix NullPointerException in CompositeRecordReader from empty
  1156. sources<br />(cdouglas)</li>
  1157. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3706">HADOOP-3706</a>. Fix a ClassLoader issue in the mapred.join Parser that
  1158. prevents it from loading user-specified InputFormats.<br />(Jingkei Ly via cdouglas)</li>
  1159. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3718">HADOOP-3718</a>. Fix KFSOutputStream::write(int) to output a byte instead of
  1160. an int, per the OutputStream contract.<br />(Sriram Rao via cdouglas)</li>
  1161. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3647">HADOOP-3647</a>. Add debug logs to help track down a very occassional,
  1162. hard-to-reproduce, bug in shuffle/merge on the reducer.<br />(acmurthy)</li>
  1163. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3716">HADOOP-3716</a>. Prevent listStatus in KosmosFileSystem from returning
  1164. null for valid, empty directories.<br />(Sriram Rao via cdouglas)</li>
  1165. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3752">HADOOP-3752</a>. Fix audit logging to record rename events.<br />(cdouglas)</li>
  1166. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3737">HADOOP-3737</a>. Fix CompressedWritable to call Deflater::end to release
  1167. compressor memory.<br />(Grant Glouser via cdouglas)</li>
  1168. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3670">HADOOP-3670</a>. Fixes JobTracker to clear out split bytes when no longer
  1169. required.<br />(Amareshwari Sriramadasu via ddas)</li>
  1170. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3755">HADOOP-3755</a>. Update gridmix to work with HOD 0.4<br />(Runping Qi via cdouglas)</li>
  1171. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3743">HADOOP-3743</a>. Fix -libjars, -files, -archives options to work even if
  1172. user code does not implement tools.<br />(Amareshwari Sriramadasu via mahadev)</li>
  1173. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3774">HADOOP-3774</a>. Fix typos in shell output. (Tsz Wo (Nicholas), SZE via
  1174. cdouglas)
  1175. </li>
  1176. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3762">HADOOP-3762</a>. Fixed FileSystem cache to work with the default port.<br />(cutting
  1177. via omalley)</li>
  1178. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3798">HADOOP-3798</a>. Fix tests compilation.<br />(Mukund Madhugiri via omalley)</li>
  1179. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3794">HADOOP-3794</a>. Return modification time instead of zero for KosmosFileSystem.<br />(Sriram Rao via cdouglas)</li>
  1180. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3806">HADOOP-3806</a>. Remove debug statement to stdout from QuickSort.<br />(cdouglas)</li>
  1181. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3776">HADOOP-3776</a>. Fix NPE at NameNode when datanode reports a block after it is
  1182. deleted at NameNode.<br />(rangadi)</li>
  1183. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3537">HADOOP-3537</a>. Disallow adding a datanode to a network topology when its
  1184. network location is not resolved.<br />(hairong)</li>
  1185. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3571">HADOOP-3571</a>. Fix bug in block removal used in lease recovery.<br />(shv)</li>
  1186. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3645">HADOOP-3645</a>. MetricsTimeVaryingRate returns wrong value for
  1187. metric_avg_time.<br />(Lohit Vijayarenu via hairong)</li>
  1188. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3521">HADOOP-3521</a>. Reverted the missing cast to float for sending Counters' values
  1189. to Hadoop metrics which was removed by <a href="http://issues.apache.org/jira/browse/HADOOP-544">HADOOP-544</a>.<br />(acmurthy)</li>
  1190. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3820">HADOOP-3820</a>. Fixes two problems in the gridmix-env - a syntax error, and a
  1191. wrong definition of USE_REAL_DATASET by default.<br />(Arun Murthy via ddas)</li>
  1192. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3724">HADOOP-3724</a>. Fixes two problems related to storing and recovering lease
  1193. in the fsimage.<br />(dhruba)</li>
  1194. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3827">HADOOP-3827</a>. Fixed compression of empty map-outputs.<br />(acmurthy)</li>
  1195. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3865">HADOOP-3865</a>. Remove reference to FSNamesystem from metrics preventing
  1196. garbage collection.<br />(Lohit Vijayarenu via cdouglas)</li>
  1197. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3884">HADOOP-3884</a>. Fix so that Eclipse plugin builds against recent
  1198. Eclipse releases.<br />(cutting)</li>
  1199. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3837">HADOOP-3837</a>. Streaming jobs report progress status.<br />(dhruba)</li>
  1200. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3897">HADOOP-3897</a>. Fix a NPE in secondary namenode.<br />(Lohit Vijayarenu via
  1201. cdouglas)</li>
  1202. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3901">HADOOP-3901</a>. Fix bin/hadoop to correctly set classpath under cygwin.
  1203. (Tsz Wo (Nicholas) Sze via omalley)
  1204. </li>
  1205. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3947">HADOOP-3947</a>. Fix a problem in tasktracker reinitialization.<br />(Amareshwari Sriramadasu via ddas)</li>
  1206. </ol>
  1207. </li>
  1208. </ul>
  1209. <h3><a href="javascript:toggleList('release_0.17.3_-_unreleased_')">Release 0.17.3 - Unreleased
  1210. </a></h3>
  1211. <ul id="release_0.17.3_-_unreleased_">
  1212. <li><a href="javascript:toggleList('release_0.17.3_-_unreleased_._bug_fixes_')"> BUG FIXES
  1213. </a>&nbsp;&nbsp;&nbsp;(4)
  1214. <ol id="release_0.17.3_-_unreleased_._bug_fixes_">
  1215. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4277">HADOOP-4277</a>. Checksum verification was mistakenly disabled for
  1216. LocalFileSystem.<br />(Raghu Angadi)</li>
  1217. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4271">HADOOP-4271</a>. Checksum input stream can sometimes return invalid
  1218. data to the user.<br />(Ning Li via rangadi)</li>
  1219. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4318">HADOOP-4318</a>. DistCp should use absolute paths for cleanup.<br />(szetszwo)</li>
  1220. <li><a href="http://issues.apache.org/jira/browse/HADOOP-4326">HADOOP-4326</a>. ChecksumFileSystem does not override create(...) correctly.<br />(szetszwo)</li>
  1221. </ol>
  1222. </li>
  1223. </ul>
  1224. <h3><a href="javascript:toggleList('release_0.17.2_-_2008-08-11_')">Release 0.17.2 - 2008-08-11
  1225. </a></h3>
  1226. <ul id="release_0.17.2_-_2008-08-11_">
  1227. <li><a href="javascript:toggleList('release_0.17.2_-_2008-08-11_._bug_fixes_')"> BUG FIXES
  1228. </a>&nbsp;&nbsp;&nbsp;(12)
  1229. <ol id="release_0.17.2_-_2008-08-11_._bug_fixes_">
  1230. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3678">HADOOP-3678</a>. Avoid spurious exceptions logged at DataNode when clients
  1231. read from DFS.<br />(rangadi)</li>
  1232. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3707">HADOOP-3707</a>. NameNode keeps a count of number of blocks scheduled
  1233. to be written to a datanode and uses it to avoid allocating more
  1234. blocks than a datanode can hold.<br />(rangadi)</li>
  1235. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3760">HADOOP-3760</a>. Fix a bug with HDFS file close() mistakenly introduced
  1236. by <a href="http://issues.apache.org/jira/browse/HADOOP-3681">HADOOP-3681</a>.<br />(Lohit Vijayarenu via rangadi)</li>
  1237. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3681">HADOOP-3681</a>. DFSClient can get into an infinite loop while closing
  1238. a file if there are some errors.<br />(Lohit Vijayarenu via rangadi)</li>
  1239. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3002">HADOOP-3002</a>. Hold off block removal while in safe mode.<br />(shv)</li>
  1240. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3685">HADOOP-3685</a>. Unbalanced replication target.<br />(hairong)</li>
  1241. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3758">HADOOP-3758</a>. Shutdown datanode on version mismatch instead of retrying
  1242. continuously, preventing excessive logging at the namenode.<br />(lohit vijayarenu via cdouglas)</li>
  1243. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3633">HADOOP-3633</a>. Correct exception handling in DataXceiveServer, and throttle
  1244. the number of xceiver threads in a data-node.<br />(shv)</li>
  1245. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3370">HADOOP-3370</a>. Ensure that the TaskTracker.runningJobs data-structure is
  1246. correctly cleaned-up on task completion.<br />(Zheng Shao via acmurthy)</li>
  1247. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3813">HADOOP-3813</a>. Fix task-output clean-up on HDFS to use the recursive
  1248. FileSystem.delete rather than the FileUtil.fullyDelete.<br />(Amareshwari
  1249. Sri Ramadasu via acmurthy)</li>
  1250. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3859">HADOOP-3859</a>. Allow the maximum number of xceivers in the data node to
  1251. be configurable.<br />(Johan Oskarsson via omalley)</li>
  1252. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3931">HADOOP-3931</a>. Fix corner case in the map-side sort that causes some values
  1253. to be counted as too large and cause pre-mature spills to disk. Some values
  1254. will also bypass the combiner incorrectly.<br />(cdouglas via omalley)</li>
  1255. </ol>
  1256. </li>
  1257. </ul>
  1258. <h3><a href="javascript:toggleList('release_0.17.1_-_2008-06-23_')">Release 0.17.1 - 2008-06-23
  1259. </a></h3>
  1260. <ul id="release_0.17.1_-_2008-06-23_">
  1261. <li><a href="javascript:toggleList('release_0.17.1_-_2008-06-23_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  1262. </a>&nbsp;&nbsp;&nbsp;(1)
  1263. <ol id="release_0.17.1_-_2008-06-23_._incompatible_changes_">
  1264. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3565">HADOOP-3565</a>. Fix the Java serialization, which is not enabled by
  1265. default, to clear the state of the serializer between objects.<br />(tomwhite via omalley)</li>
  1266. </ol>
  1267. </li>
  1268. <li><a href="javascript:toggleList('release_0.17.1_-_2008-06-23_._improvements_')"> IMPROVEMENTS
  1269. </a>&nbsp;&nbsp;&nbsp;(2)
  1270. <ol id="release_0.17.1_-_2008-06-23_._improvements_">
  1271. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3522">HADOOP-3522</a>. Improve documentation on reduce pointing out that
  1272. input keys and values will be reused.<br />(omalley)</li>
  1273. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3487">HADOOP-3487</a>. Balancer uses thread pools for managing its threads;
  1274. therefore provides better resource management.<br />(hairong)</li>
  1275. </ol>
  1276. </li>
  1277. <li><a href="javascript:toggleList('release_0.17.1_-_2008-06-23_._bug_fixes_')"> BUG FIXES
  1278. </a>&nbsp;&nbsp;&nbsp;(8)
  1279. <ol id="release_0.17.1_-_2008-06-23_._bug_fixes_">
  1280. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2159">HADOOP-2159</a> Namenode stuck in safemode. The counter blockSafe should
  1281. not be decremented for invalid blocks.<br />(hairong)</li>
  1282. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3472">HADOOP-3472</a> MapFile.Reader getClosest() function returns incorrect results
  1283. when before is true<br />(Todd Lipcon via Stack)</li>
  1284. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3442">HADOOP-3442</a>. Limit recursion depth on the stack for QuickSort to prevent
  1285. StackOverflowErrors. To avoid O(n*n) cases, when partitioning depth exceeds
  1286. a multiple of log(n), change to HeapSort.<br />(cdouglas)</li>
  1287. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3477">HADOOP-3477</a>. Fix build to not package contrib/*/bin twice in
  1288. distributions.<br />(Adam Heath via cutting)</li>
  1289. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3475">HADOOP-3475</a>. Fix MapTask to correctly size the accounting allocation of
  1290. io.sort.mb.<br />(cdouglas)</li>
  1291. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3550">HADOOP-3550</a>. Fix the serialization data structures in MapTask where the
  1292. value lengths are incorrectly calculated.<br />(cdouglas)</li>
  1293. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3526">HADOOP-3526</a>. Fix contrib/data_join framework by cloning values retained
  1294. in the reduce.<br />(Spyros Blanas via cdouglas)</li>
  1295. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1979">HADOOP-1979</a>. Speed up fsck by adding a buffered stream.<br />(Lohit
  1296. Vijaya Renu via omalley)</li>
  1297. </ol>
  1298. </li>
  1299. </ul>
  1300. <h3><a href="javascript:toggleList('release_0.17.0_-_2008-05-18_')">Release 0.17.0 - 2008-05-18
  1301. </a></h3>
  1302. <ul id="release_0.17.0_-_2008-05-18_">
  1303. <li><a href="javascript:toggleList('release_0.17.0_-_2008-05-18_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  1304. </a>&nbsp;&nbsp;&nbsp;(26)
  1305. <ol id="release_0.17.0_-_2008-05-18_._incompatible_changes_">
  1306. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2786">HADOOP-2786</a>. Move hbase out of hadoop core
  1307. </li>
  1308. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2345">HADOOP-2345</a>. New HDFS transactions to support appending
  1309. to files. Disk layout version changed from -11 to -12.<br />(dhruba)</li>
  1310. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2192">HADOOP-2192</a>. Error messages from "dfs mv" command improved.<br />(Mahadev Konar via dhruba)</li>
  1311. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1902">HADOOP-1902</a>. "dfs du" command without any arguments operates on the
  1312. current working directory.<br />(Mahadev Konar via dhruba)</li>
  1313. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2873">HADOOP-2873</a>. Fixed bad disk format introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-2345">HADOOP-2345</a>.
  1314. Disk layout version changed from -12 to -13. See changelist 630992<br />(dhruba)</li>
  1315. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1985">HADOOP-1985</a>. This addresses rack-awareness for Map tasks and for
  1316. HDFS in a uniform way.<br />(ddas)</li>
  1317. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1986">HADOOP-1986</a>. Add support for a general serialization mechanism for
  1318. Map Reduce.<br />(tomwhite)</li>
  1319. <li><a href="http://issues.apache.org/jira/browse/HADOOP-771">HADOOP-771</a>. FileSystem.delete() takes an explicit parameter that
  1320. specifies whether a recursive delete is intended.<br />(Mahadev Konar via dhruba)</li>
  1321. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2470">HADOOP-2470</a>. Remove getContentLength(String), open(String, long, long)
  1322. and isDir(String) from ClientProtocol. ClientProtocol version changed
  1323. from 26 to 27. (Tsz Wo (Nicholas), SZE via cdouglas)
  1324. </li>
  1325. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2822">HADOOP-2822</a>. Remove deprecated code for classes InputFormatBase and
  1326. PhasedFileSystem.<br />(Amareshwari Sriramadasu via enis)</li>
  1327. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2116">HADOOP-2116</a>. Changes the layout of the task execution directory.<br />(Amareshwari Sriramadasu via ddas)</li>
  1328. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2828">HADOOP-2828</a>. The following deprecated methods in Configuration.java
  1329. have been removed
  1330. getObject(String name)
  1331. setObject(String name, Object value)
  1332. get(String name, Object defaultValue)
  1333. set(String name, Object value)
  1334. Iterator entries()<br />(Amareshwari Sriramadasu via ddas)</li>
  1335. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2824">HADOOP-2824</a>. Removes one deprecated constructor from MiniMRCluster.<br />(Amareshwari Sriramadasu via ddas)</li>
  1336. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2823">HADOOP-2823</a>. Removes deprecated methods getColumn(), getLine() from
  1337. org.apache.hadoop.record.compiler.generated.SimpleCharStream.<br />(Amareshwari Sriramadasu via ddas)</li>
  1338. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3060">HADOOP-3060</a>. Removes one unused constructor argument from MiniMRCluster.<br />(Amareshwari Sriramadasu via ddas)</li>
  1339. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2854">HADOOP-2854</a>. Remove deprecated o.a.h.ipc.Server::getUserInfo().<br />(lohit vijayarenu via cdouglas)</li>
  1340. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2563">HADOOP-2563</a>. Remove deprecated FileSystem::listPaths.<br />(lohit vijayarenu via cdouglas)</li>
  1341. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2818">HADOOP-2818</a>. Remove deprecated methods in Counters.<br />(Amareshwari Sriramadasu via tomwhite)</li>
  1342. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2831">HADOOP-2831</a>. Remove deprecated o.a.h.dfs.INode::getAbsoluteName()<br />(lohit vijayarenu via cdouglas)</li>
  1343. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2839">HADOOP-2839</a>. Remove deprecated FileSystem::globPaths.<br />(lohit vijayarenu via cdouglas)</li>
  1344. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2634">HADOOP-2634</a>. Deprecate ClientProtocol::exists.<br />(lohit vijayarenu via cdouglas)</li>
  1345. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2410">HADOOP-2410</a>. Make EC2 cluster nodes more independent of each other.
  1346. Multiple concurrent EC2 clusters are now supported, and nodes may be
  1347. added to a cluster on the fly with new nodes starting in the same EC2
  1348. availability zone as the cluster. Ganglia monitoring and large
  1349. instance sizes have also been added.<br />(Chris K Wensel via tomwhite)</li>
  1350. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2826">HADOOP-2826</a>. Deprecated FileSplit.getFile(), LineRecordReader.readLine().<br />(Amareshwari Sriramadasu via ddas)</li>
  1351. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3239">HADOOP-3239</a>. getFileInfo() returns null for non-existing files instead
  1352. of throwing FileNotFoundException.<br />(Lohit Vijayarenu via shv)</li>
  1353. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3266">HADOOP-3266</a>. Removed HOD changes from CHANGES.txt, as they are now inside
  1354. src/contrib/hod<br />(Hemanth Yamijala via ddas)</li>
  1355. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3280">HADOOP-3280</a>. Separate the configuration of the virtual memory size
  1356. (mapred.child.ulimit) from the jvm heap size, so that 64 bit
  1357. streaming applications are supported even when running with 32 bit
  1358. jvms.<br />(acmurthy via omalley)</li>
  1359. </ol>
  1360. </li>
  1361. <li><a href="javascript:toggleList('release_0.17.0_-_2008-05-18_._new_features_')"> NEW FEATURES
  1362. </a>&nbsp;&nbsp;&nbsp;(12)
  1363. <ol id="release_0.17.0_-_2008-05-18_._new_features_">
  1364. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1398">HADOOP-1398</a>. Add HBase in-memory block cache.<br />(tomwhite)</li>
  1365. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2178">HADOOP-2178</a>. Job History on DFS.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1366. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2063">HADOOP-2063</a>. A new parameter to dfs -get command to fetch a file
  1367. even if it is corrupted. (Tsz Wo (Nicholas), SZE via dhruba)
  1368. </li>
  1369. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2219">HADOOP-2219</a>. A new command "df -count" that counts the number of
  1370. files and directories. (Tsz Wo (Nicholas), SZE via dhruba)
  1371. </li>
  1372. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2906">HADOOP-2906</a>. Add an OutputFormat capable of using keys, values, and
  1373. config params to map records to different output files.<br />(Runping Qi via cdouglas)</li>
  1374. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2346">HADOOP-2346</a>. Utilities to support timeout while writing to sockets.
  1375. DFSClient and DataNode sockets have 10min write timeout.<br />(rangadi)</li>
  1376. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2951">HADOOP-2951</a>. Add a contrib module that provides a utility to
  1377. build or update Lucene indexes using Map/Reduce.<br />(Ning Li via cutting)</li>
  1378. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1622">HADOOP-1622</a>. Allow multiple jar files for map reduce.<br />(Mahadev Konar via dhruba)</li>
  1379. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2055">HADOOP-2055</a>. Allows users to set PathFilter on the FileInputFormat.<br />(Alejandro Abdelnur via ddas)</li>
  1380. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2551">HADOOP-2551</a>. More environment variables like HADOOP_NAMENODE_OPTS
  1381. for better control of HADOOP_OPTS for each component.<br />(rangadi)</li>
  1382. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3001">HADOOP-3001</a>. Add job counters that measure the number of bytes
  1383. read and written to HDFS, S3, KFS, and local file systems.<br />(omalley)</li>
  1384. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3048">HADOOP-3048</a>. A new Interface and a default implementation to convert
  1385. and restore serializations of objects to/from strings.<br />(enis)</li>
  1386. </ol>
  1387. </li>
  1388. <li><a href="javascript:toggleList('release_0.17.0_-_2008-05-18_._improvements_')"> IMPROVEMENTS
  1389. </a>&nbsp;&nbsp;&nbsp;(29)
  1390. <ol id="release_0.17.0_-_2008-05-18_._improvements_">
  1391. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2655">HADOOP-2655</a>. Copy on write for data and metadata files in the
  1392. presence of snapshots. Needed for supporting appends to HDFS
  1393. files.<br />(dhruba)</li>
  1394. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1967">HADOOP-1967</a>. When a Path specifies the same scheme as the default
  1395. FileSystem but no authority, the default FileSystem's authority is
  1396. used. Also add warnings for old-format FileSystem names, accessor
  1397. methods for fs.default.name, and check for null authority in HDFS.<br />(cutting)</li>
  1398. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2895">HADOOP-2895</a>. Let the profiling string be configurable.<br />(Martin Traverso via cdouglas)</li>
  1399. <li><a href="http://issues.apache.org/jira/browse/HADOOP-910">HADOOP-910</a>. Enables Reduces to do merges for the on-disk map output files
  1400. in parallel with their copying.<br />(Amar Kamat via ddas)</li>
  1401. <li><a href="http://issues.apache.org/jira/browse/HADOOP-730">HADOOP-730</a>. Use rename rather than copy for local renames.<br />(cdouglas)</li>
  1402. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2810">HADOOP-2810</a>. Updated the Hadoop Core logo.<br />(nigel)</li>
  1403. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2057">HADOOP-2057</a>. Streaming should optionally treat a non-zero exit status
  1404. of a child process as a failed task.<br />(Rick Cox via tomwhite)</li>
  1405. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2765">HADOOP-2765</a>. Enables specifying ulimits for streaming/pipes tasks<br />(ddas)</li>
  1406. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2888">HADOOP-2888</a>. Make gridmix scripts more readily configurable and amenable
  1407. to automated execution.<br />(Mukund Madhugiri via cdouglas)</li>
  1408. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2908">HADOOP-2908</a>. A document that describes the DFS Shell command.<br />(Mahadev Konar via dhruba)</li>
  1409. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2981">HADOOP-2981</a>. Update README.txt to reflect the upcoming use of
  1410. cryptography.<br />(omalley)</li>
  1411. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2804">HADOOP-2804</a>. Add support to publish CHANGES.txt as HTML when running
  1412. the Ant 'docs' target.<br />(nigel)</li>
  1413. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2559">HADOOP-2559</a>. Change DFS block placement to allocate the first replica
  1414. locally, the second off-rack, and the third intra-rack from the
  1415. second.<br />(lohit vijayarenu via cdouglas)</li>
  1416. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2939">HADOOP-2939</a>. Make the automated patch testing process an executable
  1417. Ant target, test-patch.<br />(nigel)</li>
  1418. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2239">HADOOP-2239</a>. Add HsftpFileSystem to permit transferring files over ssl.<br />(cdouglas)</li>
  1419. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2886">HADOOP-2886</a>. Track individual RPC metrics.<br />(girish vaitheeswaran via dhruba)</li>
  1420. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2373">HADOOP-2373</a>. Improvement in safe-mode reporting.<br />(shv)</li>
  1421. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3091">HADOOP-3091</a>. Modify FsShell command -put to accept multiple sources.<br />(Lohit Vijaya Renu via cdouglas)</li>
  1422. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3092">HADOOP-3092</a>. Show counter values from job -status command.<br />(Tom White via ddas)</li>
  1423. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1228">HADOOP-1228</a>. Ant task to generate Eclipse project files.<br />(tomwhite)</li>
  1424. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3093">HADOOP-3093</a>. Adds Configuration.getStrings(name, default-value) and
  1425. the corresponding setStrings.<br />(Amareshwari Sriramadasu via ddas)</li>
  1426. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3106">HADOOP-3106</a>. Adds documentation in forrest for debugging.<br />(Amareshwari Sriramadasu via ddas)</li>
  1427. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3099">HADOOP-3099</a>. Add an option to distcp to preserve user, group, and
  1428. permission information. (Tsz Wo (Nicholas), SZE via cdouglas)
  1429. </li>
  1430. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2841">HADOOP-2841</a>. Unwrap AccessControlException and FileNotFoundException
  1431. from RemoteException for DFSClient.<br />(shv)</li>
  1432. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3152">HADOOP-3152</a>. Make index interval configuable when using
  1433. MapFileOutputFormat for map-reduce job.<br />(Rong-En Fan via cutting)</li>
  1434. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3143">HADOOP-3143</a>. Decrease number of slaves from 4 to 3 in TestMiniMRDFSSort,
  1435. as Hudson generates false negatives under the current load.<br />(Nigel Daley via cdouglas)</li>
  1436. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3174">HADOOP-3174</a>. Illustrative example for MultipleFileInputFormat.<br />(Enis
  1437. Soztutar via acmurthy)</li>
  1438. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2993">HADOOP-2993</a>. Clarify the usage of JAVA_HOME in the Quick Start guide.<br />(acmurthy via nigel)</li>
  1439. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3124">HADOOP-3124</a>. Make DataNode socket write timeout configurable.<br />(rangadi)</li>
  1440. </ol>
  1441. </li>
  1442. <li><a href="javascript:toggleList('release_0.17.0_-_2008-05-18_._optimizations_')"> OPTIMIZATIONS
  1443. </a>&nbsp;&nbsp;&nbsp;(12)
  1444. <ol id="release_0.17.0_-_2008-05-18_._optimizations_">
  1445. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2790">HADOOP-2790</a>. Fixed inefficient method hasSpeculativeTask by removing
  1446. repetitive calls to get the current time and late checking to see if
  1447. we want speculation on at all.<br />(omalley)</li>
  1448. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2758">HADOOP-2758</a>. Reduce buffer copies in DataNode when data is read from
  1449. HDFS, without negatively affecting read throughput.<br />(rangadi)</li>
  1450. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2399">HADOOP-2399</a>. Input key and value to combiner and reducer is reused.
  1451. (Owen O'Malley via ddas).
  1452. </li>
  1453. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2423">HADOOP-2423</a>. Code optimization in FSNamesystem.mkdirs.
  1454. (Tsz Wo (Nicholas), SZE via dhruba)
  1455. </li>
  1456. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2606">HADOOP-2606</a>. ReplicationMonitor selects data-nodes to replicate directly
  1457. from needed replication blocks instead of looking up for the blocks for
  1458. each live data-node.<br />(shv)</li>
  1459. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2148">HADOOP-2148</a>. Eliminate redundant data-node blockMap lookups.<br />(shv)</li>
  1460. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2027">HADOOP-2027</a>. Return the number of bytes in each block in a file
  1461. via a single rpc to the namenode to speed up job planning.<br />(Lohit Vijaya Renu via omalley)</li>
  1462. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2902">HADOOP-2902</a>. Replace uses of "fs.default.name" with calls to the
  1463. accessor methods added in <a href="http://issues.apache.org/jira/browse/HADOOP-1967">HADOOP-1967</a>.<br />(cutting)</li>
  1464. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2119">HADOOP-2119</a>. Optimize scheduling of jobs with large numbers of
  1465. tasks by replacing static arrays with lists of runnable tasks.<br />(Amar Kamat via omalley)</li>
  1466. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2919">HADOOP-2919</a>. Reduce the number of memory copies done during the
  1467. map output sorting. Also adds two config variables:
  1468. io.sort.spill.percent - the percentages of io.sort.mb that should
  1469. cause a spill (default 80%)
  1470. io.sort.record.percent - the percent of io.sort.mb that should
  1471. hold key/value indexes (default 5%)<br />(cdouglas via omalley)</li>
  1472. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3140">HADOOP-3140</a>. Doesn't add a task in the commit queue if the task hadn't
  1473. generated any output.<br />(Amar Kamat via ddas)</li>
  1474. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3168">HADOOP-3168</a>. Reduce the amount of logging in streaming to an
  1475. exponentially increasing number of records (up to 10,000
  1476. records/log).<br />(Zheng Shao via omalley)</li>
  1477. </ol>
  1478. </li>
  1479. <li><a href="javascript:toggleList('release_0.17.0_-_2008-05-18_._bug_fixes_')"> BUG FIXES
  1480. </a>&nbsp;&nbsp;&nbsp;(102)
  1481. <ol id="release_0.17.0_-_2008-05-18_._bug_fixes_">
  1482. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2195">HADOOP-2195</a>. '-mkdir' behaviour is now closer to Linux shell in case of
  1483. errors.<br />(Mahadev Konar via rangadi)</li>
  1484. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2190">HADOOP-2190</a>. bring behaviour '-ls' and '-du' closer to Linux shell
  1485. commands in case of errors.<br />(Mahadev Konar via rangadi)</li>
  1486. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2193">HADOOP-2193</a>. 'fs -rm' and 'fs -rmr' show error message when the target
  1487. file does not exist.<br />(Mahadev Konar via rangadi)</li>
  1488. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2738">HADOOP-2738</a> Text is not subclassable because set(Text) and compareTo(Object)
  1489. access the other instance's private members directly.<br />(jimk)</li>
  1490. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2779">HADOOP-2779</a>. Remove the references to HBase in the build.xml.<br />(omalley)</li>
  1491. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2194">HADOOP-2194</a>. dfs cat on a non-existent file throws FileNotFoundException.<br />(Mahadev Konar via dhruba)</li>
  1492. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2767">HADOOP-2767</a>. Fix for NetworkTopology erroneously skipping the last leaf
  1493. node on a rack.<br />(Hairong Kuang and Mark Butler via dhruba)</li>
  1494. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1593">HADOOP-1593</a>. FsShell works with paths in non-default FileSystem.<br />(Mahadev Konar via dhruba)</li>
  1495. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2191">HADOOP-2191</a>. du and dus command on non-existent directory gives
  1496. appropriate error message.<br />(Mahadev Konar via dhruba)</li>
  1497. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2832">HADOOP-2832</a>. Remove tabs from code of DFSClient for better
  1498. indentation.<br />(dhruba)</li>
  1499. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2844">HADOOP-2844</a>. distcp closes file handles for sequence files.
  1500. (Tsz Wo (Nicholas), SZE via dhruba)
  1501. </li>
  1502. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2727">HADOOP-2727</a>. Fix links in Web UI of the hadoop daemons and some docs<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1503. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2871">HADOOP-2871</a>. Fixes a problem to do with file: URI in the JobHistory init.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1504. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2800">HADOOP-2800</a>. Deprecate SetFile.Writer constructor not the whole class.<br />(Johan Oskarsson via tomwhite)</li>
  1505. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2891">HADOOP-2891</a>. DFSClient.close() closes all open files.<br />(dhruba)</li>
  1506. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2845">HADOOP-2845</a>. Fix dfsadmin disk utilization report on Solaris.<br />(Martin Traverso via tomwhite)</li>
  1507. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2912">HADOOP-2912</a>. MiniDFSCluster restart should wait for namenode to exit
  1508. safemode. This was causing TestFsck to fail.<br />(Mahadev Konar via dhruba)</li>
  1509. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2820">HADOOP-2820</a>. The following classes in streaming are removed :
  1510. StreamLineRecordReader StreamOutputFormat StreamSequenceRecordReader.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1511. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2819">HADOOP-2819</a>. The following methods in JobConf are removed:
  1512. getInputKeyClass() setInputKeyClass getInputValueClass()
  1513. setInputValueClass(Class theClass) setSpeculativeExecution
  1514. getSpeculativeExecution()<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1515. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2817">HADOOP-2817</a>. Removes deprecated mapred.tasktracker.tasks.maximum and
  1516. ClusterStatus.getMaxTasks().<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1517. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2821">HADOOP-2821</a>. Removes deprecated ShellUtil and ToolBase classes from
  1518. the util package.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1519. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2934">HADOOP-2934</a>. The namenode was encountreing a NPE while loading
  1520. leases from the fsimage. Fixed.<br />(dhruba)</li>
  1521. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2938">HADOOP-2938</a>. Some fs commands did not glob paths.
  1522. (Tsz Wo (Nicholas), SZE via rangadi)
  1523. </li>
  1524. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2943">HADOOP-2943</a>. Compression of intermediate map output causes failures
  1525. in the merge.<br />(cdouglas)</li>
  1526. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2870">HADOOP-2870</a>. DataNode and NameNode closes all connections while
  1527. shutting down.<br />(Hairong Kuang via dhruba)</li>
  1528. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2973">HADOOP-2973</a>. Fix TestLocalDFS for Windows platform.
  1529. (Tsz Wo (Nicholas), SZE via dhruba)
  1530. </li>
  1531. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2971">HADOOP-2971</a>. select multiple times if it returns early in
  1532. SocketIOWithTimeout.<br />(rangadi)</li>
  1533. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2955">HADOOP-2955</a>. Fix TestCrcCorruption test failures caused by <a href="http://issues.apache.org/jira/browse/HADOOP-2758">HADOOP-2758</a><br />(rangadi)</li>
  1534. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2657">HADOOP-2657</a>. A flush call on the DFSOutputStream flushes the last
  1535. partial CRC chunk too.<br />(dhruba)</li>
  1536. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2974">HADOOP-2974</a>. IPC unit tests used "0.0.0.0" to connect to server, which
  1537. is not always supported.<br />(rangadi)</li>
  1538. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2996">HADOOP-2996</a>. Fixes uses of StringBuffer in StreamUtils class.<br />(Dave Brosius via ddas)</li>
  1539. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2995">HADOOP-2995</a>. Fixes StreamBaseRecordReader's getProgress to return a
  1540. floating point number.<br />(Dave Brosius via ddas)</li>
  1541. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2972">HADOOP-2972</a>. Fix for a NPE in FSDataset.invalidate.<br />(Mahadev Konar via dhruba)</li>
  1542. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2994">HADOOP-2994</a>. Code cleanup for DFSClient: remove redundant
  1543. conversions from string to string.<br />(Dave Brosius via dhruba)</li>
  1544. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3009">HADOOP-3009</a>. TestFileCreation sometimes fails because restarting
  1545. minidfscluster sometimes creates datanodes with ports that are
  1546. different from their original instance.<br />(dhruba)</li>
  1547. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2992">HADOOP-2992</a>. Distributed Upgrade framework works correctly with
  1548. more than one upgrade object.<br />(Konstantin Shvachko via dhruba)</li>
  1549. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2679">HADOOP-2679</a>. Fix a typo in libhdfs.<br />(Jason via dhruba)</li>
  1550. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2976">HADOOP-2976</a>. When a lease expires, the Namenode ensures that
  1551. blocks of the file are adequately replicated.<br />(dhruba)</li>
  1552. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2901">HADOOP-2901</a>. Fixes the creation of info servers in the JobClient
  1553. and JobTracker. Removes the creation from JobClient and removes
  1554. additional info server from the JobTracker. Also adds the command
  1555. line utility to view the history files (<a href="http://issues.apache.org/jira/browse/HADOOP-2896">HADOOP-2896</a>), and fixes
  1556. bugs in JSPs to do with analysis - <a href="http://issues.apache.org/jira/browse/HADOOP-2742">HADOOP-2742</a>, <a href="http://issues.apache.org/jira/browse/HADOOP-2792">HADOOP-2792</a>.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1557. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2890">HADOOP-2890</a>. If different datanodes report the same block but
  1558. with different sizes to the namenode, the namenode picks the
  1559. replica(s) with the largest size as the only valid replica(s).<br />(dhruba)</li>
  1560. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2825">HADOOP-2825</a>. Deprecated MapOutputLocation.getFile() is removed.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1561. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2806">HADOOP-2806</a>. Fixes a streaming document.<br />(Amareshwari Sriramadasu via ddas)</li>
  1562. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3008">HADOOP-3008</a>. SocketIOWithTimeout throws InterruptedIOException if the
  1563. thread is interrupted while it is waiting.<br />(rangadi)</li>
  1564. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3006">HADOOP-3006</a>. Fix wrong packet size reported by DataNode when a block
  1565. is being replicated.<br />(rangadi)</li>
  1566. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3029">HADOOP-3029</a>. Datanode prints log message "firstbadlink" only if
  1567. it detects a bad connection to another datanode in the pipeline.<br />(dhruba)</li>
  1568. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3030">HADOOP-3030</a>. Release reserved space for file in InMemoryFileSystem if
  1569. checksum reservation fails.<br />(Devaraj Das via cdouglas)</li>
  1570. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3036">HADOOP-3036</a>. Fix findbugs warnings in UpgradeUtilities.<br />(Konstantin
  1571. Shvachko via cdouglas)</li>
  1572. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3025">HADOOP-3025</a>. ChecksumFileSystem supports the delete method with
  1573. the recursive flag.<br />(Mahadev Konar via dhruba)</li>
  1574. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3012">HADOOP-3012</a>. dfs -mv file to user home directory throws exception if
  1575. the user home directory does not exist.<br />(Mahadev Konar via dhruba)</li>
  1576. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3066">HADOOP-3066</a>. Should not require superuser privilege to query if hdfs is in
  1577. safe mode<br />(jimk)</li>
  1578. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3040">HADOOP-3040</a>. If the input line starts with the separator char, the key
  1579. is set as empty.<br />(Amareshwari Sriramadasu via ddas)</li>
  1580. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3080">HADOOP-3080</a>. Removes flush calls from JobHistory.<br />(Amareshwari Sriramadasu via ddas)</li>
  1581. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3086">HADOOP-3086</a>. Adds the testcase missed during commit of hadoop-3040.<br />(Amareshwari Sriramadasu via ddas)</li>
  1582. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3046">HADOOP-3046</a>. Fix the raw comparators for Text and BytesWritables
  1583. to use the provided length rather than recompute it.<br />(omalley)</li>
  1584. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3094">HADOOP-3094</a>. Fix BytesWritable.toString to avoid extending the sign bit<br />(Owen O'Malley via cdouglas)</li>
  1585. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3067">HADOOP-3067</a>. DFSInputStream's position read does not close the sockets.<br />(rangadi)</li>
  1586. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3073">HADOOP-3073</a>. close() on SocketInputStream or SocketOutputStream should
  1587. close the underlying channel.<br />(rangadi)</li>
  1588. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3087">HADOOP-3087</a>. Fixes a problem to do with refreshing of loadHistory.jsp.<br />(Amareshwari Sriramadasu via ddas)</li>
  1589. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3065">HADOOP-3065</a>. Better logging message if the rack location of a datanode
  1590. cannot be determined.<br />(Devaraj Das via dhruba)</li>
  1591. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3064">HADOOP-3064</a>. Commas in a file path should not be treated as delimiters.<br />(Hairong Kuang via shv)</li>
  1592. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2997">HADOOP-2997</a>. Adds test for non-writable serialier. Also fixes a problem
  1593. introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-2399">HADOOP-2399</a>.<br />(Tom White via ddas)</li>
  1594. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3114">HADOOP-3114</a>. Fix TestDFSShell on Windows.<br />(Lohit Vijaya Renu via cdouglas)</li>
  1595. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3118">HADOOP-3118</a>. Fix Namenode NPE while loading fsimage after a cluster
  1596. upgrade from older disk format.<br />(dhruba)</li>
  1597. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3161">HADOOP-3161</a>. Fix FIleUtil.HardLink.getLinkCount on Mac OS.<br />(nigel
  1598. via omalley)</li>
  1599. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2927">HADOOP-2927</a>. Fix TestDU to acurately calculate the expected file size.<br />(shv via nigel)</li>
  1600. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3123">HADOOP-3123</a>. Fix the native library build scripts to work on Solaris.<br />(tomwhite via omalley)</li>
  1601. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3089">HADOOP-3089</a>. Streaming should accept stderr from task before
  1602. first key arrives.<br />(Rick Cox via tomwhite)</li>
  1603. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3146">HADOOP-3146</a>. A DFSOutputStream.flush method is renamed as
  1604. DFSOutputStream.fsync.<br />(dhruba)</li>
  1605. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3165">HADOOP-3165</a>. -put/-copyFromLocal did not treat input file "-" as stdin.<br />(Lohit Vijayarenu via rangadi)</li>
  1606. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3041">HADOOP-3041</a>. Deprecate JobConf.setOutputPath and JobConf.getOutputPath.
  1607. Deprecate OutputFormatBase. Add FileOutputFormat. Existing output formats
  1608. extending OutputFormatBase, now extend FileOutputFormat. Add the following
  1609. APIs in FileOutputFormat: setOutputPath, getOutputPath, getWorkOutputPath.<br />(Amareshwari Sriramadasu via nigel)</li>
  1610. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3083">HADOOP-3083</a>. The fsimage does not store leases. This would have to be
  1611. reworked in the next release to support appends.<br />(dhruba)</li>
  1612. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3166">HADOOP-3166</a>. Fix an ArrayIndexOutOfBoundsException in the spill thread
  1613. and make exception handling more promiscuous to catch this condition.<br />(cdouglas)</li>
  1614. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3050">HADOOP-3050</a>. DataNode sends one and only one block report after
  1615. it registers with the namenode.<br />(Hairong Kuang)</li>
  1616. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3044">HADOOP-3044</a>. NNBench sets the right configuration for the mapper.<br />(Hairong Kuang)</li>
  1617. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3178">HADOOP-3178</a>. Fix GridMix scripts for small and medium jobs
  1618. to handle input paths differently.<br />(Mukund Madhugiri via nigel)</li>
  1619. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1911">HADOOP-1911</a>. Fix an infinite loop in DFSClient when all replicas of a
  1620. block are bad<br />(cdouglas)</li>
  1621. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3157">HADOOP-3157</a>. Fix path handling in DistributedCache and TestMiniMRLocalFS.<br />(Doug Cutting via rangadi)</li>
  1622. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3018">HADOOP-3018</a>. Fix the eclipse plug-in contrib wrt removed deprecated
  1623. methods<br />(taton)</li>
  1624. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3183">HADOOP-3183</a>. Fix TestJobShell to use 'ls' instead of java.io.File::exists
  1625. since cygwin symlinks are unsupported.<br />(Mahadev konar via cdouglas)</li>
  1626. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3175">HADOOP-3175</a>. Fix FsShell.CommandFormat to handle "-" in arguments.<br />(Edward J. Yoon via rangadi)</li>
  1627. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3220">HADOOP-3220</a>. Safemode message corrected.<br />(shv)</li>
  1628. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3208">HADOOP-3208</a>. Fix WritableDeserializer to set the Configuration on
  1629. deserialized Writables.<br />(Enis Soztutar via cdouglas)</li>
  1630. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3224">HADOOP-3224</a>. 'dfs -du /dir' does not return correct size.<br />(Lohit Vjayarenu via rangadi)</li>
  1631. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3223">HADOOP-3223</a>. Fix typo in help message for -chmod.<br />(rangadi)</li>
  1632. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1373">HADOOP-1373</a>. checkPath() should ignore case when it compares authoriy.<br />(Edward J. Yoon via rangadi)</li>
  1633. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3204">HADOOP-3204</a>. Fixes a problem to do with ReduceTask's LocalFSMerger not
  1634. catching Throwable.<br />(Amar Ramesh Kamat via ddas)</li>
  1635. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3229">HADOOP-3229</a>. Report progress when collecting records from the mapper and
  1636. the combiner.<br />(Doug Cutting via cdouglas)</li>
  1637. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3225">HADOOP-3225</a>. Unwrapping methods of RemoteException should initialize
  1638. detailedMassage field.<br />(Mahadev Konar, shv, cdouglas)</li>
  1639. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3247">HADOOP-3247</a>. Fix gridmix scripts to use the correct globbing syntax and
  1640. change maxentToSameCluster to run the correct number of jobs.<br />(Runping Qi via cdouglas)</li>
  1641. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3242">HADOOP-3242</a>. Fix the RecordReader of SequenceFileAsBinaryInputFormat to
  1642. correctly read from the start of the split and not the beginning of the
  1643. file.<br />(cdouglas via acmurthy)</li>
  1644. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3256">HADOOP-3256</a>. Encodes the job name used in the filename for history files.<br />(Arun Murthy via ddas)</li>
  1645. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3162">HADOOP-3162</a>. Ensure that comma-separated input paths are treated correctly
  1646. as multiple input paths.<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  1647. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3263">HADOOP-3263</a>. Ensure that the job-history log file always follows the
  1648. pattern of hostname_timestamp_jobid_username_jobname even if username
  1649. and/or jobname are not specfied. This helps to avoid wrong assumptions
  1650. made about the job-history log filename in jobhistory.jsp.<br />(acmurthy)</li>
  1651. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3251">HADOOP-3251</a>. Fixes getFilesystemName in JobTracker and LocalJobRunner to
  1652. use FileSystem.getUri instead of FileSystem.getName.<br />(Arun Murthy via ddas)</li>
  1653. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3237">HADOOP-3237</a>. Fixes TestDFSShell.testErrOutPut on Windows platform.<br />(Mahadev Konar via ddas)</li>
  1654. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3279">HADOOP-3279</a>. TaskTracker checks for SUCCEEDED task status in addition to
  1655. COMMIT_PENDING status when it fails maps due to lost map.<br />(Devaraj Das)</li>
  1656. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3286">HADOOP-3286</a>. Prevent collisions in gridmix output dirs by increasing the
  1657. granularity of the timestamp.<br />(Runping Qi via cdouglas)</li>
  1658. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3285">HADOOP-3285</a>. Fix input split locality when the splits align to
  1659. fs blocks.<br />(omalley)</li>
  1660. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3372">HADOOP-3372</a>. Fix heap management in streaming tests.<br />(Arun Murthy via
  1661. cdouglas)</li>
  1662. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3031">HADOOP-3031</a>. Fix javac warnings in test classes.<br />(cdouglas)</li>
  1663. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3382">HADOOP-3382</a>. Fix memory leak when files are not cleanly closed<br />(rangadi)</li>
  1664. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3322">HADOOP-3322</a>. Fix to push MetricsRecord for rpc metrics.<br />(Eric Yang via
  1665. mukund)</li>
  1666. </ol>
  1667. </li>
  1668. </ul>
  1669. <h3><a href="javascript:toggleList('release_0.16.4_-_2008-05-05_')">Release 0.16.4 - 2008-05-05
  1670. </a></h3>
  1671. <ul id="release_0.16.4_-_2008-05-05_">
  1672. <li><a href="javascript:toggleList('release_0.16.4_-_2008-05-05_._bug_fixes_')"> BUG FIXES
  1673. </a>&nbsp;&nbsp;&nbsp;(3)
  1674. <ol id="release_0.16.4_-_2008-05-05_._bug_fixes_">
  1675. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3138">HADOOP-3138</a>. DFS mkdirs() should not throw an exception if the directory
  1676. already exists.<br />(rangadi via mukund)</li>
  1677. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3294">HADOOP-3294</a>. Fix distcp to check the destination length and retry the copy
  1678. if it doesn't match the src length. (Tsz Wo (Nicholas), SZE via mukund)
  1679. </li>
  1680. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3186">HADOOP-3186</a>. Fix incorrect permission checkding for mv and renameTo
  1681. in HDFS. (Tsz Wo (Nicholas), SZE via mukund)
  1682. </li>
  1683. </ol>
  1684. </li>
  1685. </ul>
  1686. <h3><a href="javascript:toggleList('release_0.16.3_-_2008-04-16_')">Release 0.16.3 - 2008-04-16
  1687. </a></h3>
  1688. <ul id="release_0.16.3_-_2008-04-16_">
  1689. <li><a href="javascript:toggleList('release_0.16.3_-_2008-04-16_._bug_fixes_')"> BUG FIXES
  1690. </a>&nbsp;&nbsp;&nbsp;(7)
  1691. <ol id="release_0.16.3_-_2008-04-16_._bug_fixes_">
  1692. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3010">HADOOP-3010</a>. Fix ConcurrentModificationException in ipc.Server.Responder.<br />(rangadi)</li>
  1693. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3154">HADOOP-3154</a>. Catch all Throwables from the SpillThread in MapTask, rather
  1694. than IOExceptions only.<br />(ddas via cdouglas)</li>
  1695. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3159">HADOOP-3159</a>. Avoid file system cache being overwritten whenever
  1696. configuration is modified. (Tsz Wo (Nicholas), SZE via hairong)
  1697. </li>
  1698. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3139">HADOOP-3139</a>. Remove the consistency check for the FileSystem cache in
  1699. closeAll() that causes spurious warnings and a deadlock.
  1700. (Tsz Wo (Nicholas), SZE via cdouglas)
  1701. </li>
  1702. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3195">HADOOP-3195</a>. Fix TestFileSystem to be deterministic.
  1703. (Tsz Wo (Nicholas), SZE via cdouglas)
  1704. </li>
  1705. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3069">HADOOP-3069</a>. Primary name-node should not truncate image when transferring
  1706. it from the secondary.<br />(shv)</li>
  1707. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3182">HADOOP-3182</a>. Change permissions of the job-submission directory to 777
  1708. from 733 to ensure sharing of HOD clusters works correctly. (Tsz Wo
  1709. (Nicholas), Sze and Amareshwari Sri Ramadasu via acmurthy)
  1710. </li>
  1711. </ol>
  1712. </li>
  1713. </ul>
  1714. <h3><a href="javascript:toggleList('release_0.16.2_-_2008-04-02_')">Release 0.16.2 - 2008-04-02
  1715. </a></h3>
  1716. <ul id="release_0.16.2_-_2008-04-02_">
  1717. <li><a href="javascript:toggleList('release_0.16.2_-_2008-04-02_._bug_fixes_')"> BUG FIXES
  1718. </a>&nbsp;&nbsp;&nbsp;(18)
  1719. <ol id="release_0.16.2_-_2008-04-02_._bug_fixes_">
  1720. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3011">HADOOP-3011</a>. Prohibit distcp from overwriting directories on the
  1721. destination filesystem with files.<br />(cdouglas)</li>
  1722. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3033">HADOOP-3033</a>. The BlockReceiver thread in the datanode writes data to
  1723. the block file, changes file position (if needed) and flushes all by
  1724. itself. The PacketResponder thread does not flush block file.<br />(dhruba)</li>
  1725. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2978">HADOOP-2978</a>. Fixes the JobHistory log format for counters.<br />(Runping Qi via ddas)</li>
  1726. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2985">HADOOP-2985</a>. Fixes LocalJobRunner to tolerate null job output path.
  1727. Also makes the _temporary a constant in MRConstants.java.<br />(Amareshwari Sriramadasu via ddas)</li>
  1728. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3003">HADOOP-3003</a>. FileSystem cache key is updated after a
  1729. FileSystem object is created. (Tsz Wo (Nicholas), SZE via dhruba)
  1730. </li>
  1731. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3042">HADOOP-3042</a>. Updates the Javadoc in JobConf.getOutputPath to reflect
  1732. the actual temporary path.<br />(Amareshwari Sriramadasu via ddas)</li>
  1733. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3007">HADOOP-3007</a>. Tolerate mirror failures while DataNode is replicating
  1734. blocks as it used to before.<br />(rangadi)</li>
  1735. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2944">HADOOP-2944</a>. Fixes a "Run on Hadoop" wizard NPE when creating a
  1736. Location from the wizard.<br />(taton)</li>
  1737. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3049">HADOOP-3049</a>. Fixes a problem in MultiThreadedMapRunner to do with
  1738. catching RuntimeExceptions.<br />(Alejandro Abdelnur via ddas)</li>
  1739. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3039">HADOOP-3039</a>. Fixes a problem to do with exceptions in tasks not
  1740. killing jobs.<br />(Amareshwari Sriramadasu via ddas)</li>
  1741. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3027">HADOOP-3027</a>. Fixes a problem to do with adding a shutdown hook in
  1742. FileSystem.<br />(Amareshwari Sriramadasu via ddas)</li>
  1743. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3056">HADOOP-3056</a>. Fix distcp when the target is an empty directory by
  1744. making sure the directory is created first.<br />(cdouglas and acmurthy
  1745. via omalley)</li>
  1746. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3070">HADOOP-3070</a>. Protect the trash emptier thread from null pointer
  1747. exceptions.<br />(Koji Noguchi via omalley)</li>
  1748. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3084">HADOOP-3084</a>. Fix HftpFileSystem to work for zero-lenghth files.<br />(cdouglas)</li>
  1749. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3107">HADOOP-3107</a>. Fix NPE when fsck invokes getListings.<br />(dhruba)</li>
  1750. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3104">HADOOP-3104</a>. Limit MultithreadedMapRunner to have a fixed length queue
  1751. between the RecordReader and the map threads.<br />(Alejandro Abdelnur via
  1752. omalley)</li>
  1753. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2833">HADOOP-2833</a>. Do not use "Dr. Who" as the default user in JobClient.
  1754. A valid user name is required. (Tsz Wo (Nicholas), SZE via rangadi)
  1755. </li>
  1756. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3128">HADOOP-3128</a>. Throw RemoteException in setPermissions and setOwner of
  1757. DistributedFileSystem.<br />(shv via nigel)</li>
  1758. </ol>
  1759. </li>
  1760. </ul>
  1761. <h3><a href="javascript:toggleList('release_0.16.1_-_2008-03-13_')">Release 0.16.1 - 2008-03-13
  1762. </a></h3>
  1763. <ul id="release_0.16.1_-_2008-03-13_">
  1764. <li><a href="javascript:toggleList('release_0.16.1_-_2008-03-13_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  1765. </a>&nbsp;&nbsp;&nbsp;(1)
  1766. <ol id="release_0.16.1_-_2008-03-13_._incompatible_changes_">
  1767. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2869">HADOOP-2869</a>. Deprecate SequenceFile.setCompressionType in favor of
  1768. SequenceFile.createWriter, SequenceFileOutputFormat.setCompressionType,
  1769. and JobConf.setMapOutputCompressionType. (Arun C Murthy via cdouglas)
  1770. Configuration changes to hadoop-default.xml:
  1771. deprecated io.seqfile.compression.type
  1772. </li>
  1773. </ol>
  1774. </li>
  1775. <li><a href="javascript:toggleList('release_0.16.1_-_2008-03-13_._improvements_')"> IMPROVEMENTS
  1776. </a>&nbsp;&nbsp;&nbsp;(2)
  1777. <ol id="release_0.16.1_-_2008-03-13_._improvements_">
  1778. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2371">HADOOP-2371</a>. User guide for file permissions in HDFS.<br />(Robert Chansler via rangadi)</li>
  1779. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3098">HADOOP-3098</a>. Allow more characters in user and group names while
  1780. using -chown and -chgrp commands.<br />(rangadi)</li>
  1781. </ol>
  1782. </li>
  1783. <li><a href="javascript:toggleList('release_0.16.1_-_2008-03-13_._bug_fixes_')"> BUG FIXES
  1784. </a>&nbsp;&nbsp;&nbsp;(31)
  1785. <ol id="release_0.16.1_-_2008-03-13_._bug_fixes_">
  1786. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2789">HADOOP-2789</a>. Race condition in IPC Server Responder that could close
  1787. connections early.<br />(Raghu Angadi)</li>
  1788. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2785">HADOOP-2785</a>. minor. Fix a typo in Datanode block verification<br />(Raghu Angadi)</li>
  1789. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2788">HADOOP-2788</a>. minor. Fix help message for chgrp shell command (Raghu Angadi).
  1790. </li>
  1791. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1188">HADOOP-1188</a>. fstime file is updated when a storage directory containing
  1792. namespace image becomes inaccessible.<br />(shv)</li>
  1793. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2787">HADOOP-2787</a>. An application can set a configuration variable named
  1794. dfs.umask to set the umask that is used by DFS.
  1795. (Tsz Wo (Nicholas), SZE via dhruba)
  1796. </li>
  1797. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2780">HADOOP-2780</a>. The default socket buffer size for DataNodes is 128K.<br />(dhruba)</li>
  1798. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2716">HADOOP-2716</a>. Superuser privileges for the Balancer.
  1799. (Tsz Wo (Nicholas), SZE via shv)
  1800. </li>
  1801. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2754">HADOOP-2754</a>. Filter out .crc files from local file system listing.<br />(Hairong Kuang via shv)</li>
  1802. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2733">HADOOP-2733</a>. Fix compiler warnings in test code.
  1803. (Tsz Wo (Nicholas), SZE via cdouglas)
  1804. </li>
  1805. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2725">HADOOP-2725</a>. Modify distcp to avoid leaving partially copied files at
  1806. the destination after encountering an error. (Tsz Wo (Nicholas), SZE
  1807. via cdouglas)
  1808. </li>
  1809. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2391">HADOOP-2391</a>. Cleanup job output directory before declaring a job as
  1810. SUCCESSFUL.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1811. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2808">HADOOP-2808</a>. Minor fix to FileUtil::copy to mind the overwrite
  1812. formal.<br />(cdouglas)</li>
  1813. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2683">HADOOP-2683</a>. Moving UGI out of the RPC Server.
  1814. (Tsz Wo (Nicholas), SZE via shv)
  1815. </li>
  1816. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2814">HADOOP-2814</a>. Fix for NPE in datanode in unit test TestDataTransferProtocol.<br />(Raghu Angadi via dhruba)</li>
  1817. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2811">HADOOP-2811</a>. Dump of counters in job history does not add comma between
  1818. groups.<br />(runping via omalley)</li>
  1819. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2735">HADOOP-2735</a>. Enables setting TMPDIR for tasks.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1820. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2843">HADOOP-2843</a>. Fix protections on map-side join classes to enable derivation.<br />(cdouglas via omalley)</li>
  1821. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2840">HADOOP-2840</a>. Fix gridmix scripts to correctly invoke the java sort through
  1822. the proper jar.<br />(Mukund Madhugiri via cdouglas)</li>
  1823. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2769">HADOOP-2769</a>. TestNNThroughputBnechmark should not use a fixed port for
  1824. the namenode http port.<br />(omalley)</li>
  1825. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2852">HADOOP-2852</a>. Update gridmix benchmark to avoid an artifically long tail.<br />(cdouglas)</li>
  1826. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2894">HADOOP-2894</a>. Fix a problem to do with tasktrackers failing to connect to
  1827. JobTracker upon reinitialization. (Owen O'Malley via ddas).
  1828. </li>
  1829. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2903">HADOOP-2903</a>. Fix exception generated by Metrics while using pushMetric().<br />(girish vaitheeswaran via dhruba)</li>
  1830. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2904">HADOOP-2904</a>. Fix to RPC metrics to log the correct host name.<br />(girish vaitheeswaran via dhruba)</li>
  1831. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2918">HADOOP-2918</a>. Improve error logging so that dfs writes failure with
  1832. "No lease on file" can be diagnosed.<br />(dhruba)</li>
  1833. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2923">HADOOP-2923</a>. Add SequenceFileAsBinaryInputFormat, which was
  1834. missed in the commit for <a href="http://issues.apache.org/jira/browse/HADOOP-2603">HADOOP-2603</a>.<br />(cdouglas via omalley)</li>
  1835. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2931">HADOOP-2931</a>. IOException thrown by DFSOutputStream had wrong stack
  1836. trace in some cases.<br />(Michael Bieniosek via rangadi)</li>
  1837. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2883">HADOOP-2883</a>. Write failures and data corruptions on HDFS files.
  1838. The write timeout is back to what it was on 0.15 release. Also, the
  1839. datnodes flushes the block file buffered output stream before
  1840. sending a positive ack for the packet back to the client.<br />(dhruba)</li>
  1841. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2756">HADOOP-2756</a>. NPE in DFSClient while closing DFSOutputStreams
  1842. under load.<br />(rangadi)</li>
  1843. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2958">HADOOP-2958</a>. Fixed FileBench which broke due to <a href="http://issues.apache.org/jira/browse/HADOOP-2391">HADOOP-2391</a> which performs
  1844. a check for existence of the output directory and a trivial bug in
  1845. GenericMRLoadGenerator where min/max word lenghts were identical since
  1846. they were looking at the same config variables<br />(Chris Douglas via
  1847. acmurthy)</li>
  1848. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2915">HADOOP-2915</a>. Fixed FileSystem.CACHE so that a username is included
  1849. in the cache key. (Tsz Wo (Nicholas), SZE via nigel)
  1850. </li>
  1851. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2813">HADOOP-2813</a>. TestDU unit test uses its own directory to run its
  1852. sequence of tests.<br />(Mahadev Konar via dhruba)</li>
  1853. </ol>
  1854. </li>
  1855. </ul>
  1856. <h3><a href="javascript:toggleList('release_0.16.0_-_2008-02-07_')">Release 0.16.0 - 2008-02-07
  1857. </a></h3>
  1858. <ul id="release_0.16.0_-_2008-02-07_">
  1859. <li><a href="javascript:toggleList('release_0.16.0_-_2008-02-07_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  1860. </a>&nbsp;&nbsp;&nbsp;(14)
  1861. <ol id="release_0.16.0_-_2008-02-07_._incompatible_changes_">
  1862. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1245">HADOOP-1245</a>. Use the mapred.tasktracker.tasks.maximum value
  1863. configured on each tasktracker when allocating tasks, instead of
  1864. the value configured on the jobtracker. InterTrackerProtocol
  1865. version changed from 5 to 6.<br />(Michael Bieniosek via omalley)</li>
  1866. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1843">HADOOP-1843</a>. Removed code from Configuration and JobConf deprecated by
  1867. <a href="http://issues.apache.org/jira/browse/HADOOP-785">HADOOP-785</a> and a minor fix to Configuration.toString. Specifically the
  1868. important change is that mapred-default.xml is no longer supported and
  1869. Configuration no longer supports the notion of default/final resources.<br />(acmurthy)</li>
  1870. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1302">HADOOP-1302</a>. Remove deprecated abacus code from the contrib directory.
  1871. This also fixes a configuration bug in AggregateWordCount, so that the
  1872. job now works.<br />(enis)</li>
  1873. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2288">HADOOP-2288</a>. Enhance FileSystem API to support access control.
  1874. (Tsz Wo (Nicholas), SZE via dhruba)
  1875. </li>
  1876. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2184">HADOOP-2184</a>. RPC Support for user permissions and authentication.<br />(Raghu Angadi via dhruba)</li>
  1877. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2185">HADOOP-2185</a>. RPC Server uses any available port if the specified
  1878. port is zero. Otherwise it uses the specified port. Also combines
  1879. the configuration attributes for the servers' bind address and
  1880. port from "x.x.x.x" and "y" to "x.x.x.x:y".
  1881. Deprecated configuration variables:
  1882. dfs.info.bindAddress
  1883. dfs.info.port
  1884. dfs.datanode.bindAddress
  1885. dfs.datanode.port
  1886. dfs.datanode.info.bindAdress
  1887. dfs.datanode.info.port
  1888. dfs.secondary.info.bindAddress
  1889. dfs.secondary.info.port
  1890. mapred.job.tracker.info.bindAddress
  1891. mapred.job.tracker.info.port
  1892. mapred.task.tracker.report.bindAddress
  1893. tasktracker.http.bindAddress
  1894. tasktracker.http.port
  1895. New configuration variables (post <a href="http://issues.apache.org/jira/browse/HADOOP-2404">HADOOP-2404</a>):
  1896. dfs.secondary.http.address
  1897. dfs.datanode.address
  1898. dfs.datanode.http.address
  1899. dfs.http.address
  1900. mapred.job.tracker.http.address
  1901. mapred.task.tracker.report.address
  1902. mapred.task.tracker.http.address<br />(Konstantin Shvachko via dhruba)</li>
  1903. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2401">HADOOP-2401</a>. Only the current leaseholder can abandon a block for
  1904. a HDFS file. ClientProtocol version changed from 20 to 21.
  1905. (Tsz Wo (Nicholas), SZE via dhruba)
  1906. </li>
  1907. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2381">HADOOP-2381</a>. Support permission information in FileStatus. Client
  1908. Protocol version changed from 21 to 22.<br />(Raghu Angadi via dhruba)</li>
  1909. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2110">HADOOP-2110</a>. Block report processing creates fewer transient objects.
  1910. Datanode Protocol version changed from 10 to 11.<br />(Sanjay Radia via dhruba)</li>
  1911. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2567">HADOOP-2567</a>. Add FileSystem#getHomeDirectory(), which returns the
  1912. user's home directory in a FileSystem as a fully-qualified path.
  1913. FileSystem#getWorkingDirectory() is also changed to return a
  1914. fully-qualified path, which can break applications that attempt
  1915. to, e.g., pass LocalFileSystem#getWorkingDir().toString() directly
  1916. to java.io methods that accept file names.<br />(cutting)</li>
  1917. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2514">HADOOP-2514</a>. Change trash feature to maintain a per-user trash
  1918. directory, named ".Trash" in the user's home directory. The
  1919. "fs.trash.root" parameter is no longer used. Full source paths
  1920. are also no longer reproduced within the trash.
  1921. </li>
  1922. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2012">HADOOP-2012</a>. Periodic data verification on Datanodes.<br />(Raghu Angadi via dhruba)</li>
  1923. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1707">HADOOP-1707</a>. The DFSClient does not use a local disk file to cache
  1924. writes to a HDFS file. Changed Data Transfer Version from 7 to 8.<br />(dhruba)</li>
  1925. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2652">HADOOP-2652</a>. Fix permission issues for HftpFileSystem. This is an
  1926. incompatible change since distcp may not be able to copy files
  1927. from cluster A (compiled with this patch) to cluster B (compiled
  1928. with previous versions). (Tsz Wo (Nicholas), SZE via dhruba)
  1929. </li>
  1930. </ol>
  1931. </li>
  1932. <li><a href="javascript:toggleList('release_0.16.0_-_2008-02-07_._new_features_')"> NEW FEATURES
  1933. </a>&nbsp;&nbsp;&nbsp;(13)
  1934. <ol id="release_0.16.0_-_2008-02-07_._new_features_">
  1935. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1857">HADOOP-1857</a>. Ability to run a script when a task fails to capture stack
  1936. traces.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  1937. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2299">HADOOP-2299</a>. Defination of a login interface. A simple implementation for
  1938. Unix users and groups.<br />(Hairong Kuang via dhruba)</li>
  1939. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1652">HADOOP-1652</a>. A utility to balance data among datanodes in a HDFS cluster.<br />(Hairong Kuang via dhruba)</li>
  1940. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2085">HADOOP-2085</a>. A library to support map-side joins of consistently
  1941. partitioned and sorted data sets.<br />(Chris Douglas via omalley)</li>
  1942. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2336">HADOOP-2336</a>. Shell commands to modify file permissions.<br />(rangadi)</li>
  1943. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1298">HADOOP-1298</a>. Implement file permissions for HDFS.
  1944. (Tsz Wo (Nicholas) &amp; taton via cutting)
  1945. </li>
  1946. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2447">HADOOP-2447</a>. HDFS can be configured to limit the total number of
  1947. objects (inodes and blocks) in the file system.<br />(dhruba)</li>
  1948. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2487">HADOOP-2487</a>. Added an option to get statuses for all submitted/run jobs.
  1949. This information can be used to develop tools for analysing jobs.<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  1950. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1873">HADOOP-1873</a>. Implement user permissions for Map/Reduce framework.<br />(Hairong Kuang via shv)</li>
  1951. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2532">HADOOP-2532</a>. Add to MapFile a getClosest method that returns the key
  1952. that comes just before if the key is not present.<br />(stack via tomwhite)</li>
  1953. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1883">HADOOP-1883</a>. Add versioning to Record I/O.<br />(Vivek Ratan via ddas)</li>
  1954. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2603">HADOOP-2603</a>. Add SeqeunceFileAsBinaryInputFormat, which reads
  1955. sequence files as BytesWritable/BytesWritable regardless of the
  1956. key and value types used to write the file.<br />(cdouglas via omalley)</li>
  1957. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2367">HADOOP-2367</a>. Add ability to profile a subset of map/reduce tasks and fetch
  1958. the result to the local filesystem of the submitting application. Also
  1959. includes a general IntegerRanges extension to Configuration for setting
  1960. positive, ranged parameters.<br />(Owen O'Malley via cdouglas)</li>
  1961. </ol>
  1962. </li>
  1963. <li><a href="javascript:toggleList('release_0.16.0_-_2008-02-07_._improvements_')"> IMPROVEMENTS
  1964. </a>&nbsp;&nbsp;&nbsp;(54)
  1965. <ol id="release_0.16.0_-_2008-02-07_._improvements_">
  1966. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2045">HADOOP-2045</a>. Change committer list on website to a table, so that
  1967. folks can list their organization, timezone, etc.<br />(cutting)</li>
  1968. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2058">HADOOP-2058</a>. Facilitate creating new datanodes dynamically in
  1969. MiniDFSCluster.<br />(Hairong Kuang via dhruba)</li>
  1970. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1855">HADOOP-1855</a>. fsck verifies block placement policies and reports
  1971. violations.<br />(Konstantin Shvachko via dhruba)</li>
  1972. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1604">HADOOP-1604</a>. An system administrator can finalize namenode upgrades
  1973. without running the cluster.<br />(Konstantin Shvachko via dhruba)</li>
  1974. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1839">HADOOP-1839</a>. Link-ify the Pending/Running/Complete/Killed grid in
  1975. jobdetails.jsp to help quickly narrow down and see categorized TIPs'
  1976. details via jobtasks.jsp.<br />(Amar Kamat via acmurthy)</li>
  1977. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1210">HADOOP-1210</a>. Log counters in job history.<br />(Owen O'Malley via ddas)</li>
  1978. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1912">HADOOP-1912</a>. Datanode has two new commands COPY and REPLACE. These are
  1979. needed for supporting data rebalance.<br />(Hairong Kuang via dhruba)</li>
  1980. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2086">HADOOP-2086</a>. This patch adds the ability to add dependencies to a job
  1981. (run via JobControl) after construction.<br />(Adrian Woodhead via ddas)</li>
  1982. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1185">HADOOP-1185</a>. Support changing the logging level of a server without
  1983. restarting the server. (Tsz Wo (Nicholas), SZE via dhruba)
  1984. </li>
  1985. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2134">HADOOP-2134</a>. Remove developer-centric requirements from overview.html and
  1986. keep it end-user focussed, specifically sections related to subversion and
  1987. building Hadoop.<br />(Jim Kellerman via acmurthy)</li>
  1988. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1989">HADOOP-1989</a>. Support simulated DataNodes. This helps creating large virtual
  1989. clusters for testing purposes.<br />(Sanjay Radia via dhruba)</li>
  1990. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1274">HADOOP-1274</a>. Support different number of mappers and reducers per
  1991. TaskTracker to allow administrators to better configure and utilize
  1992. heterogenous clusters.
  1993. Configuration changes to hadoop-default.xml:
  1994. add mapred.tasktracker.map.tasks.maximum (default value of 2)
  1995. add mapred.tasktracker.reduce.tasks.maximum (default value of 2)
  1996. remove mapred.tasktracker.tasks.maximum (deprecated for 0.16.0)<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  1997. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2104">HADOOP-2104</a>. Adds a description to the ant targets. This makes the
  1998. output of "ant -projecthelp" sensible.<br />(Chris Douglas via ddas)</li>
  1999. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2127">HADOOP-2127</a>. Added a pipes sort example to benchmark trivial pipes
  2000. application versus trivial java application.<br />(omalley via acmurthy)</li>
  2001. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2113">HADOOP-2113</a>. A new shell command "dfs -text" to view the contents of
  2002. a gziped or SequenceFile.<br />(Chris Douglas via dhruba)</li>
  2003. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2207">HADOOP-2207</a>. Add a "package" target for contrib modules that
  2004. permits each to determine what files are copied into release
  2005. builds.<br />(stack via cutting)</li>
  2006. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1984">HADOOP-1984</a>. Makes the backoff for failed fetches exponential.
  2007. Earlier, it was a random backoff from an interval.<br />(Amar Kamat via ddas)</li>
  2008. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1327">HADOOP-1327</a>. Include website documentation for streaming.<br />(Rob Weltman
  2009. via omalley)</li>
  2010. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2000">HADOOP-2000</a>. Rewrite NNBench to measure namenode performance accurately.
  2011. It now uses the map-reduce framework for load generation.<br />(Mukund Madhugiri via dhruba)</li>
  2012. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2248">HADOOP-2248</a>. Speeds up the framework w.r.t Counters. Also has API
  2013. updates to the Counters part.<br />(Owen O'Malley via ddas)</li>
  2014. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2326">HADOOP-2326</a>. The initial block report at Datanode startup time has
  2015. a random backoff period.<br />(Sanjay Radia via dhruba)</li>
  2016. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2432">HADOOP-2432</a>. HDFS includes the name of the file while throwing
  2017. "File does not exist" exception.<br />(Jim Kellerman via dhruba)</li>
  2018. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2457">HADOOP-2457</a>. Added a 'forrest.home' property to the 'docs' target in
  2019. build.xml.<br />(acmurthy)</li>
  2020. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2149">HADOOP-2149</a>. A new benchmark for three name-node operation: file create,
  2021. open, and block report, to evaluate the name-node performance
  2022. for optimizations or new features.<br />(Konstantin Shvachko via shv)</li>
  2023. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2466">HADOOP-2466</a>. Change FileInputFormat.computeSplitSize to a protected
  2024. non-static method to allow sub-classes to provide alternate
  2025. implementations.<br />(Alejandro Abdelnur via acmurthy)</li>
  2026. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2425">HADOOP-2425</a>. Change TextOutputFormat to handle Text specifically for better
  2027. performance. Make NullWritable implement Comparable. Make TextOutputFormat
  2028. treat NullWritable like null.<br />(omalley)</li>
  2029. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1719">HADOOP-1719</a>. Improves the utilization of shuffle copier threads.<br />(Amar Kamat via ddas)</li>
  2030. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2390">HADOOP-2390</a>. Added documentation for user-controls for intermediate
  2031. map-outputs &amp; final job-outputs and native-hadoop libraries.<br />(acmurthy)</li>
  2032. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1660">HADOOP-1660</a>. Add the cwd of the map/reduce task to the java.library.path
  2033. of the child-jvm to support loading of native libraries distributed via
  2034. the DistributedCache.<br />(acmurthy)</li>
  2035. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2285">HADOOP-2285</a>. Speeds up TextInputFormat. Also includes updates to the
  2036. Text API.<br />(Owen O'Malley via cdouglas)</li>
  2037. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2233">HADOOP-2233</a>. Adds a generic load generator for modeling MR jobs.<br />(cdouglas)</li>
  2038. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2369">HADOOP-2369</a>. Adds a set of scripts for simulating a mix of user map/reduce
  2039. workloads.<br />(Runping Qi via cdouglas)</li>
  2040. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2547">HADOOP-2547</a>. Removes use of a 'magic number' in build.xml.<br />(Hrishikesh via nigel)</li>
  2041. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2268">HADOOP-2268</a>. Fix org.apache.hadoop.mapred.jobcontrol classes to use the
  2042. List/Map interfaces rather than concrete ArrayList/HashMap classes
  2043. internally.<br />(Adrian Woodhead via acmurthy)</li>
  2044. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2406">HADOOP-2406</a>. Add a benchmark for measuring read/write performance through
  2045. the InputFormat interface, particularly with compression.<br />(cdouglas)</li>
  2046. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2131">HADOOP-2131</a>. Allow finer-grained control over speculative-execution. Now
  2047. users can set it for maps and reduces independently.
  2048. Configuration changes to hadoop-default.xml:
  2049. deprecated mapred.speculative.execution
  2050. add mapred.map.tasks.speculative.execution
  2051. add mapred.reduce.tasks.speculative.execution<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  2052. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1965">HADOOP-1965</a>. Interleave sort/spill in teh map-task along with calls to the
  2053. Mapper.map method. This is done by splitting the 'io.sort.mb' buffer into
  2054. two and using one half for collecting map-outputs and the other half for
  2055. sort/spill.<br />(Amar Kamat via acmurthy)</li>
  2056. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2464">HADOOP-2464</a>. Unit tests for chmod, chown, and chgrp using DFS.<br />(Raghu Angadi)</li>
  2057. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1876">HADOOP-1876</a>. Persist statuses of completed jobs in HDFS so that the
  2058. JobClient can query and get information about decommissioned jobs and also
  2059. across JobTracker restarts.
  2060. Configuration changes to hadoop-default.xml:
  2061. add mapred.job.tracker.persist.jobstatus.active (default value of false)
  2062. add mapred.job.tracker.persist.jobstatus.hours (default value of 0)
  2063. add mapred.job.tracker.persist.jobstatus.dir (default value of
  2064. /jobtracker/jobsInfo)<br />(Alejandro Abdelnur via acmurthy)</li>
  2065. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2077">HADOOP-2077</a>. Added version and build information to STARTUP_MSG for all
  2066. hadoop daemons to aid error-reporting, debugging etc.<br />(acmurthy)</li>
  2067. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2398">HADOOP-2398</a>. Additional instrumentation for NameNode and RPC server.
  2068. Add support for accessing instrumentation statistics via JMX.<br />(Sanjay radia via dhruba)</li>
  2069. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2449">HADOOP-2449</a>. A return of the non-MR version of NNBench.<br />(Sanjay Radia via shv)</li>
  2070. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1989">HADOOP-1989</a>. Remove 'datanodecluster' command from bin/hadoop.<br />(Sanjay Radia via shv)</li>
  2071. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1742">HADOOP-1742</a>. Improve JavaDoc documentation for ClientProtocol, DFSClient,
  2072. and FSNamesystem.<br />(Konstantin Shvachko)</li>
  2073. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2298">HADOOP-2298</a>. Add Ant target for a binary-only distribution.<br />(Hrishikesh via nigel)</li>
  2074. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2509">HADOOP-2509</a>. Add Ant target for Rat report (Apache license header
  2075. reports).<br />(Hrishikesh via nigel)</li>
  2076. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2469">HADOOP-2469</a>. WritableUtils.clone should take a Configuration
  2077. instead of a JobConf.<br />(stack via omalley)</li>
  2078. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2659">HADOOP-2659</a>. Introduce superuser permissions for admin operations.
  2079. (Tsz Wo (Nicholas), SZE via shv)
  2080. </li>
  2081. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2596">HADOOP-2596</a>. Added a SequenceFile.createWriter api which allows the user
  2082. to specify the blocksize, replication factor and the buffersize to be
  2083. used for the underlying HDFS file.<br />(Alejandro Abdelnur via acmurthy)</li>
  2084. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2431">HADOOP-2431</a>. Test HDFS File Permissions.<br />(Hairong Kuang via shv)</li>
  2085. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2232">HADOOP-2232</a>. Add an option to disable Nagle's algorithm in the IPC stack.<br />(Clint Morgan via cdouglas)</li>
  2086. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2342">HADOOP-2342</a>. Created a micro-benchmark for measuring
  2087. local-file versus hdfs reads.<br />(Owen O'Malley via nigel)</li>
  2088. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2529">HADOOP-2529</a>. First version of HDFS User Guide.<br />(Raghu Angadi)</li>
  2089. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2690">HADOOP-2690</a>. Add jar-test target to build.xml, separating compilation
  2090. and packaging of the test classes.<br />(Enis Soztutar via cdouglas)</li>
  2091. </ol>
  2092. </li>
  2093. <li><a href="javascript:toggleList('release_0.16.0_-_2008-02-07_._optimizations_')"> OPTIMIZATIONS
  2094. </a>&nbsp;&nbsp;&nbsp;(4)
  2095. <ol id="release_0.16.0_-_2008-02-07_._optimizations_">
  2096. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1898">HADOOP-1898</a>. Release the lock protecting the last time of the last stack
  2097. dump while the dump is happening.<br />(Amareshwari Sri Ramadasu via omalley)</li>
  2098. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1900">HADOOP-1900</a>. Makes the heartbeat and task event queries interval
  2099. dependent on the cluster size.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  2100. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2208">HADOOP-2208</a>. Counter update frequency (from TaskTracker to JobTracker) is
  2101. capped at 1 minute.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  2102. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2284">HADOOP-2284</a>. Reduce the number of progress updates during the sorting in
  2103. the map task.<br />(Amar Kamat via ddas)</li>
  2104. </ol>
  2105. </li>
  2106. <li><a href="javascript:toggleList('release_0.16.0_-_2008-02-07_._bug_fixes_')"> BUG FIXES
  2107. </a>&nbsp;&nbsp;&nbsp;(90)
  2108. <ol id="release_0.16.0_-_2008-02-07_._bug_fixes_">
  2109. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2583">HADOOP-2583</a>. Fixes a bug in the Eclipse plug-in UI to edit locations.
  2110. Plug-in version is now synchronized with Hadoop version.
  2111. </li>
  2112. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2100">HADOOP-2100</a>. Remove faulty check for existence of $HADOOP_PID_DIR and let
  2113. 'mkdir -p' check &amp; create it.<br />(Michael Bieniosek via acmurthy)</li>
  2114. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1642">HADOOP-1642</a>. Ensure jobids generated by LocalJobRunner are unique to
  2115. avoid collissions and hence job-failures.<br />(Doug Cutting via acmurthy)</li>
  2116. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2096">HADOOP-2096</a>. Close open file-descriptors held by streams while localizing
  2117. job.xml in the JobTracker and while displaying it on the webui in
  2118. jobconf.jsp.<br />(Amar Kamat via acmurthy)</li>
  2119. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2098">HADOOP-2098</a>. Log start &amp; completion of empty jobs to JobHistory, which
  2120. also ensures that we close the file-descriptor of the job's history log
  2121. opened during job-submission.<br />(Amar Kamat via acmurthy)</li>
  2122. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2112">HADOOP-2112</a>. Adding back changes to build.xml lost while reverting
  2123. <a href="http://issues.apache.org/jira/browse/HADOOP-1622">HADOOP-1622</a> i.e. http://svn.apache.org/viewvc?view=rev&amp;revision=588771.<br />(acmurthy)</li>
  2124. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2089">HADOOP-2089</a>. Fixes the command line argument handling to handle multiple
  2125. -cacheArchive in Hadoop streaming.<br />(Lohit Vijayarenu via ddas)</li>
  2126. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2071">HADOOP-2071</a>. Fix StreamXmlRecordReader to use a BufferedInputStream
  2127. wrapped over the DFSInputStream since mark/reset aren't supported by
  2128. DFSInputStream anymore.<br />(Lohit Vijayarenu via acmurthy)</li>
  2129. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1348">HADOOP-1348</a>. Allow XML comments inside configuration files.<br />(Rajagopal Natarajan and Enis Soztutar via enis)</li>
  2130. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1952">HADOOP-1952</a>. Improve handling of invalid, user-specified classes while
  2131. configuring streaming jobs such as combiner, input/output formats etc.
  2132. Now invalid options are caught, logged and jobs are failed early.<br />(Lohit
  2133. Vijayarenu via acmurthy)</li>
  2134. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2151">HADOOP-2151</a>. FileSystem.globPaths validates the list of Paths that
  2135. it returns.<br />(Lohit Vijayarenu via dhruba)</li>
  2136. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2121">HADOOP-2121</a>. Cleanup DFSOutputStream when the stream encountered errors
  2137. when Datanodes became full.<br />(Raghu Angadi via dhruba)</li>
  2138. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1130">HADOOP-1130</a>. The FileSystem.closeAll() method closes all existing
  2139. DFSClients.<br />(Chris Douglas via dhruba)</li>
  2140. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2204">HADOOP-2204</a>. DFSTestUtil.waitReplication was not waiting for all replicas
  2141. to get created, thus causing unit test failure.<br />(Raghu Angadi via dhruba)</li>
  2142. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2078">HADOOP-2078</a>. An zero size file may have no blocks associated with it.<br />(Konstantin Shvachko via dhruba)</li>
  2143. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2212">HADOOP-2212</a>. ChecksumFileSystem.getSumBufferSize might throw
  2144. java.lang.ArithmeticException. The fix is to initialize bytesPerChecksum
  2145. to 0.<br />(Michael Bieniosek via ddas)</li>
  2146. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2216">HADOOP-2216</a>. Fix jobtasks.jsp to ensure that it first collects the
  2147. taskids which satisfy the filtering criteria and then use that list to
  2148. print out only the required task-reports, previously it was oblivious to
  2149. the filtering and hence used the wrong index into the array of task-reports.<br />(Amar Kamat via acmurthy)</li>
  2150. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2272">HADOOP-2272</a>. Fix findbugs target to reflect changes made to the location
  2151. of the streaming jar file by <a href="http://issues.apache.org/jira/browse/HADOOP-2207">HADOOP-2207</a>.<br />(Adrian Woodhead via nigel)</li>
  2152. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2244">HADOOP-2244</a>. Fixes the MapWritable.readFields to clear the instance
  2153. field variable every time readFields is called. (Michael Stack via ddas).
  2154. </li>
  2155. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2245">HADOOP-2245</a>. Fixes LocalJobRunner to include a jobId in the mapId. Also,
  2156. adds a testcase for JobControl. (Adrian Woodhead via ddas).
  2157. </li>
  2158. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2275">HADOOP-2275</a>. Fix erroneous detection of corrupted file when namenode
  2159. fails to allocate any datanodes for newly allocated block.<br />(Dhruba Borthakur via dhruba)</li>
  2160. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2256">HADOOP-2256</a>. Fix a buf in the namenode that could cause it to encounter
  2161. an infinite loop while deleting excess replicas that were created by
  2162. block rebalancing.<br />(Hairong Kuang via dhruba)</li>
  2163. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2209">HADOOP-2209</a>. SecondaryNamenode process exits if it encounters exceptions
  2164. that it cannot handle.<br />(Dhruba Borthakur via dhruba)</li>
  2165. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2314">HADOOP-2314</a>. Prevent TestBlockReplacement from occasionally getting
  2166. into an infinite loop.<br />(Hairong Kuang via dhruba)</li>
  2167. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2300">HADOOP-2300</a>. This fixes a bug where mapred.tasktracker.tasks.maximum
  2168. would be ignored even if it was set in hadoop-site.xml.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  2169. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2349">HADOOP-2349</a>. Improve code layout in file system transaction logging code.
  2170. (Tsz Wo (Nicholas), SZE via dhruba)
  2171. </li>
  2172. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2368">HADOOP-2368</a>. Fix unit tests on Windows.
  2173. (Tsz Wo (Nicholas), SZE via dhruba)
  2174. </li>
  2175. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2363">HADOOP-2363</a>. This fix allows running multiple instances of the unit test
  2176. in parallel. The bug was introduced in <a href="http://issues.apache.org/jira/browse/HADOOP-2185">HADOOP-2185</a> that changed
  2177. port-rolling behaviour.<br />(Konstantin Shvachko via dhruba)</li>
  2178. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2271">HADOOP-2271</a>. Fix chmod task to be non-parallel.<br />(Adrian Woodhead via
  2179. omalley)</li>
  2180. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2313">HADOOP-2313</a>. Fail the build if building libhdfs fails.<br />(nigel via omalley)</li>
  2181. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2359">HADOOP-2359</a>. Remove warning for interruptted exception when closing down
  2182. minidfs.<br />(dhruba via omalley)</li>
  2183. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1841">HADOOP-1841</a>. Prevent slow clients from consuming threads in the NameNode.<br />(dhruba)</li>
  2184. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2323">HADOOP-2323</a>. JobTracker.close() should not print stack traces for
  2185. normal exit.<br />(jimk via cutting)</li>
  2186. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2376">HADOOP-2376</a>. Prevents sort example from overriding the number of maps.<br />(Owen O'Malley via ddas)</li>
  2187. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2434">HADOOP-2434</a>. FSDatasetInterface read interface causes HDFS reads to occur
  2188. in 1 byte chunks, causing performance degradation.<br />(Raghu Angadi via dhruba)</li>
  2189. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2459">HADOOP-2459</a>. Fix package target so that src/docs/build files are not
  2190. included in the release.<br />(nigel)</li>
  2191. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2215">HADOOP-2215</a>. Fix documentation in cluster_setup.html &amp;
  2192. mapred_tutorial.html reflect that mapred.tasktracker.tasks.maximum has
  2193. been superceeded by mapred.tasktracker.{map|reduce}.tasks.maximum.<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  2194. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2459">HADOOP-2459</a>. Fix package target so that src/docs/build files are not
  2195. included in the release.<br />(nigel)</li>
  2196. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2352">HADOOP-2352</a>. Remove AC_CHECK_LIB for libz and liblzo to ensure that
  2197. libhadoop.so doesn't have a dependency on them.<br />(acmurthy)</li>
  2198. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2453">HADOOP-2453</a>. Fix the configuration for wordcount-simple example in Hadoop
  2199. Pipes which currently produces an XML parsing error.<br />(Amareshwari Sri
  2200. Ramadasu via acmurthy)</li>
  2201. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2476">HADOOP-2476</a>. Unit test failure while reading permission bits of local
  2202. file system (on Windows) fixed.<br />(Raghu Angadi via dhruba)</li>
  2203. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2247">HADOOP-2247</a>. Fine-tune the strategies for killing mappers and reducers
  2204. due to failures while fetching map-outputs. Now the map-completion times
  2205. and number of currently running reduces are taken into account by the
  2206. JobTracker before killing the mappers, while the progress made by the
  2207. reducer and the number of fetch-failures vis-a-vis total number of
  2208. fetch-attempts are taken into account before teh reducer kills itself.<br />(Amar Kamat via acmurthy)</li>
  2209. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2452">HADOOP-2452</a>. Fix eclipse plug-in build.xml to refers to the right
  2210. location where hadoop-*-core.jar is generated.<br />(taton)</li>
  2211. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2492">HADOOP-2492</a>. Additional debugging in the rpc server to better
  2212. diagnose ConcurrentModificationException.<br />(dhruba)</li>
  2213. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2344">HADOOP-2344</a>. Enhance the utility for executing shell commands to read the
  2214. stdout/stderr streams while waiting for the command to finish (to free up
  2215. the buffers). Also, this patch throws away stderr of the DF utility.
  2216. @deprecated
  2217. org.apache.hadoop.fs.ShellCommand for org.apache.hadoop.util.Shell
  2218. org.apache.hadoop.util.ShellUtil for
  2219. org.apache.hadoop.util.Shell.ShellCommandExecutor<br />(Amar Kamat via acmurthy)</li>
  2220. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2511">HADOOP-2511</a>. Fix a javadoc warning in org.apache.hadoop.util.Shell
  2221. introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-2344">HADOOP-2344</a>.<br />(acmurthy)</li>
  2222. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2442">HADOOP-2442</a>. Fix TestLocalFileSystemPermission.testLocalFSsetOwner
  2223. to work on more platforms.<br />(Raghu Angadi via nigel)</li>
  2224. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2488">HADOOP-2488</a>. Fix a regression in random read performance.<br />(Michael Stack via rangadi)</li>
  2225. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2523">HADOOP-2523</a>. Fix TestDFSShell.testFilePermissions on Windows.<br />(Raghu Angadi via nigel)</li>
  2226. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2535">HADOOP-2535</a>. Removed support for deprecated mapred.child.heap.size and
  2227. fixed some indentation issues in TaskRunner. (acmurthy)
  2228. Configuration changes to hadoop-default.xml:
  2229. remove mapred.child.heap.size
  2230. </li>
  2231. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2512">HADOOP-2512</a>. Fix error stream handling in Shell. Use exit code to
  2232. detect shell command errors in RawLocalFileSystem.<br />(Raghu Angadi)</li>
  2233. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2446">HADOOP-2446</a>. Fixes TestHDFSServerPorts and TestMRServerPorts so they
  2234. do not rely on statically configured ports and cleanup better.<br />(nigel)</li>
  2235. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2537">HADOOP-2537</a>. Make build process compatible with Ant 1.7.0.<br />(Hrishikesh via nigel)</li>
  2236. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1281">HADOOP-1281</a>. Ensure running tasks of completed map TIPs (e.g. speculative
  2237. tasks) are killed as soon as the TIP completed.<br />(acmurthy)</li>
  2238. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2571">HADOOP-2571</a>. Suppress a suprious warning in test code.<br />(cdouglas)</li>
  2239. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2481">HADOOP-2481</a>. NNBench report its progress periodically.<br />(Hairong Kuang via dhruba)</li>
  2240. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2601">HADOOP-2601</a>. Start name-node on a free port for TestNNThroughputBenchmark.<br />(Konstantin Shvachko)</li>
  2241. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2494">HADOOP-2494</a>. Set +x on contrib/*/bin/* in packaged tar bundle.<br />(stack via tomwhite)</li>
  2242. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2605">HADOOP-2605</a>. Remove bogus leading slash in task-tracker report bindAddress.<br />(Konstantin Shvachko)</li>
  2243. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2620">HADOOP-2620</a>. Trivial. 'bin/hadoop fs -help' did not list chmod, chown, and
  2244. chgrp.<br />(Raghu Angadi)</li>
  2245. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2614">HADOOP-2614</a>. The DFS WebUI accesses are configured to be from the user
  2246. specified by dfs.web.ugi. (Tsz Wo (Nicholas), SZE via dhruba)
  2247. </li>
  2248. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2543">HADOOP-2543</a>. Implement a "no-permission-checking" mode for smooth
  2249. upgrade from a pre-0.16 install of HDFS.<br />(Hairong Kuang via dhruba)</li>
  2250. <li><a href="http://issues.apache.org/jira/browse/HADOOP-290">HADOOP-290</a>. A DataNode log message now prints the target of a replication
  2251. request correctly.<br />(dhruba)</li>
  2252. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2538">HADOOP-2538</a>. Redirect to a warning, if plaintext parameter is true but
  2253. the filter parameter is not given in TaskLogServlet.<br />(Michael Bieniosek via enis)</li>
  2254. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2582">HADOOP-2582</a>. Prevent 'bin/hadoop fs -copyToLocal' from creating
  2255. zero-length files when the src does not exist.<br />(Lohit Vijayarenu via cdouglas)</li>
  2256. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2189">HADOOP-2189</a>. Incrementing user counters should count as progress.<br />(ddas)</li>
  2257. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2649">HADOOP-2649</a>. The NameNode periodically computes replication work for
  2258. the datanodes. The periodicity of this computation is now configurable.<br />(dhruba)</li>
  2259. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2549">HADOOP-2549</a>. Correct disk size computation so that data-nodes could switch
  2260. to other local drives if current is full.<br />(Hairong Kuang via shv)</li>
  2261. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2633">HADOOP-2633</a>. Fsck should call name-node methods directly rather than
  2262. through rpc. (Tsz Wo (Nicholas), SZE via shv)
  2263. </li>
  2264. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2687">HADOOP-2687</a>. Modify a few log message generated by dfs client to be
  2265. logged only at INFO level.<br />(stack via dhruba)</li>
  2266. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2402">HADOOP-2402</a>. Fix BlockCompressorStream to ensure it buffers data before
  2267. sending it down to the compressor so that each write call doesn't
  2268. compress.<br />(Chris Douglas via acmurthy)</li>
  2269. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2645">HADOOP-2645</a>. The Metrics initialization code does not throw
  2270. exceptions when servers are restarted by MiniDFSCluster.<br />(Sanjay Radia via dhruba)</li>
  2271. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2691">HADOOP-2691</a>. Fix a race condition that was causing the DFSClient
  2272. to erroneously remove a good datanode from a pipeline that actually
  2273. had another datanode that was bad.<br />(dhruba)</li>
  2274. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1195">HADOOP-1195</a>. All code in FSNamesystem checks the return value
  2275. of getDataNode for null before using it.<br />(dhruba)</li>
  2276. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2640">HADOOP-2640</a>. Fix a bug in MultiFileSplitInputFormat that was always
  2277. returning 1 split in some circumstances.<br />(Enis Soztutar via nigel)</li>
  2278. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2626">HADOOP-2626</a>. Fix paths with special characters to work correctly
  2279. with the local filesystem.<br />(Thomas Friol via cutting)</li>
  2280. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2646">HADOOP-2646</a>. Fix SortValidator to work with fully-qualified
  2281. working directories.<br />(Arun C Murthy via nigel)</li>
  2282. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2092">HADOOP-2092</a>. Added a ping mechanism to the pipes' task to periodically
  2283. check if the parent Java task is running, and exit if the parent isn't
  2284. alive and responding.<br />(Amareshwari Sri Ramadasu via acmurthy)</li>
  2285. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2714">HADOOP-2714</a>. TestDecommission failed on windows because the replication
  2286. request was timing out.<br />(dhruba)</li>
  2287. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2576">HADOOP-2576</a>. Namenode performance degradation over time triggered by
  2288. large heartbeat interval.<br />(Raghu Angadi)</li>
  2289. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2713">HADOOP-2713</a>. TestDatanodeDeath failed on windows because the replication
  2290. request was timing out.<br />(dhruba)</li>
  2291. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2639">HADOOP-2639</a>. Fixes a problem to do with incorrect maintenance of values
  2292. for runningMapTasks/runningReduceTasks.<br />(Amar Kamat and Arun Murthy
  2293. via ddas)</li>
  2294. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2723">HADOOP-2723</a>. Fixed the check for checking whether to do user task
  2295. profiling.<br />(Amareshwari Sri Ramadasu via omalley)</li>
  2296. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2734">HADOOP-2734</a>. Link forrest docs to new http://hadoop.apache.org<br />(Doug Cutting via nigel)</li>
  2297. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2641">HADOOP-2641</a>. Added Apache license headers to 95 files.<br />(nigel)</li>
  2298. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2732">HADOOP-2732</a>. Fix bug in path globbing.<br />(Hairong Kuang via nigel)</li>
  2299. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2404">HADOOP-2404</a>. Fix backwards compatability with hadoop-0.15 configuration
  2300. files that was broken by <a href="http://issues.apache.org/jira/browse/HADOOP-2185">HADOOP-2185</a>.<br />(omalley)</li>
  2301. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2755">HADOOP-2755</a>. Fix fsck performance degradation because of permissions
  2302. issue. (Tsz Wo (Nicholas), SZE via dhruba)
  2303. </li>
  2304. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2768">HADOOP-2768</a>. Fix performance regression caused by <a href="http://issues.apache.org/jira/browse/HADOOP-1707">HADOOP-1707</a>.<br />(dhruba borthakur via nigel)</li>
  2305. <li><a href="http://issues.apache.org/jira/browse/HADOOP-3108">HADOOP-3108</a>. Fix NPE in setPermission and setOwner.<br />(shv)</li>
  2306. </ol>
  2307. </li>
  2308. </ul>
  2309. <h3><a href="javascript:toggleList('release_0.15.3_-_2008-01-18_')">Release 0.15.3 - 2008-01-18
  2310. </a></h3>
  2311. <ul id="release_0.15.3_-_2008-01-18_">
  2312. <li><a href="javascript:toggleList('release_0.15.3_-_2008-01-18_._bug_fixes_')"> BUG FIXES
  2313. </a>&nbsp;&nbsp;&nbsp;(4)
  2314. <ol id="release_0.15.3_-_2008-01-18_._bug_fixes_">
  2315. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2562">HADOOP-2562</a>. globPaths supports {ab,cd}.<br />(Hairong Kuang via dhruba)</li>
  2316. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2540">HADOOP-2540</a>. fsck reports missing blocks incorrectly.<br />(dhruba)</li>
  2317. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2570">HADOOP-2570</a>. "work" directory created unconditionally, and symlinks
  2318. created from the task cwds.
  2319. </li>
  2320. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2574">HADOOP-2574</a>. Fixed mapred_tutorial.xml to correct minor errors with the
  2321. WordCount examples.<br />(acmurthy)</li>
  2322. </ol>
  2323. </li>
  2324. </ul>
  2325. <h3><a href="javascript:toggleList('release_0.15.2_-_2008-01-02_')">Release 0.15.2 - 2008-01-02
  2326. </a></h3>
  2327. <ul id="release_0.15.2_-_2008-01-02_">
  2328. <li><a href="javascript:toggleList('release_0.15.2_-_2008-01-02_._bug_fixes_')"> BUG FIXES
  2329. </a>&nbsp;&nbsp;&nbsp;(11)
  2330. <ol id="release_0.15.2_-_2008-01-02_._bug_fixes_">
  2331. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2246">HADOOP-2246</a>. Moved the changelog for <a href="http://issues.apache.org/jira/browse/HADOOP-1851">HADOOP-1851</a> from the NEW FEATURES
  2332. section to the INCOMPATIBLE CHANGES section.<br />(acmurthy)</li>
  2333. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2238">HADOOP-2238</a>. Fix TaskGraphServlet so that it sets the content type of
  2334. the response appropriately.<br />(Paul Saab via enis)</li>
  2335. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2129">HADOOP-2129</a>. Fix so that distcp works correctly when source is
  2336. HDFS but not the default filesystem. HDFS paths returned by the
  2337. listStatus() method are now fully-qualified.<br />(cutting)</li>
  2338. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2378">HADOOP-2378</a>. Fixes a problem where the last task completion event would
  2339. get created after the job completes.<br />(Alejandro Abdelnur via ddas)</li>
  2340. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2228">HADOOP-2228</a>. Checks whether a job with a certain jobId is already running
  2341. and then tries to create the JobInProgress object.<br />(Johan Oskarsson via ddas)</li>
  2342. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2422">HADOOP-2422</a>. dfs -cat multiple files fail with 'Unable to write to
  2343. output stream'.<br />(Raghu Angadi via dhruba)</li>
  2344. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2460">HADOOP-2460</a>. When the namenode encounters ioerrors on writing a
  2345. transaction log, it stops writing new transactions to that one.<br />(Raghu Angadi via dhruba)</li>
  2346. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2227">HADOOP-2227</a>. Use the LocalDirAllocator uniformly for handling all of the
  2347. temporary storage required for a given task. It also implies that
  2348. mapred.local.dir.minspacestart is handled by checking if there is enough
  2349. free-space on any one of the available disks.<br />(Amareshwari Sri Ramadasu
  2350. via acmurthy)</li>
  2351. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2437">HADOOP-2437</a>. Fix the LocalDirAllocator to choose the seed for the
  2352. round-robin disk selections randomly. This helps in spreading data across
  2353. multiple partitions much better.<br />(acmurhty)</li>
  2354. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2486">HADOOP-2486</a>. When the list of files from the InMemoryFileSystem is obtained
  2355. for merging, this patch will ensure that only those files whose checksums
  2356. have also got created (renamed) are returned.<br />(ddas)</li>
  2357. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2456">HADOOP-2456</a>. Hardcode English locale to prevent NumberFormatException
  2358. from occurring when starting the NameNode with certain locales.<br />(Matthias Friedrich via nigel)</li>
  2359. </ol>
  2360. </li>
  2361. <li><a href="javascript:toggleList('release_0.15.2_-_2008-01-02_._improvements_')"> IMPROVEMENTS
  2362. </a>&nbsp;&nbsp;&nbsp;(4)
  2363. <ol id="release_0.15.2_-_2008-01-02_._improvements_">
  2364. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2160">HADOOP-2160</a>. Remove project-level, non-user documentation from
  2365. releases, since it's now maintained in a separate tree.<br />(cutting)</li>
  2366. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1327">HADOOP-1327</a>. Add user documentation for streaming.<br />(cutting)</li>
  2367. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2382">HADOOP-2382</a>. Add hadoop-default.html to subversion.<br />(cutting)</li>
  2368. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2158">HADOOP-2158</a>. hdfsListDirectory calls FileSystem.listStatus instead
  2369. of FileSystem.listPaths. This reduces the number of RPC calls on the
  2370. namenode, thereby improving scalability.<br />(Christian Kunz via dhruba)</li>
  2371. </ol>
  2372. </li>
  2373. </ul>
  2374. <h3><a href="javascript:toggleList('release_0.15.1_-_2007-11-27_')">Release 0.15.1 - 2007-11-27
  2375. </a></h3>
  2376. <ul id="release_0.15.1_-_2007-11-27_">
  2377. <li><a href="javascript:toggleList('release_0.15.1_-_2007-11-27_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  2378. </a>&nbsp;&nbsp;&nbsp;(1)
  2379. <ol id="release_0.15.1_-_2007-11-27_._incompatible_changes_">
  2380. <li><a href="http://issues.apache.org/jira/browse/HADOOP-713">HADOOP-713</a>. Reduce CPU usage on namenode while listing directories.
  2381. FileSystem.listPaths does not return the size of the entire subtree.
  2382. Introduced a new API ClientProtocol.getContentLength that returns the
  2383. size of the subtree.<br />(Dhruba Borthakur via dhruba)</li>
  2384. </ol>
  2385. </li>
  2386. <li><a href="javascript:toggleList('release_0.15.1_-_2007-11-27_._improvements_')"> IMPROVEMENTS
  2387. </a>&nbsp;&nbsp;&nbsp;(1)
  2388. <ol id="release_0.15.1_-_2007-11-27_._improvements_">
  2389. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1917">HADOOP-1917</a>. Addition of guides/tutorial for better overall
  2390. documentation for Hadoop. Specifically:
  2391. * quickstart.html is targetted towards first-time users and helps them
  2392. setup a single-node cluster and play with Hadoop.
  2393. * cluster_setup.html helps admins to configure and setup non-trivial
  2394. hadoop clusters.
  2395. * mapred_tutorial.html is a comprehensive Map-Reduce tutorial.<br />(acmurthy)</li>
  2396. </ol>
  2397. </li>
  2398. <li><a href="javascript:toggleList('release_0.15.1_-_2007-11-27_._bug_fixes_')"> BUG FIXES
  2399. </a>&nbsp;&nbsp;&nbsp;(3)
  2400. <ol id="release_0.15.1_-_2007-11-27_._bug_fixes_">
  2401. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2174">HADOOP-2174</a>. Removed the unnecessary Reporter.setStatus call from
  2402. FSCopyFilesMapper.close which led to a NPE since the reporter isn't valid
  2403. in the close method.<br />(Chris Douglas via acmurthy)</li>
  2404. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2172">HADOOP-2172</a>. Restore performance of random access to local files
  2405. by caching positions of local input streams, avoiding a system
  2406. call.<br />(cutting)</li>
  2407. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2205">HADOOP-2205</a>. Regenerate the Hadoop website since some of the changes made
  2408. by <a href="http://issues.apache.org/jira/browse/HADOOP-1917">HADOOP-1917</a> weren't correctly copied over to the trunk/docs directory.
  2409. Also fixed a couple of minor typos and broken links.<br />(acmurthy)</li>
  2410. </ol>
  2411. </li>
  2412. </ul>
  2413. <h3><a href="javascript:toggleList('release_0.15.0_-_2007-11-2_')">Release 0.15.0 - 2007-11-2
  2414. </a></h3>
  2415. <ul id="release_0.15.0_-_2007-11-2_">
  2416. <li><a href="javascript:toggleList('release_0.15.0_-_2007-11-2_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  2417. </a>&nbsp;&nbsp;&nbsp;(10)
  2418. <ol id="release_0.15.0_-_2007-11-2_._incompatible_changes_">
  2419. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1708">HADOOP-1708</a>. Make files appear in namespace as soon as they are
  2420. created.<br />(Dhruba Borthakur via dhruba)</li>
  2421. <li><a href="http://issues.apache.org/jira/browse/HADOOP-999">HADOOP-999</a>. A HDFS Client immediately informs the NameNode of a new
  2422. file creation. ClientProtocol version changed from 14 to 15.
  2423. (Tsz Wo (Nicholas), SZE via dhruba)
  2424. </li>
  2425. <li><a href="http://issues.apache.org/jira/browse/HADOOP-932">HADOOP-932</a>. File locking interfaces and implementations (that were
  2426. earlier deprecated) are removed. Client Protocol version changed
  2427. from 15 to 16.<br />(Raghu Angadi via dhruba)</li>
  2428. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1621">HADOOP-1621</a>. FileStatus is now a concrete class and FileSystem.listPaths
  2429. is deprecated and replaced with listStatus.<br />(Chris Douglas via omalley)</li>
  2430. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1656">HADOOP-1656</a>. The blockSize of a file is stored persistently in the file
  2431. inode.<br />(Dhruba Borthakur via dhruba)</li>
  2432. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1838">HADOOP-1838</a>. The blocksize of files created with an earlier release is
  2433. set to the default block size.<br />(Dhruba Borthakur via dhruba)</li>
  2434. <li><a href="http://issues.apache.org/jira/browse/HADOOP-785">HADOOP-785</a>. Add support for 'final' Configuration parameters,
  2435. removing support for 'mapred-default.xml', and changing
  2436. 'hadoop-site.xml' to not override other files. Now folks should
  2437. generally use 'hadoop-site.xml' for all configurations. Values
  2438. with a 'final' tag may not be overridden by subsequently loaded
  2439. configuration files, e.g., by jobs.<br />(Arun C. Murthy via cutting)</li>
  2440. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1846">HADOOP-1846</a>. DatanodeReport in ClientProtocol can report live
  2441. datanodes, dead datanodes or all datanodes. Client Protocol version
  2442. changed from 17 to 18.<br />(Hairong Kuang via dhruba)</li>
  2443. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1851">HADOOP-1851</a>. Permit specification of map output compression type
  2444. and codec, independent of the final output's compression
  2445. parameters.<br />(Arun C Murthy via cutting)</li>
  2446. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1819">HADOOP-1819</a>. Jobtracker cleanups, including binding ports before
  2447. clearing state directories, so that inadvertently starting a
  2448. second jobtracker doesn't trash one that's already running. Removed
  2449. method JobTracker.getTracker() because the static variable, which
  2450. stored the value caused initialization problems.<br />(omalley via cutting)</li>
  2451. </ol>
  2452. </li>
  2453. <li><a href="javascript:toggleList('release_0.15.0_-_2007-11-2_._new_features_')"> NEW FEATURES
  2454. </a>&nbsp;&nbsp;&nbsp;(14)
  2455. <ol id="release_0.15.0_-_2007-11-2_._new_features_">
  2456. <li><a href="http://issues.apache.org/jira/browse/HADOOP-89">HADOOP-89</a>. A client can access file data even before the creator
  2457. has closed the file. Introduce a new command "tail" from dfs shell.<br />(Dhruba Borthakur via dhruba)</li>
  2458. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1636">HADOOP-1636</a>. Allow configuration of the number of jobs kept in
  2459. memory by the JobTracker.<br />(Michael Bieniosek via omalley)</li>
  2460. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1667">HADOOP-1667</a>. Reorganize CHANGES.txt into sections to make it
  2461. easier to read. Also remove numbering, to make merging easier.<br />(cutting)</li>
  2462. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1610">HADOOP-1610</a>. Add metrics for failed tasks.<br />(Devaraj Das via tomwhite)</li>
  2463. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1767">HADOOP-1767</a>. Add "bin/hadoop job -list" sub-command.<br />(taton via cutting)</li>
  2464. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1351">HADOOP-1351</a>. Add "bin/hadoop job [-fail-task|-kill-task]" sub-commands
  2465. to terminate a particular task-attempt.<br />(Enis Soztutar via acmurthy)</li>
  2466. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1880">HADOOP-1880</a>. SleepJob : An example job that sleeps at each map and
  2467. reduce task.<br />(enis)</li>
  2468. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1809">HADOOP-1809</a>. Add a link in web site to #hadoop IRC channel.<br />(enis)</li>
  2469. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1894">HADOOP-1894</a>. Add percentage graphs and mapred task completion graphs
  2470. to Web User Interface. Users not using Firefox may install a plugin to
  2471. their browsers to see svg graphics.<br />(enis)</li>
  2472. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1914">HADOOP-1914</a>. Introduce a new NamenodeProtocol to allow secondary
  2473. namenodes and rebalancing processes to communicate with a primary
  2474. namenode.<br />(Hairong Kuang via dhruba)</li>
  2475. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1963">HADOOP-1963</a>. Add a FileSystem implementation for the Kosmos
  2476. Filesystem (KFS).<br />(Sriram Rao via cutting)</li>
  2477. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1822">HADOOP-1822</a>. Allow the specialization and configuration of socket
  2478. factories. Provide a StandardSocketFactory, and a SocksSocketFactory to
  2479. allow the use of SOCKS proxies. (taton).
  2480. </li>
  2481. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1968">HADOOP-1968</a>. FileSystem supports wildcard input syntax "{ }".<br />(Hairong Kuang via dhruba)</li>
  2482. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2566">HADOOP-2566</a>. Add globStatus method to the FileSystem interface
  2483. and deprecate globPath and listPath.<br />(Hairong Kuang via hairong)</li>
  2484. </ol>
  2485. </li>
  2486. <li><a href="javascript:toggleList('release_0.15.0_-_2007-11-2_._optimizations_')"> OPTIMIZATIONS
  2487. </a>&nbsp;&nbsp;&nbsp;(8)
  2488. <ol id="release_0.15.0_-_2007-11-2_._optimizations_">
  2489. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1910">HADOOP-1910</a>. Reduce the number of RPCs that DistributedFileSystem.create()
  2490. makes to the namenode.<br />(Raghu Angadi via dhruba)</li>
  2491. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1565">HADOOP-1565</a>. Reduce memory usage of NameNode by replacing
  2492. TreeMap in HDFS Namespace with ArrayList.<br />(Dhruba Borthakur via dhruba)</li>
  2493. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1743">HADOOP-1743</a>. Change DFS INode from a nested class to standalone
  2494. class, with specialized subclasses for directories and files, to
  2495. save memory on the namenode.<br />(Konstantin Shvachko via cutting)</li>
  2496. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1759">HADOOP-1759</a>. Change file name in INode from String to byte[],
  2497. saving memory on the namenode.<br />(Konstantin Shvachko via cutting)</li>
  2498. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1766">HADOOP-1766</a>. Save memory in namenode by having BlockInfo extend
  2499. Block, and replace many uses of Block with BlockInfo.<br />(Konstantin Shvachko via cutting)</li>
  2500. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1687">HADOOP-1687</a>. Save memory in namenode by optimizing BlockMap
  2501. representation.<br />(Konstantin Shvachko via cutting)</li>
  2502. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1774">HADOOP-1774</a>. Remove use of INode.parent in Block CRC upgrade.<br />(Raghu Angadi via dhruba)</li>
  2503. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1788">HADOOP-1788</a>. Increase the buffer size on the Pipes command socket.<br />(Amareshwari Sri Ramadasu and Christian Kunz via omalley)</li>
  2504. </ol>
  2505. </li>
  2506. <li><a href="javascript:toggleList('release_0.15.0_-_2007-11-2_._bug_fixes_')"> BUG FIXES
  2507. </a>&nbsp;&nbsp;&nbsp;(64)
  2508. <ol id="release_0.15.0_-_2007-11-2_._bug_fixes_">
  2509. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1946">HADOOP-1946</a>. The Datanode code does not need to invoke du on
  2510. every heartbeat.<br />(Hairong Kuang via dhruba)</li>
  2511. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1935">HADOOP-1935</a>. Fix a NullPointerException in internalReleaseCreate.<br />(Dhruba Borthakur)</li>
  2512. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1933">HADOOP-1933</a>. The nodes listed in include and exclude files
  2513. are always listed in the datanode report.<br />(Raghu Angadi via dhruba)</li>
  2514. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1953">HADOOP-1953</a>. The job tracker should wait beteween calls to try and delete
  2515. the system directory<br />(Owen O'Malley via devaraj)</li>
  2516. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1932">HADOOP-1932</a>. TestFileCreation fails with message saying filestatus.dat
  2517. is of incorrect size.<br />(Dhruba Borthakur via dhruba)</li>
  2518. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1573">HADOOP-1573</a>. Support for 0 reducers in PIPES.<br />(Owen O'Malley via devaraj)</li>
  2519. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1500">HADOOP-1500</a>. Fix typographical errors in the DFS WebUI.<br />(Nigel Daley via dhruba)</li>
  2520. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1076">HADOOP-1076</a>. Periodic checkpoint can continue even if an earlier
  2521. checkpoint encountered an error.<br />(Dhruba Borthakur via dhruba)</li>
  2522. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1887">HADOOP-1887</a>. The Namenode encounters an ArrayIndexOutOfBoundsException
  2523. while listing a directory that had a file that was
  2524. being actively written to.<br />(Dhruba Borthakur via dhruba)</li>
  2525. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1904">HADOOP-1904</a>. The Namenode encounters an exception because the
  2526. list of blocks per datanode-descriptor was corrupted.<br />(Konstantin Shvachko via dhruba)</li>
  2527. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1762">HADOOP-1762</a>. The Namenode fsimage does not contain a list of
  2528. Datanodes.<br />(Raghu Angadi via dhruba)</li>
  2529. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1890">HADOOP-1890</a>. Removed debugging prints introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-1774">HADOOP-1774</a>.<br />(Raghu Angadi via dhruba)</li>
  2530. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1763">HADOOP-1763</a>. Too many lost task trackers on large clusters due to
  2531. insufficient number of RPC handler threads on the JobTracker.<br />(Devaraj Das)</li>
  2532. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1463">HADOOP-1463</a>. HDFS report correct usage statistics for disk space
  2533. used by HDFS.<br />(Hairong Kuang via dhruba)</li>
  2534. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1692">HADOOP-1692</a>. In DFS ant task, don't cache the Configuration.<br />(Chris Douglas via cutting)</li>
  2535. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1726">HADOOP-1726</a>. Remove lib/jetty-ext/ant.jar.<br />(omalley)</li>
  2536. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1772">HADOOP-1772</a>. Fix hadoop-daemon.sh script to get correct hostname
  2537. under Cygwin. (Tsz Wo (Nicholas), SZE via cutting)
  2538. </li>
  2539. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1749">HADOOP-1749</a>. Change TestDFSUpgrade to sort files, fixing sporadic
  2540. test failures.<br />(Enis Soztutar via cutting)</li>
  2541. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1748">HADOOP-1748</a>. Fix tasktracker to be able to launch tasks when log
  2542. directory is relative.<br />(omalley via cutting)</li>
  2543. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1775">HADOOP-1775</a>. Fix a NullPointerException and an
  2544. IllegalArgumentException in MapWritable.<br />(Jim Kellerman via cutting)</li>
  2545. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1795">HADOOP-1795</a>. Fix so that jobs can generate output file names with
  2546. special characters.<br />(Fr??d??ric Bertin via cutting)</li>
  2547. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1810">HADOOP-1810</a>. Fix incorrect value type in MRBench (SmallJobs)<br />(Devaraj Das via tomwhite)</li>
  2548. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1806">HADOOP-1806</a>. Fix ant task to compile again, also fix default
  2549. builds to compile ant tasks.<br />(Chris Douglas via cutting)</li>
  2550. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1758">HADOOP-1758</a>. Fix escape processing in librecordio to not be
  2551. quadratic.<br />(Vivek Ratan via cutting)</li>
  2552. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1817">HADOOP-1817</a>. Fix MultiFileSplit to read and write the split
  2553. length, so that it is not always zero in map tasks.<br />(Thomas Friol via cutting)</li>
  2554. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1853">HADOOP-1853</a>. Fix contrib/streaming to accept multiple -cacheFile
  2555. options.<br />(Prachi Gupta via cutting)</li>
  2556. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1818">HADOOP-1818</a>. Fix MultiFileInputFormat so that it does not return
  2557. empty splits when numPaths &lt; numSplits.<br />(Thomas Friol via enis)</li>
  2558. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1840">HADOOP-1840</a>. Fix race condition which leads to task's diagnostic
  2559. messages getting lost.<br />(acmurthy)</li>
  2560. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1885">HADOOP-1885</a>. Fix race condition in MiniDFSCluster shutdown.<br />(Chris Douglas via nigel)</li>
  2561. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1889">HADOOP-1889</a>. Fix path in EC2 scripts for building your own AMI.<br />(tomwhite)</li>
  2562. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1892">HADOOP-1892</a>. Fix a NullPointerException in the JobTracker when
  2563. trying to fetch a task's diagnostic messages from the JobClient.<br />(Amar Kamat via acmurthy)</li>
  2564. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1897">HADOOP-1897</a>. Completely remove about.html page from the web site.<br />(enis)</li>
  2565. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1907">HADOOP-1907</a>. Fix null pointer exception when getting task diagnostics
  2566. in JobClient.<br />(Christian Kunz via omalley)</li>
  2567. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1882">HADOOP-1882</a>. Remove spurious asterisks from decimal number displays.<br />(Raghu Angadi via cutting)</li>
  2568. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1783">HADOOP-1783</a>. Make S3 FileSystem return Paths fully-qualified with
  2569. scheme and host.<br />(tomwhite)</li>
  2570. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1925">HADOOP-1925</a>. Make pipes' autoconf script look for libsocket and libnsl, so
  2571. that it can compile under Solaris.<br />(omalley)</li>
  2572. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1940">HADOOP-1940</a>. TestDFSUpgradeFromImage must shut down its MiniDFSCluster.<br />(Chris Douglas via nigel)</li>
  2573. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1930">HADOOP-1930</a>. Fix the blame for failed fetchs on the right host.<br />(Arun C.
  2574. Murthy via omalley)</li>
  2575. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1934">HADOOP-1934</a>. Fix the platform name on Mac to use underscores rather than
  2576. spaces.<br />(omalley)</li>
  2577. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1959">HADOOP-1959</a>. Use "/" instead of File.separator in the StatusHttpServer.<br />(jimk via omalley)</li>
  2578. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1626">HADOOP-1626</a>. Improve dfsadmin help messages.<br />(Lohit Vijayarenu via dhruba)</li>
  2579. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1695">HADOOP-1695</a>. The SecondaryNamenode waits for the Primary NameNode to
  2580. start up.<br />(Dhruba Borthakur)</li>
  2581. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1983">HADOOP-1983</a>. Have Pipes flush the command socket when progress is sent
  2582. to prevent timeouts during long computations.<br />(omalley)</li>
  2583. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1875">HADOOP-1875</a>. Non-existant directories or read-only directories are
  2584. filtered from dfs.client.buffer.dir.<br />(Hairong Kuang via dhruba)</li>
  2585. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1992">HADOOP-1992</a>. Fix the performance degradation in the sort validator.<br />(acmurthy via omalley)</li>
  2586. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1874">HADOOP-1874</a>. Move task-outputs' promotion/discard to a separate thread
  2587. distinct from the main heartbeat-processing thread. The main upside being
  2588. that we do not lock-up the JobTracker during HDFS operations, which
  2589. otherwise may lead to lost tasktrackers if the NameNode is unresponsive.<br />(Devaraj Das via acmurthy)</li>
  2590. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2026">HADOOP-2026</a>. Namenode prints out one log line for "Number of transactions"
  2591. at most once every minute.<br />(Dhruba Borthakur)</li>
  2592. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2022">HADOOP-2022</a>. Ensure that status information for successful tasks is correctly
  2593. recorded at the JobTracker, so that, for example, one may view correct
  2594. information via taskdetails.jsp. This bug was introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-1874">HADOOP-1874</a>.<br />(Amar Kamat via acmurthy)</li>
  2595. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2031">HADOOP-2031</a>. Correctly maintain the taskid which takes the TIP to
  2596. completion, failing which the case of lost tasktrackers isn't handled
  2597. properly i.e. the map TIP is incorrectly left marked as 'complete' and it
  2598. is never rescheduled elsewhere, leading to hung reduces.<br />(Devaraj Das via acmurthy)</li>
  2599. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2018">HADOOP-2018</a>. The source datanode of a data transfer waits for
  2600. a response from the target datanode before closing the data stream.<br />(Hairong Kuang via dhruba)</li>
  2601. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2023">HADOOP-2023</a>. Disable TestLocalDirAllocator on Windows.<br />(Hairong Kuang via nigel)</li>
  2602. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2016">HADOOP-2016</a>. Ignore status-updates from FAILED/KILLED tasks at the
  2603. TaskTracker. This fixes a race-condition which caused the tasks to wrongly
  2604. remain in the RUNNING state even after being killed by the JobTracker and
  2605. thus handicap the cleanup of the task's output sub-directory.<br />(acmurthy)</li>
  2606. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1771">HADOOP-1771</a>. Fix a NullPointerException in streaming caused by an
  2607. IOException in MROutputThread.<br />(lohit vijayarenu via nigel)</li>
  2608. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2028">HADOOP-2028</a>. Fix distcp so that the log dir does not need to be
  2609. specified and the destination does not need to exist.<br />(Chris Douglas via nigel)</li>
  2610. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2044">HADOOP-2044</a>. The namenode protects all lease manipulations using a
  2611. sortedLease lock.<br />(Dhruba Borthakur)</li>
  2612. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2051">HADOOP-2051</a>. The TaskCommit thread should not die for exceptions other
  2613. than the InterruptedException. This behavior is there for the other long
  2614. running threads in the JobTracker.<br />(Arun C Murthy via ddas)</li>
  2615. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1973">HADOOP-1973</a>. The FileSystem object would be accessed on the JobTracker
  2616. through a RPC in the InterTrackerProtocol. The check for the object being
  2617. null was missing and hence NPE would be thrown sometimes. This issue fixes
  2618. that problem.<br />(Amareshwari Sri Ramadasu via ddas)</li>
  2619. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2033">HADOOP-2033</a>. The SequenceFile.Writer.sync method was a no-op, which caused
  2620. very uneven splits for applications like distcp that count on them.<br />(omalley)</li>
  2621. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2070">HADOOP-2070</a>. Added a flush method to pipes' DownwardProtocol and call
  2622. that before waiting for the application to finish to ensure all buffered
  2623. data is flushed.<br />(Owen O'Malley via acmurthy)</li>
  2624. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2080">HADOOP-2080</a>. Fixed calculation of the checksum file size when the values
  2625. are large.<br />(omalley)</li>
  2626. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2048">HADOOP-2048</a>. Change error handling in distcp so that each map copies
  2627. as much as possible before reporting the error. Also report progress on
  2628. every copy.<br />(Chris Douglas via omalley)</li>
  2629. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2073">HADOOP-2073</a>. Change size of VERSION file after writing contents to it.<br />(Konstantin Shvachko via dhruba)</li>
  2630. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2102">HADOOP-2102</a>. Fix the deprecated ToolBase to pass its Configuration object
  2631. to the superceding ToolRunner to ensure it picks up the appropriate
  2632. configuration resources.<br />(Dennis Kubes and Enis Soztutar via acmurthy)</li>
  2633. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2103">HADOOP-2103</a>. Fix minor javadoc bugs introduce by <a href="http://issues.apache.org/jira/browse/HADOOP-2046">HADOOP-2046</a>.<br />(Nigel
  2634. Daley via acmurthy)</li>
  2635. </ol>
  2636. </li>
  2637. <li><a href="javascript:toggleList('release_0.15.0_-_2007-11-2_._improvements_')"> IMPROVEMENTS
  2638. </a>&nbsp;&nbsp;&nbsp;(37)
  2639. <ol id="release_0.15.0_-_2007-11-2_._improvements_">
  2640. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1908">HADOOP-1908</a>. Restructure data node code so that block sending and
  2641. receiving are seperated from data transfer header handling.<br />(Hairong Kuang via dhruba)</li>
  2642. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1921">HADOOP-1921</a>. Save the configuration of completed/failed jobs and make them
  2643. available via the web-ui.<br />(Amar Kamat via devaraj)</li>
  2644. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1266">HADOOP-1266</a>. Remove dependency of package org.apache.hadoop.net on
  2645. org.apache.hadoop.dfs.<br />(Hairong Kuang via dhruba)</li>
  2646. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1779">HADOOP-1779</a>. Replace INodeDirectory.getINode() by a getExistingPathINodes()
  2647. to allow the retrieval of all existing INodes along a given path in a
  2648. single lookup. This facilitates removal of the 'parent' field in the
  2649. inode.<br />(Christophe Taton via dhruba)</li>
  2650. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1756">HADOOP-1756</a>. Add toString() to some Writable-s.<br />(ab)</li>
  2651. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1727">HADOOP-1727</a>. New classes: MapWritable and SortedMapWritable.<br />(Jim Kellerman via ab)</li>
  2652. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1651">HADOOP-1651</a>. Improve progress reporting.<br />(Devaraj Das via tomwhite)</li>
  2653. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1595">HADOOP-1595</a>. dfsshell can wait for a file to achieve its intended
  2654. replication target. (Tsz Wo (Nicholas), SZE via dhruba)
  2655. </li>
  2656. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1693">HADOOP-1693</a>. Remove un-needed log fields in DFS replication classes,
  2657. since the log may be accessed statically.<br />(Konstantin Shvachko via cutting)</li>
  2658. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1231">HADOOP-1231</a>. Add generics to Mapper and Reducer interfaces.<br />(tomwhite via cutting)</li>
  2659. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1436">HADOOP-1436</a>. Improved command-line APIs, so that all tools need
  2660. not subclass ToolBase, and generic parameter parser is public.<br />(Enis Soztutar via cutting)</li>
  2661. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1703">HADOOP-1703</a>. DFS-internal code cleanups, removing several uses of
  2662. the obsolete UTF8.<br />(Christophe Taton via cutting)</li>
  2663. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1731">HADOOP-1731</a>. Add Hadoop's version to contrib jar file names.<br />(cutting)</li>
  2664. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1689">HADOOP-1689</a>. Make shell scripts more portable. All shell scripts
  2665. now explicitly depend on bash, but do not require that bash be
  2666. installed in a particular location, as long as it is on $PATH.<br />(cutting)</li>
  2667. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1744">HADOOP-1744</a>. Remove many uses of the deprecated UTF8 class from
  2668. the HDFS namenode.<br />(Christophe Taton via cutting)</li>
  2669. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1654">HADOOP-1654</a>. Add IOUtils class, containing generic io-related
  2670. utility methods.<br />(Enis Soztutar via cutting)</li>
  2671. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1158">HADOOP-1158</a>. Change JobTracker to record map-output transmission
  2672. errors and use them to trigger speculative re-execution of tasks.<br />(Arun C Murthy via cutting)</li>
  2673. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1601">HADOOP-1601</a>. Change GenericWritable to use ReflectionUtils for
  2674. instance creation, avoiding classloader issues, and to implement
  2675. Configurable.<br />(Enis Soztutar via cutting)</li>
  2676. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1750">HADOOP-1750</a>. Log standard output and standard error when forking
  2677. task processes.<br />(omalley via cutting)</li>
  2678. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1803">HADOOP-1803</a>. Generalize build.xml to make files in all
  2679. src/contrib/*/bin directories executable.<br />(stack via cutting)</li>
  2680. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1739">HADOOP-1739</a>. Let OS always choose the tasktracker's umbilical
  2681. port. Also switch default address for umbilical connections to
  2682. loopback.<br />(cutting)</li>
  2683. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1812">HADOOP-1812</a>. Let OS choose ports for IPC and RPC unit tests.<br />(cutting)</li>
  2684. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1825">HADOOP-1825</a>. Create $HADOOP_PID_DIR when it does not exist.<br />(Michael Bieniosek via cutting)</li>
  2685. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1425">HADOOP-1425</a>. Replace uses of ToolBase with the Tool interface.<br />(Enis Soztutar via cutting)</li>
  2686. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1569">HADOOP-1569</a>. Reimplement DistCP to use the standard FileSystem/URI
  2687. code in Hadoop so that you can copy from and to all of the supported file
  2688. systems.<br />(Chris Douglas via omalley)</li>
  2689. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1018">HADOOP-1018</a>. Improve documentation w.r.t handling of lost hearbeats between
  2690. TaskTrackers and JobTracker.<br />(acmurthy)</li>
  2691. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1718">HADOOP-1718</a>. Add ant targets for measuring code coverage with clover.<br />(simonwillnauer via nigel)</li>
  2692. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1592">HADOOP-1592</a>. Log error messages to the client console when tasks
  2693. fail.<br />(Amar Kamat via cutting)</li>
  2694. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1879">HADOOP-1879</a>. Remove some unneeded casts.<br />(Nilay Vaish via cutting)</li>
  2695. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1878">HADOOP-1878</a>. Add space between priority links on job details
  2696. page.<br />(Thomas Friol via cutting)</li>
  2697. <li><a href="http://issues.apache.org/jira/browse/HADOOP-120">HADOOP-120</a>. In ArrayWritable, prevent creation with null value
  2698. class, and improve documentation.<br />(Cameron Pope via cutting)</li>
  2699. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1926">HADOOP-1926</a>. Add a random text writer example/benchmark so that we can
  2700. benchmark compression codecs on random data.<br />(acmurthy via omalley)</li>
  2701. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1906">HADOOP-1906</a>. Warn the user if they have an obsolete madred-default.xml
  2702. file in their configuration directory.<br />(acmurthy via omalley)</li>
  2703. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1971">HADOOP-1971</a>. Warn when job does not specify a jar.<br />(enis via cutting)</li>
  2704. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1942">HADOOP-1942</a>. Increase the concurrency of transaction logging to
  2705. edits log. Reduce the number of syncs by double-buffering the changes
  2706. to the transaction log.<br />(Dhruba Borthakur)</li>
  2707. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2046">HADOOP-2046</a>. Improve mapred javadoc.<br />(Arun C. Murthy via cutting)</li>
  2708. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2105">HADOOP-2105</a>. Improve overview.html to clarify supported platforms,
  2709. software pre-requisites for hadoop, how to install them on various
  2710. platforms and a better general description of hadoop and it's utility.<br />(Jim Kellerman via acmurthy)</li>
  2711. </ol>
  2712. </li>
  2713. </ul>
  2714. <h3><a href="javascript:toggleList('release_0.14.4_-_2007-11-26_')">Release 0.14.4 - 2007-11-26
  2715. </a></h3>
  2716. <ul id="release_0.14.4_-_2007-11-26_">
  2717. <li><a href="javascript:toggleList('release_0.14.4_-_2007-11-26_._bug_fixes_')"> BUG FIXES
  2718. </a>&nbsp;&nbsp;&nbsp;(3)
  2719. <ol id="release_0.14.4_-_2007-11-26_._bug_fixes_">
  2720. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2140">HADOOP-2140</a>. Add missing Apache Licensing text at the front of several
  2721. C and C++ files.
  2722. </li>
  2723. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2169">HADOOP-2169</a>. Fix the DT_SONAME field of libhdfs.so to set it to the
  2724. correct value of 'libhdfs.so', currently it is set to the absolute path of
  2725. libhdfs.so.<br />(acmurthy)</li>
  2726. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2001">HADOOP-2001</a>. Make the job priority updates and job kills synchronized on
  2727. the JobTracker. Deadlock was seen in the JobTracker because of the lack of
  2728. this synchronization.<br />(Arun C Murthy via ddas)</li>
  2729. </ol>
  2730. </li>
  2731. </ul>
  2732. <h3><a href="javascript:toggleList('release_0.14.3_-_2007-10-19_')">Release 0.14.3 - 2007-10-19
  2733. </a></h3>
  2734. <ul id="release_0.14.3_-_2007-10-19_">
  2735. <li><a href="javascript:toggleList('release_0.14.3_-_2007-10-19_._bug_fixes_')"> BUG FIXES
  2736. </a>&nbsp;&nbsp;&nbsp;(3)
  2737. <ol id="release_0.14.3_-_2007-10-19_._bug_fixes_">
  2738. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2053">HADOOP-2053</a>. Fixed a dangling reference to a memory buffer in the map
  2739. output sorter.<br />(acmurthy via omalley)</li>
  2740. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2036">HADOOP-2036</a>. Fix a NullPointerException in JvmMetrics class.<br />(nigel)</li>
  2741. <li><a href="http://issues.apache.org/jira/browse/HADOOP-2043">HADOOP-2043</a>. Release 0.14.2 was compiled with Java 1.6 rather than
  2742. Java 1.5.<br />(cutting)</li>
  2743. </ol>
  2744. </li>
  2745. </ul>
  2746. <h3><a href="javascript:toggleList('release_0.14.2_-_2007-10-09_')">Release 0.14.2 - 2007-10-09
  2747. </a></h3>
  2748. <ul id="release_0.14.2_-_2007-10-09_">
  2749. <li><a href="javascript:toggleList('release_0.14.2_-_2007-10-09_._bug_fixes_')"> BUG FIXES
  2750. </a>&nbsp;&nbsp;&nbsp;(9)
  2751. <ol id="release_0.14.2_-_2007-10-09_._bug_fixes_">
  2752. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1948">HADOOP-1948</a>. Removed spurious error message during block crc upgrade.<br />(Raghu Angadi via dhruba)</li>
  2753. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1862">HADOOP-1862</a>. reduces are getting stuck trying to find map outputs.<br />(Arun C. Murthy via ddas)</li>
  2754. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1977">HADOOP-1977</a>. Fixed handling of ToolBase cli options in JobClient.<br />(enis via omalley)</li>
  2755. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1972">HADOOP-1972</a>. Fix LzoCompressor to ensure the user has actually asked
  2756. to finish compression.<br />(arun via omalley)</li>
  2757. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1970">HADOOP-1970</a>. Fix deadlock in progress reporting in the task.<br />(Vivek
  2758. Ratan via omalley)</li>
  2759. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1978">HADOOP-1978</a>. Name-node removes edits.new after a successful startup.<br />(Konstantin Shvachko via dhruba)</li>
  2760. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1955">HADOOP-1955</a>. The Namenode tries to not pick the same source Datanode for
  2761. a replication request if the earlier replication request for the same
  2762. block and that source Datanode had failed.<br />(Raghu Angadi via dhruba)</li>
  2763. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1961">HADOOP-1961</a>. The -get option to dfs-shell works when a single filename
  2764. is specified.<br />(Raghu Angadi via dhruba)</li>
  2765. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1997">HADOOP-1997</a>. TestCheckpoint closes the edits file after writing to it,
  2766. otherwise the rename of this file on Windows fails.<br />(Konstantin Shvachko via dhruba)</li>
  2767. </ol>
  2768. </li>
  2769. </ul>
  2770. <h3><a href="javascript:toggleList('release_0.14.1_-_2007-09-04_')">Release 0.14.1 - 2007-09-04
  2771. </a></h3>
  2772. <ul id="release_0.14.1_-_2007-09-04_">
  2773. <li><a href="javascript:toggleList('release_0.14.1_-_2007-09-04_._bug_fixes_')"> BUG FIXES
  2774. </a>&nbsp;&nbsp;&nbsp;(3)
  2775. <ol id="release_0.14.1_-_2007-09-04_._bug_fixes_">
  2776. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1740">HADOOP-1740</a>. Fix null pointer exception in sorting map outputs.<br />(Devaraj
  2777. Das via omalley)</li>
  2778. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1790">HADOOP-1790</a>. Fix tasktracker to work correctly on multi-homed
  2779. boxes.<br />(Torsten Curdt via cutting)</li>
  2780. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1798">HADOOP-1798</a>. Fix jobtracker to correctly account for failed
  2781. tasks.<br />(omalley via cutting)</li>
  2782. </ol>
  2783. </li>
  2784. </ul>
  2785. <h3><a href="javascript:toggleList('release_0.14.0_-_2007-08-17_')">Release 0.14.0 - 2007-08-17
  2786. </a></h3>
  2787. <ul id="release_0.14.0_-_2007-08-17_">
  2788. <li><a href="javascript:toggleList('release_0.14.0_-_2007-08-17_._incompatible_changes_')"> INCOMPATIBLE CHANGES
  2789. </a>&nbsp;&nbsp;&nbsp;(160)
  2790. <ol id="release_0.14.0_-_2007-08-17_._incompatible_changes_">
  2791. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1134">HADOOP-1134</a>.
  2792. CONFIG/API - dfs.block.size must now be a multiple of
  2793. io.byte.per.checksum, otherwise new files can not be written.
  2794. LAYOUT - DFS layout version changed from -6 to -7, which will require an
  2795. upgrade from previous versions.
  2796. PROTOCOL - Datanode RPC protocol version changed from 7 to 8.
  2797. </li>
  2798. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1283">HADOOP-1283</a>
  2799. API - deprecated file locking API.
  2800. </li>
  2801. <li><a href="http://issues.apache.org/jira/browse/HADOOP-894">HADOOP-894</a>
  2802. PROTOCOL - changed ClientProtocol to fetch parts of block locations.
  2803. </li>
  2804. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1336">HADOOP-1336</a>
  2805. CONFIG - Enable speculative execution by default.
  2806. </li>
  2807. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1197">HADOOP-1197</a>
  2808. API - deprecated method for Configuration.getObject, because
  2809. Configurations should only contain strings.
  2810. </li>
  2811. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1343">HADOOP-1343</a>
  2812. API - deprecate Configuration.set(String,Object) so that only strings are
  2813. put in Configrations.
  2814. </li>
  2815. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1207">HADOOP-1207</a>
  2816. CLI - Fix FsShell 'rm' command to continue when a non-existent file is
  2817. encountered.
  2818. </li>
  2819. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1473">HADOOP-1473</a>
  2820. CLI/API - Job, TIP, and Task id formats have changed and are now unique
  2821. across job tracker restarts.
  2822. </li>
  2823. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1400">HADOOP-1400</a>
  2824. API - JobClient constructor now takes a JobConf object instead of a
  2825. Configuration object.
  2826. <p/>
  2827. NEW FEATURES and BUG FIXES
  2828. </li>
  2829. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1197">HADOOP-1197</a>. In Configuration, deprecate getObject() and add
  2830. getRaw(), which skips variable expansion.<br />(omalley via cutting)</li>
  2831. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1343">HADOOP-1343</a>. In Configuration, deprecate set(String,Object) and
  2832. implement Iterable.<br />(omalley via cutting)</li>
  2833. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1344">HADOOP-1344</a>. Add RunningJob#getJobName().<br />(Michael Bieniosek via cutting)</li>
  2834. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1342">HADOOP-1342</a>. In aggregators, permit one to limit the number of
  2835. unique values per key.<br />(Runping Qi via cutting)</li>
  2836. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1340">HADOOP-1340</a>. Set the replication factor of the MD5 file in the filecache
  2837. to be the same as the replication factor of the original file.<br />(Dhruba Borthakur via tomwhite.)</li>
  2838. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1355">HADOOP-1355</a>. Fix null pointer dereference in
  2839. TaskLogAppender.append(LoggingEvent).<br />(Arun C Murthy via tomwhite.)</li>
  2840. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1357">HADOOP-1357</a>. Fix CopyFiles to correctly avoid removing "/".<br />(Arun C Murthy via cutting)</li>
  2841. <li><a href="http://issues.apache.org/jira/browse/HADOOP-234">HADOOP-234</a>. Add pipes facility, which permits writing MapReduce
  2842. programs in C++.
  2843. </li>
  2844. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1359">HADOOP-1359</a>. Fix a potential NullPointerException in HDFS.<br />(Hairong Kuang via cutting)</li>
  2845. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1364">HADOOP-1364</a>. Fix inconsistent synchronization in SequenceFile.<br />(omalley via cutting)</li>
  2846. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1379">HADOOP-1379</a>. Add findbugs target to build.xml.<br />(Nigel Daley via cutting)</li>
  2847. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1364">HADOOP-1364</a>. Fix various inconsistent synchronization issues.<br />(Devaraj Das via cutting)</li>
  2848. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1393">HADOOP-1393</a>. Remove a potential unexpected negative number from
  2849. uses of random number generator.<br />(omalley via cutting)</li>
  2850. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1387">HADOOP-1387</a>. A number of "performance" code-cleanups suggested
  2851. by findbugs.<br />(Arun C Murthy via cutting)</li>
  2852. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1401">HADOOP-1401</a>. Add contrib/hbase javadoc to tree.<br />(stack via cutting)</li>
  2853. <li><a href="http://issues.apache.org/jira/browse/HADOOP-894">HADOOP-894</a>. Change HDFS so that the client only retrieves a limited
  2854. number of block locations per request from the namenode.<br />(Konstantin Shvachko via cutting)</li>
  2855. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1406">HADOOP-1406</a>. Plug a leak in MapReduce's use of metrics.<br />(David Bowen via cutting)</li>
  2856. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1394">HADOOP-1394</a>. Implement "performance" code-cleanups in HDFS
  2857. suggested by findbugs.<br />(Raghu Angadi via cutting)</li>
  2858. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1413">HADOOP-1413</a>. Add example program that uses Knuth's dancing links
  2859. algorithm to solve pentomino problems.<br />(omalley via cutting)</li>
  2860. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1226">HADOOP-1226</a>. Change HDFS so that paths it returns are always
  2861. fully qualified.<br />(Dhruba Borthakur via cutting)</li>
  2862. <li><a href="http://issues.apache.org/jira/browse/HADOOP-800">HADOOP-800</a>. Improvements to HDFS web-based file browser.<br />(Enis Soztutar via cutting)</li>
  2863. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1408">HADOOP-1408</a>. Fix a compiler warning by adding a class to replace
  2864. a generic.<br />(omalley via cutting)</li>
  2865. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1376">HADOOP-1376</a>. Modify RandomWriter example so that it can generate
  2866. data for the Terasort benchmark.<br />(Devaraj Das via cutting)</li>
  2867. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1429">HADOOP-1429</a>. Stop logging exceptions during normal IPC server
  2868. shutdown.<br />(stack via cutting)</li>
  2869. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1461">HADOOP-1461</a>. Fix the synchronization of the task tracker to
  2870. avoid lockups in job cleanup.<br />(Arun C Murthy via omalley)</li>
  2871. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1446">HADOOP-1446</a>. Update the TaskTracker metrics while the task is
  2872. running.<br />(Devaraj via omalley)</li>
  2873. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1414">HADOOP-1414</a>. Fix a number of issues identified by FindBugs as
  2874. "Bad Practice".<br />(Dhruba Borthakur via cutting)</li>
  2875. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1392">HADOOP-1392</a>. Fix "correctness" bugs identified by FindBugs in
  2876. fs and dfs packages.<br />(Raghu Angadi via cutting)</li>
  2877. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1412">HADOOP-1412</a>. Fix "dodgy" bugs identified by FindBugs in fs and
  2878. io packages.<br />(Hairong Kuang via cutting)</li>
  2879. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1261">HADOOP-1261</a>. Remove redundant events from HDFS namenode's edit
  2880. log when a datanode restarts.<br />(Raghu Angadi via cutting)</li>
  2881. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1336">HADOOP-1336</a>. Re-enable speculative execution by
  2882. default.<br />(omalley via cutting)</li>
  2883. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1311">HADOOP-1311</a>. Fix a bug in BytesWritable#set() where start offset
  2884. was ignored.<br />(Dhruba Borthakur via cutting)</li>
  2885. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1450">HADOOP-1450</a>. Move checksumming closer to user code, so that
  2886. checksums are created before data is stored in large buffers and
  2887. verified after data is read from large buffers, to better catch
  2888. memory errors.<br />(cutting)</li>
  2889. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1447">HADOOP-1447</a>. Add support in contrib/data_join for text inputs.<br />(Senthil Subramanian via cutting)</li>
  2890. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1456">HADOOP-1456</a>. Fix TestDecommission assertion failure by setting
  2891. the namenode to ignore the load on datanodes while allocating
  2892. replicas.<br />(Dhruba Borthakur via tomwhite)</li>
  2893. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1396">HADOOP-1396</a>. Fix FileNotFoundException on DFS block.<br />(Dhruba Borthakur via tomwhite)</li>
  2894. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1467">HADOOP-1467</a>. Remove redundant counters from WordCount example.<br />(Owen O'Malley via tomwhite)</li>
  2895. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1139">HADOOP-1139</a>. Log HDFS block transitions at INFO level, to better
  2896. enable diagnosis of problems.<br />(Dhruba Borthakur via cutting)</li>
  2897. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1269">HADOOP-1269</a>. Finer grained locking in HDFS namenode.<br />(Dhruba Borthakur via cutting)</li>
  2898. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1438">HADOOP-1438</a>. Improve HDFS documentation, correcting typos and
  2899. making images appear in PDF. Also update copyright date for all
  2900. docs.<br />(Luke Nezda via cutting)</li>
  2901. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1457">HADOOP-1457</a>. Add counters for monitoring task assignments.<br />(Arun C Murthy via tomwhite)</li>
  2902. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1472">HADOOP-1472</a>. Fix so that timed-out tasks are counted as failures
  2903. rather than as killed.<br />(Arun C Murthy via cutting)</li>
  2904. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1234">HADOOP-1234</a>. Fix a race condition in file cache that caused
  2905. tasktracker to not be able to find cached files.<br />(Arun C Murthy via cutting)</li>
  2906. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1482">HADOOP-1482</a>. Fix secondary namenode to roll info port.<br />(Dhruba Borthakur via cutting)</li>
  2907. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1300">HADOOP-1300</a>. Improve removal of excess block replicas to be
  2908. rack-aware. Attempts are now made to keep replicas on more
  2909. racks.<br />(Hairong Kuang via cutting)</li>
  2910. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1417">HADOOP-1417</a>. Disable a few FindBugs checks that generate a lot
  2911. of spurious warnings.<br />(Nigel Daley via cutting)</li>
  2912. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1320">HADOOP-1320</a>. Rewrite RandomWriter example to bypass reduce.<br />(Arun C Murthy via cutting)</li>
  2913. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1449">HADOOP-1449</a>. Add some examples to contrib/data_join.<br />(Senthil Subramanian via cutting)</li>
  2914. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1459">HADOOP-1459</a>. Fix so that, in HDFS, getFileCacheHints() returns
  2915. hostnames instead of IP addresses.<br />(Dhruba Borthakur via cutting)</li>
  2916. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1493">HADOOP-1493</a>. Permit specification of "java.library.path" system
  2917. property in "mapred.child.java.opts" configuration property.<br />(Enis Soztutar via cutting)</li>
  2918. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1372">HADOOP-1372</a>. Use LocalDirAllocator for HDFS temporary block
  2919. files, so that disk space, writability, etc. is considered.<br />(Dhruba Borthakur via cutting)</li>
  2920. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1193">HADOOP-1193</a>. Pool allocation of compression codecs. This
  2921. eliminates a memory leak that could cause OutOfMemoryException,
  2922. and also substantially improves performance.<br />(Arun C Murthy via cutting)</li>
  2923. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1492">HADOOP-1492</a>. Fix a NullPointerException handling version
  2924. mismatch during datanode registration.<br />(Konstantin Shvachko via cutting)</li>
  2925. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1442">HADOOP-1442</a>. Fix handling of zero-length input splits.<br />(Senthil Subramanian via cutting)</li>
  2926. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1444">HADOOP-1444</a>. Fix HDFS block id generation to check pending
  2927. blocks for duplicates.<br />(Dhruba Borthakur via cutting)</li>
  2928. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1207">HADOOP-1207</a>. Fix FsShell's 'rm' command to not stop when one of
  2929. the named files does not exist.<br />(Tsz Wo Sze via cutting)</li>
  2930. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1475">HADOOP-1475</a>. Clear tasktracker's file cache before it
  2931. re-initializes, to avoid confusion.<br />(omalley via cutting)</li>
  2932. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1505">HADOOP-1505</a>. Remove spurious stacktrace in ZlibFactory
  2933. introduced in <a href="http://issues.apache.org/jira/browse/HADOOP-1093">HADOOP-1093</a>.<br />(Michael Stack via tomwhite)</li>
  2934. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1484">HADOOP-1484</a>. Permit one to kill jobs from the web ui. Note that
  2935. this is disabled by default. One must set
  2936. "webinterface.private.actions" to enable this.<br />(Enis Soztutar via cutting)</li>
  2937. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1003">HADOOP-1003</a>. Remove flushing of namenode edit log from primary
  2938. namenode lock, increasing namenode throughput.<br />(Dhruba Borthakur via cutting)</li>
  2939. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1023">HADOOP-1023</a>. Add links to searchable mail archives.<br />(tomwhite via cutting)</li>
  2940. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1504">HADOOP-1504</a>. Fix terminate-hadoop-cluster script in contrib/ec2
  2941. to only terminate Hadoop instances, and not other instances
  2942. started by the same user.<br />(tomwhite via cutting)</li>
  2943. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1462">HADOOP-1462</a>. Improve task progress reporting. Progress reports
  2944. are no longer blocking since i/o is performed in a separate
  2945. thread. Reporting during sorting and more is also more
  2946. consistent.<br />(Vivek Ratan via cutting)</li>
  2947. <li>[ intentionally blank ]
  2948. </li>
  2949. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1453">HADOOP-1453</a>. Remove some unneeded calls to FileSystem#exists()
  2950. when opening files, reducing the namenode load somewhat.<br />(Raghu Angadi via cutting)</li>
  2951. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1489">HADOOP-1489</a>. Fix text input truncation bug due to mark/reset.
  2952. Add a unittest.<br />(Bwolen Yang via cutting)</li>
  2953. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1455">HADOOP-1455</a>. Permit specification of arbitrary job options on
  2954. pipes command line.<br />(Devaraj Das via cutting)</li>
  2955. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1501">HADOOP-1501</a>. Better randomize sending of block reports to
  2956. namenode, so reduce load spikes.<br />(Dhruba Borthakur via cutting)</li>
  2957. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1147">HADOOP-1147</a>. Remove @author tags from Java source files.
  2958. </li>
  2959. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1283">HADOOP-1283</a>. Convert most uses of UTF8 in the namenode to be
  2960. String.<br />(Konstantin Shvachko via cutting)</li>
  2961. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1511">HADOOP-1511</a>. Speedup hbase unit tests.<br />(stack via cutting)</li>
  2962. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1517">HADOOP-1517</a>. Remove some synchronization in namenode to permit
  2963. finer grained locking previously added.<br />(Konstantin Shvachko via cutting)</li>
  2964. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1512">HADOOP-1512</a>. Fix failing TestTextInputFormat on Windows.<br />(Senthil Subramanian via nigel)</li>
  2965. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1518">HADOOP-1518</a>. Add a session id to job metrics, for use by HOD.<br />(David Bowen via cutting)</li>
  2966. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1292">HADOOP-1292</a>. Change 'bin/hadoop fs -get' to first copy files to
  2967. a temporary name, then rename them to their final name, so that
  2968. failures don't leave partial files.<br />(Tsz Wo Sze via cutting)</li>
  2969. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1377">HADOOP-1377</a>. Add support for modification time to FileSystem and
  2970. implement in HDFS and local implementations. Also, alter access
  2971. to file properties to be through a new FileStatus interface.<br />(Dhruba Borthakur via cutting)</li>
  2972. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1515">HADOOP-1515</a>. Add MultiFileInputFormat, which can pack multiple,
  2973. typically small, input files into each split.<br />(Enis Soztutar via cutting)</li>
  2974. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1514">HADOOP-1514</a>. Make reducers report progress while waiting for map
  2975. outputs, so they're not killed.<br />(Vivek Ratan via cutting)</li>
  2976. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1508">HADOOP-1508</a>. Add an Ant task for FsShell operations. Also add
  2977. new FsShell commands "touchz", "test" and "stat".<br />(Chris Douglas via cutting)</li>
  2978. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1028">HADOOP-1028</a>. Add log messages for server startup and shutdown.<br />(Tsz Wo Sze via cutting)</li>
  2979. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1485">HADOOP-1485</a>. Add metrics for monitoring shuffle.<br />(Devaraj Das via cutting)</li>
  2980. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1536">HADOOP-1536</a>. Remove file locks from libhdfs tests.<br />(Dhruba Borthakur via nigel)</li>
  2981. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1520">HADOOP-1520</a>. Add appropriate synchronization to FSEditsLog.<br />(Dhruba Borthakur via nigel)</li>
  2982. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1513">HADOOP-1513</a>. Fix a race condition in directory creation.<br />(Devaraj via omalley)</li>
  2983. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1546">HADOOP-1546</a>. Remove spurious column from HDFS web UI.<br />(Dhruba Borthakur via cutting)</li>
  2984. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1556">HADOOP-1556</a>. Make LocalJobRunner delete working files at end of
  2985. job run.<br />(Devaraj Das via tomwhite)</li>
  2986. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1571">HADOOP-1571</a>. Add contrib lib directories to root build.xml
  2987. javadoc classpath.<br />(Michael Stack via tomwhite)</li>
  2988. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1554">HADOOP-1554</a>. Log killed tasks to the job history and display them on the
  2989. web/ui.<br />(Devaraj Das via omalley)</li>
  2990. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1533">HADOOP-1533</a>. Add persistent error logging for distcp. The logs are stored
  2991. into a specified hdfs directory.<br />(Senthil Subramanian via omalley)</li>
  2992. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1286">HADOOP-1286</a>. Add support to HDFS for distributed upgrades, which
  2993. permits coordinated upgrade of datanode data.<br />(Konstantin Shvachko via cutting)</li>
  2994. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1580">HADOOP-1580</a>. Improve contrib/streaming so that subprocess exit
  2995. status is displayed for errors.<br />(John Heidemann via cutting)</li>
  2996. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1448">HADOOP-1448</a>. In HDFS, randomize lists of non-local block
  2997. locations returned to client, so that load is better balanced.<br />(Hairong Kuang via cutting)</li>
  2998. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1578">HADOOP-1578</a>. Fix datanode to send its storage id to namenode
  2999. during registration.<br />(Konstantin Shvachko via cutting)</li>
  3000. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1584">HADOOP-1584</a>. Fix a bug in GenericWritable which limited it to
  3001. 128 types instead of 256.<br />(Espen Amble Kolstad via cutting)</li>
  3002. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1473">HADOOP-1473</a>. Make job ids unique across jobtracker restarts.<br />(omalley via cutting)</li>
  3003. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1582">HADOOP-1582</a>. Fix hdfslib to return 0 instead of -1 at
  3004. end-of-file, per C conventions.<br />(Christian Kunz via cutting)</li>
  3005. <li><a href="http://issues.apache.org/jira/browse/HADOOP-911">HADOOP-911</a>. Fix a multithreading bug in libhdfs.<br />(Christian Kunz)</li>
  3006. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1486">HADOOP-1486</a>. Fix so that fatal exceptions in namenode cause it
  3007. to exit.<br />(Dhruba Borthakur via cutting)</li>
  3008. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1470">HADOOP-1470</a>. Factor checksum generation and validation out of
  3009. ChecksumFileSystem so that it can be reused by FileSystem's with
  3010. built-in checksumming.<br />(Hairong Kuang via cutting)</li>
  3011. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1590">HADOOP-1590</a>. Use relative urls in jobtracker jsp pages, so that
  3012. webapp can be used in non-root contexts.<br />(Thomas Friol via cutting)</li>
  3013. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1596">HADOOP-1596</a>. Fix the parsing of taskids by streaming and improve the
  3014. error reporting.<br />(omalley)</li>
  3015. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1535">HADOOP-1535</a>. Fix the user-controlled grouping to the reduce function.<br />(Vivek Ratan via omalley)</li>
  3016. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1585">HADOOP-1585</a>. Modify GenericWritable to declare the classes as subtypes
  3017. of Writable<br />(Espen Amble Kolstad via omalley)</li>
  3018. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1576">HADOOP-1576</a>. Fix errors in count of completed tasks when
  3019. speculative execution is enabled.<br />(Arun C Murthy via cutting)</li>
  3020. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1598">HADOOP-1598</a>. Fix license headers: adding missing; updating old.<br />(Enis Soztutar via cutting)</li>
  3021. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1547">HADOOP-1547</a>. Provide examples for aggregate library.<br />(Runping Qi via tomwhite)</li>
  3022. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1570">HADOOP-1570</a>. Permit jobs to enable and disable the use of
  3023. hadoop's native library.<br />(Arun C Murthy via cutting)</li>
  3024. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1433">HADOOP-1433</a>. Add job priority.<br />(Johan Oskarsson via tomwhite)</li>
  3025. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1597">HADOOP-1597</a>. Add status reports and post-upgrade options to HDFS
  3026. distributed upgrade.<br />(Konstantin Shvachko via cutting)</li>
  3027. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1524">HADOOP-1524</a>. Permit user task logs to appear as they're
  3028. created.<br />(Michael Bieniosek via cutting)</li>
  3029. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1599">HADOOP-1599</a>. Fix distcp bug on Windows.<br />(Senthil Subramanian via cutting)</li>
  3030. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1562">HADOOP-1562</a>. Add JVM metrics, including GC and logging stats.<br />(David Bowen via cutting)</li>
  3031. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1613">HADOOP-1613</a>. Fix "DFS Health" page to display correct time of
  3032. last contact.<br />(Dhruba Borthakur via cutting)</li>
  3033. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1134">HADOOP-1134</a>. Add optimized checksum support to HDFS. Checksums
  3034. are now stored with each block, rather than as parallel files.
  3035. This reduces the namenode's memory requirements and increases
  3036. data integrity.<br />(Raghu Angadi via cutting)</li>
  3037. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1400">HADOOP-1400</a>. Make JobClient retry requests, so that clients can
  3038. survive jobtracker problems.<br />(omalley via cutting)</li>
  3039. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1564">HADOOP-1564</a>. Add unit tests for HDFS block-level checksums.<br />(Dhruba Borthakur via cutting)</li>
  3040. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1620">HADOOP-1620</a>. Reduce the number of abstract FileSystem methods,
  3041. simplifying implementations.<br />(cutting)</li>
  3042. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1625">HADOOP-1625</a>. Fix a "could not move files" exception in datanode.<br />(Raghu Angadi via cutting)</li>
  3043. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1624">HADOOP-1624</a>. Fix an infinite loop in datanode.<br />(Raghu Angadi via cutting)</li>
  3044. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1084">HADOOP-1084</a>. Switch mapred file cache to use file modification
  3045. time instead of checksum to detect file changes, as checksums are
  3046. no longer easily accessed.<br />(Arun C Murthy via cutting)</li>
  3047. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1623">HADOOP-1623</a>. Fix an infinite loop when copying directories.<br />(Dhruba Borthakur via cutting)</li>
  3048. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1603">HADOOP-1603</a>. Fix a bug in namenode initialization where
  3049. default replication is sometimes reset to one on restart.<br />(Raghu Angadi via cutting)</li>
  3050. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1635">HADOOP-1635</a>. Remove hardcoded keypair name and fix launch-hadoop-cluster
  3051. to support later versions of ec2-api-tools.<br />(Stu Hood via tomwhite)</li>
  3052. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1638">HADOOP-1638</a>. Fix contrib EC2 scripts to support NAT addressing.<br />(Stu Hood via tomwhite)</li>
  3053. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1632">HADOOP-1632</a>. Fix an IllegalArgumentException in fsck.<br />(Hairong Kuang via cutting)</li>
  3054. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1619">HADOOP-1619</a>. Fix FSInputChecker to not attempt to read past EOF.<br />(Hairong Kuang via cutting)</li>
  3055. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1640">HADOOP-1640</a>. Fix TestDecommission on Windows.<br />(Dhruba Borthakur via cutting)</li>
  3056. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1587">HADOOP-1587</a>. Fix TestSymLink to get required system properties.<br />(Devaraj Das via omalley)</li>
  3057. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1628">HADOOP-1628</a>. Add block CRC protocol unit tests.<br />(Raghu Angadi via omalley)</li>
  3058. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1653">HADOOP-1653</a>. FSDirectory code-cleanups. FSDirectory.INode
  3059. becomes a static class.<br />(Christophe Taton via dhruba)</li>
  3060. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1066">HADOOP-1066</a>. Restructure documentation to make more user
  3061. friendly.<br />(Connie Kleinjans and Jeff Hammerbacher via cutting)</li>
  3062. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1551">HADOOP-1551</a>. libhdfs supports setting replication factor and
  3063. retrieving modification time of files.<br />(Sameer Paranjpye via dhruba)</li>
  3064. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1647">HADOOP-1647</a>. FileSystem.getFileStatus returns valid values for "/".<br />(Dhruba Borthakur via dhruba)</li>
  3065. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1657">HADOOP-1657</a>. Fix NNBench to ensure that the block size is a
  3066. multiple of bytes.per.checksum.<br />(Raghu Angadi via dhruba)</li>
  3067. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1553">HADOOP-1553</a>. Replace user task output and log capture code to use shell
  3068. redirection instead of copier threads in the TaskTracker. Capping the
  3069. size of the output is now done via tail in memory and thus should not be
  3070. large. The output of the tasklog servlet is not forced into UTF8 and is
  3071. not buffered entirely in memory. (omalley)
  3072. Configuration changes to hadoop-default.xml:
  3073. remove mapred.userlog.num.splits
  3074. remove mapred.userlog.purge.splits
  3075. change default mapred.userlog.limit.kb to 0 (no limit)
  3076. change default mapred.userlog.retain.hours to 24
  3077. Configuration changes to log4j.properties:
  3078. remove log4j.appender.TLA.noKeepSplits
  3079. remove log4j.appender.TLA.purgeLogSplits
  3080. remove log4j.appender.TLA.logsRetainHours
  3081. URL changes:
  3082. http://&lt;tasktracker&gt;/tasklog.jsp -&gt; http://&lt;tasktracker&gt;tasklog with
  3083. parameters limited to start and end, which may be positive (from
  3084. start) or negative (from end).
  3085. Environment:
  3086. require bash (v2 or later) and tail
  3087. </li>
  3088. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1659">HADOOP-1659</a>. Fix a job id/job name mixup.<br />(Arun C. Murthy via omalley)</li>
  3089. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1665">HADOOP-1665</a>. With HDFS Trash enabled and the same file was created
  3090. and deleted more than once, the suceeding deletions creates Trash item
  3091. names suffixed with a integer.<br />(Dhruba Borthakur via dhruba)</li>
  3092. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1666">HADOOP-1666</a>. FsShell object can be used for multiple fs commands.<br />(Dhruba Borthakur via dhruba)</li>
  3093. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1654">HADOOP-1654</a>. Remove performance regression introduced by Block CRC.<br />(Raghu Angadi via dhruba)</li>
  3094. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1680">HADOOP-1680</a>. Improvements to Block CRC upgrade messages.<br />(Raghu Angadi via dhruba)</li>
  3095. <li><a href="http://issues.apache.org/jira/browse/HADOOP-71">HADOOP-71</a>. Allow Text and SequenceFile Map/Reduce inputs from non-default
  3096. filesystems.<br />(omalley)</li>
  3097. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1568">HADOOP-1568</a>. Expose HDFS as xml/http filesystem to provide cross-version
  3098. compatability.<br />(Chris Douglas via omalley)</li>
  3099. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1668">HADOOP-1668</a>. Added an INCOMPATIBILITY section to CHANGES.txt.<br />(nigel)</li>
  3100. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1629">HADOOP-1629</a>. Added a upgrade test for <a href="http://issues.apache.org/jira/browse/HADOOP-1134">HADOOP-1134</a>.<br />(Raghu Angadi via nigel)</li>
  3101. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1698">HADOOP-1698</a>. Fix performance problems on map output sorting for jobs
  3102. with large numbers of reduces.<br />(Devaraj Das via omalley)</li>
  3103. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1716">HADOOP-1716</a>. Fix a Pipes wordcount example to remove the 'file:'
  3104. schema from its output path.<br />(omalley via cutting)</li>
  3105. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1714">HADOOP-1714</a>. Fix TestDFSUpgradeFromImage to work on Windows.<br />(Raghu Angadi via nigel)</li>
  3106. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1663">HADOOP-1663</a>. Return a non-zero exit code if streaming fails.<br />(Lohit Renu
  3107. via omalley)</li>
  3108. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1712">HADOOP-1712</a>. Fix an unhandled exception on datanode during block
  3109. CRC upgrade.<br />(Raghu Angadi via cutting)</li>
  3110. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1717">HADOOP-1717</a>. Fix TestDFSUpgradeFromImage to work on Solaris.<br />(nigel via cutting)</li>
  3111. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1437">HADOOP-1437</a>. Add Eclipse plugin in contrib.<br />(Eugene Hung and Christophe Taton via cutting)</li>
  3112. </ol>
  3113. </li>
  3114. </ul>
  3115. <h3><a href="javascript:toggleList('release_0.13.0_-_2007-06-08_')">Release 0.13.0 - 2007-06-08
  3116. </a></h3>
  3117. <ol id="release_0.13.0_-_2007-06-08_">
  3118. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1047">HADOOP-1047</a>. Fix TestReplication to succeed more reliably.<br />(Hairong Kuang via cutting)</li>
  3119. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1063">HADOOP-1063</a>. Fix a race condition in MiniDFSCluster test code.<br />(Hairong Kuang via cutting)</li>
  3120. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1101">HADOOP-1101</a>. In web ui, split shuffle statistics from reduce
  3121. statistics, and add some task averages.<br />(Devaraj Das via cutting)</li>
  3122. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1071">HADOOP-1071</a>. Improve handling of protocol version mismatch in
  3123. JobTracker.<br />(Tahir Hashmi via cutting)</li>
  3124. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1116">HADOOP-1116</a>. Increase heap size used for contrib unit tests.<br />(Philippe Gassmann via cutting)</li>
  3125. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1120">HADOOP-1120</a>. Add contrib/data_join, tools to simplify joining
  3126. data from multiple sources using MapReduce.<br />(Runping Qi via cutting)</li>
  3127. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1064">HADOOP-1064</a>. Reduce log level of some DFSClient messages.<br />(Dhruba Borthakur via cutting)</li>
  3128. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1137">HADOOP-1137</a>. Fix StatusHttpServer to work correctly when
  3129. resources are in a jar file.<br />(Benjamin Reed via cutting)</li>
  3130. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1094">HADOOP-1094</a>. Optimize generated Writable implementations for
  3131. records to not allocate a new BinaryOutputArchive or
  3132. BinaryInputArchive per call.<br />(Milind Bhandarkar via cutting)</li>
  3133. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1068">HADOOP-1068</a>. Improve error message for clusters with 0 datanodes.<br />(Dhruba Borthakur via tomwhite)</li>
  3134. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1122">HADOOP-1122</a>. Fix divide-by-zero exception in FSNamesystem
  3135. chooseTarget method.<br />(Dhruba Borthakur via tomwhite)</li>
  3136. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1131">HADOOP-1131</a>. Add a closeAll() static method to FileSystem.<br />(Philippe Gassmann via tomwhite)</li>
  3137. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1085">HADOOP-1085</a>. Improve port selection in HDFS and MapReduce test
  3138. code. Ports are now selected by the OS during testing rather than
  3139. by probing for free ports, improving test reliability.<br />(Arun C Murthy via cutting)</li>
  3140. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1153">HADOOP-1153</a>. Fix HDFS daemons to correctly stop their threads.<br />(Konstantin Shvachko via cutting)</li>
  3141. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1146">HADOOP-1146</a>. Add a counter for reduce input keys and rename the
  3142. "reduce input records" counter to be "reduce input groups".<br />(David Bowen via cutting)</li>
  3143. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1165">HADOOP-1165</a>. In records, replace idential generated toString
  3144. methods with a method on the base class.<br />(Milind Bhandarkar via cutting)</li>
  3145. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1164">HADOOP-1164</a>. Fix TestReplicationPolicy to specify port zero, so
  3146. that a free port is automatically selected.<br />(omalley via cutting)</li>
  3147. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1166">HADOOP-1166</a>. Add a NullOutputFormat and use it in the
  3148. RandomWriter example.<br />(omalley via cutting)</li>
  3149. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1169">HADOOP-1169</a>. Fix a cut/paste error in CopyFiles utility so that
  3150. S3-based source files are correctly copied.<br />(Michael Stack via cutting)</li>
  3151. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1167">HADOOP-1167</a>. Remove extra synchronization in InMemoryFileSystem.<br />(omalley via cutting)</li>
  3152. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1110">HADOOP-1110</a>. Fix an off-by-one error counting map inputs.<br />(David Bowen via cutting)</li>
  3153. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1178">HADOOP-1178</a>. Fix a NullPointerException during namenode startup.<br />(Dhruba Borthakur via cutting)</li>
  3154. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1011">HADOOP-1011</a>. Fix a ConcurrentModificationException when viewing
  3155. job history.<br />(Tahir Hashmi via cutting)</li>
  3156. <li><a href="http://issues.apache.org/jira/browse/HADOOP-672">HADOOP-672</a>. Improve help for fs shell commands.<br />(Dhruba Borthakur via cutting)</li>
  3157. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1170">HADOOP-1170</a>. Improve datanode performance by removing device
  3158. checks from common operations.<br />(Igor Bolotin via cutting)</li>
  3159. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1090">HADOOP-1090</a>. Fix SortValidator's detection of whether the input
  3160. file belongs to the sort-input or sort-output directory.<br />(Arun C Murthy via tomwhite)</li>
  3161. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1081">HADOOP-1081</a>. Fix bin/hadoop on Darwin.<br />(Michael Bieniosek via cutting)</li>
  3162. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1045">HADOOP-1045</a>. Add contrib/hbase, a BigTable-like online database.<br />(Jim Kellerman via cutting)</li>
  3163. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1156">HADOOP-1156</a>. Fix a NullPointerException in MiniDFSCluster.<br />(Hairong Kuang via cutting)</li>
  3164. <li><a href="http://issues.apache.org/jira/browse/HADOOP-702">HADOOP-702</a>. Add tools to help automate HDFS upgrades.<br />(Konstantin Shvachko via cutting)</li>
  3165. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1163">HADOOP-1163</a>. Fix ganglia metrics to aggregate metrics from different
  3166. hosts properly.<br />(Michael Bieniosek via tomwhite)</li>
  3167. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1194">HADOOP-1194</a>. Make compression style record level for map output
  3168. compression.<br />(Arun C Murthy via tomwhite)</li>
  3169. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1187">HADOOP-1187</a>. Improve DFS Scalability: avoid scanning entire list of
  3170. datanodes in getAdditionalBlocks.<br />(Dhruba Borthakur via tomwhite)</li>
  3171. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1133">HADOOP-1133</a>. Add tool to analyze and debug namenode on a production
  3172. cluster.<br />(Dhruba Borthakur via tomwhite)</li>
  3173. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1151">HADOOP-1151</a>. Remove spurious printing to stderr in streaming
  3174. PipeMapRed.<br />(Koji Noguchi via tomwhite)</li>
  3175. <li><a href="http://issues.apache.org/jira/browse/HADOOP-988">HADOOP-988</a>. Change namenode to use a single map of blocks to metadata.<br />(Raghu Angadi via tomwhite)</li>
  3176. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1203">HADOOP-1203</a>. Change UpgradeUtilities used by DFS tests to use
  3177. MiniDFSCluster to start and stop NameNode/DataNodes.<br />(Nigel Daley via tomwhite)</li>
  3178. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1217">HADOOP-1217</a>. Add test.timeout property to build.xml, so that
  3179. long-running unit tests may be automatically terminated.<br />(Nigel Daley via cutting)</li>
  3180. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1149">HADOOP-1149</a>. Improve DFS Scalability: make
  3181. processOverReplicatedBlock() a no-op if blocks are not
  3182. over-replicated.<br />(Raghu Angadi via tomwhite)</li>
  3183. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1149">HADOOP-1149</a>. Improve DFS Scalability: optimize getDistance(),
  3184. contains(), and isOnSameRack() in NetworkTopology.<br />(Hairong Kuang via tomwhite)</li>
  3185. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1218">HADOOP-1218</a>. Make synchronization on TaskTracker's RunningJob
  3186. object consistent.<br />(Devaraj Das via tomwhite)</li>
  3187. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1219">HADOOP-1219</a>. Ignore progress report once a task has reported as
  3188. 'done'.<br />(Devaraj Das via tomwhite)</li>
  3189. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1114">HADOOP-1114</a>. Permit user to specify additional CLASSPATH elements
  3190. with a HADOOP_CLASSPATH environment variable.<br />(cutting)</li>
  3191. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1198">HADOOP-1198</a>. Remove ipc.client.timeout parameter override from
  3192. unit test configuration. Using the default is more robust and
  3193. has almost the same run time.<br />(Arun C Murthy via tomwhite)</li>
  3194. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1211">HADOOP-1211</a>. Remove deprecated constructor and unused static
  3195. members in DataNode class.<br />(Konstantin Shvachko via tomwhite)</li>
  3196. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1136">HADOOP-1136</a>. Fix ArrayIndexOutOfBoundsException in
  3197. FSNamesystem$UnderReplicatedBlocks add() method.<br />(Hairong Kuang via tomwhite)</li>
  3198. <li><a href="http://issues.apache.org/jira/browse/HADOOP-978">HADOOP-978</a>. Add the client name and the address of the node that
  3199. previously started to create the file to the description of
  3200. AlreadyBeingCreatedException.<br />(Konstantin Shvachko via tomwhite)</li>
  3201. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1001">HADOOP-1001</a>. Check the type of keys and values generated by the
  3202. mapper against the types specified in JobConf.<br />(Tahir Hashmi via tomwhite)</li>
  3203. <li><a href="http://issues.apache.org/jira/browse/HADOOP-971">HADOOP-971</a>. Improve DFS Scalability: Improve name node performance
  3204. by adding a hostname to datanodes map.<br />(Hairong Kuang via tomwhite)</li>
  3205. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1189">HADOOP-1189</a>. Fix 'No space left on device' exceptions on datanodes.<br />(Raghu Angadi via tomwhite)</li>
  3206. <li><a href="http://issues.apache.org/jira/browse/HADOOP-819">HADOOP-819</a>. Change LineRecordWriter to not insert a tab between
  3207. key and value when either is null, and to print nothing when both
  3208. are null.<br />(Runping Qi via cutting)</li>
  3209. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1204">HADOOP-1204</a>. Rename InputFormatBase to be FileInputFormat, and
  3210. deprecate InputFormatBase. Also make LineRecordReader easier to
  3211. extend.<br />(Runping Qi via cutting)</li>
  3212. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1213">HADOOP-1213</a>. Improve logging of errors by IPC server, to
  3213. consistently include the service name and the call.<br />(cutting)</li>
  3214. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1238">HADOOP-1238</a>. Fix metrics reporting by TaskTracker to correctly
  3215. track maps_running and reduces_running.<br />(Michael Bieniosek via cutting)</li>
  3216. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1093">HADOOP-1093</a>. Fix a race condition in HDFS where blocks were
  3217. sometimes erased before they were reported written.<br />(Dhruba Borthakur via cutting)</li>
  3218. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1239">HADOOP-1239</a>. Add a package name to some testjar test classes.<br />(Jim Kellerman via cutting)</li>
  3219. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1241">HADOOP-1241</a>. Fix NullPointerException in processReport when
  3220. namenode is restarted.<br />(Dhruba Borthakur via tomwhite)</li>
  3221. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1244">HADOOP-1244</a>. Fix stop-dfs.sh to no longer incorrectly specify
  3222. slaves file for stopping datanode.<br />(Michael Bieniosek via tomwhite)</li>
  3223. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1253">HADOOP-1253</a>. Fix ConcurrentModificationException and
  3224. NullPointerException in JobControl.<br />(Johan Oskarson via tomwhite)</li>
  3225. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1256">HADOOP-1256</a>. Fix NameNode so that multiple DataNodeDescriptors
  3226. can no longer be created on startup.<br />(Hairong Kuang via cutting)</li>
  3227. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1214">HADOOP-1214</a>. Replace streaming classes with new counterparts
  3228. from Hadoop core.<br />(Runping Qi via tomwhite)</li>
  3229. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1250">HADOOP-1250</a>. Move a chmod utility from streaming to FileUtil.<br />(omalley via cutting)</li>
  3230. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1258">HADOOP-1258</a>. Fix TestCheckpoint test case to wait for
  3231. MiniDFSCluster to be active.<br />(Nigel Daley via tomwhite)</li>
  3232. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1148">HADOOP-1148</a>. Re-indent all Java source code to consistently use
  3233. two spaces per indent level.<br />(cutting)</li>
  3234. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1251">HADOOP-1251</a>. Add a method to Reporter to get the map InputSplit.<br />(omalley via cutting)</li>
  3235. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1224">HADOOP-1224</a>. Fix "Browse the filesystem" link to no longer point
  3236. to dead datanodes.<br />(Enis Soztutar via tomwhite)</li>
  3237. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1154">HADOOP-1154</a>. Fail a streaming task if the threads reading from or
  3238. writing to the streaming process fail.<br />(Koji Noguchi via tomwhite)</li>
  3239. <li><a href="http://issues.apache.org/jira/browse/HADOOP-968">HADOOP-968</a>. Move shuffle and sort to run in reduce's child JVM,
  3240. rather than in TaskTracker.<br />(Devaraj Das via cutting)</li>
  3241. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1111">HADOOP-1111</a>. Add support for client notification of job
  3242. completion. If the job configuration has a job.end.notification.url
  3243. property it will make a HTTP GET request to the specified URL.
  3244. The number of retries and the interval between retries is also
  3245. configurable.<br />(Alejandro Abdelnur via tomwhite)</li>
  3246. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1275">HADOOP-1275</a>. Fix misspelled job notification property in
  3247. hadoop-default.xml.<br />(Alejandro Abdelnur via tomwhite)</li>
  3248. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1152">HADOOP-1152</a>. Fix race condition in MapOutputCopier.copyOutput file
  3249. rename causing possible reduce task hang.<br />(Tahir Hashmi via tomwhite)</li>
  3250. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1050">HADOOP-1050</a>. Distinguish between failed and killed tasks so as to
  3251. not count a lost tasktracker against the job.<br />(Arun C Murthy via tomwhite)</li>
  3252. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1271">HADOOP-1271</a>. Fix StreamBaseRecordReader to be able to log record
  3253. data that's not UTF-8.<br />(Arun C Murthy via tomwhite)</li>
  3254. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1190">HADOOP-1190</a>. Fix unchecked warnings in main Hadoop code.<br />(tomwhite)</li>
  3255. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1127">HADOOP-1127</a>. Fix AlreadyBeingCreatedException in namenode for
  3256. jobs run with speculative execution.<br />(Arun C Murthy via tomwhite)</li>
  3257. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1282">HADOOP-1282</a>. Omnibus HBase patch. Improved tests &amp; configuration.<br />(Jim Kellerman via cutting)</li>
  3258. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1262">HADOOP-1262</a>. Make dfs client try to read from a different replica
  3259. of the checksum file when a checksum error is detected.<br />(Hairong Kuang via tomwhite)</li>
  3260. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1279">HADOOP-1279</a>. Fix JobTracker to maintain list of recently
  3261. completed jobs by order of completion, not submission.<br />(Arun C Murthy via cutting)</li>
  3262. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1284">HADOOP-1284</a>. In contrib/streaming, permit flexible specification
  3263. of field delimiter and fields for partitioning and sorting.<br />(Runping Qi via cutting)</li>
  3264. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1176">HADOOP-1176</a>. Fix a bug where reduce would hang when a map had
  3265. more than 2GB of output for it.<br />(Arun C Murthy via cutting)</li>
  3266. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1293">HADOOP-1293</a>. Fix contrib/streaming to print more than the first
  3267. twenty lines of standard error.<br />(Koji Noguchi via cutting)</li>
  3268. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1297">HADOOP-1297</a>. Fix datanode so that requests to remove blocks that
  3269. do not exist no longer causes block reports to be re-sent every
  3270. second.<br />(Dhruba Borthakur via cutting)</li>
  3271. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1216">HADOOP-1216</a>. Change MapReduce so that, when numReduceTasks is
  3272. zero, map outputs are written directly as final output, skipping
  3273. shuffle, sort and reduce. Use this to implement reduce=NONE
  3274. option in contrib/streaming.<br />(Runping Qi via cutting)</li>
  3275. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1294">HADOOP-1294</a>. Fix unchecked warnings in main Hadoop code under
  3276. Java 6.<br />(tomwhite)</li>
  3277. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1299">HADOOP-1299</a>. Fix so that RPC will restart after RPC.stopClient()
  3278. has been called.<br />(Michael Stack via cutting)</li>
  3279. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1278">HADOOP-1278</a>. Improve blacklisting of TaskTrackers by JobTracker,
  3280. to reduce false positives.<br />(Arun C Murthy via cutting)</li>
  3281. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1290">HADOOP-1290</a>. Move contrib/abacus into mapred/lib/aggregate.<br />(Runping Qi via cutting)</li>
  3282. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1272">HADOOP-1272</a>. Extract inner classes from FSNamesystem into separate
  3283. classes.<br />(Dhruba Borthakur via tomwhite)</li>
  3284. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1247">HADOOP-1247</a>. Add support to contrib/streaming for aggregate
  3285. package, formerly called Abacus.<br />(Runping Qi via cutting)</li>
  3286. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1061">HADOOP-1061</a>. Fix bug in listing files in the S3 filesystem.
  3287. NOTE: this change is not backwards compatible! You should use the
  3288. MigrationTool supplied to migrate existing S3 filesystem data to
  3289. the new format. Please backup your data first before upgrading
  3290. (using 'hadoop distcp' for example).<br />(tomwhite)</li>
  3291. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1304">HADOOP-1304</a>. Make configurable the maximum number of task
  3292. attempts before a job fails.<br />(Devaraj Das via cutting)</li>
  3293. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1308">HADOOP-1308</a>. Use generics to restrict types when classes are
  3294. passed as parameters to JobConf methods.<br />(Michael Bieniosek via cutting)</li>
  3295. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1312">HADOOP-1312</a>. Fix a ConcurrentModificationException in NameNode
  3296. that killed the heartbeat monitoring thread.<br />(Dhruba Borthakur via cutting)</li>
  3297. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1315">HADOOP-1315</a>. Clean up contrib/streaming, switching it to use core
  3298. classes more and removing unused code.<br />(Runping Qi via cutting)</li>
  3299. <li><a href="http://issues.apache.org/jira/browse/HADOOP-485">HADOOP-485</a>. Allow a different comparator for grouping keys in
  3300. calls to reduce.<br />(Tahir Hashmi via cutting)</li>
  3301. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1322">HADOOP-1322</a>. Fix TaskTracker blacklisting to work correctly in
  3302. one- and two-node clusters.<br />(Arun C Murthy via cutting)</li>
  3303. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1144">HADOOP-1144</a>. Permit one to specify a maximum percentage of tasks
  3304. that can fail before a job is aborted. The default is zero.<br />(Arun C Murthy via cutting)</li>
  3305. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1184">HADOOP-1184</a>. Fix HDFS decomissioning to complete when the only
  3306. copy of a block is on a decommissioned node.<br />(Dhruba Borthakur via cutting)</li>
  3307. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1263">HADOOP-1263</a>. Change DFSClient to retry certain namenode calls
  3308. with a random, exponentially increasing backoff time, to avoid
  3309. overloading the namenode on, e.g., job start.<br />(Hairong Kuang via cutting)</li>
  3310. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1325">HADOOP-1325</a>. First complete, functioning version of HBase.<br />(Jim Kellerman via cutting)</li>
  3311. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1276">HADOOP-1276</a>. Make tasktracker expiry interval configurable.<br />(Arun C Murthy via cutting)</li>
  3312. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1326">HADOOP-1326</a>. Change JobClient#RunJob() to return the job.<br />(omalley via cutting)</li>
  3313. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1270">HADOOP-1270</a>. Randomize the fetch of map outputs, speeding the
  3314. shuffle.<br />(Arun C Murthy via cutting)</li>
  3315. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1200">HADOOP-1200</a>. Restore disk checking lost in <a href="http://issues.apache.org/jira/browse/HADOOP-1170">HADOOP-1170</a>.<br />(Hairong Kuang via cutting)</li>
  3316. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1252">HADOOP-1252</a>. Changed MapReduce's allocation of local files to
  3317. use round-robin among available devices, rather than a hashcode.
  3318. More care is also taken to not allocate files on full or offline
  3319. drives.<br />(Devaraj Das via cutting)</li>
  3320. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1324">HADOOP-1324</a>. Change so that an FSError kills only the task that
  3321. generates it rather than the entire task tracker.<br />(Arun C Murthy via cutting)</li>
  3322. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1310">HADOOP-1310</a>. Fix unchecked warnings in aggregate code.<br />(tomwhite)</li>
  3323. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1255">HADOOP-1255</a>. Fix a bug where the namenode falls into an infinite
  3324. loop trying to remove a dead node.<br />(Hairong Kuang via cutting)</li>
  3325. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1160">HADOOP-1160</a>. Fix DistributedFileSystem.close() to close the
  3326. underlying FileSystem, correctly aborting files being written.<br />(Hairong Kuang via cutting)</li>
  3327. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1341">HADOOP-1341</a>. Fix intermittent failures in HBase unit tests
  3328. caused by deadlock.<br />(Jim Kellerman via cutting)</li>
  3329. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1350">HADOOP-1350</a>. Fix shuffle performance problem caused by forcing
  3330. chunked encoding of map outputs.<br />(Devaraj Das via cutting)</li>
  3331. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1345">HADOOP-1345</a>. Fix HDFS to correctly retry another replica when a
  3332. checksum error is encountered.<br />(Hairong Kuang via cutting)</li>
  3333. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1205">HADOOP-1205</a>. Improve synchronization around HDFS block map.<br />(Hairong Kuang via cutting)</li>
  3334. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1353">HADOOP-1353</a>. Fix a potential NullPointerException in namenode.<br />(Dhruba Borthakur via cutting)</li>
  3335. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1354">HADOOP-1354</a>. Fix a potential NullPointerException in FsShell.<br />(Hairong Kuang via cutting)</li>
  3336. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1358">HADOOP-1358</a>. Fix a potential bug when DFSClient calls skipBytes.<br />(Hairong Kuang via cutting)</li>
  3337. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1356">HADOOP-1356</a>. Fix a bug in ValueHistogram.<br />(Runping Qi via cutting)</li>
  3338. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1363">HADOOP-1363</a>. Fix locking bug in JobClient#waitForCompletion().<br />(omalley via cutting)</li>
  3339. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1368">HADOOP-1368</a>. Fix inconsistent synchronization in JobInProgress.<br />(omalley via cutting)</li>
  3340. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1369">HADOOP-1369</a>. Fix inconsistent synchronization in TaskTracker.<br />(omalley via cutting)</li>
  3341. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1361">HADOOP-1361</a>. Fix various calls to skipBytes() to check return
  3342. value.<br />(Hairong Kuang via cutting)</li>
  3343. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1388">HADOOP-1388</a>. Fix a potential NullPointerException in web ui.<br />(Devaraj Das via cutting)</li>
  3344. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1385">HADOOP-1385</a>. Fix MD5Hash#hashCode() to generally hash to more
  3345. than 256 values.<br />(omalley via cutting)</li>
  3346. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1386">HADOOP-1386</a>. Fix Path to not permit the empty string as a
  3347. path, as this has lead to accidental file deletion. Instead
  3348. force applications to use "." to name the default directory.<br />(Hairong Kuang via cutting)</li>
  3349. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1407">HADOOP-1407</a>. Fix integer division bug in JobInProgress which
  3350. meant failed tasks didn't cause the job to fail.<br />(Arun C Murthy via tomwhite)</li>
  3351. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1427">HADOOP-1427</a>. Fix a typo that caused GzipCodec to incorrectly use
  3352. a very small input buffer.<br />(Espen Amble Kolstad via cutting)</li>
  3353. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1435">HADOOP-1435</a>. Fix globbing code to no longer use the empty string
  3354. to indicate the default directory, per <a href="http://issues.apache.org/jira/browse/HADOOP-1386">HADOOP-1386</a>.<br />(Hairong Kuang via cutting)</li>
  3355. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1411">HADOOP-1411</a>. Make task retry framework handle
  3356. AlreadyBeingCreatedException when wrapped as a RemoteException.<br />(Hairong Kuang via tomwhite)</li>
  3357. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1242">HADOOP-1242</a>. Improve handling of DFS upgrades.<br />(Konstantin Shvachko via cutting)</li>
  3358. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1332">HADOOP-1332</a>. Fix so that TaskTracker exits reliably during unit
  3359. tests on Windows.<br />(omalley via cutting)</li>
  3360. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1431">HADOOP-1431</a>. Fix so that sort progress reporting during map runs
  3361. only while sorting, so that stuck maps are correctly terminated.<br />(Devaraj Das and Arun C Murthy via cutting)</li>
  3362. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1452">HADOOP-1452</a>. Change TaskTracker.MapOutputServlet.doGet.totalRead
  3363. to a long, permitting map outputs to exceed 2^31 bytes.<br />(omalley via cutting)</li>
  3364. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1443">HADOOP-1443</a>. Fix a bug opening zero-length files in HDFS.<br />(Konstantin Shvachko via cutting)</li>
  3365. </ol>
  3366. <h3><a href="javascript:toggleList('release_0.12.3_-_2007-04-06_')">Release 0.12.3 - 2007-04-06
  3367. </a></h3>
  3368. <ol id="release_0.12.3_-_2007-04-06_">
  3369. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1162">HADOOP-1162</a>. Fix bug in record CSV and XML serialization of
  3370. binary values.<br />(Milind Bhandarkar via cutting)</li>
  3371. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1123">HADOOP-1123</a>. Fix NullPointerException in LocalFileSystem when
  3372. trying to recover from a checksum error.<br />(Hairong Kuang &amp; Nigel Daley via tomwhite)</li>
  3373. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1177">HADOOP-1177</a>. Fix bug where IOException in MapOutputLocation.getFile
  3374. was not being logged.<br />(Devaraj Das via tomwhite)</li>
  3375. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1175">HADOOP-1175</a>. Fix bugs in JSP for displaying a task's log messages.<br />(Arun C Murthy via cutting)</li>
  3376. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1191">HADOOP-1191</a>. Fix map tasks to wait until sort progress thread has
  3377. stopped before reporting the task done.<br />(Devaraj Das via cutting)</li>
  3378. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1192">HADOOP-1192</a>. Fix an integer overflow bug in FSShell's 'dus'
  3379. command and a performance problem in HDFS's implementation of it.<br />(Hairong Kuang via cutting)</li>
  3380. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1105">HADOOP-1105</a>. Fix reducers to make "progress" while iterating
  3381. through values.<br />(Devaraj Das &amp; Owen O'Malley via tomwhite)</li>
  3382. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1179">HADOOP-1179</a>. Make Task Tracker close index file as soon as the read
  3383. is done when serving get-map-output requests.<br />(Devaraj Das via tomwhite)</li>
  3384. </ol>
  3385. <h3><a href="javascript:toggleList('release_0.12.2_-_2007-23-17_')">Release 0.12.2 - 2007-23-17
  3386. </a></h3>
  3387. <ol id="release_0.12.2_-_2007-23-17_">
  3388. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1135">HADOOP-1135</a>. Fix bug in block report processing which may cause
  3389. the namenode to delete blocks.<br />(Dhruba Borthakur via tomwhite)</li>
  3390. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1145">HADOOP-1145</a>. Make XML serializer and deserializer classes public
  3391. in record package.<br />(Milind Bhandarkar via cutting)</li>
  3392. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1140">HADOOP-1140</a>. Fix a deadlock in metrics.<br />(David Bowen via cutting)</li>
  3393. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1150">HADOOP-1150</a>. Fix streaming -reducer and -mapper to give them
  3394. defaults.<br />(Owen O'Malley via tomwhite)</li>
  3395. </ol>
  3396. <h3><a href="javascript:toggleList('release_0.12.1_-_2007-03-17_')">Release 0.12.1 - 2007-03-17
  3397. </a></h3>
  3398. <ol id="release_0.12.1_-_2007-03-17_">
  3399. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1035">HADOOP-1035</a>. Fix a StackOverflowError in FSDataSet.<br />(Raghu Angadi via cutting)</li>
  3400. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1053">HADOOP-1053</a>. Fix VInt representation of negative values. Also
  3401. remove references in generated record code to methods outside of
  3402. the record package and improve some record documentation.<br />(Milind Bhandarkar via cutting)</li>
  3403. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1067">HADOOP-1067</a>. Compile fails if Checkstyle jar is present in lib
  3404. directory. Also remove dependency on a particular Checkstyle
  3405. version number.<br />(tomwhite)</li>
  3406. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1060">HADOOP-1060</a>. Fix an IndexOutOfBoundsException in the JobTracker
  3407. that could cause jobs to hang.<br />(Arun C Murthy via cutting)</li>
  3408. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1077">HADOOP-1077</a>. Fix a race condition fetching map outputs that could
  3409. hang reduces.<br />(Devaraj Das via cutting)</li>
  3410. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1083">HADOOP-1083</a>. Fix so that when a cluster restarts with a missing
  3411. datanode, its blocks are replicated.<br />(Hairong Kuang via cutting)</li>
  3412. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1082">HADOOP-1082</a>. Fix a NullPointerException in ChecksumFileSystem.<br />(Hairong Kuang via cutting)</li>
  3413. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1088">HADOOP-1088</a>. Fix record serialization of negative values.<br />(Milind Bhandarkar via cutting)</li>
  3414. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1080">HADOOP-1080</a>. Fix bug in bin/hadoop on Windows when native
  3415. libraries are present.<br />(ab via cutting)</li>
  3416. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1091">HADOOP-1091</a>. Fix a NullPointerException in MetricsRecord.<br />(David Bowen via tomwhite)</li>
  3417. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1092">HADOOP-1092</a>. Fix a NullPointerException in HeartbeatMonitor
  3418. thread.<br />(Hairong Kuang via tomwhite)</li>
  3419. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1112">HADOOP-1112</a>. Fix a race condition in Hadoop metrics.<br />(David Bowen via tomwhite)</li>
  3420. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1108">HADOOP-1108</a>. Checksummed file system should retry reading if a
  3421. different replica is found when handling ChecksumException.<br />(Hairong Kuang via tomwhite)</li>
  3422. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1070">HADOOP-1070</a>. Fix a problem with number of racks and datanodes
  3423. temporarily doubling.<br />(Konstantin Shvachko via tomwhite)</li>
  3424. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1099">HADOOP-1099</a>. Fix NullPointerException in JobInProgress.<br />(Gautam Kowshik via tomwhite)</li>
  3425. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1115">HADOOP-1115</a>. Fix bug where FsShell copyToLocal doesn't
  3426. copy directories.<br />(Hairong Kuang via tomwhite)</li>
  3427. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1109">HADOOP-1109</a>. Fix NullPointerException in StreamInputFormat.<br />(Koji Noguchi via tomwhite)</li>
  3428. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1117">HADOOP-1117</a>. Fix DFS scalability: when the namenode is
  3429. restarted it consumes 80% CPU.<br />(Dhruba Borthakur via
  3430. tomwhite)</li>
  3431. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1089">HADOOP-1089</a>. Make the C++ version of write and read v-int
  3432. agree with the Java versions.<br />(Milind Bhandarkar via
  3433. tomwhite)</li>
  3434. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1096">HADOOP-1096</a>. Rename InputArchive and OutputArchive and
  3435. make them public.<br />(Milind Bhandarkar via tomwhite)</li>
  3436. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1128">HADOOP-1128</a>. Fix missing progress information in map tasks.<br />(Espen Amble Kolstad, Andrzej Bialecki, and Owen O'Malley
  3437. via tomwhite)</li>
  3438. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1129">HADOOP-1129</a>. Fix DFSClient to not hide IOExceptions in
  3439. flush method.<br />(Hairong Kuang via tomwhite)</li>
  3440. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1126">HADOOP-1126</a>. Optimize CPU usage for under replicated blocks
  3441. when cluster restarts.<br />(Hairong Kuang via tomwhite)</li>
  3442. </ol>
  3443. <h3><a href="javascript:toggleList('release_0.12.0_-_2007-03-02_')">Release 0.12.0 - 2007-03-02
  3444. </a></h3>
  3445. <ol id="release_0.12.0_-_2007-03-02_">
  3446. <li><a href="http://issues.apache.org/jira/browse/HADOOP-975">HADOOP-975</a>. Separate stdout and stderr from tasks.<br />(Arun C Murthy via cutting)</li>
  3447. <li><a href="http://issues.apache.org/jira/browse/HADOOP-982">HADOOP-982</a>. Add some setters and a toString() method to
  3448. BytesWritable.<br />(omalley via cutting)</li>
  3449. <li><a href="http://issues.apache.org/jira/browse/HADOOP-858">HADOOP-858</a>. Move contrib/smallJobsBenchmark to src/test, removing
  3450. obsolete bits.<br />(Nigel Daley via cutting)</li>
  3451. <li><a href="http://issues.apache.org/jira/browse/HADOOP-992">HADOOP-992</a>. Fix MiniMR unit tests to use MiniDFS when specified,
  3452. rather than the local FS.<br />(omalley via cutting)</li>
  3453. <li><a href="http://issues.apache.org/jira/browse/HADOOP-954">HADOOP-954</a>. Change use of metrics to use callback mechanism.
  3454. Also rename utility class Metrics to MetricsUtil.<br />(David Bowen &amp; Nigel Daley via cutting)</li>
  3455. <li><a href="http://issues.apache.org/jira/browse/HADOOP-893">HADOOP-893</a>. Improve HDFS client's handling of dead datanodes.
  3456. The set is no longer reset with each block, but rather is now
  3457. maintained for the life of an open file.<br />(Raghu Angadi via cutting)</li>
  3458. <li><a href="http://issues.apache.org/jira/browse/HADOOP-882">HADOOP-882</a>. Upgrade to jets3t version 0.5, used by the S3
  3459. FileSystem. This version supports retries.<br />(Michael Stack via cutting)</li>
  3460. <li><a href="http://issues.apache.org/jira/browse/HADOOP-977">HADOOP-977</a>. Send task's stdout and stderr to JobClient's stdout
  3461. and stderr respectively, with each line tagged by the task's name.<br />(Arun C Murthy via cutting)</li>
  3462. <li><a href="http://issues.apache.org/jira/browse/HADOOP-761">HADOOP-761</a>. Change unit tests to not use /tmp.<br />(Nigel Daley via cutting)</li>
  3463. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1007">HADOOP-1007</a>. Make names of metrics used in Hadoop unique.<br />(Nigel Daley via cutting)</li>
  3464. <li><a href="http://issues.apache.org/jira/browse/HADOOP-491">HADOOP-491</a>. Change mapred.task.timeout to be per-job, and make a
  3465. value of zero mean no timeout. Also change contrib/streaming to
  3466. disable task timeouts.<br />(Arun C Murthy via cutting)</li>
  3467. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1010">HADOOP-1010</a>. Add Reporter.NULL, a Reporter implementation that
  3468. does nothing.<br />(Runping Qi via cutting)</li>
  3469. <li><a href="http://issues.apache.org/jira/browse/HADOOP-923">HADOOP-923</a>. In HDFS NameNode, move replication computation to a
  3470. separate thread, to improve heartbeat processing time.<br />(Dhruba Borthakur via cutting)</li>
  3471. <li><a href="http://issues.apache.org/jira/browse/HADOOP-476">HADOOP-476</a>. Rewrite contrib/streaming command-line processing,
  3472. improving parameter validation.<br />(Sanjay Dahiya via cutting)</li>
  3473. <li><a href="http://issues.apache.org/jira/browse/HADOOP-973">HADOOP-973</a>. Improve error messages in Namenode. This should help
  3474. to track down a problem that was appearing as a
  3475. NullPointerException.<br />(Dhruba Borthakur via cutting)</li>
  3476. <li><a href="http://issues.apache.org/jira/browse/HADOOP-649">HADOOP-649</a>. Fix so that jobs with no tasks are not lost.<br />(Thomas Friol via cutting)</li>
  3477. <li><a href="http://issues.apache.org/jira/browse/HADOOP-803">HADOOP-803</a>. Reduce memory use by HDFS namenode, phase I.<br />(Raghu Angadi via cutting)</li>
  3478. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1021">HADOOP-1021</a>. Fix MRCaching-based unit tests on Windows.<br />(Nigel Daley via cutting)</li>
  3479. <li><a href="http://issues.apache.org/jira/browse/HADOOP-889">HADOOP-889</a>. Remove duplicate code from HDFS unit tests.<br />(Milind Bhandarkar via cutting)</li>
  3480. <li><a href="http://issues.apache.org/jira/browse/HADOOP-943">HADOOP-943</a>. Improve HDFS's fsck command to display the filename
  3481. for under-replicated blocks.<br />(Dhruba Borthakur via cutting)</li>
  3482. <li><a href="http://issues.apache.org/jira/browse/HADOOP-333">HADOOP-333</a>. Add validator for sort benchmark output.<br />(Arun C Murthy via cutting)</li>
  3483. <li><a href="http://issues.apache.org/jira/browse/HADOOP-947">HADOOP-947</a>. Improve performance of datanode decomissioning.<br />(Dhruba Borthakur via cutting)</li>
  3484. <li><a href="http://issues.apache.org/jira/browse/HADOOP-442">HADOOP-442</a>. Permit one to specify hosts allowed to connect to
  3485. namenode and jobtracker with include and exclude files.<br />(Wendy
  3486. Chien via cutting)</li>
  3487. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1017">HADOOP-1017</a>. Cache constructors, for improved performance.<br />(Ron Bodkin via cutting)</li>
  3488. <li><a href="http://issues.apache.org/jira/browse/HADOOP-867">HADOOP-867</a>. Move split creation out of JobTracker to client.
  3489. Splits are now saved in a separate file, read by task processes
  3490. directly, so that user code is no longer required in the
  3491. JobTracker.<br />(omalley via cutting)</li>
  3492. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1006">HADOOP-1006</a>. Remove obsolete '-local' option from test code.<br />(Gautam Kowshik via cutting)</li>
  3493. <li><a href="http://issues.apache.org/jira/browse/HADOOP-952">HADOOP-952</a>. Create a public (shared) Hadoop EC2 AMI.
  3494. The EC2 scripts now support launch of public AMIs.<br />(tomwhite)</li>
  3495. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1025">HADOOP-1025</a>. Remove some obsolete code in ipc.Server.<br />(cutting)</li>
  3496. <li><a href="http://issues.apache.org/jira/browse/HADOOP-997">HADOOP-997</a>. Implement S3 retry mechanism for failed block
  3497. transfers. This includes a generic retry mechanism for use
  3498. elsewhere in Hadoop.<br />(tomwhite)</li>
  3499. <li><a href="http://issues.apache.org/jira/browse/HADOOP-990">HADOOP-990</a>. Improve HDFS support for full datanode volumes.<br />(Raghu Angadi via cutting)</li>
  3500. <li><a href="http://issues.apache.org/jira/browse/HADOOP-564">HADOOP-564</a>. Replace uses of "dfs://" URIs with the more standard
  3501. "hdfs://".<br />(Wendy Chien via cutting)</li>
  3502. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1030">HADOOP-1030</a>. In unit tests, unify setting of ipc.client.timeout.
  3503. Also increase the value used from one to two seconds, in hopes of
  3504. making tests complete more reliably.<br />(cutting)</li>
  3505. <li><a href="http://issues.apache.org/jira/browse/HADOOP-654">HADOOP-654</a>. Stop assigning tasks to a tasktracker if it has
  3506. failed more than a specified number in the job.<br />(Arun C Murthy via cutting)</li>
  3507. <li><a href="http://issues.apache.org/jira/browse/HADOOP-985">HADOOP-985</a>. Change HDFS to identify nodes by IP address rather
  3508. than by DNS hostname.<br />(Raghu Angadi via cutting)</li>
  3509. <li><a href="http://issues.apache.org/jira/browse/HADOOP-248">HADOOP-248</a>. Optimize location of map outputs to not use random
  3510. probes.<br />(Devaraj Das via cutting)</li>
  3511. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1029">HADOOP-1029</a>. Fix streaming's input format to correctly seek to
  3512. the start of splits.<br />(Arun C Murthy via cutting)</li>
  3513. <li><a href="http://issues.apache.org/jira/browse/HADOOP-492">HADOOP-492</a>. Add per-job and per-task counters. These are
  3514. incremented via the Reporter interface and available through the
  3515. web ui and the JobClient API. The mapreduce framework maintains a
  3516. few basic counters, and applications may add their own. Counters
  3517. are also passed to the metrics system.<br />(David Bowen via cutting)</li>
  3518. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1034">HADOOP-1034</a>. Fix datanode to better log exceptions.<br />(Philippe Gassmann via cutting)</li>
  3519. <li><a href="http://issues.apache.org/jira/browse/HADOOP-878">HADOOP-878</a>. In contrib/streaming, fix reducer=NONE to work with
  3520. multiple maps.<br />(Arun C Murthy via cutting)</li>
  3521. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1039">HADOOP-1039</a>. In HDFS's TestCheckpoint, avoid restarting
  3522. MiniDFSCluster so often, speeding this test.<br />(Dhruba Borthakur via cutting)</li>
  3523. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1040">HADOOP-1040</a>. Update RandomWriter example to use counters and
  3524. user-defined input and output formats.<br />(omalley via cutting)</li>
  3525. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1027">HADOOP-1027</a>. Fix problems with in-memory merging during shuffle
  3526. and re-enable this optimization.<br />(Devaraj Das via cutting)</li>
  3527. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1036">HADOOP-1036</a>. Fix exception handling in TaskTracker to keep tasks
  3528. from being lost.<br />(Arun C Murthy via cutting)</li>
  3529. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1042">HADOOP-1042</a>. Improve the handling of failed map output fetches.<br />(Devaraj Das via cutting)</li>
  3530. <li><a href="http://issues.apache.org/jira/browse/HADOOP-928">HADOOP-928</a>. Make checksums optional per FileSystem.<br />(Hairong Kuang via cutting)</li>
  3531. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1044">HADOOP-1044</a>. Fix HDFS's TestDecommission to not spuriously fail.<br />(Wendy Chien via cutting)</li>
  3532. <li><a href="http://issues.apache.org/jira/browse/HADOOP-972">HADOOP-972</a>. Optimize HDFS's rack-aware block placement algorithm.<br />(Hairong Kuang via cutting)</li>
  3533. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1043">HADOOP-1043</a>. Optimize shuffle, increasing parallelism.<br />(Devaraj Das via cutting)</li>
  3534. <li><a href="http://issues.apache.org/jira/browse/HADOOP-940">HADOOP-940</a>. Improve HDFS's replication scheduling.<br />(Dhruba Borthakur via cutting)</li>
  3535. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1020">HADOOP-1020</a>. Fix a bug in Path resolution, and a with unit tests
  3536. on Windows.<br />(cutting)</li>
  3537. <li><a href="http://issues.apache.org/jira/browse/HADOOP-941">HADOOP-941</a>. Enhance record facility.<br />(Milind Bhandarkar via cutting)</li>
  3538. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1000">HADOOP-1000</a>. Fix so that log messages in task subprocesses are
  3539. not written to a task's standard error.<br />(Arun C Murthy via cutting)</li>
  3540. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1037">HADOOP-1037</a>. Fix bin/slaves.sh, which currently only works with
  3541. /bin/bash, to specify /bin/bash rather than /bin/sh.<br />(cutting)</li>
  3542. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1046">HADOOP-1046</a>. Clean up tmp from partially received stale block files.<br />(ab)</li>
  3543. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1041">HADOOP-1041</a>. Optimize mapred counter implementation. Also group
  3544. counters by their declaring Enum.<br />(David Bowen via cutting)</li>
  3545. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1032">HADOOP-1032</a>. Permit one to specify jars that will be cached
  3546. across multiple jobs.<br />(Gautam Kowshik via cutting)</li>
  3547. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1051">HADOOP-1051</a>. Add optional checkstyle task to build.xml. To use
  3548. this developers must download the (LGPL'd) checkstyle jar
  3549. themselves.<br />(tomwhite via cutting)</li>
  3550. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1049">HADOOP-1049</a>. Fix a race condition in IPC client.<br />(Devaraj Das via cutting)</li>
  3551. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1056">HADOOP-1056</a>. Check HDFS include/exclude node lists with both IP
  3552. address and hostname.<br />(Wendy Chien via cutting)</li>
  3553. <li><a href="http://issues.apache.org/jira/browse/HADOOP-994">HADOOP-994</a>. In HDFS, limit the number of blocks invalidated at
  3554. once. Large lists were causing datenodes to timeout.<br />(Dhruba Borthakur via cutting)</li>
  3555. <li><a href="http://issues.apache.org/jira/browse/HADOOP-432">HADOOP-432</a>. Add a trash feature, disabled by default. When
  3556. enabled, the FSShell 'rm' command will move things to a trash
  3557. directory in the filesystem. In HDFS, a thread periodically
  3558. checkpoints the trash and removes old checkpoints.<br />(cutting)</li>
  3559. </ol>
  3560. <h3><a href="javascript:toggleList('release_0.11.2_-_2007-02-16_')">Release 0.11.2 - 2007-02-16
  3561. </a></h3>
  3562. <ol id="release_0.11.2_-_2007-02-16_">
  3563. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1009">HADOOP-1009</a>. Fix an infinite loop in the HDFS namenode.<br />(Dhruba Borthakur via cutting)</li>
  3564. <li><a href="http://issues.apache.org/jira/browse/HADOOP-1014">HADOOP-1014</a>. Disable in-memory merging during shuffle, as this is
  3565. causing data corruption.<br />(Devaraj Das via cutting)</li>
  3566. </ol>
  3567. <h3><a href="javascript:toggleList('release_0.11.1_-_2007-02-09_')">Release 0.11.1 - 2007-02-09
  3568. </a></h3>
  3569. <ol id="release_0.11.1_-_2007-02-09_">
  3570. <li><a href="http://issues.apache.org/jira/browse/HADOOP-976">HADOOP-976</a>. Make SequenceFile.Metadata public.<br />(Runping Qi via cutting)</li>
  3571. <li><a href="http://issues.apache.org/jira/browse/HADOOP-917">HADOOP-917</a>. Fix a NullPointerException in SequenceFile's merger
  3572. with large map outputs.<br />(omalley via cutting)</li>
  3573. <li><a href="http://issues.apache.org/jira/browse/HADOOP-984">HADOOP-984</a>. Fix a bug in shuffle error handling introduced by
  3574. <a href="http://issues.apache.org/jira/browse/HADOOP-331">HADOOP-331</a>. If a map output is unavailable, the job tracker is
  3575. once more informed.<br />(Arun C Murthy via cutting)</li>
  3576. <li><a href="http://issues.apache.org/jira/browse/HADOOP-987">HADOOP-987</a>. Fix a problem in HDFS where blocks were not removed
  3577. from neededReplications after a replication target was selected.<br />(Hairong Kuang via cutting)</li>
  3578. </ol>
  3579. <h3><a href="javascript:toggleList('release_0.11.0_-_2007-02-02_')">Release 0.11.0 - 2007-02-02
  3580. </a></h3>
  3581. <ol id="release_0.11.0_-_2007-02-02_">
  3582. <li><a href="http://issues.apache.org/jira/browse/HADOOP-781">HADOOP-781</a>. Remove methods deprecated in 0.10 that are no longer
  3583. widely used.<br />(cutting)</li>
  3584. <li><a href="http://issues.apache.org/jira/browse/HADOOP-842">HADOOP-842</a>. Change HDFS protocol so that the open() method is
  3585. passed the client hostname, to permit the namenode to order block
  3586. locations on the basis of network topology.<br />(Hairong Kuang via cutting)</li>
  3587. <li><a href="http://issues.apache.org/jira/browse/HADOOP-852">HADOOP-852</a>. Add an ant task to compile record definitions, and
  3588. use it to compile record unit tests.<br />(Milind Bhandarkar via cutting)</li>
  3589. <li><a href="http://issues.apache.org/jira/browse/HADOOP-757">HADOOP-757</a>. Fix "Bad File Descriptor" exception in HDFS client
  3590. when an output file is closed twice.<br />(Raghu Angadi via cutting)</li>
  3591. <li>[ intentionally blank ]
  3592. </li>
  3593. <li><a href="http://issues.apache.org/jira/browse/HADOOP-890">HADOOP-890</a>. Replace dashes in metric names with underscores,
  3594. for better compatibility with some monitoring systems.<br />(Nigel Daley via cutting)</li>
  3595. <li><a href="http://issues.apache.org/jira/browse/HADOOP-801">HADOOP-801</a>. Add to jobtracker a log of task completion events.<br />(Sanjay Dahiya via cutting)</li>
  3596. <li><a href="http://issues.apache.org/jira/browse/HADOOP-855">HADOOP-855</a>. In HDFS, try to repair files with checksum errors.
  3597. An exception is still thrown, but corrupt blocks are now removed
  3598. when they have replicas.<br />(Wendy Chien via cutting)</li>
  3599. <li><a href="http://issues.apache.org/jira/browse/HADOOP-886">HADOOP-886</a>. Reduce number of timer threads created by metrics API
  3600. by pooling contexts.<br />(Nigel Daley via cutting)</li>
  3601. <li><a href="http://issues.apache.org/jira/browse/HADOOP-897">HADOOP-897</a>. Add a "javac.args" property to build.xml that permits
  3602. one to pass arbitrary options to javac.<br />(Milind Bhandarkar via cutting)</li>
  3603. <li><a href="http://issues.apache.org/jira/browse/HADOOP-899">HADOOP-899</a>. Update libhdfs for changes in <a href="http://issues.apache.org/jira/browse/HADOOP-871">HADOOP-871</a>.<br />(Sameer Paranjpye via cutting)</li>
  3604. <li><a href="http://issues.apache.org/jira/browse/HADOOP-905">HADOOP-905</a>. Remove some dead code from JobClient.<br />(cutting)</li>
  3605. <li><a href="http://issues.apache.org/jira/browse/HADOOP-902">HADOOP-902</a>. Fix a NullPointerException in HDFS client when
  3606. closing output streams.<br />(Raghu Angadi via cutting)</li>
  3607. <li><a href="http://issues.apache.org/jira/browse/HADOOP-735">HADOOP-735</a>. Switch generated record code to use BytesWritable to
  3608. represent fields of type 'buffer'.<br />(Milind Bhandarkar via cutting)</li>
  3609. <li><a href="http://issues.apache.org/jira/browse/HADOOP-830">HADOOP-830</a>. Improve mapreduce merge performance by buffering and
  3610. merging multiple map outputs as they arrive at reduce nodes before
  3611. they're written to disk.<br />(Devaraj Das via cutting)</li>
  3612. <li><a href="http://issues.apache.org/jira/browse/HADOOP-908">HADOOP-908</a>. Add a new contrib package, Abacus, that simplifies
  3613. counting and aggregation, built on MapReduce.<br />(Runping Qi via cutting)</li>
  3614. <li><a href="http://issues.apache.org/jira/browse/HADOOP-901">HADOOP-901</a>. Add support for recursive renaming to the S3 filesystem.<br />(Tom White via cutting)</li>
  3615. <li><a href="http://issues.apache.org/jira/browse/HADOOP-912">HADOOP-912</a>. Fix a bug in TaskTracker.isIdle() that was
  3616. sporadically causing unit test failures.<br />(Arun C Murthy via cutting)</li>
  3617. <li><a href="http://issues.apache.org/jira/browse/HADOOP-909">HADOOP-909</a>. Fix the 'du' command to correctly compute the size of
  3618. FileSystem directory trees.<br />(Hairong Kuang via cutting)</li>
  3619. <li><a href="http://issues.apache.org/jira/browse/HADOOP-731">HADOOP-731</a>. When a checksum error is encountered on a file stored
  3620. in HDFS, try another replica of the data, if any.<br />(Wendy Chien via cutting)</li>
  3621. <li><a href="http://issues.apache.org/jira/browse/HADOOP-732">HADOOP-732</a>. Add support to SequenceFile for arbitrary metadata,
  3622. as a set of attribute value pairs.<br />(Runping Qi via cutting)</li>
  3623. <li><a href="http://issues.apache.org/jira/browse/HADOOP-929">HADOOP-929</a>. Fix PhasedFileSystem to pass configuration to
  3624. underlying FileSystem.<br />(Sanjay Dahiya via cutting)</li>
  3625. <li><a href="http://issues.apache.org/jira/browse/HADOOP-935">HADOOP-935</a>. Fix contrib/abacus to not delete pre-existing output
  3626. files, but rather to fail in this case.<br />(Runping Qi via cutting)</li>
  3627. <li><a href="http://issues.apache.org/jira/browse/HADOOP-936">HADOOP-936</a>. More metric renamings, as in <a href="http://issues.apache.org/jira/browse/HADOOP-890">HADOOP-890</a>.<br />(Nigel Daley via cutting)</li>
  3628. <li><a href="http://issues.apache.org/jira/browse/HADOOP-856">HADOOP-856</a>. Fix HDFS's fsck command to not report that
  3629. non-existent filesystems are healthy.<br />(Milind Bhandarkar via cutting)</li>
  3630. <li><a href="http://issues.apache.org/jira/browse/HADOOP-602">HADOOP-602</a>. Remove the dependency on Lucene's PriorityQueue
  3631. utility, by copying it into Hadoop. This facilitates using Hadoop
  3632. with different versions of Lucene without worrying about CLASSPATH
  3633. order.<br />(Milind Bhandarkar via cutting)</li>
  3634. <li>[ intentionally blank ]
  3635. </li>
  3636. <li><a href="http://issues.apache.org/jira/browse/HADOOP-227">HADOOP-227</a>. Add support for backup namenodes, which periodically
  3637. get snapshots of the namenode state.<br />(Dhruba Borthakur via cutting)</li>
  3638. <li><a href="http://issues.apache.org/jira/browse/HADOOP-884">HADOOP-884</a>. Add scripts in contrib/ec2 to facilitate running
  3639. Hadoop on an Amazon's EC2 cluster.<br />(Tom White via cutting)</li>
  3640. <li><a href="http://issues.apache.org/jira/browse/HADOOP-937">HADOOP-937</a>. Change the namenode to request re-registration of
  3641. datanodes in more circumstances.<br />(Hairong Kuang via cutting)</li>
  3642. <li><a href="http://issues.apache.org/jira/browse/HADOOP-922">HADOOP-922</a>. Optimize small forward seeks in HDFS. If data is has
  3643. likely already in flight, skip ahead rather than re-opening the
  3644. block.<br />(Dhruba Borthakur via cutting)</li>
  3645. <li><a href="http://issues.apache.org/jira/browse/HADOOP-961">HADOOP-961</a>. Add a 'job -events' sub-command that prints job
  3646. events, including task completions and failures.<br />(omalley via cutting)</li>
  3647. <li><a href="http://issues.apache.org/jira/browse/HADOOP-959">HADOOP-959</a>. Fix namenode snapshot code added in <a href="http://issues.apache.org/jira/browse/HADOOP-227">HADOOP-227</a> to
  3648. work on Windows.<br />(Dhruba Borthakur via cutting)</li>
  3649. <li><a href="http://issues.apache.org/jira/browse/HADOOP-934">HADOOP-934</a>. Fix TaskTracker to catch metrics exceptions that were
  3650. causing heartbeats to fail.<br />(Arun Murthy via cutting)</li>
  3651. <li><a href="http://issues.apache.org/jira/browse/HADOOP-881">HADOOP-881</a>. Fix JobTracker web interface to display the correct
  3652. number of task failures.<br />(Sanjay Dahiya via cutting)</li>
  3653. <li><a href="http://issues.apache.org/jira/browse/HADOOP-788">HADOOP-788</a>. Change contrib/streaming to subclass TextInputFormat,
  3654. permitting it to take advantage of native compression facilities.<br />(Sanjay Dahiya via cutting)</li>
  3655. <li><a href="http://issues.apache.org/jira/browse/HADOOP-962">HADOOP-962</a>. In contrib/ec2: make scripts executable in tar file;
  3656. add a README; make the environment file use a template.<br />(Tom White via cutting)</li>
  3657. <li><a href="http://issues.apache.org/jira/browse/HADOOP-549">HADOOP-549</a>. Fix a NullPointerException in TaskReport's
  3658. serialization.<br />(omalley via cutting)</li>
  3659. <li><a href="http://issues.apache.org/jira/browse/HADOOP-963">HADOOP-963</a>. Fix remote exceptions to have the stack trace of the
  3660. caller thread, not the IPC listener thread.<br />(omalley via cutting)</li>
  3661. <li><a href="http://issues.apache.org/jira/browse/HADOOP-967">HADOOP-967</a>. Change RPC clients to start sending a version header.<br />(omalley via cutting)</li>
  3662. <li><a href="http://issues.apache.org/jira/browse/HADOOP-964">HADOOP-964</a>. Fix a bug introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-830">HADOOP-830</a> where jobs failed
  3663. whose comparators and/or i/o types were in the job's jar.<br />(Dennis Kubes via cutting)</li>
  3664. <li><a href="http://issues.apache.org/jira/browse/HADOOP-969">HADOOP-969</a>. Fix a deadlock in JobTracker.<br />(omalley via cutting)</li>
  3665. <li><a href="http://issues.apache.org/jira/browse/HADOOP-862">HADOOP-862</a>. Add support for the S3 FileSystem to the CopyFiles
  3666. tool.<br />(Michael Stack via cutting)</li>
  3667. <li><a href="http://issues.apache.org/jira/browse/HADOOP-965">HADOOP-965</a>. Fix IsolationRunner so that job's jar can be found.<br />(Dennis Kubes via cutting)</li>
  3668. <li><a href="http://issues.apache.org/jira/browse/HADOOP-309">HADOOP-309</a>. Fix two NullPointerExceptions in StatusHttpServer.<br />(navychen via cutting)</li>
  3669. <li><a href="http://issues.apache.org/jira/browse/HADOOP-692">HADOOP-692</a>. Add rack awareness to HDFS's placement of blocks.<br />(Hairong Kuang via cutting)</li>
  3670. </ol>
  3671. <h3><a href="javascript:toggleList('release_0.10.1_-_2007-01-10_')">Release 0.10.1 - 2007-01-10
  3672. </a></h3>
  3673. <ol id="release_0.10.1_-_2007-01-10_">
  3674. <li><a href="http://issues.apache.org/jira/browse/HADOOP-857">HADOOP-857</a>. Fix S3 FileSystem implementation to permit its use
  3675. for MapReduce input and output.<br />(Tom White via cutting)</li>
  3676. <li><a href="http://issues.apache.org/jira/browse/HADOOP-863">HADOOP-863</a>. Reduce logging verbosity introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-813">HADOOP-813</a>.<br />(Devaraj Das via cutting)</li>
  3677. <li><a href="http://issues.apache.org/jira/browse/HADOOP-815">HADOOP-815</a>. Fix memory leaks in JobTracker.<br />(Arun C Murthy via cutting)</li>
  3678. <li><a href="http://issues.apache.org/jira/browse/HADOOP-600">HADOOP-600</a>. Fix a race condition in JobTracker.<br />(Arun C Murthy via cutting)</li>
  3679. <li><a href="http://issues.apache.org/jira/browse/HADOOP-864">HADOOP-864</a>. Fix 'bin/hadoop -jar' to operate correctly when
  3680. hadoop.tmp.dir does not yet exist.<br />(omalley via cutting)</li>
  3681. <li><a href="http://issues.apache.org/jira/browse/HADOOP-866">HADOOP-866</a>. Fix 'dfs -get' command to remove existing crc files,
  3682. if any.<br />(Milind Bhandarkar via cutting)</li>
  3683. <li><a href="http://issues.apache.org/jira/browse/HADOOP-871">HADOOP-871</a>. Fix a bug in bin/hadoop setting JAVA_LIBRARY_PATH.<br />(Arun C Murthy via cutting)</li>
  3684. <li><a href="http://issues.apache.org/jira/browse/HADOOP-868">HADOOP-868</a>. Decrease the number of open files during map,
  3685. respecting io.sort.fa ctor.<br />(Devaraj Das via cutting)</li>
  3686. <li><a href="http://issues.apache.org/jira/browse/HADOOP-865">HADOOP-865</a>. Fix S3 FileSystem so that partially created files can
  3687. be deleted.<br />(Tom White via cutting)</li>
  3688. <li><a href="http://issues.apache.org/jira/browse/HADOOP-873">HADOOP-873</a>. Pass java.library.path correctly to child processes.<br />(omalley via cutting)</li>
  3689. <li><a href="http://issues.apache.org/jira/browse/HADOOP-851">HADOOP-851</a>. Add support for the LZO codec. This is much faster
  3690. than the default, zlib-based compression, but it is only available
  3691. when the native library is built.<br />(Arun C Murthy via cutting)</li>
  3692. <li><a href="http://issues.apache.org/jira/browse/HADOOP-880">HADOOP-880</a>. Fix S3 FileSystem to remove directories.<br />(Tom White via cutting)</li>
  3693. <li><a href="http://issues.apache.org/jira/browse/HADOOP-879">HADOOP-879</a>. Fix InputFormatBase to handle output generated by
  3694. MapFileOutputFormat.<br />(cutting)</li>
  3695. <li><a href="http://issues.apache.org/jira/browse/HADOOP-659">HADOOP-659</a>. In HDFS, prioritize replication of blocks based on
  3696. current replication level. Blocks which are severely
  3697. under-replicated should be further replicated before blocks which
  3698. are less under-replicated.<br />(Hairong Kuang via cutting)</li>
  3699. <li><a href="http://issues.apache.org/jira/browse/HADOOP-726">HADOOP-726</a>. Deprecate FileSystem locking methods. They are not
  3700. currently usable. Locking should eventually provided as an
  3701. independent service.<br />(Raghu Angadi via cutting)</li>
  3702. <li><a href="http://issues.apache.org/jira/browse/HADOOP-758">HADOOP-758</a>. Fix exception handling during reduce so that root
  3703. exceptions are not masked by exceptions in cleanups.<br />(Raghu Angadi via cutting)</li>
  3704. </ol>
  3705. <h3><a href="javascript:toggleList('release_0.10.0_-_2007-01-05_')">Release 0.10.0 - 2007-01-05
  3706. </a></h3>
  3707. <ol id="release_0.10.0_-_2007-01-05_">
  3708. <li><a href="http://issues.apache.org/jira/browse/HADOOP-763">HADOOP-763</a>. Change DFS namenode benchmark to not use MapReduce.<br />(Nigel Daley via cutting)</li>
  3709. <li><a href="http://issues.apache.org/jira/browse/HADOOP-777">HADOOP-777</a>. Use fully-qualified hostnames for tasktrackers and
  3710. datanodes.<br />(Mahadev Konar via cutting)</li>
  3711. <li><a href="http://issues.apache.org/jira/browse/HADOOP-621">HADOOP-621</a>. Change 'dfs -cat' to exit sooner when output has been
  3712. closed.<br />(Dhruba Borthakur via cutting)</li>
  3713. <li><a href="http://issues.apache.org/jira/browse/HADOOP-752">HADOOP-752</a>. Rationalize some synchronization in DFS namenode.<br />(Dhruba Borthakur via cutting)</li>
  3714. <li><a href="http://issues.apache.org/jira/browse/HADOOP-629">HADOOP-629</a>. Fix RPC services to better check the protocol name and
  3715. version.<br />(omalley via cutting)</li>
  3716. <li><a href="http://issues.apache.org/jira/browse/HADOOP-774">HADOOP-774</a>. Limit the number of invalid blocks returned with
  3717. heartbeats by the namenode to datanodes. Transmitting and
  3718. processing very large invalid block lists can tie up both the
  3719. namenode and datanode for too long.<br />(Dhruba Borthakur via cutting)</li>
  3720. <li><a href="http://issues.apache.org/jira/browse/HADOOP-738">HADOOP-738</a>. Change 'dfs -get' command to not create CRC files by
  3721. default, adding a -crc option to force their creation.<br />(Milind Bhandarkar via cutting)</li>
  3722. <li><a href="http://issues.apache.org/jira/browse/HADOOP-676">HADOOP-676</a>. Improved exceptions and error messages for common job
  3723. input specification errors.<br />(Sanjay Dahiya via cutting)</li>
  3724. <li>[Included in 0.9.2 release]
  3725. </li>
  3726. <li><a href="http://issues.apache.org/jira/browse/HADOOP-756">HADOOP-756</a>. Add new dfsadmin option to wait for filesystem to be
  3727. operational.<br />(Dhruba Borthakur via cutting)</li>
  3728. <li><a href="http://issues.apache.org/jira/browse/HADOOP-770">HADOOP-770</a>. Fix jobtracker web interface to display, on restart,
  3729. jobs that were running when it was last stopped.<br />(Sanjay Dahiya via cutting)</li>
  3730. <li><a href="http://issues.apache.org/jira/browse/HADOOP-331">HADOOP-331</a>. Write all map outputs to a single file with an index,
  3731. rather than to a separate file per reduce task. This should both
  3732. speed the shuffle and make things more scalable.<br />(Devaraj Das via cutting)</li>
  3733. <li><a href="http://issues.apache.org/jira/browse/HADOOP-818">HADOOP-818</a>. Fix contrib unit tests to not depend on core unit
  3734. tests.<br />(omalley via cutting)</li>
  3735. <li><a href="http://issues.apache.org/jira/browse/HADOOP-786">HADOOP-786</a>. Log common exception at debug level.<br />(Sanjay Dahiya via cutting)</li>
  3736. <li><a href="http://issues.apache.org/jira/browse/HADOOP-796">HADOOP-796</a>. Provide more convenient access to failed task
  3737. information in the web interface.<br />(Sanjay Dahiya via cutting)</li>
  3738. <li><a href="http://issues.apache.org/jira/browse/HADOOP-764">HADOOP-764</a>. Reduce memory allocations in namenode some.<br />(Dhruba Borthakur via cutting)</li>
  3739. <li><a href="http://issues.apache.org/jira/browse/HADOOP-802">HADOOP-802</a>. Update description of mapred.speculative.execution to
  3740. mention reduces.<br />(Nigel Daley via cutting)</li>
  3741. <li><a href="http://issues.apache.org/jira/browse/HADOOP-806">HADOOP-806</a>. Include link to datanodes on front page of namenode
  3742. web interface.<br />(Raghu Angadi via cutting)</li>
  3743. <li><a href="http://issues.apache.org/jira/browse/HADOOP-618">HADOOP-618</a>. Make JobSubmissionProtocol public.<br />(Arun C Murthy via cutting)</li>
  3744. <li><a href="http://issues.apache.org/jira/browse/HADOOP-782">HADOOP-782</a>. Fully remove killed tasks.<br />(Arun C Murthy via cutting)</li>
  3745. <li><a href="http://issues.apache.org/jira/browse/HADOOP-792">HADOOP-792</a>. Fix 'dfs -mv' to return correct status.<br />(Dhruba Borthakur via cutting)</li>
  3746. <li><a href="http://issues.apache.org/jira/browse/HADOOP-673">HADOOP-673</a>. Give each task its own working directory again.<br />(Mahadev Konar via cutting)</li>
  3747. <li><a href="http://issues.apache.org/jira/browse/HADOOP-571">HADOOP-571</a>. Extend the syntax of Path to be a URI; to be
  3748. optionally qualified with a scheme and authority. The scheme
  3749. determines the FileSystem implementation, while the authority
  3750. determines the FileSystem instance. New FileSystem
  3751. implementations may be provided by defining an fs.&lt;scheme&gt;.impl
  3752. property, naming the FileSystem implementation class. This
  3753. permits easy integration of new FileSystem implementations.<br />(cutting)</li>
  3754. <li><a href="http://issues.apache.org/jira/browse/HADOOP-720">HADOOP-720</a>. Add an HDFS white paper to website.<br />(Dhruba Borthakur via cutting)</li>
  3755. <li><a href="http://issues.apache.org/jira/browse/HADOOP-794">HADOOP-794</a>. Fix a divide-by-zero exception when a job specifies
  3756. zero map tasks.<br />(omalley via cutting)</li>
  3757. <li><a href="http://issues.apache.org/jira/browse/HADOOP-454">HADOOP-454</a>. Add a 'dfs -dus' command that provides summary disk
  3758. usage.<br />(Hairong Kuang via cutting)</li>
  3759. <li><a href="http://issues.apache.org/jira/browse/HADOOP-574">HADOOP-574</a>. Add an Amazon S3 implementation of FileSystem. To
  3760. use this, one need only specify paths of the form
  3761. s3://id:secret@bucket/. Alternately, the AWS access key id and
  3762. secret can be specified in your config, with the properties
  3763. fs.s3.awsAccessKeyId and fs.s3.awsSecretAccessKey.<br />(Tom White via cutting)</li>
  3764. <li><a href="http://issues.apache.org/jira/browse/HADOOP-824">HADOOP-824</a>. Rename DFSShell to be FsShell, since it applies
  3765. generically to all FileSystem implementations.<br />(cutting)</li>
  3766. <li><a href="http://issues.apache.org/jira/browse/HADOOP-813">HADOOP-813</a>. Fix map output sorting to report progress, so that
  3767. sorts which take longer than the task timeout do not fail.<br />(Devaraj Das via cutting)</li>
  3768. <li><a href="http://issues.apache.org/jira/browse/HADOOP-825">HADOOP-825</a>. Fix HDFS daemons when configured with new URI syntax.<br />(omalley via cutting)</li>
  3769. <li><a href="http://issues.apache.org/jira/browse/HADOOP-596">HADOOP-596</a>. Fix a bug in phase reporting during reduce.<br />(Sanjay Dahiya via cutting)</li>
  3770. <li><a href="http://issues.apache.org/jira/browse/HADOOP-811">HADOOP-811</a>. Add a utility, MultithreadedMapRunner.<br />(Alejandro Abdelnur via cutting)</li>
  3771. <li><a href="http://issues.apache.org/jira/browse/HADOOP-829">HADOOP-829</a>. Within HDFS, clearly separate three different
  3772. representations for datanodes: one for RPCs, one for
  3773. namenode-internal use, and one for namespace persistence.<br />(Dhruba Borthakur via cutting)</li>
  3774. <li><a href="http://issues.apache.org/jira/browse/HADOOP-823">HADOOP-823</a>. Fix problem starting datanode when not all configured
  3775. data directories exist.<br />(Bryan Pendleton via cutting)</li>
  3776. <li><a href="http://issues.apache.org/jira/browse/HADOOP-451">HADOOP-451</a>. Add a Split interface. CAUTION: This incompatibly
  3777. changes the InputFormat and RecordReader interfaces. Not only is
  3778. FileSplit replaced with Split, but a FileSystem parameter is no
  3779. longer passed in several methods, input validation has changed,
  3780. etc.<br />(omalley via cutting)</li>
  3781. <li><a href="http://issues.apache.org/jira/browse/HADOOP-814">HADOOP-814</a>. Optimize locking in namenode.<br />(Dhruba Borthakur via cutting)</li>
  3782. <li><a href="http://issues.apache.org/jira/browse/HADOOP-738">HADOOP-738</a>. Change 'fs -put' and 'fs -get' commands to accept
  3783. standard input and output, respectively. Standard i/o is
  3784. specified by a file named '-'.<br />(Wendy Chien via cutting)</li>
  3785. <li><a href="http://issues.apache.org/jira/browse/HADOOP-835">HADOOP-835</a>. Fix a NullPointerException reading record-compressed
  3786. SequenceFiles.<br />(Hairong Kuang via cutting)</li>
  3787. <li><a href="http://issues.apache.org/jira/browse/HADOOP-836">HADOOP-836</a>. Fix a MapReduce bug on Windows, where the wrong
  3788. FileSystem was used. Also add a static FileSystem.getLocal()
  3789. method and better Path checking in HDFS, to help avoid such issues
  3790. in the future.<br />(omalley via cutting)</li>
  3791. <li><a href="http://issues.apache.org/jira/browse/HADOOP-837">HADOOP-837</a>. Improve RunJar utility to unpack jar file
  3792. hadoop.tmp.dir, rather than the system temporary directory.<br />(Hairong Kuang via cutting)</li>
  3793. <li><a href="http://issues.apache.org/jira/browse/HADOOP-841">HADOOP-841</a>. Fix native library to build 32-bit version even when
  3794. on a 64-bit host, if a 32-bit JVM is used.<br />(Arun C Murthy via cutting)</li>
  3795. <li><a href="http://issues.apache.org/jira/browse/HADOOP-838">HADOOP-838</a>. Fix tasktracker to pass java.library.path to
  3796. sub-processes, so that libhadoop.a is found.<br />(Arun C Murthy via cutting)</li>
  3797. <li><a href="http://issues.apache.org/jira/browse/HADOOP-844">HADOOP-844</a>. Send metrics messages on a fixed-delay schedule
  3798. instead of a fixed-rate schedule.<br />(David Bowen via cutting)</li>
  3799. <li><a href="http://issues.apache.org/jira/browse/HADOOP-849">HADOOP-849</a>. Fix OutOfMemory exceptions in TaskTracker due to a
  3800. file handle leak in SequenceFile.<br />(Devaraj Das via cutting)</li>
  3801. <li><a href="http://issues.apache.org/jira/browse/HADOOP-745">HADOOP-745</a>. Fix a synchronization bug in the HDFS namenode.<br />(Dhruba Borthakur via cutting)</li>
  3802. <li><a href="http://issues.apache.org/jira/browse/HADOOP-850">HADOOP-850</a>. Add Writable implementations for variable-length
  3803. integers.<br />(ab via cutting)</li>
  3804. <li><a href="http://issues.apache.org/jira/browse/HADOOP-525">HADOOP-525</a>. Add raw comparators to record types. This greatly
  3805. improves record sort performance.<br />(Milind Bhandarkar via cutting)</li>
  3806. <li><a href="http://issues.apache.org/jira/browse/HADOOP-628">HADOOP-628</a>. Fix a problem with 'fs -cat' command, where some
  3807. characters were replaced with question marks.<br />(Wendy Chien via cutting)</li>
  3808. <li><a href="http://issues.apache.org/jira/browse/HADOOP-804">HADOOP-804</a>. Reduce verbosity of MapReduce logging.<br />(Sanjay Dahiya via cutting)</li>
  3809. <li><a href="http://issues.apache.org/jira/browse/HADOOP-853">HADOOP-853</a>. Rename 'site' to 'docs', in preparation for inclusion
  3810. in releases.<br />(cutting)</li>
  3811. <li><a href="http://issues.apache.org/jira/browse/HADOOP-371">HADOOP-371</a>. Include contrib jars and site documentation in
  3812. distributions. Also add contrib and example documentation to
  3813. distributed javadoc, in separate sections.<br />(Nigel Daley via cutting)</li>
  3814. <li><a href="http://issues.apache.org/jira/browse/HADOOP-846">HADOOP-846</a>. Report progress during entire map, as sorting of
  3815. intermediate outputs may happen at any time, potentially causing
  3816. task timeouts.<br />(Devaraj Das via cutting)</li>
  3817. <li><a href="http://issues.apache.org/jira/browse/HADOOP-840">HADOOP-840</a>. In task tracker, queue task cleanups and perform them
  3818. in a separate thread.<br />(omalley &amp; Mahadev Konar via cutting)</li>
  3819. <li><a href="http://issues.apache.org/jira/browse/HADOOP-681">HADOOP-681</a>. Add to HDFS the ability to decommission nodes. This
  3820. causes their blocks to be re-replicated on other nodes, so that
  3821. they may be removed from a cluster.<br />(Dhruba Borthakur via cutting)</li>
  3822. <li><a href="http://issues.apache.org/jira/browse/HADOOP-470">HADOOP-470</a>. In HDFS web ui, list the datanodes containing each
  3823. copy of a block.<br />(Hairong Kuang via cutting)</li>
  3824. <li><a href="http://issues.apache.org/jira/browse/HADOOP-700">HADOOP-700</a>. Change bin/hadoop to only include core jar file on
  3825. classpath, not example, test, etc. Also rename core jar to
  3826. hadoop-${version}-core.jar so that it can be more easily
  3827. identified.<br />(Nigel Daley via cutting)</li>
  3828. <li><a href="http://issues.apache.org/jira/browse/HADOOP-619">HADOOP-619</a>. Extend InputFormatBase to accept individual files and
  3829. glob patterns as MapReduce inputs, not just directories. Also
  3830. change contrib/streaming to use this.<br />(Sanjay Dahia via cutting)</li>
  3831. </ol>
  3832. <h3><a href="javascript:toggleList('release_0.9.2_-_2006-12-15_')">Release 0.9.2 - 2006-12-15
  3833. </a></h3>
  3834. <ol id="release_0.9.2_-_2006-12-15_">
  3835. <li><a href="http://issues.apache.org/jira/browse/HADOOP-639">HADOOP-639</a>. Restructure InterTrackerProtocol to make task
  3836. accounting more reliable.<br />(Arun C Murthy via cutting)</li>
  3837. <li><a href="http://issues.apache.org/jira/browse/HADOOP-827">HADOOP-827</a>. Turn off speculative execution by default, since it's
  3838. currently broken.<br />(omalley via cutting)</li>
  3839. <li><a href="http://issues.apache.org/jira/browse/HADOOP-791">HADOOP-791</a>. Fix a deadlock in the task tracker.<br />(Mahadev Konar via cutting)</li>
  3840. </ol>
  3841. <h3><a href="javascript:toggleList('release_0.9.1_-_2006-12-06_')">Release 0.9.1 - 2006-12-06
  3842. </a></h3>
  3843. <ol id="release_0.9.1_-_2006-12-06_">
  3844. <li><a href="http://issues.apache.org/jira/browse/HADOOP-780">HADOOP-780</a>. Use ReflectionUtils to instantiate key and value
  3845. objects.<br />(ab)</li>
  3846. <li><a href="http://issues.apache.org/jira/browse/HADOOP-779">HADOOP-779</a>. Fix contrib/streaming to work correctly with gzipped
  3847. input files.<br />(Hairong Kuang via cutting)</li>
  3848. </ol>
  3849. <h3><a href="javascript:toggleList('release_0.9.0_-_2006-12-01_')">Release 0.9.0 - 2006-12-01
  3850. </a></h3>
  3851. <ol id="release_0.9.0_-_2006-12-01_">
  3852. <li><a href="http://issues.apache.org/jira/browse/HADOOP-655">HADOOP-655</a>. Remove most deprecated code. A few deprecated things
  3853. remain, notably UTF8 and some methods that are still required.
  3854. Also cleaned up constructors for SequenceFile, MapFile, SetFile,
  3855. and ArrayFile a bit.<br />(cutting)</li>
  3856. <li><a href="http://issues.apache.org/jira/browse/HADOOP-565">HADOOP-565</a>. Upgrade to Jetty version 6.<br />(Sanjay Dahiya via cutting)</li>
  3857. <li><a href="http://issues.apache.org/jira/browse/HADOOP-682">HADOOP-682</a>. Fix DFS format command to work correctly when
  3858. configured with a non-existent directory.<br />(Sanjay Dahiya via cutting)</li>
  3859. <li><a href="http://issues.apache.org/jira/browse/HADOOP-645">HADOOP-645</a>. Fix a bug in contrib/streaming when -reducer is NONE.<br />(Dhruba Borthakur via cutting)</li>
  3860. <li><a href="http://issues.apache.org/jira/browse/HADOOP-687">HADOOP-687</a>. Fix a classpath bug in bin/hadoop that blocked the
  3861. servers from starting.<br />(Sameer Paranjpye via omalley)</li>
  3862. <li><a href="http://issues.apache.org/jira/browse/HADOOP-683">HADOOP-683</a>. Remove a script dependency on bash, so it works with
  3863. dash, the new default for /bin/sh on Ubuntu.<br />(James Todd via cutting)</li>
  3864. <li><a href="http://issues.apache.org/jira/browse/HADOOP-382">HADOOP-382</a>. Extend unit tests to run multiple datanodes.<br />(Milind Bhandarkar via cutting)</li>
  3865. <li><a href="http://issues.apache.org/jira/browse/HADOOP-604">HADOOP-604</a>. Fix some synchronization issues and a
  3866. NullPointerException in DFS datanode.<br />(Raghu Angadi via cutting)</li>
  3867. <li><a href="http://issues.apache.org/jira/browse/HADOOP-459">HADOOP-459</a>. Fix memory leaks and a host of other issues with
  3868. libhdfs.<br />(Sameer Paranjpye via cutting)</li>
  3869. <li><a href="http://issues.apache.org/jira/browse/HADOOP-694">HADOOP-694</a>. Fix a NullPointerException in jobtracker.<br />(Mahadev Konar via cutting)</li>
  3870. <li><a href="http://issues.apache.org/jira/browse/HADOOP-637">HADOOP-637</a>. Fix a memory leak in the IPC server. Direct buffers
  3871. are not collected like normal buffers, and provided little
  3872. advantage.<br />(Raghu Angadi via cutting)</li>
  3873. <li><a href="http://issues.apache.org/jira/browse/HADOOP-696">HADOOP-696</a>. Fix TestTextInputFormat unit test to not rely on the
  3874. order of directory listings.<br />(Sameer Paranjpye via cutting)</li>
  3875. <li><a href="http://issues.apache.org/jira/browse/HADOOP-611">HADOOP-611</a>. Add support for iterator-based merging to
  3876. SequenceFile.<br />(Devaraj Das via cutting)</li>
  3877. <li><a href="http://issues.apache.org/jira/browse/HADOOP-688">HADOOP-688</a>. Move DFS administrative commands to a separate
  3878. command named 'dfsadmin'.<br />(Dhruba Borthakur via cutting)</li>
  3879. <li><a href="http://issues.apache.org/jira/browse/HADOOP-708">HADOOP-708</a>. Fix test-libhdfs to return the correct status, so
  3880. that failures will break the build.<br />(Nigel Daley via cutting)</li>
  3881. <li><a href="http://issues.apache.org/jira/browse/HADOOP-646">HADOOP-646</a>. Fix namenode to handle edits files larger than 2GB.<br />(Milind Bhandarkar via cutting)</li>
  3882. <li><a href="http://issues.apache.org/jira/browse/HADOOP-705">HADOOP-705</a>. Fix a bug in the JobTracker when failed jobs were
  3883. not completely cleaned up.<br />(Mahadev Konar via cutting)</li>
  3884. <li><a href="http://issues.apache.org/jira/browse/HADOOP-613">HADOOP-613</a>. Perform final merge while reducing. This removes one
  3885. sort pass over the data and should consequently significantly
  3886. decrease overall processing time.<br />(Devaraj Das via cutting)</li>
  3887. <li><a href="http://issues.apache.org/jira/browse/HADOOP-661">HADOOP-661</a>. Make each job's configuration visible through the web
  3888. ui.<br />(Arun C Murthy via cutting)</li>
  3889. <li><a href="http://issues.apache.org/jira/browse/HADOOP-489">HADOOP-489</a>. In MapReduce, separate user logs from system logs.
  3890. Each task's log output is now available through the web ui.<br />(Arun
  3891. C Murthy via cutting)</li>
  3892. <li><a href="http://issues.apache.org/jira/browse/HADOOP-712">HADOOP-712</a>. Fix record io's xml serialization to correctly handle
  3893. control-characters.<br />(Milind Bhandarkar via cutting)</li>
  3894. <li><a href="http://issues.apache.org/jira/browse/HADOOP-668">HADOOP-668</a>. Improvements to the web-based DFS browser.<br />(Hairong Kuang via cutting)</li>
  3895. <li><a href="http://issues.apache.org/jira/browse/HADOOP-715">HADOOP-715</a>. Fix build.xml so that test logs are written in build
  3896. directory, rather than in CWD.<br />(Arun C Murthy via cutting)</li>
  3897. <li><a href="http://issues.apache.org/jira/browse/HADOOP-538">HADOOP-538</a>. Add support for building an optional native library,
  3898. libhadoop.so, that improves the performance of zlib-based
  3899. compression. To build this, specify -Dcompile.native to Ant.<br />(Arun C Murthy via cutting)</li>
  3900. <li><a href="http://issues.apache.org/jira/browse/HADOOP-610">HADOOP-610</a>. Fix an problem when the DFS block size is configured
  3901. to be smaller than the buffer size, typically only when debugging.<br />(Milind Bhandarkar via cutting)</li>
  3902. <li><a href="http://issues.apache.org/jira/browse/HADOOP-695">HADOOP-695</a>. Fix a NullPointerException in contrib/streaming.<br />(Hairong Kuang via cutting)</li>
  3903. <li><a href="http://issues.apache.org/jira/browse/HADOOP-652">HADOOP-652</a>. In DFS, when a file is deleted, the block count is
  3904. now decremented.<br />(Vladimir Krokhmalyov via cutting)</li>
  3905. <li><a href="http://issues.apache.org/jira/browse/HADOOP-725">HADOOP-725</a>. In DFS, optimize block placement algorithm,
  3906. previously a performance bottleneck.<br />(Milind Bhandarkar via cutting)</li>
  3907. <li><a href="http://issues.apache.org/jira/browse/HADOOP-723">HADOOP-723</a>. In MapReduce, fix a race condition during the
  3908. shuffle, which resulted in FileNotFoundExceptions.<br />(omalley via cutting)</li>
  3909. <li><a href="http://issues.apache.org/jira/browse/HADOOP-447">HADOOP-447</a>. In DFS, fix getBlockSize(Path) to work with relative
  3910. paths.<br />(Raghu Angadi via cutting)</li>
  3911. <li><a href="http://issues.apache.org/jira/browse/HADOOP-733">HADOOP-733</a>. Make exit codes in DFShell consistent and add a unit
  3912. test.<br />(Dhruba Borthakur via cutting)</li>
  3913. <li><a href="http://issues.apache.org/jira/browse/HADOOP-709">HADOOP-709</a>. Fix contrib/streaming to work with commands that
  3914. contain control characters.<br />(Dhruba Borthakur via cutting)</li>
  3915. <li><a href="http://issues.apache.org/jira/browse/HADOOP-677">HADOOP-677</a>. In IPC, permit a version header to be transmitted
  3916. when connections are established. This will permit us to change
  3917. the format of IPC requests back-compatibly in subsequent releases.<br />(omalley via cutting)</li>
  3918. <li><a href="http://issues.apache.org/jira/browse/HADOOP-699">HADOOP-699</a>. Fix DFS web interface so that filesystem browsing
  3919. works correctly, using the right port number. Also add support
  3920. for sorting datanode list by various columns.<br />(Raghu Angadi via cutting)</li>
  3921. <li><a href="http://issues.apache.org/jira/browse/HADOOP-76">HADOOP-76</a>. Implement speculative reduce. Now when a job is
  3922. configured for speculative execution, both maps and reduces will
  3923. execute speculatively. Reduce outputs are written to temporary
  3924. location and moved to the final location when reduce is complete.<br />(Sanjay Dahiya via cutting)</li>
  3925. <li><a href="http://issues.apache.org/jira/browse/HADOOP-736">HADOOP-736</a>. Roll back to Jetty 5.1.4, due to performance problems
  3926. with Jetty 6.0.1.
  3927. </li>
  3928. <li><a href="http://issues.apache.org/jira/browse/HADOOP-739">HADOOP-739</a>. Fix TestIPC to use different port number, making it
  3929. more reliable.<br />(Nigel Daley via cutting)</li>
  3930. <li><a href="http://issues.apache.org/jira/browse/HADOOP-749">HADOOP-749</a>. Fix a NullPointerException in jobfailures.jsp.<br />(omalley via cutting)</li>
  3931. <li><a href="http://issues.apache.org/jira/browse/HADOOP-747">HADOOP-747</a>. Fix record serialization to work correctly when
  3932. records are embedded in Maps.<br />(Milind Bhandarkar via cutting)</li>
  3933. <li><a href="http://issues.apache.org/jira/browse/HADOOP-698">HADOOP-698</a>. Fix HDFS client not to retry the same datanode on
  3934. read failures.<br />(Milind Bhandarkar via cutting)</li>
  3935. <li><a href="http://issues.apache.org/jira/browse/HADOOP-689">HADOOP-689</a>. Add GenericWritable, to facilitate polymorphism in
  3936. MapReduce, SequenceFile, etc.<br />(Feng Jiang via cutting)</li>
  3937. <li><a href="http://issues.apache.org/jira/browse/HADOOP-430">HADOOP-430</a>. Stop datanode's HTTP server when registration with
  3938. namenode fails.<br />(Wendy Chien via cutting)</li>
  3939. <li><a href="http://issues.apache.org/jira/browse/HADOOP-750">HADOOP-750</a>. Fix a potential race condition during mapreduce
  3940. shuffle.<br />(omalley via cutting)</li>
  3941. <li><a href="http://issues.apache.org/jira/browse/HADOOP-728">HADOOP-728</a>. Fix contrib/streaming-related issues, including
  3942. '-reducer NONE'.<br />(Sanjay Dahiya via cutting)</li>
  3943. </ol>
  3944. <h3><a href="javascript:toggleList('release_0.8.0_-_2006-11-03_')">Release 0.8.0 - 2006-11-03
  3945. </a></h3>
  3946. <ol id="release_0.8.0_-_2006-11-03_">
  3947. <li><a href="http://issues.apache.org/jira/browse/HADOOP-477">HADOOP-477</a>. Extend contrib/streaming to scan the PATH environment
  3948. variables when resolving executable program names.<br />(Dhruba Borthakur via cutting)</li>
  3949. <li><a href="http://issues.apache.org/jira/browse/HADOOP-583">HADOOP-583</a>. In DFSClient, reduce the log level of re-connect
  3950. attempts from 'info' to 'debug', so they are not normally shown.<br />(Konstantin Shvachko via cutting)</li>
  3951. <li><a href="http://issues.apache.org/jira/browse/HADOOP-498">HADOOP-498</a>. Re-implement DFS integrity checker to run server-side,
  3952. for much improved performance.<br />(Milind Bhandarkar via cutting)</li>
  3953. <li><a href="http://issues.apache.org/jira/browse/HADOOP-586">HADOOP-586</a>. Use the jar name for otherwise un-named jobs.<br />(Sanjay Dahiya via cutting)</li>
  3954. <li><a href="http://issues.apache.org/jira/browse/HADOOP-514">HADOOP-514</a>. Make DFS heartbeat interval configurable.<br />(Milind Bhandarkar via cutting)</li>
  3955. <li><a href="http://issues.apache.org/jira/browse/HADOOP-588">HADOOP-588</a>. Fix logging and accounting of failed tasks.<br />(Sanjay Dahiya via cutting)</li>
  3956. <li><a href="http://issues.apache.org/jira/browse/HADOOP-462">HADOOP-462</a>. Improve command line parsing in DFSShell, so that
  3957. incorrect numbers of arguments result in informative errors rather
  3958. than ArrayOutOfBoundsException.<br />(Dhruba Borthakur via cutting)</li>
  3959. <li><a href="http://issues.apache.org/jira/browse/HADOOP-561">HADOOP-561</a>. Fix DFS so that one replica of each block is written
  3960. locally, if possible. This was the intent, but there as a bug.<br />(Dhruba Borthakur via cutting)</li>
  3961. <li><a href="http://issues.apache.org/jira/browse/HADOOP-610">HADOOP-610</a>. Fix TaskTracker to survive more exceptions, keeping
  3962. tasks from becoming lost.<br />(omalley via cutting)</li>
  3963. <li><a href="http://issues.apache.org/jira/browse/HADOOP-625">HADOOP-625</a>. Add a servlet to all http daemons that displays a
  3964. stack dump, useful for debugging.<br />(omalley via cutting)</li>
  3965. <li><a href="http://issues.apache.org/jira/browse/HADOOP-554">HADOOP-554</a>. Fix DFSShell to return -1 for errors.<br />(Dhruba Borthakur via cutting)</li>
  3966. <li><a href="http://issues.apache.org/jira/browse/HADOOP-626">HADOOP-626</a>. Correct the documentation in the NNBench example
  3967. code, and also remove a mistaken call there.<br />(Nigel Daley via cutting)</li>
  3968. <li><a href="http://issues.apache.org/jira/browse/HADOOP-634">HADOOP-634</a>. Add missing license to many files.<br />(Nigel Daley via cutting)</li>
  3969. <li><a href="http://issues.apache.org/jira/browse/HADOOP-627">HADOOP-627</a>. Fix some synchronization problems in MiniMRCluster
  3970. that sometimes caused unit tests to fail.<br />(Nigel Daley via cutting)</li>
  3971. <li><a href="http://issues.apache.org/jira/browse/HADOOP-563">HADOOP-563</a>. Improve the NameNode's lease policy so that leases
  3972. are held for one hour without renewal (instead of one minute).
  3973. However another attempt to create the same file will still succeed
  3974. if the lease has not been renewed within a minute. This prevents
  3975. communication or scheduling problems from causing a write to fail
  3976. for up to an hour, barring some other process trying to create the
  3977. same file.<br />(Dhruba Borthakur via cutting)</li>
  3978. <li><a href="http://issues.apache.org/jira/browse/HADOOP-635">HADOOP-635</a>. In DFSShell, permit specification of multiple files
  3979. as the source for file copy and move commands.<br />(Dhruba Borthakur via cutting)</li>
  3980. <li><a href="http://issues.apache.org/jira/browse/HADOOP-641">HADOOP-641</a>. Change NameNode to request a fresh block report from
  3981. a re-discovered DataNode, so that no-longer-needed replications
  3982. are stopped promptly.<br />(Konstantin Shvachko via cutting)</li>
  3983. <li><a href="http://issues.apache.org/jira/browse/HADOOP-642">HADOOP-642</a>. Change IPC client to specify an explicit connect
  3984. timeout.<br />(Konstantin Shvachko via cutting)</li>
  3985. <li><a href="http://issues.apache.org/jira/browse/HADOOP-638">HADOOP-638</a>. Fix an unsynchronized access to TaskTracker's
  3986. internal state.<br />(Nigel Daley via cutting)</li>
  3987. <li><a href="http://issues.apache.org/jira/browse/HADOOP-624">HADOOP-624</a>. Fix servlet path to stop a Jetty warning on startup.<br />(omalley via cutting)</li>
  3988. <li><a href="http://issues.apache.org/jira/browse/HADOOP-578">HADOOP-578</a>. Failed tasks are no longer placed at the end of the
  3989. task queue. This was originally done to work around other
  3990. problems that have now been fixed. Re-executing failed tasks
  3991. sooner causes buggy jobs to fail faster.<br />(Sanjay Dahiya via cutting)</li>
  3992. <li><a href="http://issues.apache.org/jira/browse/HADOOP-658">HADOOP-658</a>. Update source file headers per Apache policy.<br />(cutting)</li>
  3993. <li><a href="http://issues.apache.org/jira/browse/HADOOP-636">HADOOP-636</a>. Add MapFile &amp; ArrayFile constructors which accept a
  3994. Progressable, and pass it down to SequenceFile. This permits
  3995. reduce tasks which use MapFile to still report progress while
  3996. writing blocks to the filesystem.<br />(cutting)</li>
  3997. <li><a href="http://issues.apache.org/jira/browse/HADOOP-576">HADOOP-576</a>. Enable contrib/streaming to use the file cache. Also
  3998. extend the cache to permit symbolic links to cached items, rather
  3999. than local file copies.<br />(Mahadev Konar via cutting)</li>
  4000. <li><a href="http://issues.apache.org/jira/browse/HADOOP-482">HADOOP-482</a>. Fix unit tests to work when a cluster is running on
  4001. the same machine, removing port conflicts.<br />(Wendy Chien via cutting)</li>
  4002. <li><a href="http://issues.apache.org/jira/browse/HADOOP-90">HADOOP-90</a>. Permit dfs.name.dir to list multiple directories,
  4003. where namenode data is to be replicated.<br />(Milind Bhandarkar via cutting)</li>
  4004. <li><a href="http://issues.apache.org/jira/browse/HADOOP-651">HADOOP-651</a>. Fix DFSCk to correctly pass parameters to the servlet
  4005. on the namenode.<br />(Milind Bhandarkar via cutting)</li>
  4006. <li><a href="http://issues.apache.org/jira/browse/HADOOP-553">HADOOP-553</a>. Change main() routines of DataNode and NameNode to
  4007. log exceptions rather than letting the JVM print them to standard
  4008. error. Also, change the hadoop-daemon.sh script to rotate
  4009. standard i/o log files.<br />(Raghu Angadi via cutting)</li>
  4010. <li><a href="http://issues.apache.org/jira/browse/HADOOP-399">HADOOP-399</a>. Fix javadoc warnings.<br />(Nigel Daley via cutting)</li>
  4011. <li><a href="http://issues.apache.org/jira/browse/HADOOP-599">HADOOP-599</a>. Fix web ui and command line to correctly report DFS
  4012. filesystem size statistics. Also improve web layout.<br />(Raghu Angadi via cutting)</li>
  4013. <li><a href="http://issues.apache.org/jira/browse/HADOOP-660">HADOOP-660</a>. Permit specification of junit test output format.<br />(Nigel Daley via cutting)</li>
  4014. <li><a href="http://issues.apache.org/jira/browse/HADOOP-663">HADOOP-663</a>. Fix a few unit test issues.<br />(Mahadev Konar via cutting)</li>
  4015. <li><a href="http://issues.apache.org/jira/browse/HADOOP-664">HADOOP-664</a>. Cause entire build to fail if libhdfs tests fail.<br />(Nigel Daley via cutting)</li>
  4016. <li><a href="http://issues.apache.org/jira/browse/HADOOP-633">HADOOP-633</a>. Keep jobtracker from dying when job initialization
  4017. throws exceptions. Also improve exception handling in a few other
  4018. places and add more informative thread names.<br />(omalley via cutting)</li>
  4019. <li><a href="http://issues.apache.org/jira/browse/HADOOP-669">HADOOP-669</a>. Fix a problem introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-90">HADOOP-90</a> that can cause
  4020. DFS to lose files.<br />(Milind Bhandarkar via cutting)</li>
  4021. <li><a href="http://issues.apache.org/jira/browse/HADOOP-373">HADOOP-373</a>. Consistently check the value returned by
  4022. FileSystem.mkdirs().<br />(Wendy Chien via cutting)</li>
  4023. <li><a href="http://issues.apache.org/jira/browse/HADOOP-670">HADOOP-670</a>. Code cleanups in some DFS internals: use generic
  4024. types, replace Vector with ArrayList, etc.<br />(Konstantin Shvachko via cutting)</li>
  4025. <li><a href="http://issues.apache.org/jira/browse/HADOOP-647">HADOOP-647</a>. Permit map outputs to use a different compression
  4026. type than the job output.<br />(omalley via cutting)</li>
  4027. <li><a href="http://issues.apache.org/jira/browse/HADOOP-671">HADOOP-671</a>. Fix file cache to check for pre-existence before
  4028. creating .<br />(Mahadev Konar via cutting)</li>
  4029. <li><a href="http://issues.apache.org/jira/browse/HADOOP-665">HADOOP-665</a>. Extend many DFSShell commands to accept multiple
  4030. arguments. Now commands like "ls", "rm", etc. will operate on
  4031. multiple files.<br />(Dhruba Borthakur via cutting)</li>
  4032. </ol>
  4033. <h3><a href="javascript:toggleList('release_0.7.2_-_2006-10-18_')">Release 0.7.2 - 2006-10-18
  4034. </a></h3>
  4035. <ol id="release_0.7.2_-_2006-10-18_">
  4036. <li><a href="http://issues.apache.org/jira/browse/HADOOP-607">HADOOP-607</a>. Fix a bug where classes included in job jars were not
  4037. found by tasks.<br />(Mahadev Konar via cutting)</li>
  4038. <li><a href="http://issues.apache.org/jira/browse/HADOOP-609">HADOOP-609</a>. Add a unit test that checks that classes in job jars
  4039. can be found by tasks. Also modify unit tests to specify multiple
  4040. local directories.<br />(Mahadev Konar via cutting)</li>
  4041. </ol>
  4042. <h3><a href="javascript:toggleList('release_0.7.1_-_2006-10-11_')">Release 0.7.1 - 2006-10-11
  4043. </a></h3>
  4044. <ol id="release_0.7.1_-_2006-10-11_">
  4045. <li><a href="http://issues.apache.org/jira/browse/HADOOP-593">HADOOP-593</a>. Fix a NullPointerException in the JobTracker.<br />(omalley via cutting)</li>
  4046. <li><a href="http://issues.apache.org/jira/browse/HADOOP-592">HADOOP-592</a>. Fix a NullPointerException in the IPC Server. Also
  4047. consistently log when stale calls are discarded.<br />(omalley via cutting)</li>
  4048. <li><a href="http://issues.apache.org/jira/browse/HADOOP-594">HADOOP-594</a>. Increase the DFS safe-mode threshold from .95 to
  4049. .999, so that nearly all blocks must be reported before filesystem
  4050. modifications are permitted.<br />(Konstantin Shvachko via cutting)</li>
  4051. <li><a href="http://issues.apache.org/jira/browse/HADOOP-598">HADOOP-598</a>. Fix tasks to retry when reporting completion, so that
  4052. a single RPC timeout won't fail a task.<br />(omalley via cutting)</li>
  4053. <li><a href="http://issues.apache.org/jira/browse/HADOOP-597">HADOOP-597</a>. Fix TaskTracker to not discard map outputs for errors
  4054. in transmitting them to reduce nodes.<br />(omalley via cutting)</li>
  4055. </ol>
  4056. <h3><a href="javascript:toggleList('release_0.7.0_-_2006-10-06_')">Release 0.7.0 - 2006-10-06
  4057. </a></h3>
  4058. <ol id="release_0.7.0_-_2006-10-06_">
  4059. <li><a href="http://issues.apache.org/jira/browse/HADOOP-243">HADOOP-243</a>. Fix rounding in the display of task and job progress
  4060. so that things are not shown to be 100% complete until they are in
  4061. fact finished.<br />(omalley via cutting)</li>
  4062. <li><a href="http://issues.apache.org/jira/browse/HADOOP-438">HADOOP-438</a>. Limit the length of absolute paths in DFS, since the
  4063. file format used to store pathnames has some limitations.<br />(Wendy Chien via cutting)</li>
  4064. <li><a href="http://issues.apache.org/jira/browse/HADOOP-530">HADOOP-530</a>. Improve error messages in SequenceFile when keys or
  4065. values are of the wrong type.<br />(Hairong Kuang via cutting)</li>
  4066. <li><a href="http://issues.apache.org/jira/browse/HADOOP-288">HADOOP-288</a>. Add a file caching system and use it in MapReduce to
  4067. cache job jar files on slave nodes.<br />(Mahadev Konar via cutting)</li>
  4068. <li><a href="http://issues.apache.org/jira/browse/HADOOP-533">HADOOP-533</a>. Fix unit test to not modify conf directory.<br />(Hairong Kuang via cutting)</li>
  4069. <li><a href="http://issues.apache.org/jira/browse/HADOOP-527">HADOOP-527</a>. Permit specification of the local address that various
  4070. Hadoop daemons should bind to.<br />(Philippe Gassmann via cutting)</li>
  4071. <li><a href="http://issues.apache.org/jira/browse/HADOOP-542">HADOOP-542</a>. Updates to contrib/streaming: reformatted source code,
  4072. on-the-fly merge sort, a fix for <a href="http://issues.apache.org/jira/browse/HADOOP-540">HADOOP-540</a>, etc.<br />(Michel Tourn via cutting)</li>
  4073. <li><a href="http://issues.apache.org/jira/browse/HADOOP-545">HADOOP-545</a>. Remove an unused config file parameter.<br />(Philippe Gassmann via cutting)</li>
  4074. <li><a href="http://issues.apache.org/jira/browse/HADOOP-548">HADOOP-548</a>. Add an Ant property "test.output" to build.xml that
  4075. causes test output to be logged to the console.<br />(omalley via cutting)</li>
  4076. <li><a href="http://issues.apache.org/jira/browse/HADOOP-261">HADOOP-261</a>. Record an error message when map output is lost.<br />(omalley via cutting)</li>
  4077. <li><a href="http://issues.apache.org/jira/browse/HADOOP-293">HADOOP-293</a>. Report the full list of task error messages in the
  4078. web ui, not just the most recent.<br />(omalley via cutting)</li>
  4079. <li><a href="http://issues.apache.org/jira/browse/HADOOP-551">HADOOP-551</a>. Restore JobClient's console printouts to only include
  4080. a maximum of one update per one percent of progress.<br />(omalley via cutting)</li>
  4081. <li><a href="http://issues.apache.org/jira/browse/HADOOP-306">HADOOP-306</a>. Add a "safe" mode to DFS. The name node enters this
  4082. when less than a specified percentage of file data is complete.
  4083. Currently safe mode is only used on startup, but eventually it
  4084. will also be entered when datanodes disconnect and file data
  4085. becomes incomplete. While in safe mode no filesystem
  4086. modifications are permitted and block replication is inhibited.<br />(Konstantin Shvachko via cutting)</li>
  4087. <li><a href="http://issues.apache.org/jira/browse/HADOOP-431">HADOOP-431</a>. Change 'dfs -rm' to not operate recursively and add a
  4088. new command, 'dfs -rmr' which operates recursively.<br />(Sameer Paranjpye via cutting)</li>
  4089. <li><a href="http://issues.apache.org/jira/browse/HADOOP-263">HADOOP-263</a>. Include timestamps for job transitions. The web
  4090. interface now displays the start and end times of tasks and the
  4091. start times of sorting and reducing for reduce tasks. Also,
  4092. extend ObjectWritable to handle enums, so that they can be passed
  4093. as RPC parameters.<br />(Sanjay Dahiya via cutting)</li>
  4094. <li><a href="http://issues.apache.org/jira/browse/HADOOP-556">HADOOP-556</a>. Contrib/streaming: send keep-alive reports to task
  4095. tracker every 10 seconds rather than every 100 records, to avoid
  4096. task timeouts.<br />(Michel Tourn via cutting)</li>
  4097. <li><a href="http://issues.apache.org/jira/browse/HADOOP-547">HADOOP-547</a>. Fix reduce tasks to ping tasktracker while copying
  4098. data, rather than only between copies, avoiding task timeouts.<br />(Sanjay Dahiya via cutting)</li>
  4099. <li><a href="http://issues.apache.org/jira/browse/HADOOP-537">HADOOP-537</a>. Fix src/c++/libhdfs build process to create files in
  4100. build/, no longer modifying the source tree.<br />(Arun C Murthy via cutting)</li>
  4101. <li><a href="http://issues.apache.org/jira/browse/HADOOP-487">HADOOP-487</a>. Throw a more informative exception for unknown RPC
  4102. hosts.<br />(Sameer Paranjpye via cutting)</li>
  4103. <li><a href="http://issues.apache.org/jira/browse/HADOOP-559">HADOOP-559</a>. Add file name globbing (pattern matching) support to
  4104. the FileSystem API, and use it in DFSShell ('bin/hadoop dfs')
  4105. commands.<br />(Hairong Kuang via cutting)</li>
  4106. <li><a href="http://issues.apache.org/jira/browse/HADOOP-508">HADOOP-508</a>. Fix a bug in FSDataInputStream. Incorrect data was
  4107. returned after seeking to a random location.<br />(Milind Bhandarkar via cutting)</li>
  4108. <li><a href="http://issues.apache.org/jira/browse/HADOOP-560">HADOOP-560</a>. Add a "killed" task state. This can be used to
  4109. distinguish kills from other failures. Task state has also been
  4110. converted to use an enum type instead of an int, uncovering a bug
  4111. elsewhere. The web interface is also updated to display killed
  4112. tasks.<br />(omalley via cutting)</li>
  4113. <li><a href="http://issues.apache.org/jira/browse/HADOOP-423">HADOOP-423</a>. Normalize Paths containing directories named "." and
  4114. "..", using the standard, unix interpretation. Also add checks in
  4115. DFS, prohibiting the use of "." or ".." as directory or file
  4116. names.<br />(Wendy Chien via cutting)</li>
  4117. <li><a href="http://issues.apache.org/jira/browse/HADOOP-513">HADOOP-513</a>. Replace map output handling with a servlet, rather
  4118. than a JSP page. This fixes an issue where
  4119. IllegalStateException's were logged, sets content-length
  4120. correctly, and better handles some errors.<br />(omalley via cutting)</li>
  4121. <li><a href="http://issues.apache.org/jira/browse/HADOOP-552">HADOOP-552</a>. Improved error checking when copying map output files
  4122. to reduce nodes.<br />(omalley via cutting)</li>
  4123. <li><a href="http://issues.apache.org/jira/browse/HADOOP-566">HADOOP-566</a>. Fix scripts to work correctly when accessed through
  4124. relative symbolic links.<br />(Lee Faris via cutting)</li>
  4125. <li><a href="http://issues.apache.org/jira/browse/HADOOP-519">HADOOP-519</a>. Add positioned read methods to FSInputStream. These
  4126. permit one to read from a stream without moving its position, and
  4127. can hence be performed by multiple threads at once on a single
  4128. stream. Implement an optimized version for DFS and local FS.<br />(Milind Bhandarkar via cutting)</li>
  4129. <li><a href="http://issues.apache.org/jira/browse/HADOOP-522">HADOOP-522</a>. Permit block compression with MapFile and SetFile.
  4130. Since these formats are always sorted, block compression can
  4131. provide a big advantage.<br />(cutting)</li>
  4132. <li><a href="http://issues.apache.org/jira/browse/HADOOP-567">HADOOP-567</a>. Record version and revision information in builds. A
  4133. package manifest is added to the generated jar file containing
  4134. version information, and a VersionInfo utility is added that
  4135. includes further information, including the build date and user,
  4136. and the subversion revision and repository. A 'bin/hadoop
  4137. version' comand is added to show this information, and it is also
  4138. added to various web interfaces.<br />(omalley via cutting)</li>
  4139. <li><a href="http://issues.apache.org/jira/browse/HADOOP-568">HADOOP-568</a>. Fix so that errors while initializing tasks on a
  4140. tasktracker correctly report the task as failed to the jobtracker,
  4141. so that it will be rescheduled.<br />(omalley via cutting)</li>
  4142. <li><a href="http://issues.apache.org/jira/browse/HADOOP-550">HADOOP-550</a>. Disable automatic UTF-8 validation in Text. This
  4143. permits, e.g., TextInputFormat to again operate on non-UTF-8 data.<br />(Hairong and Mahadev via cutting)</li>
  4144. <li><a href="http://issues.apache.org/jira/browse/HADOOP-343">HADOOP-343</a>. Fix mapred copying so that a failed tasktracker
  4145. doesn't cause other copies to slow.<br />(Sameer Paranjpye via cutting)</li>
  4146. <li><a href="http://issues.apache.org/jira/browse/HADOOP-239">HADOOP-239</a>. Add a persistent job history mechanism, so that basic
  4147. job statistics are not lost after 24 hours and/or when the
  4148. jobtracker is restarted.<br />(Sanjay Dahiya via cutting)</li>
  4149. <li><a href="http://issues.apache.org/jira/browse/HADOOP-506">HADOOP-506</a>. Ignore heartbeats from stale task trackers.<br />(Sanjay Dahiya via cutting)</li>
  4150. <li><a href="http://issues.apache.org/jira/browse/HADOOP-255">HADOOP-255</a>. Discard stale, queued IPC calls. Do not process
  4151. calls whose clients will likely time out before they receive a
  4152. response. When the queue is full, new calls are now received and
  4153. queued, and the oldest calls are discarded, so that, when servers
  4154. get bogged down, they no longer develop a backlog on the socket.
  4155. This should improve some DFS namenode failure modes.<br />(omalley via cutting)</li>
  4156. <li><a href="http://issues.apache.org/jira/browse/HADOOP-581">HADOOP-581</a>. Fix datanode to not reset itself on communications
  4157. errors with the namenode. If a request to the namenode fails, the
  4158. datanode should retry, not restart. This reduces the load on the
  4159. namenode, since restarts cause a resend of the block report.<br />(omalley via cutting)</li>
  4160. </ol>
  4161. <h3><a href="javascript:toggleList('release_0.6.2_-_2006-09-18_')">Release 0.6.2 - 2006-09-18
  4162. </a></h3>
  4163. <ol id="release_0.6.2_-_2006-09-18_">
  4164. <li><a href="http://issues.apache.org/jira/browse/HADOOP-532">HADOOP-532</a>. Fix a bug reading value-compressed sequence files,
  4165. where an exception was thrown reporting that the full value had not
  4166. been read.<br />(omalley via cutting)</li>
  4167. <li><a href="http://issues.apache.org/jira/browse/HADOOP-534">HADOOP-534</a>. Change the default value class in JobConf to be Text
  4168. instead of the now-deprecated UTF8. This fixes the Grep example
  4169. program, which was updated to use Text, but relies on this
  4170. default.<br />(Hairong Kuang via cutting)</li>
  4171. </ol>
  4172. <h3><a href="javascript:toggleList('release_0.6.1_-_2006-09-13_')">Release 0.6.1 - 2006-09-13
  4173. </a></h3>
  4174. <ol id="release_0.6.1_-_2006-09-13_">
  4175. <li><a href="http://issues.apache.org/jira/browse/HADOOP-520">HADOOP-520</a>. Fix a bug in libhdfs, where write failures were not
  4176. correctly returning error codes.<br />(Arun C Murthy via cutting)</li>
  4177. <li><a href="http://issues.apache.org/jira/browse/HADOOP-523">HADOOP-523</a>. Fix a NullPointerException when TextInputFormat is
  4178. explicitly specified. Also add a test case for this.<br />(omalley via cutting)</li>
  4179. <li><a href="http://issues.apache.org/jira/browse/HADOOP-521">HADOOP-521</a>. Fix another NullPointerException finding the
  4180. ClassLoader when using libhdfs.<br />(omalley via cutting)</li>
  4181. <li><a href="http://issues.apache.org/jira/browse/HADOOP-526">HADOOP-526</a>. Fix a NullPointerException when attempting to start
  4182. two datanodes in the same directory.<br />(Milind Bhandarkar via cutting)</li>
  4183. <li><a href="http://issues.apache.org/jira/browse/HADOOP-529">HADOOP-529</a>. Fix a NullPointerException when opening
  4184. value-compressed sequence files generated by pre-0.6.0 Hadoop.<br />(omalley via cutting)</li>
  4185. </ol>
  4186. <h3><a href="javascript:toggleList('release_0.6.0_-_2006-09-08_')">Release 0.6.0 - 2006-09-08
  4187. </a></h3>
  4188. <ol id="release_0.6.0_-_2006-09-08_">
  4189. <li><a href="http://issues.apache.org/jira/browse/HADOOP-427">HADOOP-427</a>. Replace some uses of DatanodeDescriptor in the DFS
  4190. web UI code with DatanodeInfo, the preferred public class.<br />(Devaraj Das via cutting)</li>
  4191. <li><a href="http://issues.apache.org/jira/browse/HADOOP-426">HADOOP-426</a>. Fix streaming contrib module to work correctly on
  4192. Solaris. This was causing nightly builds to fail.<br />(Michel Tourn via cutting)</li>
  4193. <li><a href="http://issues.apache.org/jira/browse/HADOOP-400">HADOOP-400</a>. Improvements to task assignment. Tasks are no longer
  4194. re-run on nodes where they have failed (unless no other node is
  4195. available). Also, tasks are better load-balanced among nodes.<br />(omalley via cutting)</li>
  4196. <li><a href="http://issues.apache.org/jira/browse/HADOOP-324">HADOOP-324</a>. Fix datanode to not exit when a disk is full, but
  4197. rather simply to fail writes.<br />(Wendy Chien via cutting)</li>
  4198. <li><a href="http://issues.apache.org/jira/browse/HADOOP-434">HADOOP-434</a>. Change smallJobsBenchmark to use standard Hadoop
  4199. scripts.<br />(Sanjay Dahiya via cutting)</li>
  4200. <li><a href="http://issues.apache.org/jira/browse/HADOOP-453">HADOOP-453</a>. Fix a bug in Text.setCapacity().<br />(siren via cutting)</li>
  4201. <li><a href="http://issues.apache.org/jira/browse/HADOOP-450">HADOOP-450</a>. Change so that input types are determined by the
  4202. RecordReader rather than specified directly in the JobConf. This
  4203. facilitates jobs with a variety of input types.
  4204. <p/>
  4205. WARNING: This contains incompatible API changes! The RecordReader
  4206. interface has two new methods that all user-defined InputFormats
  4207. must now define. Also, the values returned by TextInputFormat are
  4208. no longer of class UTF8, but now of class Text.
  4209. </li>
  4210. <li><a href="http://issues.apache.org/jira/browse/HADOOP-436">HADOOP-436</a>. Fix an error-handling bug in the web ui.<br />(Devaraj Das via cutting)</li>
  4211. <li><a href="http://issues.apache.org/jira/browse/HADOOP-455">HADOOP-455</a>. Fix a bug in Text, where DEL was not permitted.<br />(Hairong Kuang via cutting)</li>
  4212. <li><a href="http://issues.apache.org/jira/browse/HADOOP-456">HADOOP-456</a>. Change the DFS namenode to keep a persistent record
  4213. of the set of known datanodes. This will be used to implement a
  4214. "safe mode" where filesystem changes are prohibited when a
  4215. critical percentage of the datanodes are unavailable.<br />(Konstantin Shvachko via cutting)</li>
  4216. <li><a href="http://issues.apache.org/jira/browse/HADOOP-322">HADOOP-322</a>. Add a job control utility. This permits one to
  4217. specify job interdependencies. Each job is submitted only after
  4218. the jobs it depends on have successfully completed.<br />(Runping Qi via cutting)</li>
  4219. <li><a href="http://issues.apache.org/jira/browse/HADOOP-176">HADOOP-176</a>. Fix a bug in IntWritable.Comparator.<br />(Dick King via cutting)</li>
  4220. <li><a href="http://issues.apache.org/jira/browse/HADOOP-421">HADOOP-421</a>. Replace uses of String in recordio package with Text
  4221. class, for improved handling of UTF-8 data.<br />(Milind Bhandarkar via cutting)</li>
  4222. <li><a href="http://issues.apache.org/jira/browse/HADOOP-464">HADOOP-464</a>. Improved error message when job jar not found.<br />(Michel Tourn via cutting)</li>
  4223. <li><a href="http://issues.apache.org/jira/browse/HADOOP-469">HADOOP-469</a>. Fix /bin/bash specifics that have crept into our
  4224. /bin/sh scripts since <a href="http://issues.apache.org/jira/browse/HADOOP-352">HADOOP-352</a>.<br />(Jean-Baptiste Quenot via cutting)</li>
  4225. <li><a href="http://issues.apache.org/jira/browse/HADOOP-468">HADOOP-468</a>. Add HADOOP_NICENESS environment variable to set
  4226. scheduling priority for daemons.<br />(Vetle Roeim via cutting)</li>
  4227. <li><a href="http://issues.apache.org/jira/browse/HADOOP-473">HADOOP-473</a>. Fix TextInputFormat to correctly handle more EOL
  4228. formats. Things now work correctly with CR, LF or CRLF.<br />(Dennis Kubes &amp; James White via cutting)</li>
  4229. <li><a href="http://issues.apache.org/jira/browse/HADOOP-461">HADOOP-461</a>. Make Java 1.5 an explicit requirement.<br />(cutting)</li>
  4230. <li><a href="http://issues.apache.org/jira/browse/HADOOP-54">HADOOP-54</a>. Add block compression to SequenceFile. One may now
  4231. specify that blocks of keys and values are compressed together,
  4232. improving compression for small keys and values.
  4233. SequenceFile.Writer's constructor is now deprecated and replaced
  4234. with a factory method.<br />(Arun C Murthy via cutting)</li>
  4235. <li><a href="http://issues.apache.org/jira/browse/HADOOP-281">HADOOP-281</a>. Prohibit DFS files that are also directories.<br />(Wendy Chien via cutting)</li>
  4236. <li><a href="http://issues.apache.org/jira/browse/HADOOP-486">HADOOP-486</a>. Add the job username to JobStatus instances returned
  4237. by JobClient.<br />(Mahadev Konar via cutting)</li>
  4238. <li><a href="http://issues.apache.org/jira/browse/HADOOP-437">HADOOP-437</a>. contrib/streaming: Add support for gzipped inputs.<br />(Michel Tourn via cutting)</li>
  4239. <li><a href="http://issues.apache.org/jira/browse/HADOOP-463">HADOOP-463</a>. Add variable expansion to config files.
  4240. Configuration property values may now contain variable
  4241. expressions. A variable is referenced with the syntax
  4242. '${variable}'. Variables values are found first in the
  4243. configuration, and then in Java system properties. The default
  4244. configuration is modified so that temporary directories are now
  4245. under ${hadoop.tmp.dir}, which is, by default,
  4246. /tmp/hadoop-${user.name}.<br />(Michel Tourn via cutting)</li>
  4247. <li><a href="http://issues.apache.org/jira/browse/HADOOP-419">HADOOP-419</a>. Fix a NullPointerException finding the ClassLoader
  4248. when using libhdfs.<br />(omalley via cutting)</li>
  4249. <li><a href="http://issues.apache.org/jira/browse/HADOOP-460">HADOOP-460</a>. Fix contrib/smallJobsBenchmark to use Text instead of
  4250. UTF8.<br />(Sanjay Dahiya via cutting)</li>
  4251. <li><a href="http://issues.apache.org/jira/browse/HADOOP-196">HADOOP-196</a>. Fix Configuration(Configuration) constructor to work
  4252. correctly.<br />(Sami Siren via cutting)</li>
  4253. <li><a href="http://issues.apache.org/jira/browse/HADOOP-501">HADOOP-501</a>. Fix Configuration.toString() to handle URL resources.<br />(Thomas Friol via cutting)</li>
  4254. <li><a href="http://issues.apache.org/jira/browse/HADOOP-499">HADOOP-499</a>. Reduce the use of Strings in contrib/streaming,
  4255. replacing them with Text for better performance.<br />(Hairong Kuang via cutting)</li>
  4256. <li><a href="http://issues.apache.org/jira/browse/HADOOP-64">HADOOP-64</a>. Manage multiple volumes with a single DataNode.
  4257. Previously DataNode would create a separate daemon per configured
  4258. volume, each with its own connection to the NameNode. Now all
  4259. volumes are handled by a single DataNode daemon, reducing the load
  4260. on the NameNode.<br />(Milind Bhandarkar via cutting)</li>
  4261. <li><a href="http://issues.apache.org/jira/browse/HADOOP-424">HADOOP-424</a>. Fix MapReduce so that jobs which generate zero splits
  4262. do not fail.<br />(Fr??d??ric Bertin via cutting)</li>
  4263. <li><a href="http://issues.apache.org/jira/browse/HADOOP-408">HADOOP-408</a>. Adjust some timeouts and remove some others so that
  4264. unit tests run faster.<br />(cutting)</li>
  4265. <li><a href="http://issues.apache.org/jira/browse/HADOOP-507">HADOOP-507</a>. Fix an IllegalAccessException in DFS.<br />(omalley via cutting)</li>
  4266. <li><a href="http://issues.apache.org/jira/browse/HADOOP-320">HADOOP-320</a>. Fix so that checksum files are correctly copied when
  4267. the destination of a file copy is a directory.<br />(Hairong Kuang via cutting)</li>
  4268. <li><a href="http://issues.apache.org/jira/browse/HADOOP-286">HADOOP-286</a>. In DFSClient, avoid pinging the NameNode with
  4269. renewLease() calls when no files are being written.<br />(Konstantin Shvachko via cutting)</li>
  4270. <li><a href="http://issues.apache.org/jira/browse/HADOOP-312">HADOOP-312</a>. Close idle IPC connections. All IPC connections were
  4271. cached forever. Now, after a connection has been idle for more
  4272. than a configurable amount of time (one second by default), the
  4273. connection is closed, conserving resources on both client and
  4274. server.<br />(Devaraj Das via cutting)</li>
  4275. <li><a href="http://issues.apache.org/jira/browse/HADOOP-497">HADOOP-497</a>. Permit the specification of the network interface and
  4276. nameserver to be used when determining the local hostname
  4277. advertised by datanodes and tasktrackers.<br />(Lorenzo Thione via cutting)</li>
  4278. <li><a href="http://issues.apache.org/jira/browse/HADOOP-441">HADOOP-441</a>. Add a compression codec API and extend SequenceFile
  4279. to use it. This will permit the use of alternate compression
  4280. codecs in SequenceFile.<br />(Arun C Murthy via cutting)</li>
  4281. <li><a href="http://issues.apache.org/jira/browse/HADOOP-483">HADOOP-483</a>. Improvements to libhdfs build and documentation.<br />(Arun C Murthy via cutting)</li>
  4282. <li><a href="http://issues.apache.org/jira/browse/HADOOP-458">HADOOP-458</a>. Fix a memory corruption bug in libhdfs.<br />(Arun C Murthy via cutting)</li>
  4283. <li><a href="http://issues.apache.org/jira/browse/HADOOP-517">HADOOP-517</a>. Fix a contrib/streaming bug in end-of-line detection.<br />(Hairong Kuang via cutting)</li>
  4284. <li><a href="http://issues.apache.org/jira/browse/HADOOP-474">HADOOP-474</a>. Add CompressionCodecFactory, and use it in
  4285. TextInputFormat and TextOutputFormat. Compressed input files are
  4286. automatically decompressed when they have the correct extension.
  4287. Output files will, when output compression is specified, be
  4288. generated with an approprate extension. Also add a gzip codec and
  4289. fix problems with UTF8 text inputs.<br />(omalley via cutting)</li>
  4290. </ol>
  4291. <h3><a href="javascript:toggleList('release_0.5.0_-_2006-08-04_')">Release 0.5.0 - 2006-08-04
  4292. </a></h3>
  4293. <ol id="release_0.5.0_-_2006-08-04_">
  4294. <li><a href="http://issues.apache.org/jira/browse/HADOOP-352">HADOOP-352</a>. Fix shell scripts to use /bin/sh instead of
  4295. /bin/bash, for better portability.<br />(Jean-Baptiste Quenot via cutting)</li>
  4296. <li><a href="http://issues.apache.org/jira/browse/HADOOP-313">HADOOP-313</a>. Permit task state to be saved so that single tasks
  4297. may be manually re-executed when debugging.<br />(omalley via cutting)</li>
  4298. <li><a href="http://issues.apache.org/jira/browse/HADOOP-339">HADOOP-339</a>. Add method to JobClient API listing jobs that are
  4299. not yet complete, i.e., that are queued or running.<br />(Mahadev Konar via cutting)</li>
  4300. <li><a href="http://issues.apache.org/jira/browse/HADOOP-355">HADOOP-355</a>. Updates to the streaming contrib module, including
  4301. API fixes, making reduce optional, and adding an input type for
  4302. StreamSequenceRecordReader.<br />(Michel Tourn via cutting)</li>
  4303. <li><a href="http://issues.apache.org/jira/browse/HADOOP-358">HADOOP-358</a>. Fix a NPE bug in Path.equals().<br />(Fr??d??ric Bertin via cutting)</li>
  4304. <li><a href="http://issues.apache.org/jira/browse/HADOOP-327">HADOOP-327</a>. Fix ToolBase to not call System.exit() when
  4305. exceptions are thrown.<br />(Hairong Kuang via cutting)</li>
  4306. <li><a href="http://issues.apache.org/jira/browse/HADOOP-359">HADOOP-359</a>. Permit map output to be compressed.<br />(omalley via cutting)</li>
  4307. <li><a href="http://issues.apache.org/jira/browse/HADOOP-341">HADOOP-341</a>. Permit input URI to CopyFiles to use the HTTP
  4308. protocol. This lets one, e.g., more easily copy log files into
  4309. DFS.<br />(Arun C Murthy via cutting)</li>
  4310. <li><a href="http://issues.apache.org/jira/browse/HADOOP-361">HADOOP-361</a>. Remove unix dependencies from streaming contrib
  4311. module tests, making them pure java.<br />(Michel Tourn via cutting)</li>
  4312. <li><a href="http://issues.apache.org/jira/browse/HADOOP-354">HADOOP-354</a>. Make public methods to stop DFS daemons.<br />(Barry Kaplan via cutting)</li>
  4313. <li><a href="http://issues.apache.org/jira/browse/HADOOP-252">HADOOP-252</a>. Add versioning to RPC protocols.<br />(Milind Bhandarkar via cutting)</li>
  4314. <li><a href="http://issues.apache.org/jira/browse/HADOOP-356">HADOOP-356</a>. Add contrib to "compile" and "test" build targets, so
  4315. that this code is better maintained.<br />(Michel Tourn via cutting)</li>
  4316. <li><a href="http://issues.apache.org/jira/browse/HADOOP-307">HADOOP-307</a>. Add smallJobsBenchmark contrib module. This runs
  4317. lots of small jobs, in order to determine per-task overheads.<br />(Sanjay Dahiya via cutting)</li>
  4318. <li><a href="http://issues.apache.org/jira/browse/HADOOP-342">HADOOP-342</a>. Add a tool for log analysis: Logalyzer.<br />(Arun C Murthy via cutting)</li>
  4319. <li><a href="http://issues.apache.org/jira/browse/HADOOP-347">HADOOP-347</a>. Add web-based browsing of DFS content. The namenode
  4320. redirects browsing requests to datanodes. Content requests are
  4321. redirected to datanodes where the data is local when possible.<br />(Devaraj Das via cutting)</li>
  4322. <li><a href="http://issues.apache.org/jira/browse/HADOOP-351">HADOOP-351</a>. Make Hadoop IPC kernel independent of Jetty.<br />(Devaraj Das via cutting)</li>
  4323. <li><a href="http://issues.apache.org/jira/browse/HADOOP-237">HADOOP-237</a>. Add metric reporting to DFS and MapReduce. With only
  4324. minor configuration changes, one can now monitor many Hadoop
  4325. system statistics using Ganglia or other monitoring systems.<br />(Milind Bhandarkar via cutting)</li>
  4326. <li><a href="http://issues.apache.org/jira/browse/HADOOP-376">HADOOP-376</a>. Fix datanode's HTTP server to scan for a free port.<br />(omalley via cutting)</li>
  4327. <li><a href="http://issues.apache.org/jira/browse/HADOOP-260">HADOOP-260</a>. Add --config option to shell scripts, specifying an
  4328. alternate configuration directory.<br />(Milind Bhandarkar via cutting)</li>
  4329. <li><a href="http://issues.apache.org/jira/browse/HADOOP-381">HADOOP-381</a>. Permit developers to save the temporary files for
  4330. tasks whose names match a regular expression, to facilliate
  4331. debugging.<br />(omalley via cutting)</li>
  4332. <li><a href="http://issues.apache.org/jira/browse/HADOOP-344">HADOOP-344</a>. Fix some Windows-related problems with DF.<br />(Konstantin Shvachko via cutting)</li>
  4333. <li><a href="http://issues.apache.org/jira/browse/HADOOP-380">HADOOP-380</a>. Fix reduce tasks to poll less frequently for map
  4334. outputs.<br />(Mahadev Konar via cutting)</li>
  4335. <li><a href="http://issues.apache.org/jira/browse/HADOOP-321">HADOOP-321</a>. Refactor DatanodeInfo, in preparation for
  4336. <a href="http://issues.apache.org/jira/browse/HADOOP-306">HADOOP-306</a>.<br />(Konstantin Shvachko &amp; omalley via cutting)</li>
  4337. <li><a href="http://issues.apache.org/jira/browse/HADOOP-385">HADOOP-385</a>. Fix some bugs in record io code generation.<br />(Milind Bhandarkar via cutting)</li>
  4338. <li><a href="http://issues.apache.org/jira/browse/HADOOP-302">HADOOP-302</a>. Add new Text class to replace UTF8, removing
  4339. limitations of that class. Also refactor utility methods for
  4340. writing zero-compressed integers (VInts and VLongs).<br />(Hairong Kuang via cutting)</li>
  4341. <li><a href="http://issues.apache.org/jira/browse/HADOOP-335">HADOOP-335</a>. Refactor DFS namespace/transaction logging in
  4342. namenode.<br />(Konstantin Shvachko via cutting)</li>
  4343. <li><a href="http://issues.apache.org/jira/browse/HADOOP-375">HADOOP-375</a>. Fix handling of the datanode HTTP daemon's port so
  4344. that multiple datanode's can be run on a single host.<br />(Devaraj Das via cutting)</li>
  4345. <li><a href="http://issues.apache.org/jira/browse/HADOOP-386">HADOOP-386</a>. When removing excess DFS block replicas, remove those
  4346. on nodes with the least free space first.<br />(Johan Oskarson via cutting)</li>
  4347. <li><a href="http://issues.apache.org/jira/browse/HADOOP-389">HADOOP-389</a>. Fix intermittent failures of mapreduce unit tests.
  4348. Also fix some build dependencies.<br />(Mahadev &amp; Konstantin via cutting)</li>
  4349. <li><a href="http://issues.apache.org/jira/browse/HADOOP-362">HADOOP-362</a>. Fix a problem where jobs hang when status messages
  4350. are recieved out-of-order.<br />(omalley via cutting)</li>
  4351. <li><a href="http://issues.apache.org/jira/browse/HADOOP-394">HADOOP-394</a>. Change order of DFS shutdown in unit tests to
  4352. minimize errors logged.<br />(Konstantin Shvachko via cutting)</li>
  4353. <li><a href="http://issues.apache.org/jira/browse/HADOOP-396">HADOOP-396</a>. Make DatanodeID implement Writable.<br />(Konstantin Shvachko via cutting)</li>
  4354. <li><a href="http://issues.apache.org/jira/browse/HADOOP-377">HADOOP-377</a>. Permit one to add URL resources to a Configuration.<br />(Jean-Baptiste Quenot via cutting)</li>
  4355. <li><a href="http://issues.apache.org/jira/browse/HADOOP-345">HADOOP-345</a>. Permit iteration over Configuration key/value pairs.<br />(Michel Tourn via cutting)</li>
  4356. <li><a href="http://issues.apache.org/jira/browse/HADOOP-409">HADOOP-409</a>. Streaming contrib module: make configuration
  4357. properties available to commands as environment variables.<br />(Michel Tourn via cutting)</li>
  4358. <li><a href="http://issues.apache.org/jira/browse/HADOOP-369">HADOOP-369</a>. Add -getmerge option to dfs command that appends all
  4359. files in a directory into a single local file.<br />(Johan Oskarson via cutting)</li>
  4360. <li><a href="http://issues.apache.org/jira/browse/HADOOP-410">HADOOP-410</a>. Replace some TreeMaps with HashMaps in DFS, for
  4361. a 17% performance improvement.<br />(Milind Bhandarkar via cutting)</li>
  4362. <li><a href="http://issues.apache.org/jira/browse/HADOOP-411">HADOOP-411</a>. Add unit tests for command line parser.<br />(Hairong Kuang via cutting)</li>
  4363. <li><a href="http://issues.apache.org/jira/browse/HADOOP-412">HADOOP-412</a>. Add MapReduce input formats that support filtering
  4364. of SequenceFile data, including sampling and regex matching.
  4365. Also, move JobConf.newInstance() to a new utility class.<br />(Hairong Kuang via cutting)</li>
  4366. <li><a href="http://issues.apache.org/jira/browse/HADOOP-226">HADOOP-226</a>. Fix fsck command to properly consider replication
  4367. counts, now that these can vary per file.<br />(Bryan Pendleton via cutting)</li>
  4368. <li><a href="http://issues.apache.org/jira/browse/HADOOP-425">HADOOP-425</a>. Add a Python MapReduce example, using Jython.<br />(omalley via cutting)</li>
  4369. </ol>
  4370. <h3><a href="javascript:toggleList('release_0.4.0_-_2006-06-28_')">Release 0.4.0 - 2006-06-28
  4371. </a></h3>
  4372. <ol id="release_0.4.0_-_2006-06-28_">
  4373. <li><a href="http://issues.apache.org/jira/browse/HADOOP-298">HADOOP-298</a>. Improved progress reports for CopyFiles utility, the
  4374. distributed file copier.<br />(omalley via cutting)</li>
  4375. <li><a href="http://issues.apache.org/jira/browse/HADOOP-299">HADOOP-299</a>. Fix the task tracker, permitting multiple jobs to
  4376. more easily execute at the same time.<br />(omalley via cutting)</li>
  4377. <li><a href="http://issues.apache.org/jira/browse/HADOOP-250">HADOOP-250</a>. Add an HTTP user interface to the namenode, running
  4378. on port 50070.<br />(Devaraj Das via cutting)</li>
  4379. <li><a href="http://issues.apache.org/jira/browse/HADOOP-123">HADOOP-123</a>. Add MapReduce unit tests that run a jobtracker and
  4380. tasktracker, greatly increasing code coverage.<br />(Milind Bhandarkar via cutting)</li>
  4381. <li><a href="http://issues.apache.org/jira/browse/HADOOP-271">HADOOP-271</a>. Add links from jobtracker's web ui to tasktracker's
  4382. web ui. Also attempt to log a thread dump of child processes
  4383. before they're killed.<br />(omalley via cutting)</li>
  4384. <li><a href="http://issues.apache.org/jira/browse/HADOOP-210">HADOOP-210</a>. Change RPC server to use a selector instead of a
  4385. thread per connection. This should make it easier to scale to
  4386. larger clusters. Note that this incompatibly changes the RPC
  4387. protocol: clients and servers must both be upgraded to the new
  4388. version to ensure correct operation.<br />(Devaraj Das via cutting)</li>
  4389. <li><a href="http://issues.apache.org/jira/browse/HADOOP-311">HADOOP-311</a>. Change DFS client to retry failed reads, so that a
  4390. single read failure will not alone cause failure of a task.<br />(omalley via cutting)</li>
  4391. <li><a href="http://issues.apache.org/jira/browse/HADOOP-314">HADOOP-314</a>. Remove the "append" phase when reducing. Map output
  4392. files are now directly passed to the sorter, without first
  4393. appending them into a single file. Now, the first third of reduce
  4394. progress is "copy" (transferring map output to reduce nodes), the
  4395. middle third is "sort" (sorting map output) and the last third is
  4396. "reduce" (generating output). Long-term, the "sort" phase will
  4397. also be removed.<br />(omalley via cutting)</li>
  4398. <li><a href="http://issues.apache.org/jira/browse/HADOOP-316">HADOOP-316</a>. Fix a potential deadlock in the jobtracker.<br />(omalley via cutting)</li>
  4399. <li><a href="http://issues.apache.org/jira/browse/HADOOP-319">HADOOP-319</a>. Fix FileSystem.close() to remove the FileSystem
  4400. instance from the cache.<br />(Hairong Kuang via cutting)</li>
  4401. <li><a href="http://issues.apache.org/jira/browse/HADOOP-135">HADOOP-135</a>. Fix potential deadlock in JobTracker by acquiring
  4402. locks in a consistent order.<br />(omalley via cutting)</li>
  4403. <li><a href="http://issues.apache.org/jira/browse/HADOOP-278">HADOOP-278</a>. Check for existence of input directories before
  4404. starting MapReduce jobs, making it easier to debug this common
  4405. error.<br />(omalley via cutting)</li>
  4406. <li><a href="http://issues.apache.org/jira/browse/HADOOP-304">HADOOP-304</a>. Improve error message for
  4407. UnregisterdDatanodeException to include expected node name.<br />(Konstantin Shvachko via cutting)</li>
  4408. <li><a href="http://issues.apache.org/jira/browse/HADOOP-305">HADOOP-305</a>. Fix TaskTracker to ask for new tasks as soon as a
  4409. task is finished, rather than waiting for the next heartbeat.
  4410. This improves performance when tasks are short.<br />(Mahadev Konar via cutting)</li>
  4411. <li><a href="http://issues.apache.org/jira/browse/HADOOP-59">HADOOP-59</a>. Add support for generic command line options. One may
  4412. now specify the filesystem (-fs), the MapReduce jobtracker (-jt),
  4413. a config file (-conf) or any configuration property (-D). The
  4414. "dfs", "fsck", "job", and "distcp" commands currently support
  4415. this, with more to be added.<br />(Hairong Kuang via cutting)</li>
  4416. <li><a href="http://issues.apache.org/jira/browse/HADOOP-296">HADOOP-296</a>. Permit specification of the amount of reserved space
  4417. on a DFS datanode. One may specify both the percentage free and
  4418. the number of bytes.<br />(Johan Oskarson via cutting)</li>
  4419. <li><a href="http://issues.apache.org/jira/browse/HADOOP-325">HADOOP-325</a>. Fix a problem initializing RPC parameter classes, and
  4420. remove the workaround used to initialize classes.<br />(omalley via cutting)</li>
  4421. <li><a href="http://issues.apache.org/jira/browse/HADOOP-328">HADOOP-328</a>. Add an option to the "distcp" command to ignore read
  4422. errors while copying.<br />(omalley via cutting)</li>
  4423. <li><a href="http://issues.apache.org/jira/browse/HADOOP-27">HADOOP-27</a>. Don't allocate tasks to trackers whose local free
  4424. space is too low.<br />(Johan Oskarson via cutting)</li>
  4425. <li><a href="http://issues.apache.org/jira/browse/HADOOP-318">HADOOP-318</a>. Keep slow DFS output from causing task timeouts.
  4426. This incompatibly changes some public interfaces, adding a
  4427. parameter to OutputFormat.getRecordWriter() and the new method
  4428. Reporter.progress(), but it makes lots of tasks succeed that were
  4429. previously failing.<br />(Milind Bhandarkar via cutting)</li>
  4430. </ol>
  4431. <h3><a href="javascript:toggleList('release_0.3.2_-_2006-06-09_')">Release 0.3.2 - 2006-06-09
  4432. </a></h3>
  4433. <ol id="release_0.3.2_-_2006-06-09_">
  4434. <li><a href="http://issues.apache.org/jira/browse/HADOOP-275">HADOOP-275</a>. Update the streaming contrib module to use log4j for
  4435. its logging.<br />(Michel Tourn via cutting)</li>
  4436. <li><a href="http://issues.apache.org/jira/browse/HADOOP-279">HADOOP-279</a>. Provide defaults for log4j logging parameters, so
  4437. that things still work reasonably when Hadoop-specific system
  4438. properties are not provided.<br />(omalley via cutting)</li>
  4439. <li><a href="http://issues.apache.org/jira/browse/HADOOP-280">HADOOP-280</a>. Fix a typo in AllTestDriver which caused the wrong
  4440. test to be run when "DistributedFSCheck" was specified.<br />(Konstantin Shvachko via cutting)</li>
  4441. <li><a href="http://issues.apache.org/jira/browse/HADOOP-240">HADOOP-240</a>. DFS's mkdirs() implementation no longer logs a warning
  4442. when the directory already exists.<br />(Hairong Kuang via cutting)</li>
  4443. <li><a href="http://issues.apache.org/jira/browse/HADOOP-285">HADOOP-285</a>. Fix DFS datanodes to be able to re-join the cluster
  4444. after the connection to the namenode is lost.<br />(omalley via cutting)</li>
  4445. <li><a href="http://issues.apache.org/jira/browse/HADOOP-277">HADOOP-277</a>. Fix a race condition when creating directories.<br />(Sameer Paranjpye via cutting)</li>
  4446. <li><a href="http://issues.apache.org/jira/browse/HADOOP-289">HADOOP-289</a>. Improved exception handling in DFS datanode.<br />(Konstantin Shvachko via cutting)</li>
  4447. <li><a href="http://issues.apache.org/jira/browse/HADOOP-292">HADOOP-292</a>. Fix client-side logging to go to standard error
  4448. rather than standard output, so that it can be distinguished from
  4449. application output.<br />(omalley via cutting)</li>
  4450. <li><a href="http://issues.apache.org/jira/browse/HADOOP-294">HADOOP-294</a>. Fixed bug where conditions for retrying after errors
  4451. in the DFS client were reversed.<br />(omalley via cutting)</li>
  4452. </ol>
  4453. <h3><a href="javascript:toggleList('release_0.3.1_-_2006-06-05_')">Release 0.3.1 - 2006-06-05
  4454. </a></h3>
  4455. <ol id="release_0.3.1_-_2006-06-05_">
  4456. <li><a href="http://issues.apache.org/jira/browse/HADOOP-272">HADOOP-272</a>. Fix a bug in bin/hadoop setting log
  4457. parameters.<br />(omalley &amp; cutting)</li>
  4458. <li><a href="http://issues.apache.org/jira/browse/HADOOP-274">HADOOP-274</a>. Change applications to log to standard output rather
  4459. than to a rolling log file like daemons.<br />(omalley via cutting)</li>
  4460. <li><a href="http://issues.apache.org/jira/browse/HADOOP-262">HADOOP-262</a>. Fix reduce tasks to report progress while they're
  4461. waiting for map outputs, so that they do not time out.<br />(Mahadev Konar via cutting)</li>
  4462. <li><a href="http://issues.apache.org/jira/browse/HADOOP-245">HADOOP-245</a> and <a href="http://issues.apache.org/jira/browse/HADOOP-246">HADOOP-246</a>. Improvements to record io package.<br />(Mahadev Konar via cutting)</li>
  4463. <li><a href="http://issues.apache.org/jira/browse/HADOOP-276">HADOOP-276</a>. Add logging config files to jar file so that they're
  4464. always found.<br />(omalley via cutting)</li>
  4465. </ol>
  4466. <h3><a href="javascript:toggleList('release_0.3.0_-_2006-06-02_')">Release 0.3.0 - 2006-06-02
  4467. </a></h3>
  4468. <ol id="release_0.3.0_-_2006-06-02_">
  4469. <li><a href="http://issues.apache.org/jira/browse/HADOOP-208">HADOOP-208</a>. Enhance MapReduce web interface, adding new pages
  4470. for failed tasks, and tasktrackers.<br />(omalley via cutting)</li>
  4471. <li><a href="http://issues.apache.org/jira/browse/HADOOP-204">HADOOP-204</a>. Tweaks to metrics package.<br />(David Bowen via cutting)</li>
  4472. <li><a href="http://issues.apache.org/jira/browse/HADOOP-209">HADOOP-209</a>. Add a MapReduce-based file copier. This will
  4473. copy files within or between file systems in parallel.<br />(Milind Bhandarkar via cutting)</li>
  4474. <li><a href="http://issues.apache.org/jira/browse/HADOOP-146">HADOOP-146</a>. Fix DFS to check when randomly generating a new block
  4475. id that no existing blocks already have that id.<br />(Milind Bhandarkar via cutting)</li>
  4476. <li><a href="http://issues.apache.org/jira/browse/HADOOP-180">HADOOP-180</a>. Make a daemon thread that does the actual task clean ups, so
  4477. that the main offerService thread in the taskTracker doesn't get stuck
  4478. and miss his heartbeat window. This was killing many task trackers as
  4479. big jobs finished (300+ tasks / node).<br />(omalley via cutting)</li>
  4480. <li><a href="http://issues.apache.org/jira/browse/HADOOP-200">HADOOP-200</a>. Avoid transmitting entire list of map task names to
  4481. reduce tasks. Instead just transmit the number of map tasks and
  4482. henceforth refer to them by number when collecting map output.<br />(omalley via cutting)</li>
  4483. <li><a href="http://issues.apache.org/jira/browse/HADOOP-219">HADOOP-219</a>. Fix a NullPointerException when handling a checksum
  4484. exception under SequenceFile.Sorter.sort().<br />(cutting &amp; stack)</li>
  4485. <li><a href="http://issues.apache.org/jira/browse/HADOOP-212">HADOOP-212</a>. Permit alteration of the file block size in DFS. The
  4486. default block size for new files may now be specified in the
  4487. configuration with the dfs.block.size property. The block size
  4488. may also be specified when files are opened.<br />(omalley via cutting)</li>
  4489. <li><a href="http://issues.apache.org/jira/browse/HADOOP-218">HADOOP-218</a>. Avoid accessing configuration while looping through
  4490. tasks in JobTracker.<br />(Mahadev Konar via cutting)</li>
  4491. <li><a href="http://issues.apache.org/jira/browse/HADOOP-161">HADOOP-161</a>. Add hashCode() method to DFS's Block.<br />(Milind Bhandarkar via cutting)</li>
  4492. <li><a href="http://issues.apache.org/jira/browse/HADOOP-115">HADOOP-115</a>. Map output types may now be specified. These are also
  4493. used as reduce input types, thus permitting reduce input types to
  4494. differ from reduce output types.<br />(Runping Qi via cutting)</li>
  4495. <li><a href="http://issues.apache.org/jira/browse/HADOOP-216">HADOOP-216</a>. Add task progress to task status page.<br />(Bryan Pendelton via cutting)</li>
  4496. <li><a href="http://issues.apache.org/jira/browse/HADOOP-233">HADOOP-233</a>. Add web server to task tracker that shows running
  4497. tasks and logs. Also add log access to job tracker web interface.<br />(omalley via cutting)</li>
  4498. <li><a href="http://issues.apache.org/jira/browse/HADOOP-205">HADOOP-205</a>. Incorporate pending tasks into tasktracker load
  4499. calculations.<br />(Mahadev Konar via cutting)</li>
  4500. <li><a href="http://issues.apache.org/jira/browse/HADOOP-247">HADOOP-247</a>. Fix sort progress to better handle exceptions.<br />(Mahadev Konar via cutting)</li>
  4501. <li><a href="http://issues.apache.org/jira/browse/HADOOP-195">HADOOP-195</a>. Improve performance of the transfer of map outputs to
  4502. reduce nodes by performing multiple transfers in parallel, each on
  4503. a separate socket.<br />(Sameer Paranjpye via cutting)</li>
  4504. <li><a href="http://issues.apache.org/jira/browse/HADOOP-251">HADOOP-251</a>. Fix task processes to be tolerant of failed progress
  4505. reports to their parent process.<br />(omalley via cutting)</li>
  4506. <li><a href="http://issues.apache.org/jira/browse/HADOOP-325">HADOOP-325</a>. Improve the FileNotFound exceptions thrown by
  4507. LocalFileSystem to include the name of the file.<br />(Benjamin Reed via cutting)</li>
  4508. <li><a href="http://issues.apache.org/jira/browse/HADOOP-254">HADOOP-254</a>. Use HTTP to transfer map output data to reduce
  4509. nodes. This, together with <a href="http://issues.apache.org/jira/browse/HADOOP-195">HADOOP-195</a>, greatly improves the
  4510. performance of these transfers.<br />(omalley via cutting)</li>
  4511. <li><a href="http://issues.apache.org/jira/browse/HADOOP-163">HADOOP-163</a>. Cause datanodes that\ are unable to either read or
  4512. write data to exit, so that the namenode will no longer target
  4513. them for new blocks and will replicate their data on other nodes.<br />(Hairong Kuang via cutting)</li>
  4514. <li><a href="http://issues.apache.org/jira/browse/HADOOP-222">HADOOP-222</a>. Add a -setrep option to the dfs commands that alters
  4515. file replication levels.<br />(Johan Oskarson via cutting)</li>
  4516. <li><a href="http://issues.apache.org/jira/browse/HADOOP-75">HADOOP-75</a>. In DFS, only check for a complete file when the file
  4517. is closed, rather than as each block is written.<br />(Milind Bhandarkar via cutting)</li>
  4518. <li><a href="http://issues.apache.org/jira/browse/HADOOP-124">HADOOP-124</a>. Change DFS so that datanodes are identified by a
  4519. persistent ID rather than by host and port. This solves a number
  4520. of filesystem integrity problems, when, e.g., datanodes are
  4521. restarted.<br />(Konstantin Shvachko via cutting)</li>
  4522. <li><a href="http://issues.apache.org/jira/browse/HADOOP-256">HADOOP-256</a>. Add a C API for DFS.<br />(Arun C Murthy via cutting)</li>
  4523. <li><a href="http://issues.apache.org/jira/browse/HADOOP-211">HADOOP-211</a>. Switch to use the Jakarta Commons logging internally,
  4524. configured to use log4j by default.<br />(Arun C Murthy and cutting)</li>
  4525. <li><a href="http://issues.apache.org/jira/browse/HADOOP-265">HADOOP-265</a>. Tasktracker now fails to start if it does not have a
  4526. writable local directory for temporary files. In this case, it
  4527. logs a message to the JobTracker and exits.<br />(Hairong Kuang via cutting)</li>
  4528. <li><a href="http://issues.apache.org/jira/browse/HADOOP-270">HADOOP-270</a>. Fix potential deadlock in datanode shutdown.<br />(Hairong Kuang via cutting)</li>
  4529. </ol>
  4530. <h3><a href="javascript:toggleList('release_0.2.1_-_2006-05-12_')">Release 0.2.1 - 2006-05-12
  4531. </a></h3>
  4532. <ol id="release_0.2.1_-_2006-05-12_">
  4533. <li><a href="http://issues.apache.org/jira/browse/HADOOP-199">HADOOP-199</a>. Fix reduce progress (broken by <a href="http://issues.apache.org/jira/browse/HADOOP-182">HADOOP-182</a>).<br />(omalley via cutting)</li>
  4534. <li><a href="http://issues.apache.org/jira/browse/HADOOP-201">HADOOP-201</a>. Fix 'bin/hadoop dfs -report'.<br />(cutting)</li>
  4535. <li><a href="http://issues.apache.org/jira/browse/HADOOP-207">HADOOP-207</a>. Fix JDK 1.4 incompatibility introduced by <a href="http://issues.apache.org/jira/browse/HADOOP-96">HADOOP-96</a>.
  4536. System.getenv() does not work in JDK 1.4.<br />(Hairong Kuang via cutting)</li>
  4537. </ol>
  4538. <h3><a href="javascript:toggleList('release_0.2.0_-_2006-05-05_')">Release 0.2.0 - 2006-05-05
  4539. </a></h3>
  4540. <ol id="release_0.2.0_-_2006-05-05_">
  4541. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-126">HADOOP-126</a>. 'bin/hadoop dfs -cp' now correctly copies .crc
  4542. files.<br />(Konstantin Shvachko via cutting)</li>
  4543. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-51">HADOOP-51</a>. Change DFS to support per-file replication counts.<br />(Konstantin Shvachko via cutting)</li>
  4544. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-131">HADOOP-131</a>. Add scripts to start/stop dfs and mapred daemons.
  4545. Use these in start/stop-all scripts.<br />(Chris Mattmann via cutting)</li>
  4546. <li>Stop using ssh options by default that are not yet in widely used
  4547. versions of ssh. Folks can still enable their use by uncommenting
  4548. a line in conf/hadoop-env.sh.<br />(cutting)</li>
  4549. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-92">HADOOP-92</a>. Show information about all attempts to run each
  4550. task in the web ui.<br />(Mahadev konar via cutting)</li>
  4551. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-128">HADOOP-128</a>. Improved DFS error handling.<br />(Owen O'Malley via cutting)</li>
  4552. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-129">HADOOP-129</a>. Replace uses of java.io.File with new class named
  4553. Path. This fixes bugs where java.io.File methods were called
  4554. directly when FileSystem methods were desired, and reduces the
  4555. likelihood of such bugs in the future. It also makes the handling
  4556. of pathnames more consistent between local and dfs FileSystems and
  4557. between Windows and Unix. java.io.File-based methods are still
  4558. available for back-compatibility, but are deprecated and will be
  4559. removed once 0.2 is released.<br />(cutting)</li>
  4560. <li>Change dfs.data.dir and mapred.local.dir to be comma-separated
  4561. lists of directories, no longer be space-separated. This fixes
  4562. several bugs on Windows.<br />(cutting)</li>
  4563. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-144">HADOOP-144</a>. Use mapred task id for dfs client id, to
  4564. facilitate debugging.<br />(omalley via cutting)</li>
  4565. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-143">HADOOP-143</a>. Do not line-wrap stack-traces in web ui.<br />(omalley via cutting)</li>
  4566. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-118">HADOOP-118</a>. In DFS, improve clean up of abandoned file
  4567. creations.<br />(omalley via cutting)</li>
  4568. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-138">HADOOP-138</a>. Stop multiple tasks in a single heartbeat, rather
  4569. than one per heartbeat.<br />(Stefan via cutting)</li>
  4570. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-139">HADOOP-139</a>. Remove a potential deadlock in
  4571. LocalFileSystem.lock().<br />(Igor Bolotin via cutting)</li>
  4572. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-134">HADOOP-134</a>. Don't hang jobs when the tasktracker is
  4573. misconfigured to use an un-writable local directory.<br />(omalley via cutting)</li>
  4574. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-115">HADOOP-115</a>. Correct an error message.<br />(Stack via cutting)</li>
  4575. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-133">HADOOP-133</a>. Retry pings from child to parent, in case of
  4576. (local) communcation problems. Also log exit status, so that one
  4577. can distinguish patricide from other deaths.<br />(omalley via cutting)</li>
  4578. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-142">HADOOP-142</a>. Avoid re-running a task on a host where it has
  4579. previously failed.<br />(omalley via cutting)</li>
  4580. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-148">HADOOP-148</a>. Maintain a task failure count for each
  4581. tasktracker and display it in the web ui.<br />(omalley via cutting)</li>
  4582. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-151">HADOOP-151</a>. Close a potential socket leak, where new IPC
  4583. connection pools were created per configuration instance that RPCs
  4584. use. Now a global RPC connection pool is used again, as
  4585. originally intended.<br />(cutting)</li>
  4586. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-69">HADOOP-69</a>. Don't throw a NullPointerException when getting
  4587. hints for non-existing file split.<br />(Bryan Pendelton via cutting)</li>
  4588. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-157">HADOOP-157</a>. When a task that writes dfs files (e.g., a reduce
  4589. task) failed and was retried, it would fail again and again,
  4590. eventually failing the job. The problem was that dfs did not yet
  4591. know that the failed task had abandoned the files, and would not
  4592. yet let another task create files with the same names. Dfs now
  4593. retries when creating a file long enough for locks on abandoned
  4594. files to expire.<br />(omalley via cutting)</li>
  4595. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-150">HADOOP-150</a>. Improved task names that include job
  4596. names.<br />(omalley via cutting)</li>
  4597. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-162">HADOOP-162</a>. Fix ConcurrentModificationException when
  4598. releasing file locks.<br />(omalley via cutting)</li>
  4599. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-132">HADOOP-132</a>. Initial check-in of new Metrics API, including
  4600. implementations for writing metric data to a file and for sending
  4601. it to Ganglia.<br />(David Bowen via cutting)</li>
  4602. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-160">HADOOP-160</a>. Remove some uneeded synchronization around
  4603. time-consuming operations in the TaskTracker.<br />(omalley via cutting)</li>
  4604. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-166">HADOOP-166</a>. RPCs failed when passed subclasses of a declared
  4605. parameter type. This is fixed by changing ObjectWritable to store
  4606. both the declared type and the instance type for Writables. Note
  4607. that this incompatibly changes the format of ObjectWritable and
  4608. will render unreadable any ObjectWritables stored in files.
  4609. Nutch only uses ObjectWritable in intermediate files, so this
  4610. should not be a problem for Nutch.<br />(Stefan &amp; cutting)</li>
  4611. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-168">HADOOP-168</a>. MapReduce RPC protocol methods should all declare
  4612. IOException, so that timeouts are handled appropriately.<br />(omalley via cutting)</li>
  4613. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-169">HADOOP-169</a>. Don't fail a reduce task if a call to the
  4614. jobtracker to locate map outputs fails.<br />(omalley via cutting)</li>
  4615. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-170">HADOOP-170</a>. Permit FileSystem clients to examine and modify
  4616. the replication count of individual files. Also fix a few
  4617. replication-related bugs.<br />(Konstantin Shvachko via cutting)</li>
  4618. <li>Permit specification of a higher replication levels for job
  4619. submission files (job.xml and job.jar). This helps with large
  4620. clusters, since these files are read by every node.<br />(cutting)</li>
  4621. <li><a href="http://issues.apache.org/jira/browse/HADOOP-173">HADOOP-173</a>. Optimize allocation of tasks with local data.<br />(cutting)</li>
  4622. <li><a href="http://issues.apache.org/jira/browse/HADOOP-167">HADOOP-167</a>. Reduce number of Configurations and JobConf's
  4623. created.<br />(omalley via cutting)</li>
  4624. <li>NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  4625. file. The lack of a .crc file was causing warnings.<br />(cutting)</li>
  4626. <li><a href="http://issues.apache.org/jira/browse/HADOOP-174">HADOOP-174</a>. Change JobClient to not abort job until it has failed
  4627. to contact the job tracker for five attempts, not just one as
  4628. before.<br />(omalley via cutting)</li>
  4629. <li><a href="http://issues.apache.org/jira/browse/HADOOP-177">HADOOP-177</a>. Change MapReduce web interface to page through tasks.
  4630. Previously, when jobs had more than a few thousand tasks they
  4631. could crash web browsers.<br />(Mahadev Konar via cutting)</li>
  4632. <li><a href="http://issues.apache.org/jira/browse/HADOOP-178">HADOOP-178</a>. In DFS, piggyback blockwork requests from datanodes
  4633. on heartbeat responses from namenode. This reduces the volume of
  4634. RPC traffic. Also move startup delay in blockwork from datanode
  4635. to namenode. This fixes a problem where restarting the namenode
  4636. triggered a lot of uneeded replication.<br />(Hairong Kuang via cutting)</li>
  4637. <li><a href="http://issues.apache.org/jira/browse/HADOOP-183">HADOOP-183</a>. If the DFS namenode is restarted with different
  4638. minimum and/or maximum replication counts, existing files'
  4639. replication counts are now automatically adjusted to be within the
  4640. newly configured bounds.<br />(Hairong Kuang via cutting)</li>
  4641. <li><a href="http://issues.apache.org/jira/browse/HADOOP-186">HADOOP-186</a>. Better error handling in TaskTracker's top-level
  4642. loop. Also improve calculation of time to send next heartbeat.<br />(omalley via cutting)</li>
  4643. <li><a href="http://issues.apache.org/jira/browse/HADOOP-187">HADOOP-187</a>. Add two MapReduce examples/benchmarks. One creates
  4644. files containing random data. The second sorts the output of the
  4645. first.<br />(omalley via cutting)</li>
  4646. <li><a href="http://issues.apache.org/jira/browse/HADOOP-185">HADOOP-185</a>. Fix so that, when a task tracker times out making the
  4647. RPC asking for a new task to run, the job tracker does not think
  4648. that it is actually running the task returned.<br />(omalley via cutting)</li>
  4649. <li><a href="http://issues.apache.org/jira/browse/HADOOP-190">HADOOP-190</a>. If a child process hangs after it has reported
  4650. completion, its output should not be lost.<br />(Stack via cutting)</li>
  4651. <li><a href="http://issues.apache.org/jira/browse/HADOOP-184">HADOOP-184</a>. Re-structure some test code to better support testing
  4652. on a cluster.<br />(Mahadev Konar via cutting)</li>
  4653. <li><a href="http://issues.apache.org/jira/browse/HADOOP-191">HADOOP-191</a> Add streaming package, Hadoop's first contrib module.
  4654. This permits folks to easily submit MapReduce jobs whose map and
  4655. reduce functions are implemented by shell commands. Use
  4656. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.<br />(Michel Tourn via cutting)</li>
  4657. <li><a href="http://issues.apache.org/jira/browse/HADOOP-189">HADOOP-189</a>. Fix MapReduce in standalone configuration to
  4658. correctly handle job jar files that contain a lib directory with
  4659. nested jar files.<br />(cutting)</li>
  4660. <li><a href="http://issues.apache.org/jira/browse/HADOOP-65">HADOOP-65</a>. Initial version of record I/O framework that enables
  4661. the specification of record types and generates marshalling code
  4662. in both Java and C++. Generated Java code implements
  4663. WritableComparable, but is not yet otherwise used by
  4664. Hadoop.<br />(Milind Bhandarkar via cutting)</li>
  4665. <li><a href="http://issues.apache.org/jira/browse/HADOOP-193">HADOOP-193</a>. Add a MapReduce-based FileSystem benchmark.<br />(Konstantin Shvachko via cutting)</li>
  4666. <li><a href="http://issues.apache.org/jira/browse/HADOOP-194">HADOOP-194</a>. Add a MapReduce-based FileSystem checker. This reads
  4667. every block in every file in the filesystem.<br />(Konstantin Shvachko
  4668. via cutting)</li>
  4669. <li><a href="http://issues.apache.org/jira/browse/HADOOP-182">HADOOP-182</a>. Fix so that lost task trackers to not change the
  4670. status of reduce tasks or completed jobs. Also fixes the progress
  4671. meter so that failed tasks are subtracted.<br />(omalley via cutting)</li>
  4672. <li><a href="http://issues.apache.org/jira/browse/HADOOP-96">HADOOP-96</a>. Logging improvements. Log files are now separate from
  4673. standard output and standard error files. Logs are now rolled.
  4674. Logging of all DFS state changes can be enabled, to facilitate
  4675. debugging.<br />(Hairong Kuang via cutting)</li>
  4676. </ol>
  4677. <h3><a href="javascript:toggleList('release_0.1.1_-_2006-04-08_')">Release 0.1.1 - 2006-04-08
  4678. </a></h3>
  4679. <ol id="release_0.1.1_-_2006-04-08_">
  4680. <li>Added CHANGES.txt, logging all significant changes to Hadoop.<br />(cutting)</li>
  4681. <li>Fix MapReduceBase.close() to throw IOException, as declared in the
  4682. Closeable interface. This permits subclasses which override this
  4683. method to throw that exception.<br />(cutting)</li>
  4684. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-117">HADOOP-117</a>. Pathnames were mistakenly transposed in
  4685. JobConf.getLocalFile() causing many mapred temporary files to not
  4686. be removed.<br />(Raghavendra Prabhu via cutting)</li>
  4687. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-116">HADOOP-116</a>. Clean up job submission files when jobs complete.<br />(cutting)</li>
  4688. <li>Fix <a href="http://issues.apache.org/jira/browse/HADOOP-125">HADOOP-125</a>. Fix handling of absolute paths on Windows<br />(cutting)</li>
  4689. </ol>
  4690. <h3><a href="javascript:toggleList('release_0.1.0_-_2006-04-01_')">Release 0.1.0 - 2006-04-01
  4691. </a></h3>
  4692. <ol id="release_0.1.0_-_2006-04-01_">
  4693. <li>The first release of Hadoop.
  4694. </li>
  4695. </ol>
  4696. </ul>
  4697. </body>
  4698. </html>