CHANGES.txt 208 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280
  1. Hadoop Change Log
  2. Trunk (unreleased changes)
  3. INCOMPATIBLE CHANGES
  4. HADOOP-2703. The default options to fsck skips checking files
  5. that are being written to. The output of fsck is incompatible
  6. with previous release. (lohit vijayarenu via dhruba)
  7. HADOOP-2865. FsShell.ls() printout format changed to print file names
  8. in the end of the line. (Edward J. Yoon via shv)
  9. HADOOP-3283. The Datanode has a RPC server. It currently supports
  10. two RPCs: the first RPC retrives the metadata about a block and the
  11. second RPC sets the generation stamp of an existing block.
  12. (Tsz Wo (Nicholas), SZE via dhruba)
  13. HADOOP-2797. Code related to upgrading to 0.14 (Block CRCs) is
  14. removed. As result, upgrade to 0.18 or later from 0.13 or earlier
  15. is not supported. If upgrading from 0.13 or earlier is required,
  16. please upgrade to an intermediate version (0.14-0.17) and then
  17. to this version. (rangadi)
  18. HADOOP-544. This issue introduces new classes JobID, TaskID and
  19. TaskAttemptID, which should be used instead of their string counterparts.
  20. Functions in JobClient, TaskReport, RunningJob, jobcontrol.Job and
  21. TaskCompletionEvent that use string arguments are deprecated in favor
  22. of the corresponding ones that use ID objects. Applications can use
  23. xxxID.toString() and xxxID.forName() methods to convert/restore objects
  24. to/from strings. (Enis Soztutar via ddas)
  25. NEW FEATURES
  26. HADOOP-3074. Provides a UrlStreamHandler for DFS and other FS,
  27. relying on FileSystem (taton)
  28. HADOOP-2585. Name-node imports namespace data from a recent checkpoint
  29. accessible via a NFS mount. (shv)
  30. HADOOP-3061. Writable types for doubles and bytes. (Andrzej
  31. Bialecki via omalley)
  32. HADOOP-2857. Allow libhdfs to set jvm options. (Craig Macdonald
  33. via omalley)
  34. IMPROVEMENTS
  35. HADOOP-2928. Remove deprecated FileSystem.getContentLength().
  36. (Lohit Vjayarenu via rangadi)
  37. HADOOP-3130. Make the connect timeout smaller for getFile.
  38. (Amar Ramesh Kamat via ddas)
  39. HADOOP-3160. Remove deprecated exists() from ClientProtocol and
  40. FSNamesystem (Lohit Vjayarenu via rangadi)
  41. HADOOP-2910. Throttle IPC Clients during bursts of requests or
  42. server slowdown. Clients retry connection for up to 15 minutes
  43. when socket connection times out. (hairong)
  44. HADOOP-3295. Allow TextOutputFormat to use configurable spearators.
  45. (Zheng Shao via cdouglas).
  46. HADOOP-3308. Improve QuickSort by excluding values eq the pivot from the
  47. partition. (cdouglas)
  48. HADOOP-2461. Trim property names in configuration.
  49. (Tsz Wo (Nicholas), SZE via shv)
  50. OPTIMIZATIONS
  51. HADOOP-3274. The default constructor of BytesWritable creates empty
  52. byte array. (Tsz Wo (Nicholas), SZE via shv)
  53. HADOOP-3272. Remove redundant copy of Block object in BlocksMap.
  54. (Lohit Vjayarenu via shv)
  55. HADOOP-1979. Speed up fsck by adding a buffered stream. (Lohit
  56. Vijaya Renu via omalley)
  57. HADOOP-3164. Reduce DataNode CPU usage by using FileChannel.tranferTo().
  58. On Linux DataNode takes 5 times less CPU while serving data. Results may
  59. vary on other platforms. (rangadi)
  60. BUG FIXES
  61. HADOOP-2905. 'fsck -move' triggers NPE in NameNode.
  62. (Lohit Vjayarenu via rangadi)
  63. Increment ClientProtocol.versionID missed by HADOOP-2585. (shv)
  64. HADOOP-3254. Restructure internal namenode methods that process
  65. heartbeats to use well-defined BlockCommand object(s) instead of
  66. using the base java Object. (Tsz Wo (Nicholas), SZE via dhruba)
  67. HADOOP-3176. Change lease record when a open-for-write-file
  68. gets renamed. (dhruba)
  69. HADOOP-3269. Fix a case when namenode fails to restart
  70. while processing a lease record. ((Tsz Wo (Nicholas), SZE via dhruba)
  71. HADOOP-3282. Port issues in TestCheckpoint resolved. (shv)
  72. HADOOP-3268. file:// URLs issue in TestUrlStreamHandler under Windows.
  73. (taton)
  74. HADOOP-3127. Deleting files in trash should really remove them.
  75. (Brice Arnould via omalley)
  76. HADOOP-3300. Fix locking of explicit locks in NetworkTopology.
  77. (tomwhite via omalley)
  78. HADOOP-3270. Constant DatanodeCommands are stored in static final
  79. immutable variables for better code clarity.
  80. (Tsz Wo (Nicholas), SZE via dhruba)
  81. HADOOP-2793. Fix broken links for worst performing shuffle tasks in
  82. the job history page. (Amareshwari Sriramadasu via ddas)
  83. HADOOP-3313. Avoid unnecessary calls to System.currentTimeMillis
  84. in RPC::Invoker. (cdouglas)
  85. HADOOP-3318. Recognize "Darwin" as an alias for "Mac OS X" to
  86. support Soylatte. (Sam Pullara via omalley)
  87. HADOOP-3301. Fix misleading error message when S3 URI hostname
  88. contains an underscore. (tomwhite via omalley)
  89. Release 0.17.0 - Unreleased
  90. INCOMPATIBLE CHANGES
  91. HADOOP-2786. Move hbase out of hadoop core
  92. HADOOP-2345. New HDFS transactions to support appending
  93. to files. Disk layout version changed from -11 to -12. (dhruba)
  94. HADOOP-2192. Error messages from "dfs mv" command improved.
  95. (Mahadev Konar via dhruba)
  96. HADOOP-1902. "dfs du" command without any arguments operates on the
  97. current working directory. (Mahadev Konar via dhruba)
  98. HADOOP-2873. Fixed bad disk format introduced by HADOOP-2345.
  99. Disk layout version changed from -12 to -13. See changelist 630992
  100. (dhruba)
  101. HADOOP-1985. This addresses rack-awareness for Map tasks and for
  102. HDFS in a uniform way. (ddas)
  103. HADOOP-1986. Add support for a general serialization mechanism for
  104. Map Reduce. (tomwhite)
  105. HADOOP-771. FileSystem.delete() takes an explicit parameter that
  106. specifies whether a recursive delete is intended.
  107. (Mahadev Konar via dhruba)
  108. HADOOP-2470. Remove getContentLength(String), open(String, long, long)
  109. and isDir(String) from ClientProtocol. ClientProtocol version changed
  110. from 26 to 27. (Tsz Wo (Nicholas), SZE via cdouglas)
  111. HADOOP-2822. Remove deprecated code for classes InputFormatBase and
  112. PhasedFileSystem. (Amareshwari Sriramadasu via enis)
  113. HADOOP-2116. Changes the layout of the task execution directory.
  114. (Amareshwari Sriramadasu via ddas)
  115. HADOOP-2828. The following deprecated methods in Configuration.java
  116. have been removed
  117. getObject(String name)
  118. setObject(String name, Object value)
  119. get(String name, Object defaultValue)
  120. set(String name, Object value)
  121. Iterator entries()
  122. (Amareshwari Sriramadasu via ddas)
  123. HADOOP-2824. Removes one deprecated constructor from MiniMRCluster.
  124. (Amareshwari Sriramadasu via ddas)
  125. HADOOP-2823. Removes deprecated methods getColumn(), getLine() from
  126. org.apache.hadoop.record.compiler.generated.SimpleCharStream.
  127. (Amareshwari Sriramadasu via ddas)
  128. HADOOP-3060. Removes one unused constructor argument from MiniMRCluster.
  129. (Amareshwari Sriramadasu via ddas)
  130. HADOOP-2854. Remove deprecated o.a.h.ipc.Server::getUserInfo().
  131. (lohit vijayarenu via cdouglas)
  132. HADOOP-2563. Remove deprecated FileSystem::listPaths.
  133. (lohit vijayarenu via cdouglas)
  134. HADOOP-2818. Remove deprecated methods in Counters.
  135. (Amareshwari Sriramadasu via tomwhite)
  136. HADOOP-2831. Remove deprecated o.a.h.dfs.INode::getAbsoluteName()
  137. (lohit vijayarenu via cdouglas)
  138. HADOOP-2839. Remove deprecated FileSystem::globPaths.
  139. (lohit vijayarenu via cdouglas)
  140. HADOOP-2634. Deprecate ClientProtocol::exists.
  141. (lohit vijayarenu via cdouglas)
  142. HADOOP-2410. Make EC2 cluster nodes more independent of each other.
  143. Multiple concurrent EC2 clusters are now supported, and nodes may be
  144. added to a cluster on the fly with new nodes starting in the same EC2
  145. availability zone as the cluster. Ganglia monitoring and large
  146. instance sizes have also been added. (Chris K Wensel via tomwhite)
  147. HADOOP-2826. Deprecated FileSplit.getFile(), LineRecordReader.readLine().
  148. (Amareshwari Sriramadasu via ddas)
  149. HADOOP-3239. getFileInfo() returns null for non-existing files instead
  150. of throwing FileNotFoundException. (Lohit Vijayarenu via shv)
  151. HADOOP-3266. Removed HOD changes from CHANGES.txt, as they are now inside
  152. src/contrib/hod (Hemanth Yamijala via ddas)
  153. HADOOP-3280. Separate the configuration of the virtual memory size
  154. (mapred.child.ulimit) from the jvm heap size, so that 64 bit
  155. streaming applications are supported even when running with 32 bit
  156. jvms. (acmurthy via omalley)
  157. NEW FEATURES
  158. HADOOP-1398. Add HBase in-memory block cache. (tomwhite)
  159. HADOOP-2178. Job History on DFS. (Amareshwari Sri Ramadasu via ddas)
  160. HADOOP-2063. A new parameter to dfs -get command to fetch a file
  161. even if it is corrupted. (Tsz Wo (Nicholas), SZE via dhruba)
  162. HADOOP-2219. A new command "df -count" that counts the number of
  163. files and directories. (Tsz Wo (Nicholas), SZE via dhruba)
  164. HADOOP-2906. Add an OutputFormat capable of using keys, values, and
  165. config params to map records to different output files.
  166. (Runping Qi via cdouglas)
  167. HADOOP-2346. Utilities to support timeout while writing to sockets.
  168. DFSClient and DataNode sockets have 10min write timeout. (rangadi)
  169. HADOOP-2951. Add a contrib module that provides a utility to
  170. build or update Lucene indexes using Map/Reduce. (Ning Li via cutting)
  171. HADOOP-1622. Allow multiple jar files for map reduce.
  172. (Mahadev Konar via dhruba)
  173. HADOOP-2055. Allows users to set PathFilter on the FileInputFormat.
  174. (Alejandro Abdelnur via ddas)
  175. HADOOP-2551. More environment variables like HADOOP_NAMENODE_OPTS
  176. for better control of HADOOP_OPTS for each component. (rangadi)
  177. HADOOP-3001. Add job counters that measure the number of bytes
  178. read and written to HDFS, S3, KFS, and local file systems. (omalley)
  179. HADOOP-3048. A new Interface and a default implementation to convert
  180. and restore serializations of objects to/from strings. (enis)
  181. IMPROVEMENTS
  182. HADOOP-2655. Copy on write for data and metadata files in the
  183. presence of snapshots. Needed for supporting appends to HDFS
  184. files. (dhruba)
  185. HADOOP-1967. When a Path specifies the same scheme as the default
  186. FileSystem but no authority, the default FileSystem's authority is
  187. used. Also add warnings for old-format FileSystem names, accessor
  188. methods for fs.default.name, and check for null authority in HDFS.
  189. (cutting)
  190. HADOOP-2895. Let the profiling string be configurable.
  191. (Martin Traverso via cdouglas)
  192. HADOOP-910. Enables Reduces to do merges for the on-disk map output files
  193. in parallel with their copying. (Amar Kamat via ddas)
  194. HADOOP-730. Use rename rather than copy for local renames. (cdouglas)
  195. HADOOP-2810. Updated the Hadoop Core logo. (nigel)
  196. HADOOP-2057. Streaming should optionally treat a non-zero exit status
  197. of a child process as a failed task. (Rick Cox via tomwhite)
  198. HADOOP-2765. Enables specifying ulimits for streaming/pipes tasks (ddas)
  199. HADOOP-2888. Make gridmix scripts more readily configurable and amenable
  200. to automated execution. (Mukund Madhugiri via cdouglas)
  201. HADOOP-2908. A document that describes the DFS Shell command.
  202. (Mahadev Konar via dhruba)
  203. HADOOP-2981. Update README.txt to reflect the upcoming use of
  204. cryptography. (omalley)
  205. HADOOP-2804. Add support to publish CHANGES.txt as HTML when running
  206. the Ant 'docs' target. (nigel)
  207. HADOOP-2559. Change DFS block placement to allocate the first replica
  208. locally, the second off-rack, and the third intra-rack from the
  209. second. (lohit vijayarenu via cdouglas)
  210. HADOOP-2939. Make the automated patch testing process an executable
  211. Ant target, test-patch. (nigel)
  212. HADOOP-2239. Add HsftpFileSystem to permit transferring files over ssl.
  213. (cdouglas)
  214. HADOOP-2886. Track individual RPC metrics.
  215. (girish vaitheeswaran via dhruba)
  216. HADOOP-2373. Improvement in safe-mode reporting. (shv)
  217. HADOOP-3091. Modify FsShell command -put to accept multiple sources.
  218. (Lohit Vijaya Renu via cdouglas)
  219. HADOOP-3092. Show counter values from job -status command.
  220. (Tom White via ddas)
  221. HADOOP-1228. Ant task to generate Eclipse project files. (tomwhite)
  222. HADOOP-3093. Adds Configuration.getStrings(name, default-value) and
  223. the corresponding setStrings. (Amareshwari Sriramadasu via ddas)
  224. HADOOP-3106. Adds documentation in forrest for debugging.
  225. (Amareshwari Sriramadasu via ddas)
  226. HADOOP-3099. Add an option to distcp to preserve user, group, and
  227. permission information. (Tsz Wo (Nicholas), SZE via cdouglas)
  228. HADOOP-2841. Unwrap AccessControlException and FileNotFoundException
  229. from RemoteException for DFSClient. (shv)
  230. HADOOP-3152. Make index interval configuable when using
  231. MapFileOutputFormat for map-reduce job. (Rong-En Fan via cutting)
  232. HADOOP-3143. Decrease number of slaves from 4 to 3 in TestMiniMRDFSSort,
  233. as Hudson generates false negatives under the current load.
  234. (Nigel Daley via cdouglas)
  235. HADOOP-3174. Illustrative example for MultipleFileInputFormat. (Enis
  236. Soztutar via acmurthy)
  237. HADOOP-2993. Clarify the usage of JAVA_HOME in the Quick Start guide.
  238. (acmurthy via nigel)
  239. HADOOP-3124. Make DataNode socket write timeout configurable. (rangadi)
  240. OPTIMIZATIONS
  241. HADOOP-2790. Fixed inefficient method hasSpeculativeTask by removing
  242. repetitive calls to get the current time and late checking to see if
  243. we want speculation on at all. (omalley)
  244. HADOOP-2758. Reduce buffer copies in DataNode when data is read from
  245. HDFS, without negatively affecting read throughput. (rangadi)
  246. HADOOP-2399. Input key and value to combiner and reducer is reused.
  247. (Owen O'Malley via ddas).
  248. HADOOP-2423. Code optimization in FSNamesystem.mkdirs.
  249. (Tsz Wo (Nicholas), SZE via dhruba)
  250. HADOOP-2606. ReplicationMonitor selects data-nodes to replicate directly
  251. from needed replication blocks instead of looking up for the blocks for
  252. each live data-node. (shv)
  253. HADOOP-2148. Eliminate redundant data-node blockMap lookups. (shv)
  254. HADOOP-2027. Return the number of bytes in each block in a file
  255. via a single rpc to the namenode to speed up job planning.
  256. (Lohit Vijaya Renu via omalley)
  257. HADOOP-2902. Replace uses of "fs.default.name" with calls to the
  258. accessor methods added in HADOOP-1967. (cutting)
  259. HADOOP-2119. Optimize scheduling of jobs with large numbers of
  260. tasks by replacing static arrays with lists of runnable tasks.
  261. (Amar Kamat via omalley)
  262. HADOOP-2919. Reduce the number of memory copies done during the
  263. map output sorting. Also adds two config variables:
  264. io.sort.spill.percent - the percentages of io.sort.mb that should
  265. cause a spill (default 80%)
  266. io.sort.record.percent - the percent of io.sort.mb that should
  267. hold key/value indexes (default 5%)
  268. (cdouglas via omalley)
  269. HADOOP-3140. Doesn't add a task in the commit queue if the task hadn't
  270. generated any output. (Amar Kamat via ddas)
  271. HADOOP-3168. Reduce the amount of logging in streaming to an
  272. exponentially increasing number of records (up to 10,000
  273. records/log). (Zheng Shao via omalley)
  274. BUG FIXES
  275. HADOOP-2195. '-mkdir' behaviour is now closer to Linux shell in case of
  276. errors. (Mahadev Konar via rangadi)
  277. HADOOP-2190. bring behaviour '-ls' and '-du' closer to Linux shell
  278. commands in case of errors. (Mahadev Konar via rangadi)
  279. HADOOP-2193. 'fs -rm' and 'fs -rmr' show error message when the target
  280. file does not exist. (Mahadev Konar via rangadi)
  281. HADOOP-2738 Text is not subclassable because set(Text) and compareTo(Object)
  282. access the other instance's private members directly. (jimk)
  283. HADOOP-2779. Remove the references to HBase in the build.xml. (omalley)
  284. HADOOP-2194. dfs cat on a non-existent file throws FileNotFoundException.
  285. (Mahadev Konar via dhruba)
  286. HADOOP-2767. Fix for NetworkTopology erroneously skipping the last leaf
  287. node on a rack. (Hairong Kuang and Mark Butler via dhruba)
  288. HADOOP-1593. FsShell works with paths in non-default FileSystem.
  289. (Mahadev Konar via dhruba)
  290. HADOOP-2191. du and dus command on non-existent directory gives
  291. appropriate error message. (Mahadev Konar via dhruba)
  292. HADOOP-2832. Remove tabs from code of DFSClient for better
  293. indentation. (dhruba)
  294. HADOOP-2844. distcp closes file handles for sequence files.
  295. (Tsz Wo (Nicholas), SZE via dhruba)
  296. HADOOP-2727. Fix links in Web UI of the hadoop daemons and some docs
  297. (Amareshwari Sri Ramadasu via ddas)
  298. HADOOP-2871. Fixes a problem to do with file: URI in the JobHistory init.
  299. (Amareshwari Sri Ramadasu via ddas)
  300. HADOOP-2800. Deprecate SetFile.Writer constructor not the whole class.
  301. (Johan Oskarsson via tomwhite)
  302. HADOOP-2891. DFSClient.close() closes all open files. (dhruba)
  303. HADOOP-2845. Fix dfsadmin disk utilization report on Solaris.
  304. (Martin Traverso via tomwhite)
  305. HADOOP-2912. MiniDFSCluster restart should wait for namenode to exit
  306. safemode. This was causing TestFsck to fail. (Mahadev Konar via dhruba)
  307. HADOOP-2820. The following classes in streaming are removed :
  308. StreamLineRecordReader StreamOutputFormat StreamSequenceRecordReader.
  309. (Amareshwari Sri Ramadasu via ddas)
  310. HADOOP-2819. The following methods in JobConf are removed:
  311. getInputKeyClass() setInputKeyClass getInputValueClass()
  312. setInputValueClass(Class theClass) setSpeculativeExecution
  313. getSpeculativeExecution() (Amareshwari Sri Ramadasu via ddas)
  314. HADOOP-2817. Removes deprecated mapred.tasktracker.tasks.maximum and
  315. ClusterStatus.getMaxTasks(). (Amareshwari Sri Ramadasu via ddas)
  316. HADOOP-2821. Removes deprecated ShellUtil and ToolBase classes from
  317. the util package. (Amareshwari Sri Ramadasu via ddas)
  318. HADOOP-2934. The namenode was encountreing a NPE while loading
  319. leases from the fsimage. Fixed. (dhruba)
  320. HADOOP-2938. Some fs commands did not glob paths.
  321. (Tsz Wo (Nicholas), SZE via rangadi)
  322. HADOOP-2943. Compression of intermediate map output causes failures
  323. in the merge. (cdouglas)
  324. HADOOP-2870. DataNode and NameNode closes all connections while
  325. shutting down. (Hairong Kuang via dhruba)
  326. HADOOP-2973. Fix TestLocalDFS for Windows platform.
  327. (Tsz Wo (Nicholas), SZE via dhruba)
  328. HADOOP-2971. select multiple times if it returns early in
  329. SocketIOWithTimeout. (rangadi)
  330. HADOOP-2955. Fix TestCrcCorruption test failures caused by HADOOP-2758
  331. (rangadi)
  332. HADOOP-2657. A flush call on the DFSOutputStream flushes the last
  333. partial CRC chunk too. (dhruba)
  334. HADOOP-2974. IPC unit tests used "0.0.0.0" to connect to server, which
  335. is not always supported. (rangadi)
  336. HADOOP-2996. Fixes uses of StringBuffer in StreamUtils class.
  337. (Dave Brosius via ddas)
  338. HADOOP-2995. Fixes StreamBaseRecordReader's getProgress to return a
  339. floating point number. (Dave Brosius via ddas)
  340. HADOOP-2972. Fix for a NPE in FSDataset.invalidate.
  341. (Mahadev Konar via dhruba)
  342. HADOOP-2994. Code cleanup for DFSClient: remove redundant
  343. conversions from string to string. (Dave Brosius via dhruba)
  344. HADOOP-3009. TestFileCreation sometimes fails because restarting
  345. minidfscluster sometimes creates datanodes with ports that are
  346. different from their original instance. (dhruba)
  347. HADOOP-2992. Distributed Upgrade framework works correctly with
  348. more than one upgrade object. (Konstantin Shvachko via dhruba)
  349. HADOOP-2679. Fix a typo in libhdfs. (Jason via dhruba)
  350. HADOOP-2976. When a lease expires, the Namenode ensures that
  351. blocks of the file are adequately replicated. (dhruba)
  352. HADOOP-2901. Fixes the creation of info servers in the JobClient
  353. and JobTracker. Removes the creation from JobClient and removes
  354. additional info server from the JobTracker. Also adds the command
  355. line utility to view the history files (HADOOP-2896), and fixes
  356. bugs in JSPs to do with analysis - HADOOP-2742, HADOOP-2792.
  357. (Amareshwari Sri Ramadasu via ddas)
  358. HADOOP-2890. If different datanodes report the same block but
  359. with different sizes to the namenode, the namenode picks the
  360. replica(s) with the largest size as the only valid replica(s). (dhruba)
  361. HADOOP-2825. Deprecated MapOutputLocation.getFile() is removed.
  362. (Amareshwari Sri Ramadasu via ddas)
  363. HADOOP-2806. Fixes a streaming document.
  364. (Amareshwari Sriramadasu via ddas)
  365. HADOOP-3008. SocketIOWithTimeout throws InterruptedIOException if the
  366. thread is interrupted while it is waiting. (rangadi)
  367. HADOOP-3006. Fix wrong packet size reported by DataNode when a block
  368. is being replicated. (rangadi)
  369. HADOOP-3029. Datanode prints log message "firstbadlink" only if
  370. it detects a bad connection to another datanode in the pipeline. (dhruba)
  371. HADOOP-3030. Release reserved space for file in InMemoryFileSystem if
  372. checksum reservation fails. (Devaraj Das via cdouglas)
  373. HADOOP-3036. Fix findbugs warnings in UpgradeUtilities. (Konstantin
  374. Shvachko via cdouglas)
  375. HADOOP-3025. ChecksumFileSystem supports the delete method with
  376. the recursive flag. (Mahadev Konar via dhruba)
  377. HADOOP-3012. dfs -mv file to user home directory throws exception if
  378. the user home directory does not exist. (Mahadev Konar via dhruba)
  379. HADOOP-3066. Should not require superuser privilege to query if hdfs is in
  380. safe mode (jimk)
  381. HADOOP-3040. If the input line starts with the separator char, the key
  382. is set as empty. (Amareshwari Sriramadasu via ddas)
  383. HADOOP-3080. Removes flush calls from JobHistory.
  384. (Amareshwari Sriramadasu via ddas)
  385. HADOOP-3086. Adds the testcase missed during commit of hadoop-3040.
  386. (Amareshwari Sriramadasu via ddas)
  387. HADOOP-3046. Fix the raw comparators for Text and BytesWritables
  388. to use the provided length rather than recompute it. (omalley)
  389. HADOOP-3094. Fix BytesWritable.toString to avoid extending the sign bit
  390. (Owen O'Malley via cdouglas)
  391. HADOOP-3067. DFSInputStream's position read does not close the sockets.
  392. (rangadi)
  393. HADOOP-3073. close() on SocketInputStream or SocketOutputStream should
  394. close the underlying channel. (rangadi)
  395. HADOOP-3087. Fixes a problem to do with refreshing of loadHistory.jsp.
  396. (Amareshwari Sriramadasu via ddas)
  397. HADOOP-3065. Better logging message if the rack location of a datanode
  398. cannot be determined. (Devaraj Das via dhruba)
  399. HADOOP-3064. Commas in a file path should not be treated as delimiters.
  400. (Hairong Kuang via shv)
  401. HADOOP-2997. Adds test for non-writable serialier. Also fixes a problem
  402. introduced by HADOOP-2399. (Tom White via ddas)
  403. HADOOP-3114. Fix TestDFSShell on Windows. (Lohit Vijaya Renu via cdouglas)
  404. HADOOP-3118. Fix Namenode NPE while loading fsimage after a cluster
  405. upgrade from older disk format. (dhruba)
  406. HADOOP-3161. Fix FIleUtil.HardLink.getLinkCount on Mac OS. (nigel
  407. via omalley)
  408. HADOOP-2927. Fix TestDU to acurately calculate the expected file size.
  409. (shv via nigel)
  410. HADOOP-3123. Fix the native library build scripts to work on Solaris.
  411. (tomwhite via omalley)
  412. HADOOP-3089. Streaming should accept stderr from task before
  413. first key arrives. (Rick Cox via tomwhite)
  414. HADOOP-3146. A DFSOutputStream.flush method is renamed as
  415. DFSOutputStream.fsync. (dhruba)
  416. HADOOP-3165. -put/-copyFromLocal did not treat input file "-" as stdin.
  417. (Lohit Vijayarenu via rangadi)
  418. HADOOP-3138. DFS mkdirs() should not throw an exception if the directory
  419. already exists. (rangadi)
  420. HADOOP-3041. Deprecate JobConf.setOutputPath and JobConf.getOutputPath.
  421. Deprecate OutputFormatBase. Add FileOutputFormat. Existing output formats
  422. extending OutputFormatBase, now extend FileOutputFormat. Add the following
  423. APIs in FileOutputFormat: setOutputPath, getOutputPath, getWorkOutputPath.
  424. (Amareshwari Sriramadasu via nigel)
  425. HADOOP-3083. The fsimage does not store leases. This would have to be
  426. reworked in the next release to support appends. (dhruba)
  427. HADOOP-3166. Fix an ArrayIndexOutOfBoundsException in the spill thread
  428. and make exception handling more promiscuous to catch this condition.
  429. (cdouglas)
  430. HADOOP-3050. DataNode sends one and only one block report after
  431. it registers with the namenode. (Hairong Kuang)
  432. HADOOP-3044. NNBench sets the right configuration for the mapper.
  433. (Hairong Kuang)
  434. HADOOP-3178. Fix GridMix scripts for small and medium jobs
  435. to handle input paths differently. (Mukund Madhugiri via nigel)
  436. HADOOP-1911. Fix an infinite loop in DFSClient when all replicas of a
  437. block are bad (cdouglas)
  438. HADOOP-3157. Fix path handling in DistributedCache and TestMiniMRLocalFS.
  439. (Doug Cutting via rangadi)
  440. HADOOP-3018. Fix the eclipse plug-in contrib wrt removed deprecated
  441. methods (taton)
  442. HADOOP-3183. Fix TestJobShell to use 'ls' instead of java.io.File::exists
  443. since cygwin symlinks are unsupported.
  444. (Mahadev konar via cdouglas)
  445. HADOOP-3175. Fix FsShell.CommandFormat to handle "-" in arguments.
  446. (Edward J. Yoon via rangadi)
  447. HADOOP-3220. Safemode message corrected. (shv)
  448. HADOOP-3208. Fix WritableDeserializer to set the Configuration on
  449. deserialized Writables. (Enis Soztutar via cdouglas)
  450. HADOOP-3224. 'dfs -du /dir' does not return correct size.
  451. (Lohit Vjayarenu via rangadi)
  452. HADOOP-3223. Fix typo in help message for -chmod. (rangadi)
  453. HADOOP-1373. checkPath() should ignore case when it compares authoriy.
  454. (Edward J. Yoon via rangadi)
  455. HADOOP-3204. Fixes a problem to do with ReduceTask's LocalFSMerger not
  456. catching Throwable. (Amar Ramesh Kamat via ddas)
  457. HADOOP-3229. Report progress when collecting records from the mapper and
  458. the combiner. (Doug Cutting via cdouglas)
  459. HADOOP-3225. Unwrapping methods of RemoteException should initialize
  460. detailedMassage field. (Mahadev Konar, shv, cdouglas)
  461. HADOOP-3247. Fix gridmix scripts to use the correct globbing syntax and
  462. change maxentToSameCluster to run the correct number of jobs.
  463. (Runping Qi via cdouglas)
  464. HADOOP-3242. Fix the RecordReader of SequenceFileAsBinaryInputFormat to
  465. correctly read from the start of the split and not the beginning of the
  466. file. (cdouglas via acmurthy)
  467. HADOOP-3256. Encodes the job name used in the filename for history files.
  468. (Arun Murthy via ddas)
  469. HADOOP-3162. Ensure that comma-separated input paths are treated correctly
  470. as multiple input paths. (Amareshwari Sri Ramadasu via acmurthy)
  471. HADOOP-3263. Ensure that the job-history log file always follows the
  472. pattern of hostname_timestamp_jobid_username_jobname even if username
  473. and/or jobname are not specfied. This helps to avoid wrong assumptions
  474. made about the job-history log filename in jobhistory.jsp. (acmurthy)
  475. HADOOP-3251. Fixes getFilesystemName in JobTracker and LocalJobRunner to
  476. use FileSystem.getUri instead of FileSystem.getName. (Arun Murthy via ddas)
  477. HADOOP-3237. Fixes TestDFSShell.testErrOutPut on Windows platform.
  478. (Mahadev Konar via ddas)
  479. HADOOP-3279. TaskTracker checks for SUCCEEDED task status in addition to
  480. COMMIT_PENDING status when it fails maps due to lost map.
  481. (Devaraj Das)
  482. HADOOP-3186. Fix incorrect permission checkding for mv and renameTo
  483. in HDFS. (Tsz Wo (Nicholas), SZE via rangadi)
  484. HADOOP-3286. Prevent collisions in gridmix output dirs by increasing the
  485. granularity of the timestamp. (Runping Qi via cdouglas)
  486. HADOOP-3285. Fix input split locality when the splits align to
  487. fs blocks. (omalley)
  488. HADOOP-3294. Fix distcp to check the destination length and retry the copy
  489. if it doesn't match the src length. (Tsz Wo (Nicholas), SZE via cdouglas)
  490. Release 0.16.4 - 2008-05-05
  491. BUG FIXES
  492. HADOOP-3138. DFS mkdirs() should not throw an exception if the directory
  493. already exists. (rangadi via mukund)
  494. HADOOP-3294. Fix distcp to check the destination length and retry the copy
  495. if it doesn't match the src length. (Tsz Wo (Nicholas), SZE via mukund)
  496. HADOOP-3304. [HOD] Fixes the way the logcondense.py utility searches
  497. for log files that need to be deleted. (yhemanth via mukund)
  498. HADOOP-3186. Fix incorrect permission checkding for mv and renameTo
  499. in HDFS. (Tsz Wo (Nicholas), SZE via mukund)
  500. Release 0.16.3 - 2008-04-16
  501. BUG FIXES
  502. HADOOP-3010. Fix ConcurrentModificationException in ipc.Server.Responder.
  503. (rangadi)
  504. HADOOP-3154. Catch all Throwables from the SpillThread in MapTask, rather
  505. than IOExceptions only. (ddas via cdouglas)
  506. HADOOP-3159. Avoid file system cache being overwritten whenever
  507. configuration is modified. (Tsz Wo (Nicholas), SZE via hairong)
  508. HADOOP-3139. Remove the consistency check for the FileSystem cache in
  509. closeAll() that causes spurious warnings and a deadlock.
  510. (Tsz Wo (Nicholas), SZE via cdouglas)
  511. HADOOP-3195. Fix TestFileSystem to be deterministic.
  512. (Tsz Wo (Nicholas), SZE via cdouglas)
  513. HADOOP-3069. Primary name-node should not truncate image when transferring
  514. it from the secondary. (shv)
  515. HADOOP-3182. Change permissions of the job-submission directory to 777
  516. from 733 to ensure sharing of HOD clusters works correctly. (Tsz Wo
  517. (Nicholas), Sze and Amareshwari Sri Ramadasu via acmurthy)
  518. Release 0.16.2 - 2008-04-02
  519. BUG FIXES
  520. HADOOP-3011. Prohibit distcp from overwriting directories on the
  521. destination filesystem with files. (cdouglas)
  522. HADOOP-3033. The BlockReceiver thread in the datanode writes data to
  523. the block file, changes file position (if needed) and flushes all by
  524. itself. The PacketResponder thread does not flush block file. (dhruba)
  525. HADOOP-2978. Fixes the JobHistory log format for counters.
  526. (Runping Qi via ddas)
  527. HADOOP-2985. Fixes LocalJobRunner to tolerate null job output path.
  528. Also makes the _temporary a constant in MRConstants.java.
  529. (Amareshwari Sriramadasu via ddas)
  530. HADOOP-3003. FileSystem cache key is updated after a
  531. FileSystem object is created. (Tsz Wo (Nicholas), SZE via dhruba)
  532. HADOOP-3042. Updates the Javadoc in JobConf.getOutputPath to reflect
  533. the actual temporary path. (Amareshwari Sriramadasu via ddas)
  534. HADOOP-3007. Tolerate mirror failures while DataNode is replicating
  535. blocks as it used to before. (rangadi)
  536. HADOOP-2944. Fixes a "Run on Hadoop" wizard NPE when creating a
  537. Location from the wizard. (taton)
  538. HADOOP-3049. Fixes a problem in MultiThreadedMapRunner to do with
  539. catching RuntimeExceptions. (Alejandro Abdelnur via ddas)
  540. HADOOP-3039. Fixes a problem to do with exceptions in tasks not
  541. killing jobs. (Amareshwari Sriramadasu via ddas)
  542. HADOOP-3027. Fixes a problem to do with adding a shutdown hook in
  543. FileSystem. (Amareshwari Sriramadasu via ddas)
  544. HADOOP-3056. Fix distcp when the target is an empty directory by
  545. making sure the directory is created first. (cdouglas and acmurthy
  546. via omalley)
  547. HADOOP-3070. Protect the trash emptier thread from null pointer
  548. exceptions. (Koji Noguchi via omalley)
  549. HADOOP-3084. Fix HftpFileSystem to work for zero-lenghth files.
  550. (cdouglas)
  551. HADOOP-3107. Fix NPE when fsck invokes getListings. (dhruba)
  552. HADOOP-3104. Limit MultithreadedMapRunner to have a fixed length queue
  553. between the RecordReader and the map threads. (Alejandro Abdelnur via
  554. omalley)
  555. HADOOP-2833. Do not use "Dr. Who" as the default user in JobClient.
  556. A valid user name is required. (Tsz Wo (Nicholas), SZE via rangadi)
  557. HADOOP-3128. Throw RemoteException in setPermissions and setOwner of
  558. DistributedFileSystem. (shv via nigel)
  559. Release 0.16.1 - 2008-03-13
  560. INCOMPATIBLE CHANGES
  561. HADOOP-2869. Deprecate SequenceFile.setCompressionType in favor of
  562. SequenceFile.createWriter, SequenceFileOutputFormat.setCompressionType,
  563. and JobConf.setMapOutputCompressionType. (Arun C Murthy via cdouglas)
  564. Configuration changes to hadoop-default.xml:
  565. deprecated io.seqfile.compression.type
  566. IMPROVEMENTS
  567. HADOOP-2371. User guide for file permissions in HDFS.
  568. (Robert Chansler via rangadi)
  569. HADOOP-3098. Allow more characters in user and group names while
  570. using -chown and -chgrp commands. (rangadi)
  571. BUG FIXES
  572. HADOOP-2789. Race condition in IPC Server Responder that could close
  573. connections early. (Raghu Angadi)
  574. HADOOP-2785. minor. Fix a typo in Datanode block verification
  575. (Raghu Angadi)
  576. HADOOP-2788. minor. Fix help message for chgrp shell command (Raghu Angadi).
  577. HADOOP-1188. fstime file is updated when a storage directory containing
  578. namespace image becomes inaccessible. (shv)
  579. HADOOP-2787. An application can set a configuration variable named
  580. dfs.umask to set the umask that is used by DFS.
  581. (Tsz Wo (Nicholas), SZE via dhruba)
  582. HADOOP-2780. The default socket buffer size for DataNodes is 128K.
  583. (dhruba)
  584. HADOOP-2716. Superuser privileges for the Balancer.
  585. (Tsz Wo (Nicholas), SZE via shv)
  586. HADOOP-2754. Filter out .crc files from local file system listing.
  587. (Hairong Kuang via shv)
  588. HADOOP-2733. Fix compiler warnings in test code.
  589. (Tsz Wo (Nicholas), SZE via cdouglas)
  590. HADOOP-2725. Modify distcp to avoid leaving partially copied files at
  591. the destination after encountering an error. (Tsz Wo (Nicholas), SZE
  592. via cdouglas)
  593. HADOOP-2391. Cleanup job output directory before declaring a job as
  594. SUCCESSFUL. (Amareshwari Sri Ramadasu via ddas)
  595. HADOOP-2808. Minor fix to FileUtil::copy to mind the overwrite
  596. formal. (cdouglas)
  597. HADOOP-2683. Moving UGI out of the RPC Server.
  598. (Tsz Wo (Nicholas), SZE via shv)
  599. HADOOP-2814. Fix for NPE in datanode in unit test TestDataTransferProtocol.
  600. (Raghu Angadi via dhruba)
  601. HADOOP-2811. Dump of counters in job history does not add comma between
  602. groups. (runping via omalley)
  603. HADOOP-2735. Enables setting TMPDIR for tasks.
  604. (Amareshwari Sri Ramadasu via ddas)
  605. HADOOP-2843. Fix protections on map-side join classes to enable derivation.
  606. (cdouglas via omalley)
  607. HADOOP-2840. Fix gridmix scripts to correctly invoke the java sort through
  608. the proper jar. (Mukund Madhugiri via cdouglas)
  609. HADOOP-2769. TestNNThroughputBnechmark should not use a fixed port for
  610. the namenode http port. (omalley)
  611. HADOOP-2852. Update gridmix benchmark to avoid an artifically long tail.
  612. (cdouglas)
  613. HADOOP-2894. Fix a problem to do with tasktrackers failing to connect to
  614. JobTracker upon reinitialization. (Owen O'Malley via ddas).
  615. HADOOP-2903. Fix exception generated by Metrics while using pushMetric().
  616. (girish vaitheeswaran via dhruba)
  617. HADOOP-2904. Fix to RPC metrics to log the correct host name.
  618. (girish vaitheeswaran via dhruba)
  619. HADOOP-2918. Improve error logging so that dfs writes failure with
  620. "No lease on file" can be diagnosed. (dhruba)
  621. HADOOP-2923. Add SequenceFileAsBinaryInputFormat, which was
  622. missed in the commit for HADOOP-2603. (cdouglas via omalley)
  623. HADOOP-2931. IOException thrown by DFSOutputStream had wrong stack
  624. trace in some cases. (Michael Bieniosek via rangadi)
  625. HADOOP-2883. Write failures and data corruptions on HDFS files.
  626. The write timeout is back to what it was on 0.15 release. Also, the
  627. datnodes flushes the block file buffered output stream before
  628. sending a positive ack for the packet back to the client. (dhruba)
  629. HADOOP-2756. NPE in DFSClient while closing DFSOutputStreams
  630. under load. (rangadi)
  631. HADOOP-2958. Fixed FileBench which broke due to HADOOP-2391 which performs
  632. a check for existence of the output directory and a trivial bug in
  633. GenericMRLoadGenerator where min/max word lenghts were identical since
  634. they were looking at the same config variables (Chris Douglas via
  635. acmurthy)
  636. HADOOP-2915. Fixed FileSystem.CACHE so that a username is included
  637. in the cache key. (Tsz Wo (Nicholas), SZE via nigel)
  638. HADOOP-2813. TestDU unit test uses its own directory to run its
  639. sequence of tests. (Mahadev Konar via dhruba)
  640. Release 0.16.0 - 2008-02-07
  641. INCOMPATIBLE CHANGES
  642. HADOOP-1245. Use the mapred.tasktracker.tasks.maximum value
  643. configured on each tasktracker when allocating tasks, instead of
  644. the value configured on the jobtracker. InterTrackerProtocol
  645. version changed from 5 to 6. (Michael Bieniosek via omalley)
  646. HADOOP-1843. Removed code from Configuration and JobConf deprecated by
  647. HADOOP-785 and a minor fix to Configuration.toString. Specifically the
  648. important change is that mapred-default.xml is no longer supported and
  649. Configuration no longer supports the notion of default/final resources.
  650. (acmurthy)
  651. HADOOP-1302. Remove deprecated abacus code from the contrib directory.
  652. This also fixes a configuration bug in AggregateWordCount, so that the
  653. job now works. (enis)
  654. HADOOP-2288. Enhance FileSystem API to support access control.
  655. (Tsz Wo (Nicholas), SZE via dhruba)
  656. HADOOP-2184. RPC Support for user permissions and authentication.
  657. (Raghu Angadi via dhruba)
  658. HADOOP-2185. RPC Server uses any available port if the specified
  659. port is zero. Otherwise it uses the specified port. Also combines
  660. the configuration attributes for the servers' bind address and
  661. port from "x.x.x.x" and "y" to "x.x.x.x:y".
  662. Deprecated configuration variables:
  663. dfs.info.bindAddress
  664. dfs.info.port
  665. dfs.datanode.bindAddress
  666. dfs.datanode.port
  667. dfs.datanode.info.bindAdress
  668. dfs.datanode.info.port
  669. dfs.secondary.info.bindAddress
  670. dfs.secondary.info.port
  671. mapred.job.tracker.info.bindAddress
  672. mapred.job.tracker.info.port
  673. mapred.task.tracker.report.bindAddress
  674. tasktracker.http.bindAddress
  675. tasktracker.http.port
  676. New configuration variables (post HADOOP-2404):
  677. dfs.secondary.http.address
  678. dfs.datanode.address
  679. dfs.datanode.http.address
  680. dfs.http.address
  681. mapred.job.tracker.http.address
  682. mapred.task.tracker.report.address
  683. mapred.task.tracker.http.address
  684. (Konstantin Shvachko via dhruba)
  685. HADOOP-2401. Only the current leaseholder can abandon a block for
  686. a HDFS file. ClientProtocol version changed from 20 to 21.
  687. (Tsz Wo (Nicholas), SZE via dhruba)
  688. HADOOP-2381. Support permission information in FileStatus. Client
  689. Protocol version changed from 21 to 22. (Raghu Angadi via dhruba)
  690. HADOOP-2110. Block report processing creates fewer transient objects.
  691. Datanode Protocol version changed from 10 to 11.
  692. (Sanjay Radia via dhruba)
  693. HADOOP-2567. Add FileSystem#getHomeDirectory(), which returns the
  694. user's home directory in a FileSystem as a fully-qualified path.
  695. FileSystem#getWorkingDirectory() is also changed to return a
  696. fully-qualified path, which can break applications that attempt
  697. to, e.g., pass LocalFileSystem#getWorkingDir().toString() directly
  698. to java.io methods that accept file names. (cutting)
  699. HADOOP-2514. Change trash feature to maintain a per-user trash
  700. directory, named ".Trash" in the user's home directory. The
  701. "fs.trash.root" parameter is no longer used. Full source paths
  702. are also no longer reproduced within the trash.
  703. HADOOP-2012. Periodic data verification on Datanodes.
  704. (Raghu Angadi via dhruba)
  705. HADOOP-1707. The DFSClient does not use a local disk file to cache
  706. writes to a HDFS file. Changed Data Transfer Version from 7 to 8.
  707. (dhruba)
  708. HADOOP-2652. Fix permission issues for HftpFileSystem. This is an
  709. incompatible change since distcp may not be able to copy files
  710. from cluster A (compiled with this patch) to cluster B (compiled
  711. with previous versions). (Tsz Wo (Nicholas), SZE via dhruba)
  712. NEW FEATURES
  713. HADOOP-1857. Ability to run a script when a task fails to capture stack
  714. traces. (Amareshwari Sri Ramadasu via ddas)
  715. HADOOP-2299. Defination of a login interface. A simple implementation for
  716. Unix users and groups. (Hairong Kuang via dhruba)
  717. HADOOP-1652. A utility to balance data among datanodes in a HDFS cluster.
  718. (Hairong Kuang via dhruba)
  719. HADOOP-2085. A library to support map-side joins of consistently
  720. partitioned and sorted data sets. (Chris Douglas via omalley)
  721. HADOOP-2336. Shell commands to modify file permissions. (rangadi)
  722. HADOOP-1298. Implement file permissions for HDFS.
  723. (Tsz Wo (Nicholas) & taton via cutting)
  724. HADOOP-2447. HDFS can be configured to limit the total number of
  725. objects (inodes and blocks) in the file system. (dhruba)
  726. HADOOP-2487. Added an option to get statuses for all submitted/run jobs.
  727. This information can be used to develop tools for analysing jobs.
  728. (Amareshwari Sri Ramadasu via acmurthy)
  729. HADOOP-1873. Implement user permissions for Map/Reduce framework.
  730. (Hairong Kuang via shv)
  731. HADOOP-2532. Add to MapFile a getClosest method that returns the key
  732. that comes just before if the key is not present. (stack via tomwhite)
  733. HADOOP-1883. Add versioning to Record I/O. (Vivek Ratan via ddas)
  734. HADOOP-2603. Add SeqeunceFileAsBinaryInputFormat, which reads
  735. sequence files as BytesWritable/BytesWritable regardless of the
  736. key and value types used to write the file. (cdouglas via omalley)
  737. HADOOP-2367. Add ability to profile a subset of map/reduce tasks and fetch
  738. the result to the local filesystem of the submitting application. Also
  739. includes a general IntegerRanges extension to Configuration for setting
  740. positive, ranged parameters. (Owen O'Malley via cdouglas)
  741. IMPROVEMENTS
  742. HADOOP-2045. Change committer list on website to a table, so that
  743. folks can list their organization, timezone, etc. (cutting)
  744. HADOOP-2058. Facilitate creating new datanodes dynamically in
  745. MiniDFSCluster. (Hairong Kuang via dhruba)
  746. HADOOP-1855. fsck verifies block placement policies and reports
  747. violations. (Konstantin Shvachko via dhruba)
  748. HADOOP-1604. An system administrator can finalize namenode upgrades
  749. without running the cluster. (Konstantin Shvachko via dhruba)
  750. HADOOP-1839. Link-ify the Pending/Running/Complete/Killed grid in
  751. jobdetails.jsp to help quickly narrow down and see categorized TIPs'
  752. details via jobtasks.jsp. (Amar Kamat via acmurthy)
  753. HADOOP-1210. Log counters in job history. (Owen O'Malley via ddas)
  754. HADOOP-1912. Datanode has two new commands COPY and REPLACE. These are
  755. needed for supporting data rebalance. (Hairong Kuang via dhruba)
  756. HADOOP-2086. This patch adds the ability to add dependencies to a job
  757. (run via JobControl) after construction. (Adrian Woodhead via ddas)
  758. HADOOP-1185. Support changing the logging level of a server without
  759. restarting the server. (Tsz Wo (Nicholas), SZE via dhruba)
  760. HADOOP-2134. Remove developer-centric requirements from overview.html and
  761. keep it end-user focussed, specifically sections related to subversion and
  762. building Hadoop. (Jim Kellerman via acmurthy)
  763. HADOOP-1989. Support simulated DataNodes. This helps creating large virtual
  764. clusters for testing purposes. (Sanjay Radia via dhruba)
  765. HADOOP-1274. Support different number of mappers and reducers per
  766. TaskTracker to allow administrators to better configure and utilize
  767. heterogenous clusters.
  768. Configuration changes to hadoop-default.xml:
  769. add mapred.tasktracker.map.tasks.maximum (default value of 2)
  770. add mapred.tasktracker.reduce.tasks.maximum (default value of 2)
  771. remove mapred.tasktracker.tasks.maximum (deprecated for 0.16.0)
  772. (Amareshwari Sri Ramadasu via acmurthy)
  773. HADOOP-2104. Adds a description to the ant targets. This makes the
  774. output of "ant -projecthelp" sensible. (Chris Douglas via ddas)
  775. HADOOP-2127. Added a pipes sort example to benchmark trivial pipes
  776. application versus trivial java application. (omalley via acmurthy)
  777. HADOOP-2113. A new shell command "dfs -text" to view the contents of
  778. a gziped or SequenceFile. (Chris Douglas via dhruba)
  779. HADOOP-2207. Add a "package" target for contrib modules that
  780. permits each to determine what files are copied into release
  781. builds. (stack via cutting)
  782. HADOOP-1984. Makes the backoff for failed fetches exponential.
  783. Earlier, it was a random backoff from an interval.
  784. (Amar Kamat via ddas)
  785. HADOOP-1327. Include website documentation for streaming. (Rob Weltman
  786. via omalley)
  787. HADOOP-2000. Rewrite NNBench to measure namenode performance accurately.
  788. It now uses the map-reduce framework for load generation.
  789. (Mukund Madhugiri via dhruba)
  790. HADOOP-2248. Speeds up the framework w.r.t Counters. Also has API
  791. updates to the Counters part. (Owen O'Malley via ddas)
  792. HADOOP-2326. The initial block report at Datanode startup time has
  793. a random backoff period. (Sanjay Radia via dhruba)
  794. HADOOP-2432. HDFS includes the name of the file while throwing
  795. "File does not exist" exception. (Jim Kellerman via dhruba)
  796. HADOOP-2457. Added a 'forrest.home' property to the 'docs' target in
  797. build.xml. (acmurthy)
  798. HADOOP-2149. A new benchmark for three name-node operation: file create,
  799. open, and block report, to evaluate the name-node performance
  800. for optimizations or new features. (Konstantin Shvachko via shv)
  801. HADOOP-2466. Change FileInputFormat.computeSplitSize to a protected
  802. non-static method to allow sub-classes to provide alternate
  803. implementations. (Alejandro Abdelnur via acmurthy)
  804. HADOOP-2425. Change TextOutputFormat to handle Text specifically for better
  805. performance. Make NullWritable implement Comparable. Make TextOutputFormat
  806. treat NullWritable like null. (omalley)
  807. HADOOP-1719. Improves the utilization of shuffle copier threads.
  808. (Amar Kamat via ddas)
  809. HADOOP-2390. Added documentation for user-controls for intermediate
  810. map-outputs & final job-outputs and native-hadoop libraries. (acmurthy)
  811. HADOOP-1660. Add the cwd of the map/reduce task to the java.library.path
  812. of the child-jvm to support loading of native libraries distributed via
  813. the DistributedCache. (acmurthy)
  814. HADOOP-2285. Speeds up TextInputFormat. Also includes updates to the
  815. Text API. (Owen O'Malley via cdouglas)
  816. HADOOP-2233. Adds a generic load generator for modeling MR jobs. (cdouglas)
  817. HADOOP-2369. Adds a set of scripts for simulating a mix of user map/reduce
  818. workloads. (Runping Qi via cdouglas)
  819. HADOOP-2547. Removes use of a 'magic number' in build.xml.
  820. (Hrishikesh via nigel)
  821. HADOOP-2268. Fix org.apache.hadoop.mapred.jobcontrol classes to use the
  822. List/Map interfaces rather than concrete ArrayList/HashMap classes
  823. internally. (Adrian Woodhead via acmurthy)
  824. HADOOP-2406. Add a benchmark for measuring read/write performance through
  825. the InputFormat interface, particularly with compression. (cdouglas)
  826. HADOOP-2131. Allow finer-grained control over speculative-execution. Now
  827. users can set it for maps and reduces independently.
  828. Configuration changes to hadoop-default.xml:
  829. deprecated mapred.speculative.execution
  830. add mapred.map.tasks.speculative.execution
  831. add mapred.reduce.tasks.speculative.execution
  832. (Amareshwari Sri Ramadasu via acmurthy)
  833. HADOOP-1965. Interleave sort/spill in teh map-task along with calls to the
  834. Mapper.map method. This is done by splitting the 'io.sort.mb' buffer into
  835. two and using one half for collecting map-outputs and the other half for
  836. sort/spill. (Amar Kamat via acmurthy)
  837. HADOOP-2464. Unit tests for chmod, chown, and chgrp using DFS.
  838. (Raghu Angadi)
  839. HADOOP-1876. Persist statuses of completed jobs in HDFS so that the
  840. JobClient can query and get information about decommissioned jobs and also
  841. across JobTracker restarts.
  842. Configuration changes to hadoop-default.xml:
  843. add mapred.job.tracker.persist.jobstatus.active (default value of false)
  844. add mapred.job.tracker.persist.jobstatus.hours (default value of 0)
  845. add mapred.job.tracker.persist.jobstatus.dir (default value of
  846. /jobtracker/jobsInfo)
  847. (Alejandro Abdelnur via acmurthy)
  848. HADOOP-2077. Added version and build information to STARTUP_MSG for all
  849. hadoop daemons to aid error-reporting, debugging etc. (acmurthy)
  850. HADOOP-2398. Additional instrumentation for NameNode and RPC server.
  851. Add support for accessing instrumentation statistics via JMX.
  852. (Sanjay radia via dhruba)
  853. HADOOP-2449. A return of the non-MR version of NNBench.
  854. (Sanjay Radia via shv)
  855. HADOOP-1989. Remove 'datanodecluster' command from bin/hadoop.
  856. (Sanjay Radia via shv)
  857. HADOOP-1742. Improve JavaDoc documentation for ClientProtocol, DFSClient,
  858. and FSNamesystem. (Konstantin Shvachko)
  859. HADOOP-2298. Add Ant target for a binary-only distribution.
  860. (Hrishikesh via nigel)
  861. HADOOP-2509. Add Ant target for Rat report (Apache license header
  862. reports). (Hrishikesh via nigel)
  863. HADOOP-2469. WritableUtils.clone should take a Configuration
  864. instead of a JobConf. (stack via omalley)
  865. HADOOP-2659. Introduce superuser permissions for admin operations.
  866. (Tsz Wo (Nicholas), SZE via shv)
  867. HADOOP-2596. Added a SequenceFile.createWriter api which allows the user
  868. to specify the blocksize, replication factor and the buffersize to be
  869. used for the underlying HDFS file. (Alejandro Abdelnur via acmurthy)
  870. HADOOP-2431. Test HDFS File Permissions. (Hairong Kuang via shv)
  871. HADOOP-2232. Add an option to disable Nagle's algorithm in the IPC stack.
  872. (Clint Morgan via cdouglas)
  873. HADOOP-2342. Created a micro-benchmark for measuring
  874. local-file versus hdfs reads. (Owen O'Malley via nigel)
  875. HADOOP-2529. First version of HDFS User Guide. (Raghu Angadi)
  876. HADOOP-2690. Add jar-test target to build.xml, separating compilation
  877. and packaging of the test classes. (Enis Soztutar via cdouglas)
  878. OPTIMIZATIONS
  879. HADOOP-1898. Release the lock protecting the last time of the last stack
  880. dump while the dump is happening. (Amareshwari Sri Ramadasu via omalley)
  881. HADOOP-1900. Makes the heartbeat and task event queries interval
  882. dependent on the cluster size. (Amareshwari Sri Ramadasu via ddas)
  883. HADOOP-2208. Counter update frequency (from TaskTracker to JobTracker) is
  884. capped at 1 minute. (Amareshwari Sri Ramadasu via ddas)
  885. HADOOP-2284. Reduce the number of progress updates during the sorting in
  886. the map task. (Amar Kamat via ddas)
  887. BUG FIXES
  888. HADOOP-2583. Fixes a bug in the Eclipse plug-in UI to edit locations.
  889. Plug-in version is now synchronized with Hadoop version.
  890. HADOOP-2100. Remove faulty check for existence of $HADOOP_PID_DIR and let
  891. 'mkdir -p' check & create it. (Michael Bieniosek via acmurthy)
  892. HADOOP-1642. Ensure jobids generated by LocalJobRunner are unique to
  893. avoid collissions and hence job-failures. (Doug Cutting via acmurthy)
  894. HADOOP-2096. Close open file-descriptors held by streams while localizing
  895. job.xml in the JobTracker and while displaying it on the webui in
  896. jobconf.jsp. (Amar Kamat via acmurthy)
  897. HADOOP-2098. Log start & completion of empty jobs to JobHistory, which
  898. also ensures that we close the file-descriptor of the job's history log
  899. opened during job-submission. (Amar Kamat via acmurthy)
  900. HADOOP-2112. Adding back changes to build.xml lost while reverting
  901. HADOOP-1622 i.e. http://svn.apache.org/viewvc?view=rev&revision=588771.
  902. (acmurthy)
  903. HADOOP-2089. Fixes the command line argument handling to handle multiple
  904. -cacheArchive in Hadoop streaming. (Lohit Vijayarenu via ddas)
  905. HADOOP-2071. Fix StreamXmlRecordReader to use a BufferedInputStream
  906. wrapped over the DFSInputStream since mark/reset aren't supported by
  907. DFSInputStream anymore. (Lohit Vijayarenu via acmurthy)
  908. HADOOP-1348. Allow XML comments inside configuration files.
  909. (Rajagopal Natarajan and Enis Soztutar via enis)
  910. HADOOP-1952. Improve handling of invalid, user-specified classes while
  911. configuring streaming jobs such as combiner, input/output formats etc.
  912. Now invalid options are caught, logged and jobs are failed early. (Lohit
  913. Vijayarenu via acmurthy)
  914. HADOOP-2151. FileSystem.globPaths validates the list of Paths that
  915. it returns. (Lohit Vijayarenu via dhruba)
  916. HADOOP-2121. Cleanup DFSOutputStream when the stream encountered errors
  917. when Datanodes became full. (Raghu Angadi via dhruba)
  918. HADOOP-1130. The FileSystem.closeAll() method closes all existing
  919. DFSClients. (Chris Douglas via dhruba)
  920. HADOOP-2204. DFSTestUtil.waitReplication was not waiting for all replicas
  921. to get created, thus causing unit test failure.
  922. (Raghu Angadi via dhruba)
  923. HADOOP-2078. An zero size file may have no blocks associated with it.
  924. (Konstantin Shvachko via dhruba)
  925. HADOOP-2212. ChecksumFileSystem.getSumBufferSize might throw
  926. java.lang.ArithmeticException. The fix is to initialize bytesPerChecksum
  927. to 0. (Michael Bieniosek via ddas)
  928. HADOOP-2216. Fix jobtasks.jsp to ensure that it first collects the
  929. taskids which satisfy the filtering criteria and then use that list to
  930. print out only the required task-reports, previously it was oblivious to
  931. the filtering and hence used the wrong index into the array of task-reports.
  932. (Amar Kamat via acmurthy)
  933. HADOOP-2272. Fix findbugs target to reflect changes made to the location
  934. of the streaming jar file by HADOOP-2207. (Adrian Woodhead via nigel)
  935. HADOOP-2244. Fixes the MapWritable.readFields to clear the instance
  936. field variable every time readFields is called. (Michael Stack via ddas).
  937. HADOOP-2245. Fixes LocalJobRunner to include a jobId in the mapId. Also,
  938. adds a testcase for JobControl. (Adrian Woodhead via ddas).
  939. HADOOP-2275. Fix erroneous detection of corrupted file when namenode
  940. fails to allocate any datanodes for newly allocated block.
  941. (Dhruba Borthakur via dhruba)
  942. HADOOP-2256. Fix a buf in the namenode that could cause it to encounter
  943. an infinite loop while deleting excess replicas that were created by
  944. block rebalancing. (Hairong Kuang via dhruba)
  945. HADOOP-2209. SecondaryNamenode process exits if it encounters exceptions
  946. that it cannot handle. (Dhruba Borthakur via dhruba)
  947. HADOOP-2314. Prevent TestBlockReplacement from occasionally getting
  948. into an infinite loop. (Hairong Kuang via dhruba)
  949. HADOOP-2300. This fixes a bug where mapred.tasktracker.tasks.maximum
  950. would be ignored even if it was set in hadoop-site.xml.
  951. (Amareshwari Sri Ramadasu via ddas)
  952. HADOOP-2349. Improve code layout in file system transaction logging code.
  953. (Tsz Wo (Nicholas), SZE via dhruba)
  954. HADOOP-2368. Fix unit tests on Windows.
  955. (Tsz Wo (Nicholas), SZE via dhruba)
  956. HADOOP-2363. This fix allows running multiple instances of the unit test
  957. in parallel. The bug was introduced in HADOOP-2185 that changed
  958. port-rolling behaviour. (Konstantin Shvachko via dhruba)
  959. HADOOP-2271. Fix chmod task to be non-parallel. (Adrian Woodhead via
  960. omalley)
  961. HADOOP-2313. Fail the build if building libhdfs fails. (nigel via omalley)
  962. HADOOP-2359. Remove warning for interruptted exception when closing down
  963. minidfs. (dhruba via omalley)
  964. HADOOP-1841. Prevent slow clients from consuming threads in the NameNode.
  965. (dhruba)
  966. HADOOP-2323. JobTracker.close() should not print stack traces for
  967. normal exit. (jimk via cutting)
  968. HADOOP-2376. Prevents sort example from overriding the number of maps.
  969. (Owen O'Malley via ddas)
  970. HADOOP-2434. FSDatasetInterface read interface causes HDFS reads to occur
  971. in 1 byte chunks, causing performance degradation.
  972. (Raghu Angadi via dhruba)
  973. HADOOP-2459. Fix package target so that src/docs/build files are not
  974. included in the release. (nigel)
  975. HADOOP-2215. Fix documentation in cluster_setup.html &
  976. mapred_tutorial.html reflect that mapred.tasktracker.tasks.maximum has
  977. been superceeded by mapred.tasktracker.{map|reduce}.tasks.maximum.
  978. (Amareshwari Sri Ramadasu via acmurthy)
  979. HADOOP-2459. Fix package target so that src/docs/build files are not
  980. included in the release. (nigel)
  981. HADOOP-2352. Remove AC_CHECK_LIB for libz and liblzo to ensure that
  982. libhadoop.so doesn't have a dependency on them. (acmurthy)
  983. HADOOP-2453. Fix the configuration for wordcount-simple example in Hadoop
  984. Pipes which currently produces an XML parsing error. (Amareshwari Sri
  985. Ramadasu via acmurthy)
  986. HADOOP-2476. Unit test failure while reading permission bits of local
  987. file system (on Windows) fixed. (Raghu Angadi via dhruba)
  988. HADOOP-2247. Fine-tune the strategies for killing mappers and reducers
  989. due to failures while fetching map-outputs. Now the map-completion times
  990. and number of currently running reduces are taken into account by the
  991. JobTracker before killing the mappers, while the progress made by the
  992. reducer and the number of fetch-failures vis-a-vis total number of
  993. fetch-attempts are taken into account before teh reducer kills itself.
  994. (Amar Kamat via acmurthy)
  995. HADOOP-2452. Fix eclipse plug-in build.xml to refers to the right
  996. location where hadoop-*-core.jar is generated. (taton)
  997. HADOOP-2492. Additional debugging in the rpc server to better
  998. diagnose ConcurrentModificationException. (dhruba)
  999. HADOOP-2344. Enhance the utility for executing shell commands to read the
  1000. stdout/stderr streams while waiting for the command to finish (to free up
  1001. the buffers). Also, this patch throws away stderr of the DF utility.
  1002. @deprecated
  1003. org.apache.hadoop.fs.ShellCommand for org.apache.hadoop.util.Shell
  1004. org.apache.hadoop.util.ShellUtil for
  1005. org.apache.hadoop.util.Shell.ShellCommandExecutor
  1006. (Amar Kamat via acmurthy)
  1007. HADOOP-2511. Fix a javadoc warning in org.apache.hadoop.util.Shell
  1008. introduced by HADOOP-2344. (acmurthy)
  1009. HADOOP-2442. Fix TestLocalFileSystemPermission.testLocalFSsetOwner
  1010. to work on more platforms. (Raghu Angadi via nigel)
  1011. HADOOP-2488. Fix a regression in random read performance.
  1012. (Michael Stack via rangadi)
  1013. HADOOP-2523. Fix TestDFSShell.testFilePermissions on Windows.
  1014. (Raghu Angadi via nigel)
  1015. HADOOP-2535. Removed support for deprecated mapred.child.heap.size and
  1016. fixed some indentation issues in TaskRunner. (acmurthy)
  1017. Configuration changes to hadoop-default.xml:
  1018. remove mapred.child.heap.size
  1019. HADOOP-2512. Fix error stream handling in Shell. Use exit code to
  1020. detect shell command errors in RawLocalFileSystem. (Raghu Angadi)
  1021. HADOOP-2446. Fixes TestHDFSServerPorts and TestMRServerPorts so they
  1022. do not rely on statically configured ports and cleanup better. (nigel)
  1023. HADOOP-2537. Make build process compatible with Ant 1.7.0.
  1024. (Hrishikesh via nigel)
  1025. HADOOP-1281. Ensure running tasks of completed map TIPs (e.g. speculative
  1026. tasks) are killed as soon as the TIP completed. (acmurthy)
  1027. HADOOP-2571. Suppress a suprious warning in test code. (cdouglas)
  1028. HADOOP-2481. NNBench report its progress periodically.
  1029. (Hairong Kuang via dhruba)
  1030. HADOOP-2601. Start name-node on a free port for TestNNThroughputBenchmark.
  1031. (Konstantin Shvachko)
  1032. HADOOP-2494. Set +x on contrib/*/bin/* in packaged tar bundle.
  1033. (stack via tomwhite)
  1034. HADOOP-2605. Remove bogus leading slash in task-tracker report bindAddress.
  1035. (Konstantin Shvachko)
  1036. HADOOP-2620. Trivial. 'bin/hadoop fs -help' did not list chmod, chown, and
  1037. chgrp. (Raghu Angadi)
  1038. HADOOP-2614. The DFS WebUI accesses are configured to be from the user
  1039. specified by dfs.web.ugi. (Tsz Wo (Nicholas), SZE via dhruba)
  1040. HADOOP-2543. Implement a "no-permission-checking" mode for smooth
  1041. upgrade from a pre-0.16 install of HDFS.
  1042. (Hairong Kuang via dhruba)
  1043. HADOOP-290. A DataNode log message now prints the target of a replication
  1044. request correctly. (dhruba)
  1045. HADOOP-2538. Redirect to a warning, if plaintext parameter is true but
  1046. the filter parameter is not given in TaskLogServlet.
  1047. (Michael Bieniosek via enis)
  1048. HADOOP-2582. Prevent 'bin/hadoop fs -copyToLocal' from creating
  1049. zero-length files when the src does not exist.
  1050. (Lohit Vijayarenu via cdouglas)
  1051. HADOOP-2189. Incrementing user counters should count as progress. (ddas)
  1052. HADOOP-2649. The NameNode periodically computes replication work for
  1053. the datanodes. The periodicity of this computation is now configurable.
  1054. (dhruba)
  1055. HADOOP-2549. Correct disk size computation so that data-nodes could switch
  1056. to other local drives if current is full. (Hairong Kuang via shv)
  1057. HADOOP-2633. Fsck should call name-node methods directly rather than
  1058. through rpc. (Tsz Wo (Nicholas), SZE via shv)
  1059. HADOOP-2687. Modify a few log message generated by dfs client to be
  1060. logged only at INFO level. (stack via dhruba)
  1061. HADOOP-2402. Fix BlockCompressorStream to ensure it buffers data before
  1062. sending it down to the compressor so that each write call doesn't
  1063. compress. (Chris Douglas via acmurthy)
  1064. HADOOP-2645. The Metrics initialization code does not throw
  1065. exceptions when servers are restarted by MiniDFSCluster.
  1066. (Sanjay Radia via dhruba)
  1067. HADOOP-2691. Fix a race condition that was causing the DFSClient
  1068. to erroneously remove a good datanode from a pipeline that actually
  1069. had another datanode that was bad. (dhruba)
  1070. HADOOP-1195. All code in FSNamesystem checks the return value
  1071. of getDataNode for null before using it. (dhruba)
  1072. HADOOP-2640. Fix a bug in MultiFileSplitInputFormat that was always
  1073. returning 1 split in some circumstances. (Enis Soztutar via nigel)
  1074. HADOOP-2626. Fix paths with special characters to work correctly
  1075. with the local filesystem. (Thomas Friol via cutting)
  1076. HADOOP-2646. Fix SortValidator to work with fully-qualified
  1077. working directories. (Arun C Murthy via nigel)
  1078. HADOOP-2092. Added a ping mechanism to the pipes' task to periodically
  1079. check if the parent Java task is running, and exit if the parent isn't
  1080. alive and responding. (Amareshwari Sri Ramadasu via acmurthy)
  1081. HADOOP-2714. TestDecommission failed on windows because the replication
  1082. request was timing out. (dhruba)
  1083. HADOOP-2576. Namenode performance degradation over time triggered by
  1084. large heartbeat interval. (Raghu Angadi)
  1085. HADOOP-2713. TestDatanodeDeath failed on windows because the replication
  1086. request was timing out. (dhruba)
  1087. HADOOP-2639. Fixes a problem to do with incorrect maintenance of values
  1088. for runningMapTasks/runningReduceTasks. (Amar Kamat and Arun Murthy
  1089. via ddas)
  1090. HADOOP-2723. Fixed the check for checking whether to do user task
  1091. profiling. (Amareshwari Sri Ramadasu via omalley)
  1092. HADOOP-2734. Link forrest docs to new http://hadoop.apache.org
  1093. (Doug Cutting via nigel)
  1094. HADOOP-2641. Added Apache license headers to 95 files. (nigel)
  1095. HADOOP-2732. Fix bug in path globbing. (Hairong Kuang via nigel)
  1096. HADOOP-2404. Fix backwards compatability with hadoop-0.15 configuration
  1097. files that was broken by HADOOP-2185. (omalley)
  1098. HADOOP-2755. Fix fsck performance degradation because of permissions
  1099. issue. (Tsz Wo (Nicholas), SZE via dhruba)
  1100. HADOOP-2768. Fix performance regression caused by HADOOP-1707.
  1101. (dhruba borthakur via nigel)
  1102. HADOOP-3108. Fix NPE in setPermission and setOwner. (shv)
  1103. Release 0.15.3 - 2008-01-18
  1104. BUG FIXES
  1105. HADOOP-2562. globPaths supports {ab,cd}. (Hairong Kuang via dhruba)
  1106. HADOOP-2540. fsck reports missing blocks incorrectly. (dhruba)
  1107. HADOOP-2570. "work" directory created unconditionally, and symlinks
  1108. created from the task cwds.
  1109. HADOOP-2574. Fixed mapred_tutorial.xml to correct minor errors with the
  1110. WordCount examples. (acmurthy)
  1111. Release 0.15.2 - 2008-01-02
  1112. BUG FIXES
  1113. HADOOP-2246. Moved the changelog for HADOOP-1851 from the NEW FEATURES
  1114. section to the INCOMPATIBLE CHANGES section. (acmurthy)
  1115. HADOOP-2238. Fix TaskGraphServlet so that it sets the content type of
  1116. the response appropriately. (Paul Saab via enis)
  1117. HADOOP-2129. Fix so that distcp works correctly when source is
  1118. HDFS but not the default filesystem. HDFS paths returned by the
  1119. listStatus() method are now fully-qualified. (cutting)
  1120. HADOOP-2378. Fixes a problem where the last task completion event would
  1121. get created after the job completes. (Alejandro Abdelnur via ddas)
  1122. HADOOP-2228. Checks whether a job with a certain jobId is already running
  1123. and then tries to create the JobInProgress object.
  1124. (Johan Oskarsson via ddas)
  1125. HADOOP-2422. dfs -cat multiple files fail with 'Unable to write to
  1126. output stream'. (Raghu Angadi via dhruba)
  1127. HADOOP-2460. When the namenode encounters ioerrors on writing a
  1128. transaction log, it stops writing new transactions to that one.
  1129. (Raghu Angadi via dhruba)
  1130. HADOOP-2227. Use the LocalDirAllocator uniformly for handling all of the
  1131. temporary storage required for a given task. It also implies that
  1132. mapred.local.dir.minspacestart is handled by checking if there is enough
  1133. free-space on any one of the available disks. (Amareshwari Sri Ramadasu
  1134. via acmurthy)
  1135. HADOOP-2437. Fix the LocalDirAllocator to choose the seed for the
  1136. round-robin disk selections randomly. This helps in spreading data across
  1137. multiple partitions much better. (acmurhty)
  1138. HADOOP-2486. When the list of files from the InMemoryFileSystem is obtained
  1139. for merging, this patch will ensure that only those files whose checksums
  1140. have also got created (renamed) are returned. (ddas)
  1141. HADOOP-2456. Hardcode English locale to prevent NumberFormatException
  1142. from occurring when starting the NameNode with certain locales.
  1143. (Matthias Friedrich via nigel)
  1144. IMPROVEMENTS
  1145. HADOOP-2160. Remove project-level, non-user documentation from
  1146. releases, since it's now maintained in a separate tree. (cutting)
  1147. HADOOP-1327. Add user documentation for streaming. (cutting)
  1148. HADOOP-2382. Add hadoop-default.html to subversion. (cutting)
  1149. HADOOP-2158. hdfsListDirectory calls FileSystem.listStatus instead
  1150. of FileSystem.listPaths. This reduces the number of RPC calls on the
  1151. namenode, thereby improving scalability. (Christian Kunz via dhruba)
  1152. Release 0.15.1 - 2007-11-27
  1153. INCOMPATIBLE CHANGES
  1154. HADOOP-713. Reduce CPU usage on namenode while listing directories.
  1155. FileSystem.listPaths does not return the size of the entire subtree.
  1156. Introduced a new API ClientProtocol.getContentLength that returns the
  1157. size of the subtree. (Dhruba Borthakur via dhruba)
  1158. IMPROVEMENTS
  1159. HADOOP-1917. Addition of guides/tutorial for better overall
  1160. documentation for Hadoop. Specifically:
  1161. * quickstart.html is targetted towards first-time users and helps them
  1162. setup a single-node cluster and play with Hadoop.
  1163. * cluster_setup.html helps admins to configure and setup non-trivial
  1164. hadoop clusters.
  1165. * mapred_tutorial.html is a comprehensive Map-Reduce tutorial.
  1166. (acmurthy)
  1167. BUG FIXES
  1168. HADOOP-2174. Removed the unnecessary Reporter.setStatus call from
  1169. FSCopyFilesMapper.close which led to a NPE since the reporter isn't valid
  1170. in the close method. (Chris Douglas via acmurthy)
  1171. HADOOP-2172. Restore performance of random access to local files
  1172. by caching positions of local input streams, avoiding a system
  1173. call. (cutting)
  1174. HADOOP-2205. Regenerate the Hadoop website since some of the changes made
  1175. by HADOOP-1917 weren't correctly copied over to the trunk/docs directory.
  1176. Also fixed a couple of minor typos and broken links. (acmurthy)
  1177. Release 0.15.0 - 2007-11-2
  1178. INCOMPATIBLE CHANGES
  1179. HADOOP-1708. Make files appear in namespace as soon as they are
  1180. created. (Dhruba Borthakur via dhruba)
  1181. HADOOP-999. A HDFS Client immediately informs the NameNode of a new
  1182. file creation. ClientProtocol version changed from 14 to 15.
  1183. (Tsz Wo (Nicholas), SZE via dhruba)
  1184. HADOOP-932. File locking interfaces and implementations (that were
  1185. earlier deprecated) are removed. Client Protocol version changed
  1186. from 15 to 16. (Raghu Angadi via dhruba)
  1187. HADOOP-1621. FileStatus is now a concrete class and FileSystem.listPaths
  1188. is deprecated and replaced with listStatus. (Chris Douglas via omalley)
  1189. HADOOP-1656. The blockSize of a file is stored persistently in the file
  1190. inode. (Dhruba Borthakur via dhruba)
  1191. HADOOP-1838. The blocksize of files created with an earlier release is
  1192. set to the default block size. (Dhruba Borthakur via dhruba)
  1193. HADOOP-785. Add support for 'final' Configuration parameters,
  1194. removing support for 'mapred-default.xml', and changing
  1195. 'hadoop-site.xml' to not override other files. Now folks should
  1196. generally use 'hadoop-site.xml' for all configurations. Values
  1197. with a 'final' tag may not be overridden by subsequently loaded
  1198. configuration files, e.g., by jobs. (Arun C. Murthy via cutting)
  1199. HADOOP-1846. DatanodeReport in ClientProtocol can report live
  1200. datanodes, dead datanodes or all datanodes. Client Protocol version
  1201. changed from 17 to 18. (Hairong Kuang via dhruba)
  1202. HADOOP-1851. Permit specification of map output compression type
  1203. and codec, independent of the final output's compression
  1204. parameters. (Arun C Murthy via cutting)
  1205. HADOOP-1819. Jobtracker cleanups, including binding ports before
  1206. clearing state directories, so that inadvertently starting a
  1207. second jobtracker doesn't trash one that's already running. Removed
  1208. method JobTracker.getTracker() because the static variable, which
  1209. stored the value caused initialization problems.
  1210. (omalley via cutting)
  1211. NEW FEATURES
  1212. HADOOP-89. A client can access file data even before the creator
  1213. has closed the file. Introduce a new command "tail" from dfs shell.
  1214. (Dhruba Borthakur via dhruba)
  1215. HADOOP-1636. Allow configuration of the number of jobs kept in
  1216. memory by the JobTracker. (Michael Bieniosek via omalley)
  1217. HADOOP-1667. Reorganize CHANGES.txt into sections to make it
  1218. easier to read. Also remove numbering, to make merging easier.
  1219. (cutting)
  1220. HADOOP-1610. Add metrics for failed tasks.
  1221. (Devaraj Das via tomwhite)
  1222. HADOOP-1767. Add "bin/hadoop job -list" sub-command. (taton via cutting)
  1223. HADOOP-1351. Add "bin/hadoop job [-fail-task|-kill-task]" sub-commands
  1224. to terminate a particular task-attempt. (Enis Soztutar via acmurthy)
  1225. HADOOP-1880. SleepJob : An example job that sleeps at each map and
  1226. reduce task. (enis)
  1227. HADOOP-1809. Add a link in web site to #hadoop IRC channel. (enis)
  1228. HADOOP-1894. Add percentage graphs and mapred task completion graphs
  1229. to Web User Interface. Users not using Firefox may install a plugin to
  1230. their browsers to see svg graphics. (enis)
  1231. HADOOP-1914. Introduce a new NamenodeProtocol to allow secondary
  1232. namenodes and rebalancing processes to communicate with a primary
  1233. namenode. (Hairong Kuang via dhruba)
  1234. HADOOP-1963. Add a FileSystem implementation for the Kosmos
  1235. Filesystem (KFS). (Sriram Rao via cutting)
  1236. HADOOP-1822. Allow the specialization and configuration of socket
  1237. factories. Provide a StandardSocketFactory, and a SocksSocketFactory to
  1238. allow the use of SOCKS proxies. (taton).
  1239. HADOOP-1968. FileSystem supports wildcard input syntax "{ }".
  1240. (Hairong Kuang via dhruba)
  1241. HADOOP-2566. Add globStatus method to the FileSystem interface
  1242. and deprecate globPath and listPath. (Hairong Kuang via hairong)
  1243. OPTIMIZATIONS
  1244. HADOOP-1910. Reduce the number of RPCs that DistributedFileSystem.create()
  1245. makes to the namenode. (Raghu Angadi via dhruba)
  1246. HADOOP-1565. Reduce memory usage of NameNode by replacing
  1247. TreeMap in HDFS Namespace with ArrayList.
  1248. (Dhruba Borthakur via dhruba)
  1249. HADOOP-1743. Change DFS INode from a nested class to standalone
  1250. class, with specialized subclasses for directories and files, to
  1251. save memory on the namenode. (Konstantin Shvachko via cutting)
  1252. HADOOP-1759. Change file name in INode from String to byte[],
  1253. saving memory on the namenode. (Konstantin Shvachko via cutting)
  1254. HADOOP-1766. Save memory in namenode by having BlockInfo extend
  1255. Block, and replace many uses of Block with BlockInfo.
  1256. (Konstantin Shvachko via cutting)
  1257. HADOOP-1687. Save memory in namenode by optimizing BlockMap
  1258. representation. (Konstantin Shvachko via cutting)
  1259. HADOOP-1774. Remove use of INode.parent in Block CRC upgrade.
  1260. (Raghu Angadi via dhruba)
  1261. HADOOP-1788. Increase the buffer size on the Pipes command socket.
  1262. (Amareshwari Sri Ramadasu and Christian Kunz via omalley)
  1263. BUG FIXES
  1264. HADOOP-1946. The Datanode code does not need to invoke du on
  1265. every heartbeat. (Hairong Kuang via dhruba)
  1266. HADOOP-1935. Fix a NullPointerException in internalReleaseCreate.
  1267. (Dhruba Borthakur)
  1268. HADOOP-1933. The nodes listed in include and exclude files
  1269. are always listed in the datanode report.
  1270. (Raghu Angadi via dhruba)
  1271. HADOOP-1953. The job tracker should wait beteween calls to try and delete
  1272. the system directory (Owen O'Malley via devaraj)
  1273. HADOOP-1932. TestFileCreation fails with message saying filestatus.dat
  1274. is of incorrect size. (Dhruba Borthakur via dhruba)
  1275. HADOOP-1573. Support for 0 reducers in PIPES.
  1276. (Owen O'Malley via devaraj)
  1277. HADOOP-1500. Fix typographical errors in the DFS WebUI.
  1278. (Nigel Daley via dhruba)
  1279. HADOOP-1076. Periodic checkpoint can continue even if an earlier
  1280. checkpoint encountered an error. (Dhruba Borthakur via dhruba)
  1281. HADOOP-1887. The Namenode encounters an ArrayIndexOutOfBoundsException
  1282. while listing a directory that had a file that was
  1283. being actively written to. (Dhruba Borthakur via dhruba)
  1284. HADOOP-1904. The Namenode encounters an exception because the
  1285. list of blocks per datanode-descriptor was corrupted.
  1286. (Konstantin Shvachko via dhruba)
  1287. HADOOP-1762. The Namenode fsimage does not contain a list of
  1288. Datanodes. (Raghu Angadi via dhruba)
  1289. HADOOP-1890. Removed debugging prints introduced by HADOOP-1774.
  1290. (Raghu Angadi via dhruba)
  1291. HADOOP-1763. Too many lost task trackers on large clusters due to
  1292. insufficient number of RPC handler threads on the JobTracker.
  1293. (Devaraj Das)
  1294. HADOOP-1463. HDFS report correct usage statistics for disk space
  1295. used by HDFS. (Hairong Kuang via dhruba)
  1296. HADOOP-1692. In DFS ant task, don't cache the Configuration.
  1297. (Chris Douglas via cutting)
  1298. HADOOP-1726. Remove lib/jetty-ext/ant.jar. (omalley)
  1299. HADOOP-1772. Fix hadoop-daemon.sh script to get correct hostname
  1300. under Cygwin. (Tsz Wo (Nicholas), SZE via cutting)
  1301. HADOOP-1749. Change TestDFSUpgrade to sort files, fixing sporadic
  1302. test failures. (Enis Soztutar via cutting)
  1303. HADOOP-1748. Fix tasktracker to be able to launch tasks when log
  1304. directory is relative. (omalley via cutting)
  1305. HADOOP-1775. Fix a NullPointerException and an
  1306. IllegalArgumentException in MapWritable.
  1307. (Jim Kellerman via cutting)
  1308. HADOOP-1795. Fix so that jobs can generate output file names with
  1309. special characters. (Fr??d??ric Bertin via cutting)
  1310. HADOOP-1810. Fix incorrect value type in MRBench (SmallJobs)
  1311. (Devaraj Das via tomwhite)
  1312. HADOOP-1806. Fix ant task to compile again, also fix default
  1313. builds to compile ant tasks. (Chris Douglas via cutting)
  1314. HADOOP-1758. Fix escape processing in librecordio to not be
  1315. quadratic. (Vivek Ratan via cutting)
  1316. HADOOP-1817. Fix MultiFileSplit to read and write the split
  1317. length, so that it is not always zero in map tasks.
  1318. (Thomas Friol via cutting)
  1319. HADOOP-1853. Fix contrib/streaming to accept multiple -cacheFile
  1320. options. (Prachi Gupta via cutting)
  1321. HADOOP-1818. Fix MultiFileInputFormat so that it does not return
  1322. empty splits when numPaths < numSplits. (Thomas Friol via enis)
  1323. HADOOP-1840. Fix race condition which leads to task's diagnostic
  1324. messages getting lost. (acmurthy)
  1325. HADOOP-1885. Fix race condition in MiniDFSCluster shutdown.
  1326. (Chris Douglas via nigel)
  1327. HADOOP-1889. Fix path in EC2 scripts for building your own AMI.
  1328. (tomwhite)
  1329. HADOOP-1892. Fix a NullPointerException in the JobTracker when
  1330. trying to fetch a task's diagnostic messages from the JobClient.
  1331. (Amar Kamat via acmurthy)
  1332. HADOOP-1897. Completely remove about.html page from the web site.
  1333. (enis)
  1334. HADOOP-1907. Fix null pointer exception when getting task diagnostics
  1335. in JobClient. (Christian Kunz via omalley)
  1336. HADOOP-1882. Remove spurious asterisks from decimal number displays.
  1337. (Raghu Angadi via cutting)
  1338. HADOOP-1783. Make S3 FileSystem return Paths fully-qualified with
  1339. scheme and host. (tomwhite)
  1340. HADOOP-1925. Make pipes' autoconf script look for libsocket and libnsl, so
  1341. that it can compile under Solaris. (omalley)
  1342. HADOOP-1940. TestDFSUpgradeFromImage must shut down its MiniDFSCluster.
  1343. (Chris Douglas via nigel)
  1344. HADOOP-1930. Fix the blame for failed fetchs on the right host. (Arun C.
  1345. Murthy via omalley)
  1346. HADOOP-1934. Fix the platform name on Mac to use underscores rather than
  1347. spaces. (omalley)
  1348. HADOOP-1959. Use "/" instead of File.separator in the StatusHttpServer.
  1349. (jimk via omalley)
  1350. HADOOP-1626. Improve dfsadmin help messages.
  1351. (Lohit Vijayarenu via dhruba)
  1352. HADOOP-1695. The SecondaryNamenode waits for the Primary NameNode to
  1353. start up. (Dhruba Borthakur)
  1354. HADOOP-1983. Have Pipes flush the command socket when progress is sent
  1355. to prevent timeouts during long computations. (omalley)
  1356. HADOOP-1875. Non-existant directories or read-only directories are
  1357. filtered from dfs.client.buffer.dir. (Hairong Kuang via dhruba)
  1358. HADOOP-1992. Fix the performance degradation in the sort validator.
  1359. (acmurthy via omalley)
  1360. HADOOP-1874. Move task-outputs' promotion/discard to a separate thread
  1361. distinct from the main heartbeat-processing thread. The main upside being
  1362. that we do not lock-up the JobTracker during HDFS operations, which
  1363. otherwise may lead to lost tasktrackers if the NameNode is unresponsive.
  1364. (Devaraj Das via acmurthy)
  1365. HADOOP-2026. Namenode prints out one log line for "Number of transactions"
  1366. at most once every minute. (Dhruba Borthakur)
  1367. HADOOP-2022. Ensure that status information for successful tasks is correctly
  1368. recorded at the JobTracker, so that, for example, one may view correct
  1369. information via taskdetails.jsp. This bug was introduced by HADOOP-1874.
  1370. (Amar Kamat via acmurthy)
  1371. HADOOP-2031. Correctly maintain the taskid which takes the TIP to
  1372. completion, failing which the case of lost tasktrackers isn't handled
  1373. properly i.e. the map TIP is incorrectly left marked as 'complete' and it
  1374. is never rescheduled elsewhere, leading to hung reduces.
  1375. (Devaraj Das via acmurthy)
  1376. HADOOP-2018. The source datanode of a data transfer waits for
  1377. a response from the target datanode before closing the data stream.
  1378. (Hairong Kuang via dhruba)
  1379. HADOOP-2023. Disable TestLocalDirAllocator on Windows.
  1380. (Hairong Kuang via nigel)
  1381. HADOOP-2016. Ignore status-updates from FAILED/KILLED tasks at the
  1382. TaskTracker. This fixes a race-condition which caused the tasks to wrongly
  1383. remain in the RUNNING state even after being killed by the JobTracker and
  1384. thus handicap the cleanup of the task's output sub-directory. (acmurthy)
  1385. HADOOP-1771. Fix a NullPointerException in streaming caused by an
  1386. IOException in MROutputThread. (lohit vijayarenu via nigel)
  1387. HADOOP-2028. Fix distcp so that the log dir does not need to be
  1388. specified and the destination does not need to exist.
  1389. (Chris Douglas via nigel)
  1390. HADOOP-2044. The namenode protects all lease manipulations using a
  1391. sortedLease lock. (Dhruba Borthakur)
  1392. HADOOP-2051. The TaskCommit thread should not die for exceptions other
  1393. than the InterruptedException. This behavior is there for the other long
  1394. running threads in the JobTracker. (Arun C Murthy via ddas)
  1395. HADOOP-1973. The FileSystem object would be accessed on the JobTracker
  1396. through a RPC in the InterTrackerProtocol. The check for the object being
  1397. null was missing and hence NPE would be thrown sometimes. This issue fixes
  1398. that problem. (Amareshwari Sri Ramadasu via ddas)
  1399. HADOOP-2033. The SequenceFile.Writer.sync method was a no-op, which caused
  1400. very uneven splits for applications like distcp that count on them.
  1401. (omalley)
  1402. HADOOP-2070. Added a flush method to pipes' DownwardProtocol and call
  1403. that before waiting for the application to finish to ensure all buffered
  1404. data is flushed. (Owen O'Malley via acmurthy)
  1405. HADOOP-2080. Fixed calculation of the checksum file size when the values
  1406. are large. (omalley)
  1407. HADOOP-2048. Change error handling in distcp so that each map copies
  1408. as much as possible before reporting the error. Also report progress on
  1409. every copy. (Chris Douglas via omalley)
  1410. HADOOP-2073. Change size of VERSION file after writing contents to it.
  1411. (Konstantin Shvachko via dhruba)
  1412. HADOOP-2102. Fix the deprecated ToolBase to pass its Configuration object
  1413. to the superceding ToolRunner to ensure it picks up the appropriate
  1414. configuration resources. (Dennis Kubes and Enis Soztutar via acmurthy)
  1415. HADOOP-2103. Fix minor javadoc bugs introduce by HADOOP-2046. (Nigel
  1416. Daley via acmurthy)
  1417. IMPROVEMENTS
  1418. HADOOP-1908. Restructure data node code so that block sending and
  1419. receiving are seperated from data transfer header handling.
  1420. (Hairong Kuang via dhruba)
  1421. HADOOP-1921. Save the configuration of completed/failed jobs and make them
  1422. available via the web-ui. (Amar Kamat via devaraj)
  1423. HADOOP-1266. Remove dependency of package org.apache.hadoop.net on
  1424. org.apache.hadoop.dfs. (Hairong Kuang via dhruba)
  1425. HADOOP-1779. Replace INodeDirectory.getINode() by a getExistingPathINodes()
  1426. to allow the retrieval of all existing INodes along a given path in a
  1427. single lookup. This facilitates removal of the 'parent' field in the
  1428. inode. (Christophe Taton via dhruba)
  1429. HADOOP-1756. Add toString() to some Writable-s. (ab)
  1430. HADOOP-1727. New classes: MapWritable and SortedMapWritable.
  1431. (Jim Kellerman via ab)
  1432. HADOOP-1651. Improve progress reporting.
  1433. (Devaraj Das via tomwhite)
  1434. HADOOP-1595. dfsshell can wait for a file to achieve its intended
  1435. replication target. (Tsz Wo (Nicholas), SZE via dhruba)
  1436. HADOOP-1693. Remove un-needed log fields in DFS replication classes,
  1437. since the log may be accessed statically. (Konstantin Shvachko via cutting)
  1438. HADOOP-1231. Add generics to Mapper and Reducer interfaces.
  1439. (tomwhite via cutting)
  1440. HADOOP-1436. Improved command-line APIs, so that all tools need
  1441. not subclass ToolBase, and generic parameter parser is public.
  1442. (Enis Soztutar via cutting)
  1443. HADOOP-1703. DFS-internal code cleanups, removing several uses of
  1444. the obsolete UTF8. (Christophe Taton via cutting)
  1445. HADOOP-1731. Add Hadoop's version to contrib jar file names.
  1446. (cutting)
  1447. HADOOP-1689. Make shell scripts more portable. All shell scripts
  1448. now explicitly depend on bash, but do not require that bash be
  1449. installed in a particular location, as long as it is on $PATH.
  1450. (cutting)
  1451. HADOOP-1744. Remove many uses of the deprecated UTF8 class from
  1452. the HDFS namenode. (Christophe Taton via cutting)
  1453. HADOOP-1654. Add IOUtils class, containing generic io-related
  1454. utility methods. (Enis Soztutar via cutting)
  1455. HADOOP-1158. Change JobTracker to record map-output transmission
  1456. errors and use them to trigger speculative re-execution of tasks.
  1457. (Arun C Murthy via cutting)
  1458. HADOOP-1601. Change GenericWritable to use ReflectionUtils for
  1459. instance creation, avoiding classloader issues, and to implement
  1460. Configurable. (Enis Soztutar via cutting)
  1461. HADOOP-1750. Log standard output and standard error when forking
  1462. task processes. (omalley via cutting)
  1463. HADOOP-1803. Generalize build.xml to make files in all
  1464. src/contrib/*/bin directories executable. (stack via cutting)
  1465. HADOOP-1739. Let OS always choose the tasktracker's umbilical
  1466. port. Also switch default address for umbilical connections to
  1467. loopback. (cutting)
  1468. HADOOP-1812. Let OS choose ports for IPC and RPC unit tests. (cutting)
  1469. HADOOP-1825. Create $HADOOP_PID_DIR when it does not exist.
  1470. (Michael Bieniosek via cutting)
  1471. HADOOP-1425. Replace uses of ToolBase with the Tool interface.
  1472. (Enis Soztutar via cutting)
  1473. HADOOP-1569. Reimplement DistCP to use the standard FileSystem/URI
  1474. code in Hadoop so that you can copy from and to all of the supported file
  1475. systems.(Chris Douglas via omalley)
  1476. HADOOP-1018. Improve documentation w.r.t handling of lost hearbeats between
  1477. TaskTrackers and JobTracker. (acmurthy)
  1478. HADOOP-1718. Add ant targets for measuring code coverage with clover.
  1479. (simonwillnauer via nigel)
  1480. HADOOP-1592. Log error messages to the client console when tasks
  1481. fail. (Amar Kamat via cutting)
  1482. HADOOP-1879. Remove some unneeded casts. (Nilay Vaish via cutting)
  1483. HADOOP-1878. Add space between priority links on job details
  1484. page. (Thomas Friol via cutting)
  1485. HADOOP-120. In ArrayWritable, prevent creation with null value
  1486. class, and improve documentation. (Cameron Pope via cutting)
  1487. HADOOP-1926. Add a random text writer example/benchmark so that we can
  1488. benchmark compression codecs on random data. (acmurthy via omalley)
  1489. HADOOP-1906. Warn the user if they have an obsolete madred-default.xml
  1490. file in their configuration directory. (acmurthy via omalley)
  1491. HADOOP-1971. Warn when job does not specify a jar. (enis via cutting)
  1492. HADOOP-1942. Increase the concurrency of transaction logging to
  1493. edits log. Reduce the number of syncs by double-buffering the changes
  1494. to the transaction log. (Dhruba Borthakur)
  1495. HADOOP-2046. Improve mapred javadoc. (Arun C. Murthy via cutting)
  1496. HADOOP-2105. Improve overview.html to clarify supported platforms,
  1497. software pre-requisites for hadoop, how to install them on various
  1498. platforms and a better general description of hadoop and it's utility.
  1499. (Jim Kellerman via acmurthy)
  1500. Release 0.14.4 - 2007-11-26
  1501. BUG FIXES
  1502. HADOOP-2140. Add missing Apache Licensing text at the front of several
  1503. C and C++ files.
  1504. HADOOP-2169. Fix the DT_SONAME field of libhdfs.so to set it to the
  1505. correct value of 'libhdfs.so', currently it is set to the absolute path of
  1506. libhdfs.so. (acmurthy)
  1507. HADOOP-2001. Make the job priority updates and job kills synchronized on
  1508. the JobTracker. Deadlock was seen in the JobTracker because of the lack of
  1509. this synchronization. (Arun C Murthy via ddas)
  1510. Release 0.14.3 - 2007-10-19
  1511. BUG FIXES
  1512. HADOOP-2053. Fixed a dangling reference to a memory buffer in the map
  1513. output sorter. (acmurthy via omalley)
  1514. HADOOP-2036. Fix a NullPointerException in JvmMetrics class. (nigel)
  1515. HADOOP-2043. Release 0.14.2 was compiled with Java 1.6 rather than
  1516. Java 1.5. (cutting)
  1517. Release 0.14.2 - 2007-10-09
  1518. BUG FIXES
  1519. HADOOP-1948. Removed spurious error message during block crc upgrade.
  1520. (Raghu Angadi via dhruba)
  1521. HADOOP-1862. reduces are getting stuck trying to find map outputs.
  1522. (Arun C. Murthy via ddas)
  1523. HADOOP-1977. Fixed handling of ToolBase cli options in JobClient.
  1524. (enis via omalley)
  1525. HADOOP-1972. Fix LzoCompressor to ensure the user has actually asked
  1526. to finish compression. (arun via omalley)
  1527. HADOOP-1970. Fix deadlock in progress reporting in the task. (Vivek
  1528. Ratan via omalley)
  1529. HADOOP-1978. Name-node removes edits.new after a successful startup.
  1530. (Konstantin Shvachko via dhruba)
  1531. HADOOP-1955. The Namenode tries to not pick the same source Datanode for
  1532. a replication request if the earlier replication request for the same
  1533. block and that source Datanode had failed.
  1534. (Raghu Angadi via dhruba)
  1535. HADOOP-1961. The -get option to dfs-shell works when a single filename
  1536. is specified. (Raghu Angadi via dhruba)
  1537. HADOOP-1997. TestCheckpoint closes the edits file after writing to it,
  1538. otherwise the rename of this file on Windows fails.
  1539. (Konstantin Shvachko via dhruba)
  1540. Release 0.14.1 - 2007-09-04
  1541. BUG FIXES
  1542. HADOOP-1740. Fix null pointer exception in sorting map outputs. (Devaraj
  1543. Das via omalley)
  1544. HADOOP-1790. Fix tasktracker to work correctly on multi-homed
  1545. boxes. (Torsten Curdt via cutting)
  1546. HADOOP-1798. Fix jobtracker to correctly account for failed
  1547. tasks. (omalley via cutting)
  1548. Release 0.14.0 - 2007-08-17
  1549. INCOMPATIBLE CHANGES
  1550. 1. HADOOP-1134.
  1551. CONFIG/API - dfs.block.size must now be a multiple of
  1552. io.byte.per.checksum, otherwise new files can not be written.
  1553. LAYOUT - DFS layout version changed from -6 to -7, which will require an
  1554. upgrade from previous versions.
  1555. PROTOCOL - Datanode RPC protocol version changed from 7 to 8.
  1556. 2. HADOOP-1283
  1557. API - deprecated file locking API.
  1558. 3. HADOOP-894
  1559. PROTOCOL - changed ClientProtocol to fetch parts of block locations.
  1560. 4. HADOOP-1336
  1561. CONFIG - Enable speculative execution by default.
  1562. 5. HADOOP-1197
  1563. API - deprecated method for Configuration.getObject, because
  1564. Configurations should only contain strings.
  1565. 6. HADOOP-1343
  1566. API - deprecate Configuration.set(String,Object) so that only strings are
  1567. put in Configrations.
  1568. 7. HADOOP-1207
  1569. CLI - Fix FsShell 'rm' command to continue when a non-existent file is
  1570. encountered.
  1571. 8. HADOOP-1473
  1572. CLI/API - Job, TIP, and Task id formats have changed and are now unique
  1573. across job tracker restarts.
  1574. 9. HADOOP-1400
  1575. API - JobClient constructor now takes a JobConf object instead of a
  1576. Configuration object.
  1577. NEW FEATURES and BUG FIXES
  1578. 1. HADOOP-1197. In Configuration, deprecate getObject() and add
  1579. getRaw(), which skips variable expansion. (omalley via cutting)
  1580. 2. HADOOP-1343. In Configuration, deprecate set(String,Object) and
  1581. implement Iterable. (omalley via cutting)
  1582. 3. HADOOP-1344. Add RunningJob#getJobName(). (Michael Bieniosek via cutting)
  1583. 4. HADOOP-1342. In aggregators, permit one to limit the number of
  1584. unique values per key. (Runping Qi via cutting)
  1585. 5. HADOOP-1340. Set the replication factor of the MD5 file in the filecache
  1586. to be the same as the replication factor of the original file.
  1587. (Dhruba Borthakur via tomwhite.)
  1588. 6. HADOOP-1355. Fix null pointer dereference in
  1589. TaskLogAppender.append(LoggingEvent). (Arun C Murthy via tomwhite.)
  1590. 7. HADOOP-1357. Fix CopyFiles to correctly avoid removing "/".
  1591. (Arun C Murthy via cutting)
  1592. 8. HADOOP-234. Add pipes facility, which permits writing MapReduce
  1593. programs in C++.
  1594. 9. HADOOP-1359. Fix a potential NullPointerException in HDFS.
  1595. (Hairong Kuang via cutting)
  1596. 10. HADOOP-1364. Fix inconsistent synchronization in SequenceFile.
  1597. (omalley via cutting)
  1598. 11. HADOOP-1379. Add findbugs target to build.xml.
  1599. (Nigel Daley via cutting)
  1600. 12. HADOOP-1364. Fix various inconsistent synchronization issues.
  1601. (Devaraj Das via cutting)
  1602. 13. HADOOP-1393. Remove a potential unexpected negative number from
  1603. uses of random number generator. (omalley via cutting)
  1604. 14. HADOOP-1387. A number of "performance" code-cleanups suggested
  1605. by findbugs. (Arun C Murthy via cutting)
  1606. 15. HADOOP-1401. Add contrib/hbase javadoc to tree. (stack via cutting)
  1607. 16. HADOOP-894. Change HDFS so that the client only retrieves a limited
  1608. number of block locations per request from the namenode.
  1609. (Konstantin Shvachko via cutting)
  1610. 17. HADOOP-1406. Plug a leak in MapReduce's use of metrics.
  1611. (David Bowen via cutting)
  1612. 18. HADOOP-1394. Implement "performance" code-cleanups in HDFS
  1613. suggested by findbugs. (Raghu Angadi via cutting)
  1614. 19. HADOOP-1413. Add example program that uses Knuth's dancing links
  1615. algorithm to solve pentomino problems. (omalley via cutting)
  1616. 20. HADOOP-1226. Change HDFS so that paths it returns are always
  1617. fully qualified. (Dhruba Borthakur via cutting)
  1618. 21. HADOOP-800. Improvements to HDFS web-based file browser.
  1619. (Enis Soztutar via cutting)
  1620. 22. HADOOP-1408. Fix a compiler warning by adding a class to replace
  1621. a generic. (omalley via cutting)
  1622. 23. HADOOP-1376. Modify RandomWriter example so that it can generate
  1623. data for the Terasort benchmark. (Devaraj Das via cutting)
  1624. 24. HADOOP-1429. Stop logging exceptions during normal IPC server
  1625. shutdown. (stack via cutting)
  1626. 25. HADOOP-1461. Fix the synchronization of the task tracker to
  1627. avoid lockups in job cleanup. (Arun C Murthy via omalley)
  1628. 26. HADOOP-1446. Update the TaskTracker metrics while the task is
  1629. running. (Devaraj via omalley)
  1630. 27. HADOOP-1414. Fix a number of issues identified by FindBugs as
  1631. "Bad Practice". (Dhruba Borthakur via cutting)
  1632. 28. HADOOP-1392. Fix "correctness" bugs identified by FindBugs in
  1633. fs and dfs packages. (Raghu Angadi via cutting)
  1634. 29. HADOOP-1412. Fix "dodgy" bugs identified by FindBugs in fs and
  1635. io packages. (Hairong Kuang via cutting)
  1636. 30. HADOOP-1261. Remove redundant events from HDFS namenode's edit
  1637. log when a datanode restarts. (Raghu Angadi via cutting)
  1638. 31. HADOOP-1336. Re-enable speculative execution by
  1639. default. (omalley via cutting)
  1640. 32. HADOOP-1311. Fix a bug in BytesWritable#set() where start offset
  1641. was ignored. (Dhruba Borthakur via cutting)
  1642. 33. HADOOP-1450. Move checksumming closer to user code, so that
  1643. checksums are created before data is stored in large buffers and
  1644. verified after data is read from large buffers, to better catch
  1645. memory errors. (cutting)
  1646. 34. HADOOP-1447. Add support in contrib/data_join for text inputs.
  1647. (Senthil Subramanian via cutting)
  1648. 35. HADOOP-1456. Fix TestDecommission assertion failure by setting
  1649. the namenode to ignore the load on datanodes while allocating
  1650. replicas. (Dhruba Borthakur via tomwhite)
  1651. 36. HADOOP-1396. Fix FileNotFoundException on DFS block.
  1652. (Dhruba Borthakur via tomwhite)
  1653. 37. HADOOP-1467. Remove redundant counters from WordCount example.
  1654. (Owen O'Malley via tomwhite)
  1655. 38. HADOOP-1139. Log HDFS block transitions at INFO level, to better
  1656. enable diagnosis of problems. (Dhruba Borthakur via cutting)
  1657. 39. HADOOP-1269. Finer grained locking in HDFS namenode.
  1658. (Dhruba Borthakur via cutting)
  1659. 40. HADOOP-1438. Improve HDFS documentation, correcting typos and
  1660. making images appear in PDF. Also update copyright date for all
  1661. docs. (Luke Nezda via cutting)
  1662. 41. HADOOP-1457. Add counters for monitoring task assignments.
  1663. (Arun C Murthy via tomwhite)
  1664. 42. HADOOP-1472. Fix so that timed-out tasks are counted as failures
  1665. rather than as killed. (Arun C Murthy via cutting)
  1666. 43. HADOOP-1234. Fix a race condition in file cache that caused
  1667. tasktracker to not be able to find cached files.
  1668. (Arun C Murthy via cutting)
  1669. 44. HADOOP-1482. Fix secondary namenode to roll info port.
  1670. (Dhruba Borthakur via cutting)
  1671. 45. HADOOP-1300. Improve removal of excess block replicas to be
  1672. rack-aware. Attempts are now made to keep replicas on more
  1673. racks. (Hairong Kuang via cutting)
  1674. 46. HADOOP-1417. Disable a few FindBugs checks that generate a lot
  1675. of spurious warnings. (Nigel Daley via cutting)
  1676. 47. HADOOP-1320. Rewrite RandomWriter example to bypass reduce.
  1677. (Arun C Murthy via cutting)
  1678. 48. HADOOP-1449. Add some examples to contrib/data_join.
  1679. (Senthil Subramanian via cutting)
  1680. 49. HADOOP-1459. Fix so that, in HDFS, getFileCacheHints() returns
  1681. hostnames instead of IP addresses. (Dhruba Borthakur via cutting)
  1682. 50. HADOOP-1493. Permit specification of "java.library.path" system
  1683. property in "mapred.child.java.opts" configuration property.
  1684. (Enis Soztutar via cutting)
  1685. 51. HADOOP-1372. Use LocalDirAllocator for HDFS temporary block
  1686. files, so that disk space, writability, etc. is considered.
  1687. (Dhruba Borthakur via cutting)
  1688. 52. HADOOP-1193. Pool allocation of compression codecs. This
  1689. eliminates a memory leak that could cause OutOfMemoryException,
  1690. and also substantially improves performance.
  1691. (Arun C Murthy via cutting)
  1692. 53. HADOOP-1492. Fix a NullPointerException handling version
  1693. mismatch during datanode registration.
  1694. (Konstantin Shvachko via cutting)
  1695. 54. HADOOP-1442. Fix handling of zero-length input splits.
  1696. (Senthil Subramanian via cutting)
  1697. 55. HADOOP-1444. Fix HDFS block id generation to check pending
  1698. blocks for duplicates. (Dhruba Borthakur via cutting)
  1699. 56. HADOOP-1207. Fix FsShell's 'rm' command to not stop when one of
  1700. the named files does not exist. (Tsz Wo Sze via cutting)
  1701. 57. HADOOP-1475. Clear tasktracker's file cache before it
  1702. re-initializes, to avoid confusion. (omalley via cutting)
  1703. 58. HADOOP-1505. Remove spurious stacktrace in ZlibFactory
  1704. introduced in HADOOP-1093. (Michael Stack via tomwhite)
  1705. 59. HADOOP-1484. Permit one to kill jobs from the web ui. Note that
  1706. this is disabled by default. One must set
  1707. "webinterface.private.actions" to enable this.
  1708. (Enis Soztutar via cutting)
  1709. 60. HADOOP-1003. Remove flushing of namenode edit log from primary
  1710. namenode lock, increasing namenode throughput.
  1711. (Dhruba Borthakur via cutting)
  1712. 61. HADOOP-1023. Add links to searchable mail archives.
  1713. (tomwhite via cutting)
  1714. 62. HADOOP-1504. Fix terminate-hadoop-cluster script in contrib/ec2
  1715. to only terminate Hadoop instances, and not other instances
  1716. started by the same user. (tomwhite via cutting)
  1717. 63. HADOOP-1462. Improve task progress reporting. Progress reports
  1718. are no longer blocking since i/o is performed in a separate
  1719. thread. Reporting during sorting and more is also more
  1720. consistent. (Vivek Ratan via cutting)
  1721. 64. [ intentionally blank ]
  1722. 65. HADOOP-1453. Remove some unneeded calls to FileSystem#exists()
  1723. when opening files, reducing the namenode load somewhat.
  1724. (Raghu Angadi via cutting)
  1725. 66. HADOOP-1489. Fix text input truncation bug due to mark/reset.
  1726. Add a unittest. (Bwolen Yang via cutting)
  1727. 67. HADOOP-1455. Permit specification of arbitrary job options on
  1728. pipes command line. (Devaraj Das via cutting)
  1729. 68. HADOOP-1501. Better randomize sending of block reports to
  1730. namenode, so reduce load spikes. (Dhruba Borthakur via cutting)
  1731. 69. HADOOP-1147. Remove @author tags from Java source files.
  1732. 70. HADOOP-1283. Convert most uses of UTF8 in the namenode to be
  1733. String. (Konstantin Shvachko via cutting)
  1734. 71. HADOOP-1511. Speedup hbase unit tests. (stack via cutting)
  1735. 72. HADOOP-1517. Remove some synchronization in namenode to permit
  1736. finer grained locking previously added. (Konstantin Shvachko via cutting)
  1737. 73. HADOOP-1512. Fix failing TestTextInputFormat on Windows.
  1738. (Senthil Subramanian via nigel)
  1739. 74. HADOOP-1518. Add a session id to job metrics, for use by HOD.
  1740. (David Bowen via cutting)
  1741. 75. HADOOP-1292. Change 'bin/hadoop fs -get' to first copy files to
  1742. a temporary name, then rename them to their final name, so that
  1743. failures don't leave partial files. (Tsz Wo Sze via cutting)
  1744. 76. HADOOP-1377. Add support for modification time to FileSystem and
  1745. implement in HDFS and local implementations. Also, alter access
  1746. to file properties to be through a new FileStatus interface.
  1747. (Dhruba Borthakur via cutting)
  1748. 77. HADOOP-1515. Add MultiFileInputFormat, which can pack multiple,
  1749. typically small, input files into each split. (Enis Soztutar via cutting)
  1750. 78. HADOOP-1514. Make reducers report progress while waiting for map
  1751. outputs, so they're not killed. (Vivek Ratan via cutting)
  1752. 79. HADOOP-1508. Add an Ant task for FsShell operations. Also add
  1753. new FsShell commands "touchz", "test" and "stat".
  1754. (Chris Douglas via cutting)
  1755. 80. HADOOP-1028. Add log messages for server startup and shutdown.
  1756. (Tsz Wo Sze via cutting)
  1757. 81. HADOOP-1485. Add metrics for monitoring shuffle.
  1758. (Devaraj Das via cutting)
  1759. 82. HADOOP-1536. Remove file locks from libhdfs tests.
  1760. (Dhruba Borthakur via nigel)
  1761. 83. HADOOP-1520. Add appropriate synchronization to FSEditsLog.
  1762. (Dhruba Borthakur via nigel)
  1763. 84. HADOOP-1513. Fix a race condition in directory creation.
  1764. (Devaraj via omalley)
  1765. 85. HADOOP-1546. Remove spurious column from HDFS web UI.
  1766. (Dhruba Borthakur via cutting)
  1767. 86. HADOOP-1556. Make LocalJobRunner delete working files at end of
  1768. job run. (Devaraj Das via tomwhite)
  1769. 87. HADOOP-1571. Add contrib lib directories to root build.xml
  1770. javadoc classpath. (Michael Stack via tomwhite)
  1771. 88. HADOOP-1554. Log killed tasks to the job history and display them on the
  1772. web/ui. (Devaraj Das via omalley)
  1773. 89. HADOOP-1533. Add persistent error logging for distcp. The logs are stored
  1774. into a specified hdfs directory. (Senthil Subramanian via omalley)
  1775. 90. HADOOP-1286. Add support to HDFS for distributed upgrades, which
  1776. permits coordinated upgrade of datanode data.
  1777. (Konstantin Shvachko via cutting)
  1778. 91. HADOOP-1580. Improve contrib/streaming so that subprocess exit
  1779. status is displayed for errors. (John Heidemann via cutting)
  1780. 92. HADOOP-1448. In HDFS, randomize lists of non-local block
  1781. locations returned to client, so that load is better balanced.
  1782. (Hairong Kuang via cutting)
  1783. 93. HADOOP-1578. Fix datanode to send its storage id to namenode
  1784. during registration. (Konstantin Shvachko via cutting)
  1785. 94. HADOOP-1584. Fix a bug in GenericWritable which limited it to
  1786. 128 types instead of 256. (Espen Amble Kolstad via cutting)
  1787. 95. HADOOP-1473. Make job ids unique across jobtracker restarts.
  1788. (omalley via cutting)
  1789. 96. HADOOP-1582. Fix hdfslib to return 0 instead of -1 at
  1790. end-of-file, per C conventions. (Christian Kunz via cutting)
  1791. 97. HADOOP-911. Fix a multithreading bug in libhdfs.
  1792. (Christian Kunz)
  1793. 98. HADOOP-1486. Fix so that fatal exceptions in namenode cause it
  1794. to exit. (Dhruba Borthakur via cutting)
  1795. 99. HADOOP-1470. Factor checksum generation and validation out of
  1796. ChecksumFileSystem so that it can be reused by FileSystem's with
  1797. built-in checksumming. (Hairong Kuang via cutting)
  1798. 100. HADOOP-1590. Use relative urls in jobtracker jsp pages, so that
  1799. webapp can be used in non-root contexts. (Thomas Friol via cutting)
  1800. 101. HADOOP-1596. Fix the parsing of taskids by streaming and improve the
  1801. error reporting. (omalley)
  1802. 102. HADOOP-1535. Fix the user-controlled grouping to the reduce function.
  1803. (Vivek Ratan via omalley)
  1804. 103. HADOOP-1585. Modify GenericWritable to declare the classes as subtypes
  1805. of Writable (Espen Amble Kolstad via omalley)
  1806. 104. HADOOP-1576. Fix errors in count of completed tasks when
  1807. speculative execution is enabled. (Arun C Murthy via cutting)
  1808. 105. HADOOP-1598. Fix license headers: adding missing; updating old.
  1809. (Enis Soztutar via cutting)
  1810. 106. HADOOP-1547. Provide examples for aggregate library.
  1811. (Runping Qi via tomwhite)
  1812. 107. HADOOP-1570. Permit jobs to enable and disable the use of
  1813. hadoop's native library. (Arun C Murthy via cutting)
  1814. 108. HADOOP-1433. Add job priority. (Johan Oskarsson via tomwhite)
  1815. 109. HADOOP-1597. Add status reports and post-upgrade options to HDFS
  1816. distributed upgrade. (Konstantin Shvachko via cutting)
  1817. 110. HADOOP-1524. Permit user task logs to appear as they're
  1818. created. (Michael Bieniosek via cutting)
  1819. 111. HADOOP-1599. Fix distcp bug on Windows. (Senthil Subramanian via cutting)
  1820. 112. HADOOP-1562. Add JVM metrics, including GC and logging stats.
  1821. (David Bowen via cutting)
  1822. 113. HADOOP-1613. Fix "DFS Health" page to display correct time of
  1823. last contact. (Dhruba Borthakur via cutting)
  1824. 114. HADOOP-1134. Add optimized checksum support to HDFS. Checksums
  1825. are now stored with each block, rather than as parallel files.
  1826. This reduces the namenode's memory requirements and increases
  1827. data integrity. (Raghu Angadi via cutting)
  1828. 115. HADOOP-1400. Make JobClient retry requests, so that clients can
  1829. survive jobtracker problems. (omalley via cutting)
  1830. 116. HADOOP-1564. Add unit tests for HDFS block-level checksums.
  1831. (Dhruba Borthakur via cutting)
  1832. 117. HADOOP-1620. Reduce the number of abstract FileSystem methods,
  1833. simplifying implementations. (cutting)
  1834. 118. HADOOP-1625. Fix a "could not move files" exception in datanode.
  1835. (Raghu Angadi via cutting)
  1836. 119. HADOOP-1624. Fix an infinite loop in datanode. (Raghu Angadi via cutting)
  1837. 120. HADOOP-1084. Switch mapred file cache to use file modification
  1838. time instead of checksum to detect file changes, as checksums are
  1839. no longer easily accessed. (Arun C Murthy via cutting)
  1840. 130. HADOOP-1623. Fix an infinite loop when copying directories.
  1841. (Dhruba Borthakur via cutting)
  1842. 131. HADOOP-1603. Fix a bug in namenode initialization where
  1843. default replication is sometimes reset to one on restart.
  1844. (Raghu Angadi via cutting)
  1845. 132. HADOOP-1635. Remove hardcoded keypair name and fix launch-hadoop-cluster
  1846. to support later versions of ec2-api-tools. (Stu Hood via tomwhite)
  1847. 133. HADOOP-1638. Fix contrib EC2 scripts to support NAT addressing.
  1848. (Stu Hood via tomwhite)
  1849. 134. HADOOP-1632. Fix an IllegalArgumentException in fsck.
  1850. (Hairong Kuang via cutting)
  1851. 135. HADOOP-1619. Fix FSInputChecker to not attempt to read past EOF.
  1852. (Hairong Kuang via cutting)
  1853. 136. HADOOP-1640. Fix TestDecommission on Windows.
  1854. (Dhruba Borthakur via cutting)
  1855. 137. HADOOP-1587. Fix TestSymLink to get required system properties.
  1856. (Devaraj Das via omalley)
  1857. 138. HADOOP-1628. Add block CRC protocol unit tests. (Raghu Angadi via omalley)
  1858. 139. HADOOP-1653. FSDirectory code-cleanups. FSDirectory.INode
  1859. becomes a static class. (Christophe Taton via dhruba)
  1860. 140. HADOOP-1066. Restructure documentation to make more user
  1861. friendly. (Connie Kleinjans and Jeff Hammerbacher via cutting)
  1862. 141. HADOOP-1551. libhdfs supports setting replication factor and
  1863. retrieving modification time of files. (Sameer Paranjpye via dhruba)
  1864. 141. HADOOP-1647. FileSystem.getFileStatus returns valid values for "/".
  1865. (Dhruba Borthakur via dhruba)
  1866. 142. HADOOP-1657. Fix NNBench to ensure that the block size is a
  1867. multiple of bytes.per.checksum. (Raghu Angadi via dhruba)
  1868. 143. HADOOP-1553. Replace user task output and log capture code to use shell
  1869. redirection instead of copier threads in the TaskTracker. Capping the
  1870. size of the output is now done via tail in memory and thus should not be
  1871. large. The output of the tasklog servlet is not forced into UTF8 and is
  1872. not buffered entirely in memory. (omalley)
  1873. Configuration changes to hadoop-default.xml:
  1874. remove mapred.userlog.num.splits
  1875. remove mapred.userlog.purge.splits
  1876. change default mapred.userlog.limit.kb to 0 (no limit)
  1877. change default mapred.userlog.retain.hours to 24
  1878. Configuration changes to log4j.properties:
  1879. remove log4j.appender.TLA.noKeepSplits
  1880. remove log4j.appender.TLA.purgeLogSplits
  1881. remove log4j.appender.TLA.logsRetainHours
  1882. URL changes:
  1883. http://<tasktracker>/tasklog.jsp -> http://<tasktracker>tasklog with
  1884. parameters limited to start and end, which may be positive (from
  1885. start) or negative (from end).
  1886. Environment:
  1887. require bash (v2 or later) and tail
  1888. 144. HADOOP-1659. Fix a job id/job name mixup. (Arun C. Murthy via omalley)
  1889. 145. HADOOP-1665. With HDFS Trash enabled and the same file was created
  1890. and deleted more than once, the suceeding deletions creates Trash item
  1891. names suffixed with a integer. (Dhruba Borthakur via dhruba)
  1892. 146. HADOOP-1666. FsShell object can be used for multiple fs commands.
  1893. (Dhruba Borthakur via dhruba)
  1894. 147. HADOOP-1654. Remove performance regression introduced by Block CRC.
  1895. (Raghu Angadi via dhruba)
  1896. 148. HADOOP-1680. Improvements to Block CRC upgrade messages.
  1897. (Raghu Angadi via dhruba)
  1898. 149. HADOOP-71. Allow Text and SequenceFile Map/Reduce inputs from non-default
  1899. filesystems. (omalley)
  1900. 150. HADOOP-1568. Expose HDFS as xml/http filesystem to provide cross-version
  1901. compatability. (Chris Douglas via omalley)
  1902. 151. HADOOP-1668. Added an INCOMPATIBILITY section to CHANGES.txt. (nigel)
  1903. 152. HADOOP-1629. Added a upgrade test for HADOOP-1134.
  1904. (Raghu Angadi via nigel)
  1905. 153. HADOOP-1698. Fix performance problems on map output sorting for jobs
  1906. with large numbers of reduces. (Devaraj Das via omalley)
  1907. 154. HADOOP-1716. Fix a Pipes wordcount example to remove the 'file:'
  1908. schema from its output path. (omalley via cutting)
  1909. 155. HADOOP-1714. Fix TestDFSUpgradeFromImage to work on Windows.
  1910. (Raghu Angadi via nigel)
  1911. 156. HADOOP-1663. Return a non-zero exit code if streaming fails. (Lohit Renu
  1912. via omalley)
  1913. 157. HADOOP-1712. Fix an unhandled exception on datanode during block
  1914. CRC upgrade. (Raghu Angadi via cutting)
  1915. 158. HADOOP-1717. Fix TestDFSUpgradeFromImage to work on Solaris.
  1916. (nigel via cutting)
  1917. 159. HADOOP-1437. Add Eclipse plugin in contrib.
  1918. (Eugene Hung and Christophe Taton via cutting)
  1919. Release 0.13.0 - 2007-06-08
  1920. 1. HADOOP-1047. Fix TestReplication to succeed more reliably.
  1921. (Hairong Kuang via cutting)
  1922. 2. HADOOP-1063. Fix a race condition in MiniDFSCluster test code.
  1923. (Hairong Kuang via cutting)
  1924. 3. HADOOP-1101. In web ui, split shuffle statistics from reduce
  1925. statistics, and add some task averages. (Devaraj Das via cutting)
  1926. 4. HADOOP-1071. Improve handling of protocol version mismatch in
  1927. JobTracker. (Tahir Hashmi via cutting)
  1928. 5. HADOOP-1116. Increase heap size used for contrib unit tests.
  1929. (Philippe Gassmann via cutting)
  1930. 6. HADOOP-1120. Add contrib/data_join, tools to simplify joining
  1931. data from multiple sources using MapReduce. (Runping Qi via cutting)
  1932. 7. HADOOP-1064. Reduce log level of some DFSClient messages.
  1933. (Dhruba Borthakur via cutting)
  1934. 8. HADOOP-1137. Fix StatusHttpServer to work correctly when
  1935. resources are in a jar file. (Benjamin Reed via cutting)
  1936. 9. HADOOP-1094. Optimize generated Writable implementations for
  1937. records to not allocate a new BinaryOutputArchive or
  1938. BinaryInputArchive per call. (Milind Bhandarkar via cutting)
  1939. 10. HADOOP-1068. Improve error message for clusters with 0 datanodes.
  1940. (Dhruba Borthakur via tomwhite)
  1941. 11. HADOOP-1122. Fix divide-by-zero exception in FSNamesystem
  1942. chooseTarget method. (Dhruba Borthakur via tomwhite)
  1943. 12. HADOOP-1131. Add a closeAll() static method to FileSystem.
  1944. (Philippe Gassmann via tomwhite)
  1945. 13. HADOOP-1085. Improve port selection in HDFS and MapReduce test
  1946. code. Ports are now selected by the OS during testing rather than
  1947. by probing for free ports, improving test reliability.
  1948. (Arun C Murthy via cutting)
  1949. 14. HADOOP-1153. Fix HDFS daemons to correctly stop their threads.
  1950. (Konstantin Shvachko via cutting)
  1951. 15. HADOOP-1146. Add a counter for reduce input keys and rename the
  1952. "reduce input records" counter to be "reduce input groups".
  1953. (David Bowen via cutting)
  1954. 16. HADOOP-1165. In records, replace idential generated toString
  1955. methods with a method on the base class. (Milind Bhandarkar via cutting)
  1956. 17. HADOOP-1164. Fix TestReplicationPolicy to specify port zero, so
  1957. that a free port is automatically selected. (omalley via cutting)
  1958. 18. HADOOP-1166. Add a NullOutputFormat and use it in the
  1959. RandomWriter example. (omalley via cutting)
  1960. 19. HADOOP-1169. Fix a cut/paste error in CopyFiles utility so that
  1961. S3-based source files are correctly copied. (Michael Stack via cutting)
  1962. 20. HADOOP-1167. Remove extra synchronization in InMemoryFileSystem.
  1963. (omalley via cutting)
  1964. 21. HADOOP-1110. Fix an off-by-one error counting map inputs.
  1965. (David Bowen via cutting)
  1966. 22. HADOOP-1178. Fix a NullPointerException during namenode startup.
  1967. (Dhruba Borthakur via cutting)
  1968. 23. HADOOP-1011. Fix a ConcurrentModificationException when viewing
  1969. job history. (Tahir Hashmi via cutting)
  1970. 24. HADOOP-672. Improve help for fs shell commands.
  1971. (Dhruba Borthakur via cutting)
  1972. 25. HADOOP-1170. Improve datanode performance by removing device
  1973. checks from common operations. (Igor Bolotin via cutting)
  1974. 26. HADOOP-1090. Fix SortValidator's detection of whether the input
  1975. file belongs to the sort-input or sort-output directory.
  1976. (Arun C Murthy via tomwhite)
  1977. 27. HADOOP-1081. Fix bin/hadoop on Darwin. (Michael Bieniosek via cutting)
  1978. 28. HADOOP-1045. Add contrib/hbase, a BigTable-like online database.
  1979. (Jim Kellerman via cutting)
  1980. 29. HADOOP-1156. Fix a NullPointerException in MiniDFSCluster.
  1981. (Hairong Kuang via cutting)
  1982. 30. HADOOP-702. Add tools to help automate HDFS upgrades.
  1983. (Konstantin Shvachko via cutting)
  1984. 31. HADOOP-1163. Fix ganglia metrics to aggregate metrics from different
  1985. hosts properly. (Michael Bieniosek via tomwhite)
  1986. 32. HADOOP-1194. Make compression style record level for map output
  1987. compression. (Arun C Murthy via tomwhite)
  1988. 33. HADOOP-1187. Improve DFS Scalability: avoid scanning entire list of
  1989. datanodes in getAdditionalBlocks. (Dhruba Borthakur via tomwhite)
  1990. 34. HADOOP-1133. Add tool to analyze and debug namenode on a production
  1991. cluster. (Dhruba Borthakur via tomwhite)
  1992. 35. HADOOP-1151. Remove spurious printing to stderr in streaming
  1993. PipeMapRed. (Koji Noguchi via tomwhite)
  1994. 36. HADOOP-988. Change namenode to use a single map of blocks to metadata.
  1995. (Raghu Angadi via tomwhite)
  1996. 37. HADOOP-1203. Change UpgradeUtilities used by DFS tests to use
  1997. MiniDFSCluster to start and stop NameNode/DataNodes.
  1998. (Nigel Daley via tomwhite)
  1999. 38. HADOOP-1217. Add test.timeout property to build.xml, so that
  2000. long-running unit tests may be automatically terminated.
  2001. (Nigel Daley via cutting)
  2002. 39. HADOOP-1149. Improve DFS Scalability: make
  2003. processOverReplicatedBlock() a no-op if blocks are not
  2004. over-replicated. (Raghu Angadi via tomwhite)
  2005. 40. HADOOP-1149. Improve DFS Scalability: optimize getDistance(),
  2006. contains(), and isOnSameRack() in NetworkTopology.
  2007. (Hairong Kuang via tomwhite)
  2008. 41. HADOOP-1218. Make synchronization on TaskTracker's RunningJob
  2009. object consistent. (Devaraj Das via tomwhite)
  2010. 42. HADOOP-1219. Ignore progress report once a task has reported as
  2011. 'done'. (Devaraj Das via tomwhite)
  2012. 43. HADOOP-1114. Permit user to specify additional CLASSPATH elements
  2013. with a HADOOP_CLASSPATH environment variable. (cutting)
  2014. 44. HADOOP-1198. Remove ipc.client.timeout parameter override from
  2015. unit test configuration. Using the default is more robust and
  2016. has almost the same run time. (Arun C Murthy via tomwhite)
  2017. 45. HADOOP-1211. Remove deprecated constructor and unused static
  2018. members in DataNode class. (Konstantin Shvachko via tomwhite)
  2019. 46. HADOOP-1136. Fix ArrayIndexOutOfBoundsException in
  2020. FSNamesystem$UnderReplicatedBlocks add() method.
  2021. (Hairong Kuang via tomwhite)
  2022. 47. HADOOP-978. Add the client name and the address of the node that
  2023. previously started to create the file to the description of
  2024. AlreadyBeingCreatedException. (Konstantin Shvachko via tomwhite)
  2025. 48. HADOOP-1001. Check the type of keys and values generated by the
  2026. mapper against the types specified in JobConf.
  2027. (Tahir Hashmi via tomwhite)
  2028. 49. HADOOP-971. Improve DFS Scalability: Improve name node performance
  2029. by adding a hostname to datanodes map. (Hairong Kuang via tomwhite)
  2030. 50. HADOOP-1189. Fix 'No space left on device' exceptions on datanodes.
  2031. (Raghu Angadi via tomwhite)
  2032. 51. HADOOP-819. Change LineRecordWriter to not insert a tab between
  2033. key and value when either is null, and to print nothing when both
  2034. are null. (Runping Qi via cutting)
  2035. 52. HADOOP-1204. Rename InputFormatBase to be FileInputFormat, and
  2036. deprecate InputFormatBase. Also make LineRecordReader easier to
  2037. extend. (Runping Qi via cutting)
  2038. 53. HADOOP-1213. Improve logging of errors by IPC server, to
  2039. consistently include the service name and the call. (cutting)
  2040. 54. HADOOP-1238. Fix metrics reporting by TaskTracker to correctly
  2041. track maps_running and reduces_running.
  2042. (Michael Bieniosek via cutting)
  2043. 55. HADOOP-1093. Fix a race condition in HDFS where blocks were
  2044. sometimes erased before they were reported written.
  2045. (Dhruba Borthakur via cutting)
  2046. 56. HADOOP-1239. Add a package name to some testjar test classes.
  2047. (Jim Kellerman via cutting)
  2048. 57. HADOOP-1241. Fix NullPointerException in processReport when
  2049. namenode is restarted. (Dhruba Borthakur via tomwhite)
  2050. 58. HADOOP-1244. Fix stop-dfs.sh to no longer incorrectly specify
  2051. slaves file for stopping datanode.
  2052. (Michael Bieniosek via tomwhite)
  2053. 59. HADOOP-1253. Fix ConcurrentModificationException and
  2054. NullPointerException in JobControl.
  2055. (Johan Oskarson via tomwhite)
  2056. 60. HADOOP-1256. Fix NameNode so that multiple DataNodeDescriptors
  2057. can no longer be created on startup. (Hairong Kuang via cutting)
  2058. 61. HADOOP-1214. Replace streaming classes with new counterparts
  2059. from Hadoop core. (Runping Qi via tomwhite)
  2060. 62. HADOOP-1250. Move a chmod utility from streaming to FileUtil.
  2061. (omalley via cutting)
  2062. 63. HADOOP-1258. Fix TestCheckpoint test case to wait for
  2063. MiniDFSCluster to be active. (Nigel Daley via tomwhite)
  2064. 64. HADOOP-1148. Re-indent all Java source code to consistently use
  2065. two spaces per indent level. (cutting)
  2066. 65. HADOOP-1251. Add a method to Reporter to get the map InputSplit.
  2067. (omalley via cutting)
  2068. 66. HADOOP-1224. Fix "Browse the filesystem" link to no longer point
  2069. to dead datanodes. (Enis Soztutar via tomwhite)
  2070. 67. HADOOP-1154. Fail a streaming task if the threads reading from or
  2071. writing to the streaming process fail. (Koji Noguchi via tomwhite)
  2072. 68. HADOOP-968. Move shuffle and sort to run in reduce's child JVM,
  2073. rather than in TaskTracker. (Devaraj Das via cutting)
  2074. 69. HADOOP-1111. Add support for client notification of job
  2075. completion. If the job configuration has a job.end.notification.url
  2076. property it will make a HTTP GET request to the specified URL.
  2077. The number of retries and the interval between retries is also
  2078. configurable. (Alejandro Abdelnur via tomwhite)
  2079. 70. HADOOP-1275. Fix misspelled job notification property in
  2080. hadoop-default.xml. (Alejandro Abdelnur via tomwhite)
  2081. 71. HADOOP-1152. Fix race condition in MapOutputCopier.copyOutput file
  2082. rename causing possible reduce task hang.
  2083. (Tahir Hashmi via tomwhite)
  2084. 72. HADOOP-1050. Distinguish between failed and killed tasks so as to
  2085. not count a lost tasktracker against the job.
  2086. (Arun C Murthy via tomwhite)
  2087. 73. HADOOP-1271. Fix StreamBaseRecordReader to be able to log record
  2088. data that's not UTF-8. (Arun C Murthy via tomwhite)
  2089. 74. HADOOP-1190. Fix unchecked warnings in main Hadoop code.
  2090. (tomwhite)
  2091. 75. HADOOP-1127. Fix AlreadyBeingCreatedException in namenode for
  2092. jobs run with speculative execution.
  2093. (Arun C Murthy via tomwhite)
  2094. 76. HADOOP-1282. Omnibus HBase patch. Improved tests & configuration.
  2095. (Jim Kellerman via cutting)
  2096. 77. HADOOP-1262. Make dfs client try to read from a different replica
  2097. of the checksum file when a checksum error is detected.
  2098. (Hairong Kuang via tomwhite)
  2099. 78. HADOOP-1279. Fix JobTracker to maintain list of recently
  2100. completed jobs by order of completion, not submission.
  2101. (Arun C Murthy via cutting)
  2102. 79. HADOOP-1284. In contrib/streaming, permit flexible specification
  2103. of field delimiter and fields for partitioning and sorting.
  2104. (Runping Qi via cutting)
  2105. 80. HADOOP-1176. Fix a bug where reduce would hang when a map had
  2106. more than 2GB of output for it. (Arun C Murthy via cutting)
  2107. 81. HADOOP-1293. Fix contrib/streaming to print more than the first
  2108. twenty lines of standard error. (Koji Noguchi via cutting)
  2109. 82. HADOOP-1297. Fix datanode so that requests to remove blocks that
  2110. do not exist no longer causes block reports to be re-sent every
  2111. second. (Dhruba Borthakur via cutting)
  2112. 83. HADOOP-1216. Change MapReduce so that, when numReduceTasks is
  2113. zero, map outputs are written directly as final output, skipping
  2114. shuffle, sort and reduce. Use this to implement reduce=NONE
  2115. option in contrib/streaming. (Runping Qi via cutting)
  2116. 84. HADOOP-1294. Fix unchecked warnings in main Hadoop code under
  2117. Java 6. (tomwhite)
  2118. 85. HADOOP-1299. Fix so that RPC will restart after RPC.stopClient()
  2119. has been called. (Michael Stack via cutting)
  2120. 86. HADOOP-1278. Improve blacklisting of TaskTrackers by JobTracker,
  2121. to reduce false positives. (Arun C Murthy via cutting)
  2122. 87. HADOOP-1290. Move contrib/abacus into mapred/lib/aggregate.
  2123. (Runping Qi via cutting)
  2124. 88. HADOOP-1272. Extract inner classes from FSNamesystem into separate
  2125. classes. (Dhruba Borthakur via tomwhite)
  2126. 89. HADOOP-1247. Add support to contrib/streaming for aggregate
  2127. package, formerly called Abacus. (Runping Qi via cutting)
  2128. 90. HADOOP-1061. Fix bug in listing files in the S3 filesystem.
  2129. NOTE: this change is not backwards compatible! You should use the
  2130. MigrationTool supplied to migrate existing S3 filesystem data to
  2131. the new format. Please backup your data first before upgrading
  2132. (using 'hadoop distcp' for example). (tomwhite)
  2133. 91. HADOOP-1304. Make configurable the maximum number of task
  2134. attempts before a job fails. (Devaraj Das via cutting)
  2135. 92. HADOOP-1308. Use generics to restrict types when classes are
  2136. passed as parameters to JobConf methods. (Michael Bieniosek via cutting)
  2137. 93. HADOOP-1312. Fix a ConcurrentModificationException in NameNode
  2138. that killed the heartbeat monitoring thread.
  2139. (Dhruba Borthakur via cutting)
  2140. 94. HADOOP-1315. Clean up contrib/streaming, switching it to use core
  2141. classes more and removing unused code. (Runping Qi via cutting)
  2142. 95. HADOOP-485. Allow a different comparator for grouping keys in
  2143. calls to reduce. (Tahir Hashmi via cutting)
  2144. 96. HADOOP-1322. Fix TaskTracker blacklisting to work correctly in
  2145. one- and two-node clusters. (Arun C Murthy via cutting)
  2146. 97. HADOOP-1144. Permit one to specify a maximum percentage of tasks
  2147. that can fail before a job is aborted. The default is zero.
  2148. (Arun C Murthy via cutting)
  2149. 98. HADOOP-1184. Fix HDFS decomissioning to complete when the only
  2150. copy of a block is on a decommissioned node. (Dhruba Borthakur via cutting)
  2151. 99. HADOOP-1263. Change DFSClient to retry certain namenode calls
  2152. with a random, exponentially increasing backoff time, to avoid
  2153. overloading the namenode on, e.g., job start. (Hairong Kuang via cutting)
  2154. 100. HADOOP-1325. First complete, functioning version of HBase.
  2155. (Jim Kellerman via cutting)
  2156. 101. HADOOP-1276. Make tasktracker expiry interval configurable.
  2157. (Arun C Murthy via cutting)
  2158. 102. HADOOP-1326. Change JobClient#RunJob() to return the job.
  2159. (omalley via cutting)
  2160. 103. HADOOP-1270. Randomize the fetch of map outputs, speeding the
  2161. shuffle. (Arun C Murthy via cutting)
  2162. 104. HADOOP-1200. Restore disk checking lost in HADOOP-1170.
  2163. (Hairong Kuang via cutting)
  2164. 105. HADOOP-1252. Changed MapReduce's allocation of local files to
  2165. use round-robin among available devices, rather than a hashcode.
  2166. More care is also taken to not allocate files on full or offline
  2167. drives. (Devaraj Das via cutting)
  2168. 106. HADOOP-1324. Change so that an FSError kills only the task that
  2169. generates it rather than the entire task tracker.
  2170. (Arun C Murthy via cutting)
  2171. 107. HADOOP-1310. Fix unchecked warnings in aggregate code. (tomwhite)
  2172. 108. HADOOP-1255. Fix a bug where the namenode falls into an infinite
  2173. loop trying to remove a dead node. (Hairong Kuang via cutting)
  2174. 109. HADOOP-1160. Fix DistributedFileSystem.close() to close the
  2175. underlying FileSystem, correctly aborting files being written.
  2176. (Hairong Kuang via cutting)
  2177. 110. HADOOP-1341. Fix intermittent failures in HBase unit tests
  2178. caused by deadlock. (Jim Kellerman via cutting)
  2179. 111. HADOOP-1350. Fix shuffle performance problem caused by forcing
  2180. chunked encoding of map outputs. (Devaraj Das via cutting)
  2181. 112. HADOOP-1345. Fix HDFS to correctly retry another replica when a
  2182. checksum error is encountered. (Hairong Kuang via cutting)
  2183. 113. HADOOP-1205. Improve synchronization around HDFS block map.
  2184. (Hairong Kuang via cutting)
  2185. 114. HADOOP-1353. Fix a potential NullPointerException in namenode.
  2186. (Dhruba Borthakur via cutting)
  2187. 115. HADOOP-1354. Fix a potential NullPointerException in FsShell.
  2188. (Hairong Kuang via cutting)
  2189. 116. HADOOP-1358. Fix a potential bug when DFSClient calls skipBytes.
  2190. (Hairong Kuang via cutting)
  2191. 117. HADOOP-1356. Fix a bug in ValueHistogram. (Runping Qi via cutting)
  2192. 118. HADOOP-1363. Fix locking bug in JobClient#waitForCompletion().
  2193. (omalley via cutting)
  2194. 119. HADOOP-1368. Fix inconsistent synchronization in JobInProgress.
  2195. (omalley via cutting)
  2196. 120. HADOOP-1369. Fix inconsistent synchronization in TaskTracker.
  2197. (omalley via cutting)
  2198. 121. HADOOP-1361. Fix various calls to skipBytes() to check return
  2199. value. (Hairong Kuang via cutting)
  2200. 122. HADOOP-1388. Fix a potential NullPointerException in web ui.
  2201. (Devaraj Das via cutting)
  2202. 123. HADOOP-1385. Fix MD5Hash#hashCode() to generally hash to more
  2203. than 256 values. (omalley via cutting)
  2204. 124. HADOOP-1386. Fix Path to not permit the empty string as a
  2205. path, as this has lead to accidental file deletion. Instead
  2206. force applications to use "." to name the default directory.
  2207. (Hairong Kuang via cutting)
  2208. 125. HADOOP-1407. Fix integer division bug in JobInProgress which
  2209. meant failed tasks didn't cause the job to fail.
  2210. (Arun C Murthy via tomwhite)
  2211. 126. HADOOP-1427. Fix a typo that caused GzipCodec to incorrectly use
  2212. a very small input buffer. (Espen Amble Kolstad via cutting)
  2213. 127. HADOOP-1435. Fix globbing code to no longer use the empty string
  2214. to indicate the default directory, per HADOOP-1386.
  2215. (Hairong Kuang via cutting)
  2216. 128. HADOOP-1411. Make task retry framework handle
  2217. AlreadyBeingCreatedException when wrapped as a RemoteException.
  2218. (Hairong Kuang via tomwhite)
  2219. 129. HADOOP-1242. Improve handling of DFS upgrades.
  2220. (Konstantin Shvachko via cutting)
  2221. 130. HADOOP-1332. Fix so that TaskTracker exits reliably during unit
  2222. tests on Windows. (omalley via cutting)
  2223. 131. HADOOP-1431. Fix so that sort progress reporting during map runs
  2224. only while sorting, so that stuck maps are correctly terminated.
  2225. (Devaraj Das and Arun C Murthy via cutting)
  2226. 132. HADOOP-1452. Change TaskTracker.MapOutputServlet.doGet.totalRead
  2227. to a long, permitting map outputs to exceed 2^31 bytes.
  2228. (omalley via cutting)
  2229. 133. HADOOP-1443. Fix a bug opening zero-length files in HDFS.
  2230. (Konstantin Shvachko via cutting)
  2231. Release 0.12.3 - 2007-04-06
  2232. 1. HADOOP-1162. Fix bug in record CSV and XML serialization of
  2233. binary values. (Milind Bhandarkar via cutting)
  2234. 2. HADOOP-1123. Fix NullPointerException in LocalFileSystem when
  2235. trying to recover from a checksum error.
  2236. (Hairong Kuang & Nigel Daley via tomwhite)
  2237. 3. HADOOP-1177. Fix bug where IOException in MapOutputLocation.getFile
  2238. was not being logged. (Devaraj Das via tomwhite)
  2239. 4. HADOOP-1175. Fix bugs in JSP for displaying a task's log messages.
  2240. (Arun C Murthy via cutting)
  2241. 5. HADOOP-1191. Fix map tasks to wait until sort progress thread has
  2242. stopped before reporting the task done. (Devaraj Das via cutting)
  2243. 6. HADOOP-1192. Fix an integer overflow bug in FSShell's 'dus'
  2244. command and a performance problem in HDFS's implementation of it.
  2245. (Hairong Kuang via cutting)
  2246. 7. HADOOP-1105. Fix reducers to make "progress" while iterating
  2247. through values. (Devaraj Das & Owen O'Malley via tomwhite)
  2248. 8. HADOOP-1179. Make Task Tracker close index file as soon as the read
  2249. is done when serving get-map-output requests.
  2250. (Devaraj Das via tomwhite)
  2251. Release 0.12.2 - 2007-23-17
  2252. 1. HADOOP-1135. Fix bug in block report processing which may cause
  2253. the namenode to delete blocks. (Dhruba Borthakur via tomwhite)
  2254. 2. HADOOP-1145. Make XML serializer and deserializer classes public
  2255. in record package. (Milind Bhandarkar via cutting)
  2256. 3. HADOOP-1140. Fix a deadlock in metrics. (David Bowen via cutting)
  2257. 4. HADOOP-1150. Fix streaming -reducer and -mapper to give them
  2258. defaults. (Owen O'Malley via tomwhite)
  2259. Release 0.12.1 - 2007-03-17
  2260. 1. HADOOP-1035. Fix a StackOverflowError in FSDataSet.
  2261. (Raghu Angadi via cutting)
  2262. 2. HADOOP-1053. Fix VInt representation of negative values. Also
  2263. remove references in generated record code to methods outside of
  2264. the record package and improve some record documentation.
  2265. (Milind Bhandarkar via cutting)
  2266. 3. HADOOP-1067. Compile fails if Checkstyle jar is present in lib
  2267. directory. Also remove dependency on a particular Checkstyle
  2268. version number. (tomwhite)
  2269. 4. HADOOP-1060. Fix an IndexOutOfBoundsException in the JobTracker
  2270. that could cause jobs to hang. (Arun C Murthy via cutting)
  2271. 5. HADOOP-1077. Fix a race condition fetching map outputs that could
  2272. hang reduces. (Devaraj Das via cutting)
  2273. 6. HADOOP-1083. Fix so that when a cluster restarts with a missing
  2274. datanode, its blocks are replicated. (Hairong Kuang via cutting)
  2275. 7. HADOOP-1082. Fix a NullPointerException in ChecksumFileSystem.
  2276. (Hairong Kuang via cutting)
  2277. 8. HADOOP-1088. Fix record serialization of negative values.
  2278. (Milind Bhandarkar via cutting)
  2279. 9. HADOOP-1080. Fix bug in bin/hadoop on Windows when native
  2280. libraries are present. (ab via cutting)
  2281. 10. HADOOP-1091. Fix a NullPointerException in MetricsRecord.
  2282. (David Bowen via tomwhite)
  2283. 11. HADOOP-1092. Fix a NullPointerException in HeartbeatMonitor
  2284. thread. (Hairong Kuang via tomwhite)
  2285. 12. HADOOP-1112. Fix a race condition in Hadoop metrics.
  2286. (David Bowen via tomwhite)
  2287. 13. HADOOP-1108. Checksummed file system should retry reading if a
  2288. different replica is found when handling ChecksumException.
  2289. (Hairong Kuang via tomwhite)
  2290. 14. HADOOP-1070. Fix a problem with number of racks and datanodes
  2291. temporarily doubling. (Konstantin Shvachko via tomwhite)
  2292. 15. HADOOP-1099. Fix NullPointerException in JobInProgress.
  2293. (Gautam Kowshik via tomwhite)
  2294. 16. HADOOP-1115. Fix bug where FsShell copyToLocal doesn't
  2295. copy directories. (Hairong Kuang via tomwhite)
  2296. 17. HADOOP-1109. Fix NullPointerException in StreamInputFormat.
  2297. (Koji Noguchi via tomwhite)
  2298. 18. HADOOP-1117. Fix DFS scalability: when the namenode is
  2299. restarted it consumes 80% CPU. (Dhruba Borthakur via
  2300. tomwhite)
  2301. 19. HADOOP-1089. Make the C++ version of write and read v-int
  2302. agree with the Java versions. (Milind Bhandarkar via
  2303. tomwhite)
  2304. 20. HADOOP-1096. Rename InputArchive and OutputArchive and
  2305. make them public. (Milind Bhandarkar via tomwhite)
  2306. 21. HADOOP-1128. Fix missing progress information in map tasks.
  2307. (Espen Amble Kolstad, Andrzej Bialecki, and Owen O'Malley
  2308. via tomwhite)
  2309. 22. HADOOP-1129. Fix DFSClient to not hide IOExceptions in
  2310. flush method. (Hairong Kuang via tomwhite)
  2311. 23. HADOOP-1126. Optimize CPU usage for under replicated blocks
  2312. when cluster restarts. (Hairong Kuang via tomwhite)
  2313. Release 0.12.0 - 2007-03-02
  2314. 1. HADOOP-975. Separate stdout and stderr from tasks.
  2315. (Arun C Murthy via cutting)
  2316. 2. HADOOP-982. Add some setters and a toString() method to
  2317. BytesWritable. (omalley via cutting)
  2318. 3. HADOOP-858. Move contrib/smallJobsBenchmark to src/test, removing
  2319. obsolete bits. (Nigel Daley via cutting)
  2320. 4. HADOOP-992. Fix MiniMR unit tests to use MiniDFS when specified,
  2321. rather than the local FS. (omalley via cutting)
  2322. 5. HADOOP-954. Change use of metrics to use callback mechanism.
  2323. Also rename utility class Metrics to MetricsUtil.
  2324. (David Bowen & Nigel Daley via cutting)
  2325. 6. HADOOP-893. Improve HDFS client's handling of dead datanodes.
  2326. The set is no longer reset with each block, but rather is now
  2327. maintained for the life of an open file. (Raghu Angadi via cutting)
  2328. 7. HADOOP-882. Upgrade to jets3t version 0.5, used by the S3
  2329. FileSystem. This version supports retries. (Michael Stack via cutting)
  2330. 8. HADOOP-977. Send task's stdout and stderr to JobClient's stdout
  2331. and stderr respectively, with each line tagged by the task's name.
  2332. (Arun C Murthy via cutting)
  2333. 9. HADOOP-761. Change unit tests to not use /tmp. (Nigel Daley via cutting)
  2334. 10. HADOOP-1007. Make names of metrics used in Hadoop unique.
  2335. (Nigel Daley via cutting)
  2336. 11. HADOOP-491. Change mapred.task.timeout to be per-job, and make a
  2337. value of zero mean no timeout. Also change contrib/streaming to
  2338. disable task timeouts. (Arun C Murthy via cutting)
  2339. 12. HADOOP-1010. Add Reporter.NULL, a Reporter implementation that
  2340. does nothing. (Runping Qi via cutting)
  2341. 13. HADOOP-923. In HDFS NameNode, move replication computation to a
  2342. separate thread, to improve heartbeat processing time.
  2343. (Dhruba Borthakur via cutting)
  2344. 14. HADOOP-476. Rewrite contrib/streaming command-line processing,
  2345. improving parameter validation. (Sanjay Dahiya via cutting)
  2346. 15. HADOOP-973. Improve error messages in Namenode. This should help
  2347. to track down a problem that was appearing as a
  2348. NullPointerException. (Dhruba Borthakur via cutting)
  2349. 16. HADOOP-649. Fix so that jobs with no tasks are not lost.
  2350. (Thomas Friol via cutting)
  2351. 17. HADOOP-803. Reduce memory use by HDFS namenode, phase I.
  2352. (Raghu Angadi via cutting)
  2353. 18. HADOOP-1021. Fix MRCaching-based unit tests on Windows.
  2354. (Nigel Daley via cutting)
  2355. 19. HADOOP-889. Remove duplicate code from HDFS unit tests.
  2356. (Milind Bhandarkar via cutting)
  2357. 20. HADOOP-943. Improve HDFS's fsck command to display the filename
  2358. for under-replicated blocks. (Dhruba Borthakur via cutting)
  2359. 21. HADOOP-333. Add validator for sort benchmark output.
  2360. (Arun C Murthy via cutting)
  2361. 22. HADOOP-947. Improve performance of datanode decomissioning.
  2362. (Dhruba Borthakur via cutting)
  2363. 23. HADOOP-442. Permit one to specify hosts allowed to connect to
  2364. namenode and jobtracker with include and exclude files. (Wendy
  2365. Chien via cutting)
  2366. 24. HADOOP-1017. Cache constructors, for improved performance.
  2367. (Ron Bodkin via cutting)
  2368. 25. HADOOP-867. Move split creation out of JobTracker to client.
  2369. Splits are now saved in a separate file, read by task processes
  2370. directly, so that user code is no longer required in the
  2371. JobTracker. (omalley via cutting)
  2372. 26. HADOOP-1006. Remove obsolete '-local' option from test code.
  2373. (Gautam Kowshik via cutting)
  2374. 27. HADOOP-952. Create a public (shared) Hadoop EC2 AMI.
  2375. The EC2 scripts now support launch of public AMIs.
  2376. (tomwhite)
  2377. 28. HADOOP-1025. Remove some obsolete code in ipc.Server. (cutting)
  2378. 29. HADOOP-997. Implement S3 retry mechanism for failed block
  2379. transfers. This includes a generic retry mechanism for use
  2380. elsewhere in Hadoop. (tomwhite)
  2381. 30. HADOOP-990. Improve HDFS support for full datanode volumes.
  2382. (Raghu Angadi via cutting)
  2383. 31. HADOOP-564. Replace uses of "dfs://" URIs with the more standard
  2384. "hdfs://". (Wendy Chien via cutting)
  2385. 32. HADOOP-1030. In unit tests, unify setting of ipc.client.timeout.
  2386. Also increase the value used from one to two seconds, in hopes of
  2387. making tests complete more reliably. (cutting)
  2388. 33. HADOOP-654. Stop assigning tasks to a tasktracker if it has
  2389. failed more than a specified number in the job.
  2390. (Arun C Murthy via cutting)
  2391. 34. HADOOP-985. Change HDFS to identify nodes by IP address rather
  2392. than by DNS hostname. (Raghu Angadi via cutting)
  2393. 35. HADOOP-248. Optimize location of map outputs to not use random
  2394. probes. (Devaraj Das via cutting)
  2395. 36. HADOOP-1029. Fix streaming's input format to correctly seek to
  2396. the start of splits. (Arun C Murthy via cutting)
  2397. 37. HADOOP-492. Add per-job and per-task counters. These are
  2398. incremented via the Reporter interface and available through the
  2399. web ui and the JobClient API. The mapreduce framework maintains a
  2400. few basic counters, and applications may add their own. Counters
  2401. are also passed to the metrics system.
  2402. (David Bowen via cutting)
  2403. 38. HADOOP-1034. Fix datanode to better log exceptions.
  2404. (Philippe Gassmann via cutting)
  2405. 39. HADOOP-878. In contrib/streaming, fix reducer=NONE to work with
  2406. multiple maps. (Arun C Murthy via cutting)
  2407. 40. HADOOP-1039. In HDFS's TestCheckpoint, avoid restarting
  2408. MiniDFSCluster so often, speeding this test. (Dhruba Borthakur via cutting)
  2409. 41. HADOOP-1040. Update RandomWriter example to use counters and
  2410. user-defined input and output formats. (omalley via cutting)
  2411. 42. HADOOP-1027. Fix problems with in-memory merging during shuffle
  2412. and re-enable this optimization. (Devaraj Das via cutting)
  2413. 43. HADOOP-1036. Fix exception handling in TaskTracker to keep tasks
  2414. from being lost. (Arun C Murthy via cutting)
  2415. 44. HADOOP-1042. Improve the handling of failed map output fetches.
  2416. (Devaraj Das via cutting)
  2417. 45. HADOOP-928. Make checksums optional per FileSystem.
  2418. (Hairong Kuang via cutting)
  2419. 46. HADOOP-1044. Fix HDFS's TestDecommission to not spuriously fail.
  2420. (Wendy Chien via cutting)
  2421. 47. HADOOP-972. Optimize HDFS's rack-aware block placement algorithm.
  2422. (Hairong Kuang via cutting)
  2423. 48. HADOOP-1043. Optimize shuffle, increasing parallelism.
  2424. (Devaraj Das via cutting)
  2425. 49. HADOOP-940. Improve HDFS's replication scheduling.
  2426. (Dhruba Borthakur via cutting)
  2427. 50. HADOOP-1020. Fix a bug in Path resolution, and a with unit tests
  2428. on Windows. (cutting)
  2429. 51. HADOOP-941. Enhance record facility.
  2430. (Milind Bhandarkar via cutting)
  2431. 52. HADOOP-1000. Fix so that log messages in task subprocesses are
  2432. not written to a task's standard error. (Arun C Murthy via cutting)
  2433. 53. HADOOP-1037. Fix bin/slaves.sh, which currently only works with
  2434. /bin/bash, to specify /bin/bash rather than /bin/sh. (cutting)
  2435. 54. HADOOP-1046. Clean up tmp from partially received stale block files. (ab)
  2436. 55. HADOOP-1041. Optimize mapred counter implementation. Also group
  2437. counters by their declaring Enum. (David Bowen via cutting)
  2438. 56. HADOOP-1032. Permit one to specify jars that will be cached
  2439. across multiple jobs. (Gautam Kowshik via cutting)
  2440. 57. HADOOP-1051. Add optional checkstyle task to build.xml. To use
  2441. this developers must download the (LGPL'd) checkstyle jar
  2442. themselves. (tomwhite via cutting)
  2443. 58. HADOOP-1049. Fix a race condition in IPC client.
  2444. (Devaraj Das via cutting)
  2445. 60. HADOOP-1056. Check HDFS include/exclude node lists with both IP
  2446. address and hostname. (Wendy Chien via cutting)
  2447. 61. HADOOP-994. In HDFS, limit the number of blocks invalidated at
  2448. once. Large lists were causing datenodes to timeout.
  2449. (Dhruba Borthakur via cutting)
  2450. 62. HADOOP-432. Add a trash feature, disabled by default. When
  2451. enabled, the FSShell 'rm' command will move things to a trash
  2452. directory in the filesystem. In HDFS, a thread periodically
  2453. checkpoints the trash and removes old checkpoints. (cutting)
  2454. Release 0.11.2 - 2007-02-16
  2455. 1. HADOOP-1009. Fix an infinite loop in the HDFS namenode.
  2456. (Dhruba Borthakur via cutting)
  2457. 2. HADOOP-1014. Disable in-memory merging during shuffle, as this is
  2458. causing data corruption. (Devaraj Das via cutting)
  2459. Release 0.11.1 - 2007-02-09
  2460. 1. HADOOP-976. Make SequenceFile.Metadata public. (Runping Qi via cutting)
  2461. 2. HADOOP-917. Fix a NullPointerException in SequenceFile's merger
  2462. with large map outputs. (omalley via cutting)
  2463. 3. HADOOP-984. Fix a bug in shuffle error handling introduced by
  2464. HADOOP-331. If a map output is unavailable, the job tracker is
  2465. once more informed. (Arun C Murthy via cutting)
  2466. 4. HADOOP-987. Fix a problem in HDFS where blocks were not removed
  2467. from neededReplications after a replication target was selected.
  2468. (Hairong Kuang via cutting)
  2469. Release 0.11.0 - 2007-02-02
  2470. 1. HADOOP-781. Remove methods deprecated in 0.10 that are no longer
  2471. widely used. (cutting)
  2472. 2. HADOOP-842. Change HDFS protocol so that the open() method is
  2473. passed the client hostname, to permit the namenode to order block
  2474. locations on the basis of network topology.
  2475. (Hairong Kuang via cutting)
  2476. 3. HADOOP-852. Add an ant task to compile record definitions, and
  2477. use it to compile record unit tests. (Milind Bhandarkar via cutting)
  2478. 4. HADOOP-757. Fix "Bad File Descriptor" exception in HDFS client
  2479. when an output file is closed twice. (Raghu Angadi via cutting)
  2480. 5. [ intentionally blank ]
  2481. 6. HADOOP-890. Replace dashes in metric names with underscores,
  2482. for better compatibility with some monitoring systems.
  2483. (Nigel Daley via cutting)
  2484. 7. HADOOP-801. Add to jobtracker a log of task completion events.
  2485. (Sanjay Dahiya via cutting)
  2486. 8. HADOOP-855. In HDFS, try to repair files with checksum errors.
  2487. An exception is still thrown, but corrupt blocks are now removed
  2488. when they have replicas. (Wendy Chien via cutting)
  2489. 9. HADOOP-886. Reduce number of timer threads created by metrics API
  2490. by pooling contexts. (Nigel Daley via cutting)
  2491. 10. HADOOP-897. Add a "javac.args" property to build.xml that permits
  2492. one to pass arbitrary options to javac. (Milind Bhandarkar via cutting)
  2493. 11. HADOOP-899. Update libhdfs for changes in HADOOP-871.
  2494. (Sameer Paranjpye via cutting)
  2495. 12. HADOOP-905. Remove some dead code from JobClient. (cutting)
  2496. 13. HADOOP-902. Fix a NullPointerException in HDFS client when
  2497. closing output streams. (Raghu Angadi via cutting)
  2498. 14. HADOOP-735. Switch generated record code to use BytesWritable to
  2499. represent fields of type 'buffer'. (Milind Bhandarkar via cutting)
  2500. 15. HADOOP-830. Improve mapreduce merge performance by buffering and
  2501. merging multiple map outputs as they arrive at reduce nodes before
  2502. they're written to disk. (Devaraj Das via cutting)
  2503. 16. HADOOP-908. Add a new contrib package, Abacus, that simplifies
  2504. counting and aggregation, built on MapReduce. (Runping Qi via cutting)
  2505. 17. HADOOP-901. Add support for recursive renaming to the S3 filesystem.
  2506. (Tom White via cutting)
  2507. 18. HADOOP-912. Fix a bug in TaskTracker.isIdle() that was
  2508. sporadically causing unit test failures. (Arun C Murthy via cutting)
  2509. 19. HADOOP-909. Fix the 'du' command to correctly compute the size of
  2510. FileSystem directory trees. (Hairong Kuang via cutting)
  2511. 20. HADOOP-731. When a checksum error is encountered on a file stored
  2512. in HDFS, try another replica of the data, if any.
  2513. (Wendy Chien via cutting)
  2514. 21. HADOOP-732. Add support to SequenceFile for arbitrary metadata,
  2515. as a set of attribute value pairs. (Runping Qi via cutting)
  2516. 22. HADOOP-929. Fix PhasedFileSystem to pass configuration to
  2517. underlying FileSystem. (Sanjay Dahiya via cutting)
  2518. 23. HADOOP-935. Fix contrib/abacus to not delete pre-existing output
  2519. files, but rather to fail in this case. (Runping Qi via cutting)
  2520. 24. HADOOP-936. More metric renamings, as in HADOOP-890.
  2521. (Nigel Daley via cutting)
  2522. 25. HADOOP-856. Fix HDFS's fsck command to not report that
  2523. non-existent filesystems are healthy. (Milind Bhandarkar via cutting)
  2524. 26. HADOOP-602. Remove the dependency on Lucene's PriorityQueue
  2525. utility, by copying it into Hadoop. This facilitates using Hadoop
  2526. with different versions of Lucene without worrying about CLASSPATH
  2527. order. (Milind Bhandarkar via cutting)
  2528. 27. [ intentionally blank ]
  2529. 28. HADOOP-227. Add support for backup namenodes, which periodically
  2530. get snapshots of the namenode state. (Dhruba Borthakur via cutting)
  2531. 29. HADOOP-884. Add scripts in contrib/ec2 to facilitate running
  2532. Hadoop on an Amazon's EC2 cluster. (Tom White via cutting)
  2533. 30. HADOOP-937. Change the namenode to request re-registration of
  2534. datanodes in more circumstances. (Hairong Kuang via cutting)
  2535. 31. HADOOP-922. Optimize small forward seeks in HDFS. If data is has
  2536. likely already in flight, skip ahead rather than re-opening the
  2537. block. (Dhruba Borthakur via cutting)
  2538. 32. HADOOP-961. Add a 'job -events' sub-command that prints job
  2539. events, including task completions and failures. (omalley via cutting)
  2540. 33. HADOOP-959. Fix namenode snapshot code added in HADOOP-227 to
  2541. work on Windows. (Dhruba Borthakur via cutting)
  2542. 34. HADOOP-934. Fix TaskTracker to catch metrics exceptions that were
  2543. causing heartbeats to fail. (Arun Murthy via cutting)
  2544. 35. HADOOP-881. Fix JobTracker web interface to display the correct
  2545. number of task failures. (Sanjay Dahiya via cutting)
  2546. 36. HADOOP-788. Change contrib/streaming to subclass TextInputFormat,
  2547. permitting it to take advantage of native compression facilities.
  2548. (Sanjay Dahiya via cutting)
  2549. 37. HADOOP-962. In contrib/ec2: make scripts executable in tar file;
  2550. add a README; make the environment file use a template.
  2551. (Tom White via cutting)
  2552. 38. HADOOP-549. Fix a NullPointerException in TaskReport's
  2553. serialization. (omalley via cutting)
  2554. 39. HADOOP-963. Fix remote exceptions to have the stack trace of the
  2555. caller thread, not the IPC listener thread. (omalley via cutting)
  2556. 40. HADOOP-967. Change RPC clients to start sending a version header.
  2557. (omalley via cutting)
  2558. 41. HADOOP-964. Fix a bug introduced by HADOOP-830 where jobs failed
  2559. whose comparators and/or i/o types were in the job's jar.
  2560. (Dennis Kubes via cutting)
  2561. 42. HADOOP-969. Fix a deadlock in JobTracker. (omalley via cutting)
  2562. 43. HADOOP-862. Add support for the S3 FileSystem to the CopyFiles
  2563. tool. (Michael Stack via cutting)
  2564. 44. HADOOP-965. Fix IsolationRunner so that job's jar can be found.
  2565. (Dennis Kubes via cutting)
  2566. 45. HADOOP-309. Fix two NullPointerExceptions in StatusHttpServer.
  2567. (navychen via cutting)
  2568. 46. HADOOP-692. Add rack awareness to HDFS's placement of blocks.
  2569. (Hairong Kuang via cutting)
  2570. Release 0.10.1 - 2007-01-10
  2571. 1. HADOOP-857. Fix S3 FileSystem implementation to permit its use
  2572. for MapReduce input and output. (Tom White via cutting)
  2573. 2. HADOOP-863. Reduce logging verbosity introduced by HADOOP-813.
  2574. (Devaraj Das via cutting)
  2575. 3. HADOOP-815. Fix memory leaks in JobTracker. (Arun C Murthy via cutting)
  2576. 4. HADOOP-600. Fix a race condition in JobTracker.
  2577. (Arun C Murthy via cutting)
  2578. 5. HADOOP-864. Fix 'bin/hadoop -jar' to operate correctly when
  2579. hadoop.tmp.dir does not yet exist. (omalley via cutting)
  2580. 6. HADOOP-866. Fix 'dfs -get' command to remove existing crc files,
  2581. if any. (Milind Bhandarkar via cutting)
  2582. 7. HADOOP-871. Fix a bug in bin/hadoop setting JAVA_LIBRARY_PATH.
  2583. (Arun C Murthy via cutting)
  2584. 8. HADOOP-868. Decrease the number of open files during map,
  2585. respecting io.sort.fa ctor. (Devaraj Das via cutting)
  2586. 9. HADOOP-865. Fix S3 FileSystem so that partially created files can
  2587. be deleted. (Tom White via cutting)
  2588. 10. HADOOP-873. Pass java.library.path correctly to child processes.
  2589. (omalley via cutting)
  2590. 11. HADOOP-851. Add support for the LZO codec. This is much faster
  2591. than the default, zlib-based compression, but it is only available
  2592. when the native library is built. (Arun C Murthy via cutting)
  2593. 12. HADOOP-880. Fix S3 FileSystem to remove directories.
  2594. (Tom White via cutting)
  2595. 13. HADOOP-879. Fix InputFormatBase to handle output generated by
  2596. MapFileOutputFormat. (cutting)
  2597. 14. HADOOP-659. In HDFS, prioritize replication of blocks based on
  2598. current replication level. Blocks which are severely
  2599. under-replicated should be further replicated before blocks which
  2600. are less under-replicated. (Hairong Kuang via cutting)
  2601. 15. HADOOP-726. Deprecate FileSystem locking methods. They are not
  2602. currently usable. Locking should eventually provided as an
  2603. independent service. (Raghu Angadi via cutting)
  2604. 16. HADOOP-758. Fix exception handling during reduce so that root
  2605. exceptions are not masked by exceptions in cleanups.
  2606. (Raghu Angadi via cutting)
  2607. Release 0.10.0 - 2007-01-05
  2608. 1. HADOOP-763. Change DFS namenode benchmark to not use MapReduce.
  2609. (Nigel Daley via cutting)
  2610. 2. HADOOP-777. Use fully-qualified hostnames for tasktrackers and
  2611. datanodes. (Mahadev Konar via cutting)
  2612. 3. HADOOP-621. Change 'dfs -cat' to exit sooner when output has been
  2613. closed. (Dhruba Borthakur via cutting)
  2614. 4. HADOOP-752. Rationalize some synchronization in DFS namenode.
  2615. (Dhruba Borthakur via cutting)
  2616. 5. HADOOP-629. Fix RPC services to better check the protocol name and
  2617. version. (omalley via cutting)
  2618. 6. HADOOP-774. Limit the number of invalid blocks returned with
  2619. heartbeats by the namenode to datanodes. Transmitting and
  2620. processing very large invalid block lists can tie up both the
  2621. namenode and datanode for too long. (Dhruba Borthakur via cutting)
  2622. 7. HADOOP-738. Change 'dfs -get' command to not create CRC files by
  2623. default, adding a -crc option to force their creation.
  2624. (Milind Bhandarkar via cutting)
  2625. 8. HADOOP-676. Improved exceptions and error messages for common job
  2626. input specification errors. (Sanjay Dahiya via cutting)
  2627. 9. [Included in 0.9.2 release]
  2628. 10. HADOOP-756. Add new dfsadmin option to wait for filesystem to be
  2629. operational. (Dhruba Borthakur via cutting)
  2630. 11. HADOOP-770. Fix jobtracker web interface to display, on restart,
  2631. jobs that were running when it was last stopped.
  2632. (Sanjay Dahiya via cutting)
  2633. 12. HADOOP-331. Write all map outputs to a single file with an index,
  2634. rather than to a separate file per reduce task. This should both
  2635. speed the shuffle and make things more scalable.
  2636. (Devaraj Das via cutting)
  2637. 13. HADOOP-818. Fix contrib unit tests to not depend on core unit
  2638. tests. (omalley via cutting)
  2639. 14. HADOOP-786. Log common exception at debug level.
  2640. (Sanjay Dahiya via cutting)
  2641. 15. HADOOP-796. Provide more convenient access to failed task
  2642. information in the web interface. (Sanjay Dahiya via cutting)
  2643. 16. HADOOP-764. Reduce memory allocations in namenode some.
  2644. (Dhruba Borthakur via cutting)
  2645. 17. HADOOP-802. Update description of mapred.speculative.execution to
  2646. mention reduces. (Nigel Daley via cutting)
  2647. 18. HADOOP-806. Include link to datanodes on front page of namenode
  2648. web interface. (Raghu Angadi via cutting)
  2649. 19. HADOOP-618. Make JobSubmissionProtocol public.
  2650. (Arun C Murthy via cutting)
  2651. 20. HADOOP-782. Fully remove killed tasks. (Arun C Murthy via cutting)
  2652. 21. HADOOP-792. Fix 'dfs -mv' to return correct status.
  2653. (Dhruba Borthakur via cutting)
  2654. 22. HADOOP-673. Give each task its own working directory again.
  2655. (Mahadev Konar via cutting)
  2656. 23. HADOOP-571. Extend the syntax of Path to be a URI; to be
  2657. optionally qualified with a scheme and authority. The scheme
  2658. determines the FileSystem implementation, while the authority
  2659. determines the FileSystem instance. New FileSystem
  2660. implementations may be provided by defining an fs.<scheme>.impl
  2661. property, naming the FileSystem implementation class. This
  2662. permits easy integration of new FileSystem implementations.
  2663. (cutting)
  2664. 24. HADOOP-720. Add an HDFS white paper to website.
  2665. (Dhruba Borthakur via cutting)
  2666. 25. HADOOP-794. Fix a divide-by-zero exception when a job specifies
  2667. zero map tasks. (omalley via cutting)
  2668. 26. HADOOP-454. Add a 'dfs -dus' command that provides summary disk
  2669. usage. (Hairong Kuang via cutting)
  2670. 27. HADOOP-574. Add an Amazon S3 implementation of FileSystem. To
  2671. use this, one need only specify paths of the form
  2672. s3://id:secret@bucket/. Alternately, the AWS access key id and
  2673. secret can be specified in your config, with the properties
  2674. fs.s3.awsAccessKeyId and fs.s3.awsSecretAccessKey.
  2675. (Tom White via cutting)
  2676. 28. HADOOP-824. Rename DFSShell to be FsShell, since it applies
  2677. generically to all FileSystem implementations. (cutting)
  2678. 29. HADOOP-813. Fix map output sorting to report progress, so that
  2679. sorts which take longer than the task timeout do not fail.
  2680. (Devaraj Das via cutting)
  2681. 30. HADOOP-825. Fix HDFS daemons when configured with new URI syntax.
  2682. (omalley via cutting)
  2683. 31. HADOOP-596. Fix a bug in phase reporting during reduce.
  2684. (Sanjay Dahiya via cutting)
  2685. 32. HADOOP-811. Add a utility, MultithreadedMapRunner.
  2686. (Alejandro Abdelnur via cutting)
  2687. 33. HADOOP-829. Within HDFS, clearly separate three different
  2688. representations for datanodes: one for RPCs, one for
  2689. namenode-internal use, and one for namespace persistence.
  2690. (Dhruba Borthakur via cutting)
  2691. 34. HADOOP-823. Fix problem starting datanode when not all configured
  2692. data directories exist. (Bryan Pendleton via cutting)
  2693. 35. HADOOP-451. Add a Split interface. CAUTION: This incompatibly
  2694. changes the InputFormat and RecordReader interfaces. Not only is
  2695. FileSplit replaced with Split, but a FileSystem parameter is no
  2696. longer passed in several methods, input validation has changed,
  2697. etc. (omalley via cutting)
  2698. 36. HADOOP-814. Optimize locking in namenode. (Dhruba Borthakur via cutting)
  2699. 37. HADOOP-738. Change 'fs -put' and 'fs -get' commands to accept
  2700. standard input and output, respectively. Standard i/o is
  2701. specified by a file named '-'. (Wendy Chien via cutting)
  2702. 38. HADOOP-835. Fix a NullPointerException reading record-compressed
  2703. SequenceFiles. (Hairong Kuang via cutting)
  2704. 39. HADOOP-836. Fix a MapReduce bug on Windows, where the wrong
  2705. FileSystem was used. Also add a static FileSystem.getLocal()
  2706. method and better Path checking in HDFS, to help avoid such issues
  2707. in the future. (omalley via cutting)
  2708. 40. HADOOP-837. Improve RunJar utility to unpack jar file
  2709. hadoop.tmp.dir, rather than the system temporary directory.
  2710. (Hairong Kuang via cutting)
  2711. 41. HADOOP-841. Fix native library to build 32-bit version even when
  2712. on a 64-bit host, if a 32-bit JVM is used. (Arun C Murthy via cutting)
  2713. 42. HADOOP-838. Fix tasktracker to pass java.library.path to
  2714. sub-processes, so that libhadoop.a is found.
  2715. (Arun C Murthy via cutting)
  2716. 43. HADOOP-844. Send metrics messages on a fixed-delay schedule
  2717. instead of a fixed-rate schedule. (David Bowen via cutting)
  2718. 44. HADOOP-849. Fix OutOfMemory exceptions in TaskTracker due to a
  2719. file handle leak in SequenceFile. (Devaraj Das via cutting)
  2720. 45. HADOOP-745. Fix a synchronization bug in the HDFS namenode.
  2721. (Dhruba Borthakur via cutting)
  2722. 46. HADOOP-850. Add Writable implementations for variable-length
  2723. integers. (ab via cutting)
  2724. 47. HADOOP-525. Add raw comparators to record types. This greatly
  2725. improves record sort performance. (Milind Bhandarkar via cutting)
  2726. 48. HADOOP-628. Fix a problem with 'fs -cat' command, where some
  2727. characters were replaced with question marks. (Wendy Chien via cutting)
  2728. 49. HADOOP-804. Reduce verbosity of MapReduce logging.
  2729. (Sanjay Dahiya via cutting)
  2730. 50. HADOOP-853. Rename 'site' to 'docs', in preparation for inclusion
  2731. in releases. (cutting)
  2732. 51. HADOOP-371. Include contrib jars and site documentation in
  2733. distributions. Also add contrib and example documentation to
  2734. distributed javadoc, in separate sections. (Nigel Daley via cutting)
  2735. 52. HADOOP-846. Report progress during entire map, as sorting of
  2736. intermediate outputs may happen at any time, potentially causing
  2737. task timeouts. (Devaraj Das via cutting)
  2738. 53. HADOOP-840. In task tracker, queue task cleanups and perform them
  2739. in a separate thread. (omalley & Mahadev Konar via cutting)
  2740. 54. HADOOP-681. Add to HDFS the ability to decommission nodes. This
  2741. causes their blocks to be re-replicated on other nodes, so that
  2742. they may be removed from a cluster. (Dhruba Borthakur via cutting)
  2743. 55. HADOOP-470. In HDFS web ui, list the datanodes containing each
  2744. copy of a block. (Hairong Kuang via cutting)
  2745. 56. HADOOP-700. Change bin/hadoop to only include core jar file on
  2746. classpath, not example, test, etc. Also rename core jar to
  2747. hadoop-${version}-core.jar so that it can be more easily
  2748. identified. (Nigel Daley via cutting)
  2749. 57. HADOOP-619. Extend InputFormatBase to accept individual files and
  2750. glob patterns as MapReduce inputs, not just directories. Also
  2751. change contrib/streaming to use this. (Sanjay Dahia via cutting)
  2752. Release 0.9.2 - 2006-12-15
  2753. 1. HADOOP-639. Restructure InterTrackerProtocol to make task
  2754. accounting more reliable. (Arun C Murthy via cutting)
  2755. 2. HADOOP-827. Turn off speculative execution by default, since it's
  2756. currently broken. (omalley via cutting)
  2757. 3. HADOOP-791. Fix a deadlock in the task tracker.
  2758. (Mahadev Konar via cutting)
  2759. Release 0.9.1 - 2006-12-06
  2760. 1. HADOOP-780. Use ReflectionUtils to instantiate key and value
  2761. objects. (ab)
  2762. 2. HADOOP-779. Fix contrib/streaming to work correctly with gzipped
  2763. input files. (Hairong Kuang via cutting)
  2764. Release 0.9.0 - 2006-12-01
  2765. 1. HADOOP-655. Remove most deprecated code. A few deprecated things
  2766. remain, notably UTF8 and some methods that are still required.
  2767. Also cleaned up constructors for SequenceFile, MapFile, SetFile,
  2768. and ArrayFile a bit. (cutting)
  2769. 2. HADOOP-565. Upgrade to Jetty version 6. (Sanjay Dahiya via cutting)
  2770. 3. HADOOP-682. Fix DFS format command to work correctly when
  2771. configured with a non-existent directory. (Sanjay Dahiya via cutting)
  2772. 4. HADOOP-645. Fix a bug in contrib/streaming when -reducer is NONE.
  2773. (Dhruba Borthakur via cutting)
  2774. 5. HADOOP-687. Fix a classpath bug in bin/hadoop that blocked the
  2775. servers from starting. (Sameer Paranjpye via omalley)
  2776. 6. HADOOP-683. Remove a script dependency on bash, so it works with
  2777. dash, the new default for /bin/sh on Ubuntu. (James Todd via cutting)
  2778. 7. HADOOP-382. Extend unit tests to run multiple datanodes.
  2779. (Milind Bhandarkar via cutting)
  2780. 8. HADOOP-604. Fix some synchronization issues and a
  2781. NullPointerException in DFS datanode. (Raghu Angadi via cutting)
  2782. 9. HADOOP-459. Fix memory leaks and a host of other issues with
  2783. libhdfs. (Sameer Paranjpye via cutting)
  2784. 10. HADOOP-694. Fix a NullPointerException in jobtracker.
  2785. (Mahadev Konar via cutting)
  2786. 11. HADOOP-637. Fix a memory leak in the IPC server. Direct buffers
  2787. are not collected like normal buffers, and provided little
  2788. advantage. (Raghu Angadi via cutting)
  2789. 12. HADOOP-696. Fix TestTextInputFormat unit test to not rely on the
  2790. order of directory listings. (Sameer Paranjpye via cutting)
  2791. 13. HADOOP-611. Add support for iterator-based merging to
  2792. SequenceFile. (Devaraj Das via cutting)
  2793. 14. HADOOP-688. Move DFS administrative commands to a separate
  2794. command named 'dfsadmin'. (Dhruba Borthakur via cutting)
  2795. 15. HADOOP-708. Fix test-libhdfs to return the correct status, so
  2796. that failures will break the build. (Nigel Daley via cutting)
  2797. 16. HADOOP-646. Fix namenode to handle edits files larger than 2GB.
  2798. (Milind Bhandarkar via cutting)
  2799. 17. HADOOP-705. Fix a bug in the JobTracker when failed jobs were
  2800. not completely cleaned up. (Mahadev Konar via cutting)
  2801. 18. HADOOP-613. Perform final merge while reducing. This removes one
  2802. sort pass over the data and should consequently significantly
  2803. decrease overall processing time. (Devaraj Das via cutting)
  2804. 19. HADOOP-661. Make each job's configuration visible through the web
  2805. ui. (Arun C Murthy via cutting)
  2806. 20. HADOOP-489. In MapReduce, separate user logs from system logs.
  2807. Each task's log output is now available through the web ui. (Arun
  2808. C Murthy via cutting)
  2809. 21. HADOOP-712. Fix record io's xml serialization to correctly handle
  2810. control-characters. (Milind Bhandarkar via cutting)
  2811. 22. HADOOP-668. Improvements to the web-based DFS browser.
  2812. (Hairong Kuang via cutting)
  2813. 23. HADOOP-715. Fix build.xml so that test logs are written in build
  2814. directory, rather than in CWD. (Arun C Murthy via cutting)
  2815. 24. HADOOP-538. Add support for building an optional native library,
  2816. libhadoop.so, that improves the performance of zlib-based
  2817. compression. To build this, specify -Dcompile.native to Ant.
  2818. (Arun C Murthy via cutting)
  2819. 25. HADOOP-610. Fix an problem when the DFS block size is configured
  2820. to be smaller than the buffer size, typically only when debugging.
  2821. (Milind Bhandarkar via cutting)
  2822. 26. HADOOP-695. Fix a NullPointerException in contrib/streaming.
  2823. (Hairong Kuang via cutting)
  2824. 27. HADOOP-652. In DFS, when a file is deleted, the block count is
  2825. now decremented. (Vladimir Krokhmalyov via cutting)
  2826. 28. HADOOP-725. In DFS, optimize block placement algorithm,
  2827. previously a performance bottleneck. (Milind Bhandarkar via cutting)
  2828. 29. HADOOP-723. In MapReduce, fix a race condition during the
  2829. shuffle, which resulted in FileNotFoundExceptions. (omalley via cutting)
  2830. 30. HADOOP-447. In DFS, fix getBlockSize(Path) to work with relative
  2831. paths. (Raghu Angadi via cutting)
  2832. 31. HADOOP-733. Make exit codes in DFShell consistent and add a unit
  2833. test. (Dhruba Borthakur via cutting)
  2834. 32. HADOOP-709. Fix contrib/streaming to work with commands that
  2835. contain control characters. (Dhruba Borthakur via cutting)
  2836. 33. HADOOP-677. In IPC, permit a version header to be transmitted
  2837. when connections are established. This will permit us to change
  2838. the format of IPC requests back-compatibly in subsequent releases.
  2839. (omalley via cutting)
  2840. 34. HADOOP-699. Fix DFS web interface so that filesystem browsing
  2841. works correctly, using the right port number. Also add support
  2842. for sorting datanode list by various columns.
  2843. (Raghu Angadi via cutting)
  2844. 35. HADOOP-76. Implement speculative reduce. Now when a job is
  2845. configured for speculative execution, both maps and reduces will
  2846. execute speculatively. Reduce outputs are written to temporary
  2847. location and moved to the final location when reduce is complete.
  2848. (Sanjay Dahiya via cutting)
  2849. 36. HADOOP-736. Roll back to Jetty 5.1.4, due to performance problems
  2850. with Jetty 6.0.1.
  2851. 37. HADOOP-739. Fix TestIPC to use different port number, making it
  2852. more reliable. (Nigel Daley via cutting)
  2853. 38. HADOOP-749. Fix a NullPointerException in jobfailures.jsp.
  2854. (omalley via cutting)
  2855. 39. HADOOP-747. Fix record serialization to work correctly when
  2856. records are embedded in Maps. (Milind Bhandarkar via cutting)
  2857. 40. HADOOP-698. Fix HDFS client not to retry the same datanode on
  2858. read failures. (Milind Bhandarkar via cutting)
  2859. 41. HADOOP-689. Add GenericWritable, to facilitate polymorphism in
  2860. MapReduce, SequenceFile, etc. (Feng Jiang via cutting)
  2861. 42. HADOOP-430. Stop datanode's HTTP server when registration with
  2862. namenode fails. (Wendy Chien via cutting)
  2863. 43. HADOOP-750. Fix a potential race condition during mapreduce
  2864. shuffle. (omalley via cutting)
  2865. 44. HADOOP-728. Fix contrib/streaming-related issues, including
  2866. '-reducer NONE'. (Sanjay Dahiya via cutting)
  2867. Release 0.8.0 - 2006-11-03
  2868. 1. HADOOP-477. Extend contrib/streaming to scan the PATH environment
  2869. variables when resolving executable program names.
  2870. (Dhruba Borthakur via cutting)
  2871. 2. HADOOP-583. In DFSClient, reduce the log level of re-connect
  2872. attempts from 'info' to 'debug', so they are not normally shown.
  2873. (Konstantin Shvachko via cutting)
  2874. 3. HADOOP-498. Re-implement DFS integrity checker to run server-side,
  2875. for much improved performance. (Milind Bhandarkar via cutting)
  2876. 4. HADOOP-586. Use the jar name for otherwise un-named jobs.
  2877. (Sanjay Dahiya via cutting)
  2878. 5. HADOOP-514. Make DFS heartbeat interval configurable.
  2879. (Milind Bhandarkar via cutting)
  2880. 6. HADOOP-588. Fix logging and accounting of failed tasks.
  2881. (Sanjay Dahiya via cutting)
  2882. 7. HADOOP-462. Improve command line parsing in DFSShell, so that
  2883. incorrect numbers of arguments result in informative errors rather
  2884. than ArrayOutOfBoundsException. (Dhruba Borthakur via cutting)
  2885. 8. HADOOP-561. Fix DFS so that one replica of each block is written
  2886. locally, if possible. This was the intent, but there as a bug.
  2887. (Dhruba Borthakur via cutting)
  2888. 9. HADOOP-610. Fix TaskTracker to survive more exceptions, keeping
  2889. tasks from becoming lost. (omalley via cutting)
  2890. 10. HADOOP-625. Add a servlet to all http daemons that displays a
  2891. stack dump, useful for debugging. (omalley via cutting)
  2892. 11. HADOOP-554. Fix DFSShell to return -1 for errors.
  2893. (Dhruba Borthakur via cutting)
  2894. 12. HADOOP-626. Correct the documentation in the NNBench example
  2895. code, and also remove a mistaken call there.
  2896. (Nigel Daley via cutting)
  2897. 13. HADOOP-634. Add missing license to many files.
  2898. (Nigel Daley via cutting)
  2899. 14. HADOOP-627. Fix some synchronization problems in MiniMRCluster
  2900. that sometimes caused unit tests to fail. (Nigel Daley via cutting)
  2901. 15. HADOOP-563. Improve the NameNode's lease policy so that leases
  2902. are held for one hour without renewal (instead of one minute).
  2903. However another attempt to create the same file will still succeed
  2904. if the lease has not been renewed within a minute. This prevents
  2905. communication or scheduling problems from causing a write to fail
  2906. for up to an hour, barring some other process trying to create the
  2907. same file. (Dhruba Borthakur via cutting)
  2908. 16. HADOOP-635. In DFSShell, permit specification of multiple files
  2909. as the source for file copy and move commands.
  2910. (Dhruba Borthakur via cutting)
  2911. 17. HADOOP-641. Change NameNode to request a fresh block report from
  2912. a re-discovered DataNode, so that no-longer-needed replications
  2913. are stopped promptly. (Konstantin Shvachko via cutting)
  2914. 18. HADOOP-642. Change IPC client to specify an explicit connect
  2915. timeout. (Konstantin Shvachko via cutting)
  2916. 19. HADOOP-638. Fix an unsynchronized access to TaskTracker's
  2917. internal state. (Nigel Daley via cutting)
  2918. 20. HADOOP-624. Fix servlet path to stop a Jetty warning on startup.
  2919. (omalley via cutting)
  2920. 21. HADOOP-578. Failed tasks are no longer placed at the end of the
  2921. task queue. This was originally done to work around other
  2922. problems that have now been fixed. Re-executing failed tasks
  2923. sooner causes buggy jobs to fail faster. (Sanjay Dahiya via cutting)
  2924. 22. HADOOP-658. Update source file headers per Apache policy. (cutting)
  2925. 23. HADOOP-636. Add MapFile & ArrayFile constructors which accept a
  2926. Progressable, and pass it down to SequenceFile. This permits
  2927. reduce tasks which use MapFile to still report progress while
  2928. writing blocks to the filesystem. (cutting)
  2929. 24. HADOOP-576. Enable contrib/streaming to use the file cache. Also
  2930. extend the cache to permit symbolic links to cached items, rather
  2931. than local file copies. (Mahadev Konar via cutting)
  2932. 25. HADOOP-482. Fix unit tests to work when a cluster is running on
  2933. the same machine, removing port conflicts. (Wendy Chien via cutting)
  2934. 26. HADOOP-90. Permit dfs.name.dir to list multiple directories,
  2935. where namenode data is to be replicated. (Milind Bhandarkar via cutting)
  2936. 27. HADOOP-651. Fix DFSCk to correctly pass parameters to the servlet
  2937. on the namenode. (Milind Bhandarkar via cutting)
  2938. 28. HADOOP-553. Change main() routines of DataNode and NameNode to
  2939. log exceptions rather than letting the JVM print them to standard
  2940. error. Also, change the hadoop-daemon.sh script to rotate
  2941. standard i/o log files. (Raghu Angadi via cutting)
  2942. 29. HADOOP-399. Fix javadoc warnings. (Nigel Daley via cutting)
  2943. 30. HADOOP-599. Fix web ui and command line to correctly report DFS
  2944. filesystem size statistics. Also improve web layout.
  2945. (Raghu Angadi via cutting)
  2946. 31. HADOOP-660. Permit specification of junit test output format.
  2947. (Nigel Daley via cutting)
  2948. 32. HADOOP-663. Fix a few unit test issues. (Mahadev Konar via cutting)
  2949. 33. HADOOP-664. Cause entire build to fail if libhdfs tests fail.
  2950. (Nigel Daley via cutting)
  2951. 34. HADOOP-633. Keep jobtracker from dying when job initialization
  2952. throws exceptions. Also improve exception handling in a few other
  2953. places and add more informative thread names.
  2954. (omalley via cutting)
  2955. 35. HADOOP-669. Fix a problem introduced by HADOOP-90 that can cause
  2956. DFS to lose files. (Milind Bhandarkar via cutting)
  2957. 36. HADOOP-373. Consistently check the value returned by
  2958. FileSystem.mkdirs(). (Wendy Chien via cutting)
  2959. 37. HADOOP-670. Code cleanups in some DFS internals: use generic
  2960. types, replace Vector with ArrayList, etc.
  2961. (Konstantin Shvachko via cutting)
  2962. 38. HADOOP-647. Permit map outputs to use a different compression
  2963. type than the job output. (omalley via cutting)
  2964. 39. HADOOP-671. Fix file cache to check for pre-existence before
  2965. creating . (Mahadev Konar via cutting)
  2966. 40. HADOOP-665. Extend many DFSShell commands to accept multiple
  2967. arguments. Now commands like "ls", "rm", etc. will operate on
  2968. multiple files. (Dhruba Borthakur via cutting)
  2969. Release 0.7.2 - 2006-10-18
  2970. 1. HADOOP-607. Fix a bug where classes included in job jars were not
  2971. found by tasks. (Mahadev Konar via cutting)
  2972. 2. HADOOP-609. Add a unit test that checks that classes in job jars
  2973. can be found by tasks. Also modify unit tests to specify multiple
  2974. local directories. (Mahadev Konar via cutting)
  2975. Release 0.7.1 - 2006-10-11
  2976. 1. HADOOP-593. Fix a NullPointerException in the JobTracker.
  2977. (omalley via cutting)
  2978. 2. HADOOP-592. Fix a NullPointerException in the IPC Server. Also
  2979. consistently log when stale calls are discarded. (omalley via cutting)
  2980. 3. HADOOP-594. Increase the DFS safe-mode threshold from .95 to
  2981. .999, so that nearly all blocks must be reported before filesystem
  2982. modifications are permitted. (Konstantin Shvachko via cutting)
  2983. 4. HADOOP-598. Fix tasks to retry when reporting completion, so that
  2984. a single RPC timeout won't fail a task. (omalley via cutting)
  2985. 5. HADOOP-597. Fix TaskTracker to not discard map outputs for errors
  2986. in transmitting them to reduce nodes. (omalley via cutting)
  2987. Release 0.7.0 - 2006-10-06
  2988. 1. HADOOP-243. Fix rounding in the display of task and job progress
  2989. so that things are not shown to be 100% complete until they are in
  2990. fact finished. (omalley via cutting)
  2991. 2. HADOOP-438. Limit the length of absolute paths in DFS, since the
  2992. file format used to store pathnames has some limitations.
  2993. (Wendy Chien via cutting)
  2994. 3. HADOOP-530. Improve error messages in SequenceFile when keys or
  2995. values are of the wrong type. (Hairong Kuang via cutting)
  2996. 4. HADOOP-288. Add a file caching system and use it in MapReduce to
  2997. cache job jar files on slave nodes. (Mahadev Konar via cutting)
  2998. 5. HADOOP-533. Fix unit test to not modify conf directory.
  2999. (Hairong Kuang via cutting)
  3000. 6. HADOOP-527. Permit specification of the local address that various
  3001. Hadoop daemons should bind to. (Philippe Gassmann via cutting)
  3002. 7. HADOOP-542. Updates to contrib/streaming: reformatted source code,
  3003. on-the-fly merge sort, a fix for HADOOP-540, etc.
  3004. (Michel Tourn via cutting)
  3005. 8. HADOOP-545. Remove an unused config file parameter.
  3006. (Philippe Gassmann via cutting)
  3007. 9. HADOOP-548. Add an Ant property "test.output" to build.xml that
  3008. causes test output to be logged to the console. (omalley via cutting)
  3009. 10. HADOOP-261. Record an error message when map output is lost.
  3010. (omalley via cutting)
  3011. 11. HADOOP-293. Report the full list of task error messages in the
  3012. web ui, not just the most recent. (omalley via cutting)
  3013. 12. HADOOP-551. Restore JobClient's console printouts to only include
  3014. a maximum of one update per one percent of progress.
  3015. (omalley via cutting)
  3016. 13. HADOOP-306. Add a "safe" mode to DFS. The name node enters this
  3017. when less than a specified percentage of file data is complete.
  3018. Currently safe mode is only used on startup, but eventually it
  3019. will also be entered when datanodes disconnect and file data
  3020. becomes incomplete. While in safe mode no filesystem
  3021. modifications are permitted and block replication is inhibited.
  3022. (Konstantin Shvachko via cutting)
  3023. 14. HADOOP-431. Change 'dfs -rm' to not operate recursively and add a
  3024. new command, 'dfs -rmr' which operates recursively.
  3025. (Sameer Paranjpye via cutting)
  3026. 15. HADOOP-263. Include timestamps for job transitions. The web
  3027. interface now displays the start and end times of tasks and the
  3028. start times of sorting and reducing for reduce tasks. Also,
  3029. extend ObjectWritable to handle enums, so that they can be passed
  3030. as RPC parameters. (Sanjay Dahiya via cutting)
  3031. 16. HADOOP-556. Contrib/streaming: send keep-alive reports to task
  3032. tracker every 10 seconds rather than every 100 records, to avoid
  3033. task timeouts. (Michel Tourn via cutting)
  3034. 17. HADOOP-547. Fix reduce tasks to ping tasktracker while copying
  3035. data, rather than only between copies, avoiding task timeouts.
  3036. (Sanjay Dahiya via cutting)
  3037. 18. HADOOP-537. Fix src/c++/libhdfs build process to create files in
  3038. build/, no longer modifying the source tree.
  3039. (Arun C Murthy via cutting)
  3040. 19. HADOOP-487. Throw a more informative exception for unknown RPC
  3041. hosts. (Sameer Paranjpye via cutting)
  3042. 20. HADOOP-559. Add file name globbing (pattern matching) support to
  3043. the FileSystem API, and use it in DFSShell ('bin/hadoop dfs')
  3044. commands. (Hairong Kuang via cutting)
  3045. 21. HADOOP-508. Fix a bug in FSDataInputStream. Incorrect data was
  3046. returned after seeking to a random location.
  3047. (Milind Bhandarkar via cutting)
  3048. 22. HADOOP-560. Add a "killed" task state. This can be used to
  3049. distinguish kills from other failures. Task state has also been
  3050. converted to use an enum type instead of an int, uncovering a bug
  3051. elsewhere. The web interface is also updated to display killed
  3052. tasks. (omalley via cutting)
  3053. 23. HADOOP-423. Normalize Paths containing directories named "." and
  3054. "..", using the standard, unix interpretation. Also add checks in
  3055. DFS, prohibiting the use of "." or ".." as directory or file
  3056. names. (Wendy Chien via cutting)
  3057. 24. HADOOP-513. Replace map output handling with a servlet, rather
  3058. than a JSP page. This fixes an issue where
  3059. IllegalStateException's were logged, sets content-length
  3060. correctly, and better handles some errors. (omalley via cutting)
  3061. 25. HADOOP-552. Improved error checking when copying map output files
  3062. to reduce nodes. (omalley via cutting)
  3063. 26. HADOOP-566. Fix scripts to work correctly when accessed through
  3064. relative symbolic links. (Lee Faris via cutting)
  3065. 27. HADOOP-519. Add positioned read methods to FSInputStream. These
  3066. permit one to read from a stream without moving its position, and
  3067. can hence be performed by multiple threads at once on a single
  3068. stream. Implement an optimized version for DFS and local FS.
  3069. (Milind Bhandarkar via cutting)
  3070. 28. HADOOP-522. Permit block compression with MapFile and SetFile.
  3071. Since these formats are always sorted, block compression can
  3072. provide a big advantage. (cutting)
  3073. 29. HADOOP-567. Record version and revision information in builds. A
  3074. package manifest is added to the generated jar file containing
  3075. version information, and a VersionInfo utility is added that
  3076. includes further information, including the build date and user,
  3077. and the subversion revision and repository. A 'bin/hadoop
  3078. version' comand is added to show this information, and it is also
  3079. added to various web interfaces. (omalley via cutting)
  3080. 30. HADOOP-568. Fix so that errors while initializing tasks on a
  3081. tasktracker correctly report the task as failed to the jobtracker,
  3082. so that it will be rescheduled. (omalley via cutting)
  3083. 31. HADOOP-550. Disable automatic UTF-8 validation in Text. This
  3084. permits, e.g., TextInputFormat to again operate on non-UTF-8 data.
  3085. (Hairong and Mahadev via cutting)
  3086. 32. HADOOP-343. Fix mapred copying so that a failed tasktracker
  3087. doesn't cause other copies to slow. (Sameer Paranjpye via cutting)
  3088. 33. HADOOP-239. Add a persistent job history mechanism, so that basic
  3089. job statistics are not lost after 24 hours and/or when the
  3090. jobtracker is restarted. (Sanjay Dahiya via cutting)
  3091. 34. HADOOP-506. Ignore heartbeats from stale task trackers.
  3092. (Sanjay Dahiya via cutting)
  3093. 35. HADOOP-255. Discard stale, queued IPC calls. Do not process
  3094. calls whose clients will likely time out before they receive a
  3095. response. When the queue is full, new calls are now received and
  3096. queued, and the oldest calls are discarded, so that, when servers
  3097. get bogged down, they no longer develop a backlog on the socket.
  3098. This should improve some DFS namenode failure modes.
  3099. (omalley via cutting)
  3100. 36. HADOOP-581. Fix datanode to not reset itself on communications
  3101. errors with the namenode. If a request to the namenode fails, the
  3102. datanode should retry, not restart. This reduces the load on the
  3103. namenode, since restarts cause a resend of the block report.
  3104. (omalley via cutting)
  3105. Release 0.6.2 - 2006-09-18
  3106. 1. HADOOP-532. Fix a bug reading value-compressed sequence files,
  3107. where an exception was thrown reporting that the full value had not
  3108. been read. (omalley via cutting)
  3109. 2. HADOOP-534. Change the default value class in JobConf to be Text
  3110. instead of the now-deprecated UTF8. This fixes the Grep example
  3111. program, which was updated to use Text, but relies on this
  3112. default. (Hairong Kuang via cutting)
  3113. Release 0.6.1 - 2006-09-13
  3114. 1. HADOOP-520. Fix a bug in libhdfs, where write failures were not
  3115. correctly returning error codes. (Arun C Murthy via cutting)
  3116. 2. HADOOP-523. Fix a NullPointerException when TextInputFormat is
  3117. explicitly specified. Also add a test case for this.
  3118. (omalley via cutting)
  3119. 3. HADOOP-521. Fix another NullPointerException finding the
  3120. ClassLoader when using libhdfs. (omalley via cutting)
  3121. 4. HADOOP-526. Fix a NullPointerException when attempting to start
  3122. two datanodes in the same directory. (Milind Bhandarkar via cutting)
  3123. 5. HADOOP-529. Fix a NullPointerException when opening
  3124. value-compressed sequence files generated by pre-0.6.0 Hadoop.
  3125. (omalley via cutting)
  3126. Release 0.6.0 - 2006-09-08
  3127. 1. HADOOP-427. Replace some uses of DatanodeDescriptor in the DFS
  3128. web UI code with DatanodeInfo, the preferred public class.
  3129. (Devaraj Das via cutting)
  3130. 2. HADOOP-426. Fix streaming contrib module to work correctly on
  3131. Solaris. This was causing nightly builds to fail.
  3132. (Michel Tourn via cutting)
  3133. 3. HADOOP-400. Improvements to task assignment. Tasks are no longer
  3134. re-run on nodes where they have failed (unless no other node is
  3135. available). Also, tasks are better load-balanced among nodes.
  3136. (omalley via cutting)
  3137. 4. HADOOP-324. Fix datanode to not exit when a disk is full, but
  3138. rather simply to fail writes. (Wendy Chien via cutting)
  3139. 5. HADOOP-434. Change smallJobsBenchmark to use standard Hadoop
  3140. scripts. (Sanjay Dahiya via cutting)
  3141. 6. HADOOP-453. Fix a bug in Text.setCapacity(). (siren via cutting)
  3142. 7. HADOOP-450. Change so that input types are determined by the
  3143. RecordReader rather than specified directly in the JobConf. This
  3144. facilitates jobs with a variety of input types.
  3145. WARNING: This contains incompatible API changes! The RecordReader
  3146. interface has two new methods that all user-defined InputFormats
  3147. must now define. Also, the values returned by TextInputFormat are
  3148. no longer of class UTF8, but now of class Text.
  3149. 8. HADOOP-436. Fix an error-handling bug in the web ui.
  3150. (Devaraj Das via cutting)
  3151. 9. HADOOP-455. Fix a bug in Text, where DEL was not permitted.
  3152. (Hairong Kuang via cutting)
  3153. 10. HADOOP-456. Change the DFS namenode to keep a persistent record
  3154. of the set of known datanodes. This will be used to implement a
  3155. "safe mode" where filesystem changes are prohibited when a
  3156. critical percentage of the datanodes are unavailable.
  3157. (Konstantin Shvachko via cutting)
  3158. 11. HADOOP-322. Add a job control utility. This permits one to
  3159. specify job interdependencies. Each job is submitted only after
  3160. the jobs it depends on have successfully completed.
  3161. (Runping Qi via cutting)
  3162. 12. HADOOP-176. Fix a bug in IntWritable.Comparator.
  3163. (Dick King via cutting)
  3164. 13. HADOOP-421. Replace uses of String in recordio package with Text
  3165. class, for improved handling of UTF-8 data.
  3166. (Milind Bhandarkar via cutting)
  3167. 14. HADOOP-464. Improved error message when job jar not found.
  3168. (Michel Tourn via cutting)
  3169. 15. HADOOP-469. Fix /bin/bash specifics that have crept into our
  3170. /bin/sh scripts since HADOOP-352.
  3171. (Jean-Baptiste Quenot via cutting)
  3172. 16. HADOOP-468. Add HADOOP_NICENESS environment variable to set
  3173. scheduling priority for daemons. (Vetle Roeim via cutting)
  3174. 17. HADOOP-473. Fix TextInputFormat to correctly handle more EOL
  3175. formats. Things now work correctly with CR, LF or CRLF.
  3176. (Dennis Kubes & James White via cutting)
  3177. 18. HADOOP-461. Make Java 1.5 an explicit requirement. (cutting)
  3178. 19. HADOOP-54. Add block compression to SequenceFile. One may now
  3179. specify that blocks of keys and values are compressed together,
  3180. improving compression for small keys and values.
  3181. SequenceFile.Writer's constructor is now deprecated and replaced
  3182. with a factory method. (Arun C Murthy via cutting)
  3183. 20. HADOOP-281. Prohibit DFS files that are also directories.
  3184. (Wendy Chien via cutting)
  3185. 21. HADOOP-486. Add the job username to JobStatus instances returned
  3186. by JobClient. (Mahadev Konar via cutting)
  3187. 22. HADOOP-437. contrib/streaming: Add support for gzipped inputs.
  3188. (Michel Tourn via cutting)
  3189. 23. HADOOP-463. Add variable expansion to config files.
  3190. Configuration property values may now contain variable
  3191. expressions. A variable is referenced with the syntax
  3192. '${variable}'. Variables values are found first in the
  3193. configuration, and then in Java system properties. The default
  3194. configuration is modified so that temporary directories are now
  3195. under ${hadoop.tmp.dir}, which is, by default,
  3196. /tmp/hadoop-${user.name}. (Michel Tourn via cutting)
  3197. 24. HADOOP-419. Fix a NullPointerException finding the ClassLoader
  3198. when using libhdfs. (omalley via cutting)
  3199. 25. HADOOP-460. Fix contrib/smallJobsBenchmark to use Text instead of
  3200. UTF8. (Sanjay Dahiya via cutting)
  3201. 26. HADOOP-196. Fix Configuration(Configuration) constructor to work
  3202. correctly. (Sami Siren via cutting)
  3203. 27. HADOOP-501. Fix Configuration.toString() to handle URL resources.
  3204. (Thomas Friol via cutting)
  3205. 28. HADOOP-499. Reduce the use of Strings in contrib/streaming,
  3206. replacing them with Text for better performance.
  3207. (Hairong Kuang via cutting)
  3208. 29. HADOOP-64. Manage multiple volumes with a single DataNode.
  3209. Previously DataNode would create a separate daemon per configured
  3210. volume, each with its own connection to the NameNode. Now all
  3211. volumes are handled by a single DataNode daemon, reducing the load
  3212. on the NameNode. (Milind Bhandarkar via cutting)
  3213. 30. HADOOP-424. Fix MapReduce so that jobs which generate zero splits
  3214. do not fail. (Fr??d??ric Bertin via cutting)
  3215. 31. HADOOP-408. Adjust some timeouts and remove some others so that
  3216. unit tests run faster. (cutting)
  3217. 32. HADOOP-507. Fix an IllegalAccessException in DFS.
  3218. (omalley via cutting)
  3219. 33. HADOOP-320. Fix so that checksum files are correctly copied when
  3220. the destination of a file copy is a directory.
  3221. (Hairong Kuang via cutting)
  3222. 34. HADOOP-286. In DFSClient, avoid pinging the NameNode with
  3223. renewLease() calls when no files are being written.
  3224. (Konstantin Shvachko via cutting)
  3225. 35. HADOOP-312. Close idle IPC connections. All IPC connections were
  3226. cached forever. Now, after a connection has been idle for more
  3227. than a configurable amount of time (one second by default), the
  3228. connection is closed, conserving resources on both client and
  3229. server. (Devaraj Das via cutting)
  3230. 36. HADOOP-497. Permit the specification of the network interface and
  3231. nameserver to be used when determining the local hostname
  3232. advertised by datanodes and tasktrackers.
  3233. (Lorenzo Thione via cutting)
  3234. 37. HADOOP-441. Add a compression codec API and extend SequenceFile
  3235. to use it. This will permit the use of alternate compression
  3236. codecs in SequenceFile. (Arun C Murthy via cutting)
  3237. 38. HADOOP-483. Improvements to libhdfs build and documentation.
  3238. (Arun C Murthy via cutting)
  3239. 39. HADOOP-458. Fix a memory corruption bug in libhdfs.
  3240. (Arun C Murthy via cutting)
  3241. 40. HADOOP-517. Fix a contrib/streaming bug in end-of-line detection.
  3242. (Hairong Kuang via cutting)
  3243. 41. HADOOP-474. Add CompressionCodecFactory, and use it in
  3244. TextInputFormat and TextOutputFormat. Compressed input files are
  3245. automatically decompressed when they have the correct extension.
  3246. Output files will, when output compression is specified, be
  3247. generated with an approprate extension. Also add a gzip codec and
  3248. fix problems with UTF8 text inputs. (omalley via cutting)
  3249. Release 0.5.0 - 2006-08-04
  3250. 1. HADOOP-352. Fix shell scripts to use /bin/sh instead of
  3251. /bin/bash, for better portability.
  3252. (Jean-Baptiste Quenot via cutting)
  3253. 2. HADOOP-313. Permit task state to be saved so that single tasks
  3254. may be manually re-executed when debugging. (omalley via cutting)
  3255. 3. HADOOP-339. Add method to JobClient API listing jobs that are
  3256. not yet complete, i.e., that are queued or running.
  3257. (Mahadev Konar via cutting)
  3258. 4. HADOOP-355. Updates to the streaming contrib module, including
  3259. API fixes, making reduce optional, and adding an input type for
  3260. StreamSequenceRecordReader. (Michel Tourn via cutting)
  3261. 5. HADOOP-358. Fix a NPE bug in Path.equals().
  3262. (Fr??d??ric Bertin via cutting)
  3263. 6. HADOOP-327. Fix ToolBase to not call System.exit() when
  3264. exceptions are thrown. (Hairong Kuang via cutting)
  3265. 7. HADOOP-359. Permit map output to be compressed.
  3266. (omalley via cutting)
  3267. 8. HADOOP-341. Permit input URI to CopyFiles to use the HTTP
  3268. protocol. This lets one, e.g., more easily copy log files into
  3269. DFS. (Arun C Murthy via cutting)
  3270. 9. HADOOP-361. Remove unix dependencies from streaming contrib
  3271. module tests, making them pure java. (Michel Tourn via cutting)
  3272. 10. HADOOP-354. Make public methods to stop DFS daemons.
  3273. (Barry Kaplan via cutting)
  3274. 11. HADOOP-252. Add versioning to RPC protocols.
  3275. (Milind Bhandarkar via cutting)
  3276. 12. HADOOP-356. Add contrib to "compile" and "test" build targets, so
  3277. that this code is better maintained. (Michel Tourn via cutting)
  3278. 13. HADOOP-307. Add smallJobsBenchmark contrib module. This runs
  3279. lots of small jobs, in order to determine per-task overheads.
  3280. (Sanjay Dahiya via cutting)
  3281. 14. HADOOP-342. Add a tool for log analysis: Logalyzer.
  3282. (Arun C Murthy via cutting)
  3283. 15. HADOOP-347. Add web-based browsing of DFS content. The namenode
  3284. redirects browsing requests to datanodes. Content requests are
  3285. redirected to datanodes where the data is local when possible.
  3286. (Devaraj Das via cutting)
  3287. 16. HADOOP-351. Make Hadoop IPC kernel independent of Jetty.
  3288. (Devaraj Das via cutting)
  3289. 17. HADOOP-237. Add metric reporting to DFS and MapReduce. With only
  3290. minor configuration changes, one can now monitor many Hadoop
  3291. system statistics using Ganglia or other monitoring systems.
  3292. (Milind Bhandarkar via cutting)
  3293. 18. HADOOP-376. Fix datanode's HTTP server to scan for a free port.
  3294. (omalley via cutting)
  3295. 19. HADOOP-260. Add --config option to shell scripts, specifying an
  3296. alternate configuration directory. (Milind Bhandarkar via cutting)
  3297. 20. HADOOP-381. Permit developers to save the temporary files for
  3298. tasks whose names match a regular expression, to facilliate
  3299. debugging. (omalley via cutting)
  3300. 21. HADOOP-344. Fix some Windows-related problems with DF.
  3301. (Konstantin Shvachko via cutting)
  3302. 22. HADOOP-380. Fix reduce tasks to poll less frequently for map
  3303. outputs. (Mahadev Konar via cutting)
  3304. 23. HADOOP-321. Refactor DatanodeInfo, in preparation for
  3305. HADOOP-306. (Konstantin Shvachko & omalley via cutting)
  3306. 24. HADOOP-385. Fix some bugs in record io code generation.
  3307. (Milind Bhandarkar via cutting)
  3308. 25. HADOOP-302. Add new Text class to replace UTF8, removing
  3309. limitations of that class. Also refactor utility methods for
  3310. writing zero-compressed integers (VInts and VLongs).
  3311. (Hairong Kuang via cutting)
  3312. 26. HADOOP-335. Refactor DFS namespace/transaction logging in
  3313. namenode. (Konstantin Shvachko via cutting)
  3314. 27. HADOOP-375. Fix handling of the datanode HTTP daemon's port so
  3315. that multiple datanode's can be run on a single host.
  3316. (Devaraj Das via cutting)
  3317. 28. HADOOP-386. When removing excess DFS block replicas, remove those
  3318. on nodes with the least free space first.
  3319. (Johan Oskarson via cutting)
  3320. 29. HADOOP-389. Fix intermittent failures of mapreduce unit tests.
  3321. Also fix some build dependencies.
  3322. (Mahadev & Konstantin via cutting)
  3323. 30. HADOOP-362. Fix a problem where jobs hang when status messages
  3324. are recieved out-of-order. (omalley via cutting)
  3325. 31. HADOOP-394. Change order of DFS shutdown in unit tests to
  3326. minimize errors logged. (Konstantin Shvachko via cutting)
  3327. 32. HADOOP-396. Make DatanodeID implement Writable.
  3328. (Konstantin Shvachko via cutting)
  3329. 33. HADOOP-377. Permit one to add URL resources to a Configuration.
  3330. (Jean-Baptiste Quenot via cutting)
  3331. 34. HADOOP-345. Permit iteration over Configuration key/value pairs.
  3332. (Michel Tourn via cutting)
  3333. 35. HADOOP-409. Streaming contrib module: make configuration
  3334. properties available to commands as environment variables.
  3335. (Michel Tourn via cutting)
  3336. 36. HADOOP-369. Add -getmerge option to dfs command that appends all
  3337. files in a directory into a single local file.
  3338. (Johan Oskarson via cutting)
  3339. 37. HADOOP-410. Replace some TreeMaps with HashMaps in DFS, for
  3340. a 17% performance improvement. (Milind Bhandarkar via cutting)
  3341. 38. HADOOP-411. Add unit tests for command line parser.
  3342. (Hairong Kuang via cutting)
  3343. 39. HADOOP-412. Add MapReduce input formats that support filtering
  3344. of SequenceFile data, including sampling and regex matching.
  3345. Also, move JobConf.newInstance() to a new utility class.
  3346. (Hairong Kuang via cutting)
  3347. 40. HADOOP-226. Fix fsck command to properly consider replication
  3348. counts, now that these can vary per file. (Bryan Pendleton via cutting)
  3349. 41. HADOOP-425. Add a Python MapReduce example, using Jython.
  3350. (omalley via cutting)
  3351. Release 0.4.0 - 2006-06-28
  3352. 1. HADOOP-298. Improved progress reports for CopyFiles utility, the
  3353. distributed file copier. (omalley via cutting)
  3354. 2. HADOOP-299. Fix the task tracker, permitting multiple jobs to
  3355. more easily execute at the same time. (omalley via cutting)
  3356. 3. HADOOP-250. Add an HTTP user interface to the namenode, running
  3357. on port 50070. (Devaraj Das via cutting)
  3358. 4. HADOOP-123. Add MapReduce unit tests that run a jobtracker and
  3359. tasktracker, greatly increasing code coverage.
  3360. (Milind Bhandarkar via cutting)
  3361. 5. HADOOP-271. Add links from jobtracker's web ui to tasktracker's
  3362. web ui. Also attempt to log a thread dump of child processes
  3363. before they're killed. (omalley via cutting)
  3364. 6. HADOOP-210. Change RPC server to use a selector instead of a
  3365. thread per connection. This should make it easier to scale to
  3366. larger clusters. Note that this incompatibly changes the RPC
  3367. protocol: clients and servers must both be upgraded to the new
  3368. version to ensure correct operation. (Devaraj Das via cutting)
  3369. 7. HADOOP-311. Change DFS client to retry failed reads, so that a
  3370. single read failure will not alone cause failure of a task.
  3371. (omalley via cutting)
  3372. 8. HADOOP-314. Remove the "append" phase when reducing. Map output
  3373. files are now directly passed to the sorter, without first
  3374. appending them into a single file. Now, the first third of reduce
  3375. progress is "copy" (transferring map output to reduce nodes), the
  3376. middle third is "sort" (sorting map output) and the last third is
  3377. "reduce" (generating output). Long-term, the "sort" phase will
  3378. also be removed. (omalley via cutting)
  3379. 9. HADOOP-316. Fix a potential deadlock in the jobtracker.
  3380. (omalley via cutting)
  3381. 10. HADOOP-319. Fix FileSystem.close() to remove the FileSystem
  3382. instance from the cache. (Hairong Kuang via cutting)
  3383. 11. HADOOP-135. Fix potential deadlock in JobTracker by acquiring
  3384. locks in a consistent order. (omalley via cutting)
  3385. 12. HADOOP-278. Check for existence of input directories before
  3386. starting MapReduce jobs, making it easier to debug this common
  3387. error. (omalley via cutting)
  3388. 13. HADOOP-304. Improve error message for
  3389. UnregisterdDatanodeException to include expected node name.
  3390. (Konstantin Shvachko via cutting)
  3391. 14. HADOOP-305. Fix TaskTracker to ask for new tasks as soon as a
  3392. task is finished, rather than waiting for the next heartbeat.
  3393. This improves performance when tasks are short.
  3394. (Mahadev Konar via cutting)
  3395. 15. HADOOP-59. Add support for generic command line options. One may
  3396. now specify the filesystem (-fs), the MapReduce jobtracker (-jt),
  3397. a config file (-conf) or any configuration property (-D). The
  3398. "dfs", "fsck", "job", and "distcp" commands currently support
  3399. this, with more to be added. (Hairong Kuang via cutting)
  3400. 16. HADOOP-296. Permit specification of the amount of reserved space
  3401. on a DFS datanode. One may specify both the percentage free and
  3402. the number of bytes. (Johan Oskarson via cutting)
  3403. 17. HADOOP-325. Fix a problem initializing RPC parameter classes, and
  3404. remove the workaround used to initialize classes.
  3405. (omalley via cutting)
  3406. 18. HADOOP-328. Add an option to the "distcp" command to ignore read
  3407. errors while copying. (omalley via cutting)
  3408. 19. HADOOP-27. Don't allocate tasks to trackers whose local free
  3409. space is too low. (Johan Oskarson via cutting)
  3410. 20. HADOOP-318. Keep slow DFS output from causing task timeouts.
  3411. This incompatibly changes some public interfaces, adding a
  3412. parameter to OutputFormat.getRecordWriter() and the new method
  3413. Reporter.progress(), but it makes lots of tasks succeed that were
  3414. previously failing. (Milind Bhandarkar via cutting)
  3415. Release 0.3.2 - 2006-06-09
  3416. 1. HADOOP-275. Update the streaming contrib module to use log4j for
  3417. its logging. (Michel Tourn via cutting)
  3418. 2. HADOOP-279. Provide defaults for log4j logging parameters, so
  3419. that things still work reasonably when Hadoop-specific system
  3420. properties are not provided. (omalley via cutting)
  3421. 3. HADOOP-280. Fix a typo in AllTestDriver which caused the wrong
  3422. test to be run when "DistributedFSCheck" was specified.
  3423. (Konstantin Shvachko via cutting)
  3424. 4. HADOOP-240. DFS's mkdirs() implementation no longer logs a warning
  3425. when the directory already exists. (Hairong Kuang via cutting)
  3426. 5. HADOOP-285. Fix DFS datanodes to be able to re-join the cluster
  3427. after the connection to the namenode is lost. (omalley via cutting)
  3428. 6. HADOOP-277. Fix a race condition when creating directories.
  3429. (Sameer Paranjpye via cutting)
  3430. 7. HADOOP-289. Improved exception handling in DFS datanode.
  3431. (Konstantin Shvachko via cutting)
  3432. 8. HADOOP-292. Fix client-side logging to go to standard error
  3433. rather than standard output, so that it can be distinguished from
  3434. application output. (omalley via cutting)
  3435. 9. HADOOP-294. Fixed bug where conditions for retrying after errors
  3436. in the DFS client were reversed. (omalley via cutting)
  3437. Release 0.3.1 - 2006-06-05
  3438. 1. HADOOP-272. Fix a bug in bin/hadoop setting log
  3439. parameters. (omalley & cutting)
  3440. 2. HADOOP-274. Change applications to log to standard output rather
  3441. than to a rolling log file like daemons. (omalley via cutting)
  3442. 3. HADOOP-262. Fix reduce tasks to report progress while they're
  3443. waiting for map outputs, so that they do not time out.
  3444. (Mahadev Konar via cutting)
  3445. 4. HADOOP-245 and HADOOP-246. Improvements to record io package.
  3446. (Mahadev Konar via cutting)
  3447. 5. HADOOP-276. Add logging config files to jar file so that they're
  3448. always found. (omalley via cutting)
  3449. Release 0.3.0 - 2006-06-02
  3450. 1. HADOOP-208. Enhance MapReduce web interface, adding new pages
  3451. for failed tasks, and tasktrackers. (omalley via cutting)
  3452. 2. HADOOP-204. Tweaks to metrics package. (David Bowen via cutting)
  3453. 3. HADOOP-209. Add a MapReduce-based file copier. This will
  3454. copy files within or between file systems in parallel.
  3455. (Milind Bhandarkar via cutting)
  3456. 4. HADOOP-146. Fix DFS to check when randomly generating a new block
  3457. id that no existing blocks already have that id.
  3458. (Milind Bhandarkar via cutting)
  3459. 5. HADOOP-180. Make a daemon thread that does the actual task clean ups, so
  3460. that the main offerService thread in the taskTracker doesn't get stuck
  3461. and miss his heartbeat window. This was killing many task trackers as
  3462. big jobs finished (300+ tasks / node). (omalley via cutting)
  3463. 6. HADOOP-200. Avoid transmitting entire list of map task names to
  3464. reduce tasks. Instead just transmit the number of map tasks and
  3465. henceforth refer to them by number when collecting map output.
  3466. (omalley via cutting)
  3467. 7. HADOOP-219. Fix a NullPointerException when handling a checksum
  3468. exception under SequenceFile.Sorter.sort(). (cutting & stack)
  3469. 8. HADOOP-212. Permit alteration of the file block size in DFS. The
  3470. default block size for new files may now be specified in the
  3471. configuration with the dfs.block.size property. The block size
  3472. may also be specified when files are opened.
  3473. (omalley via cutting)
  3474. 9. HADOOP-218. Avoid accessing configuration while looping through
  3475. tasks in JobTracker. (Mahadev Konar via cutting)
  3476. 10. HADOOP-161. Add hashCode() method to DFS's Block.
  3477. (Milind Bhandarkar via cutting)
  3478. 11. HADOOP-115. Map output types may now be specified. These are also
  3479. used as reduce input types, thus permitting reduce input types to
  3480. differ from reduce output types. (Runping Qi via cutting)
  3481. 12. HADOOP-216. Add task progress to task status page.
  3482. (Bryan Pendelton via cutting)
  3483. 13. HADOOP-233. Add web server to task tracker that shows running
  3484. tasks and logs. Also add log access to job tracker web interface.
  3485. (omalley via cutting)
  3486. 14. HADOOP-205. Incorporate pending tasks into tasktracker load
  3487. calculations. (Mahadev Konar via cutting)
  3488. 15. HADOOP-247. Fix sort progress to better handle exceptions.
  3489. (Mahadev Konar via cutting)
  3490. 16. HADOOP-195. Improve performance of the transfer of map outputs to
  3491. reduce nodes by performing multiple transfers in parallel, each on
  3492. a separate socket. (Sameer Paranjpye via cutting)
  3493. 17. HADOOP-251. Fix task processes to be tolerant of failed progress
  3494. reports to their parent process. (omalley via cutting)
  3495. 18. HADOOP-325. Improve the FileNotFound exceptions thrown by
  3496. LocalFileSystem to include the name of the file.
  3497. (Benjamin Reed via cutting)
  3498. 19. HADOOP-254. Use HTTP to transfer map output data to reduce
  3499. nodes. This, together with HADOOP-195, greatly improves the
  3500. performance of these transfers. (omalley via cutting)
  3501. 20. HADOOP-163. Cause datanodes that\ are unable to either read or
  3502. write data to exit, so that the namenode will no longer target
  3503. them for new blocks and will replicate their data on other nodes.
  3504. (Hairong Kuang via cutting)
  3505. 21. HADOOP-222. Add a -setrep option to the dfs commands that alters
  3506. file replication levels. (Johan Oskarson via cutting)
  3507. 22. HADOOP-75. In DFS, only check for a complete file when the file
  3508. is closed, rather than as each block is written.
  3509. (Milind Bhandarkar via cutting)
  3510. 23. HADOOP-124. Change DFS so that datanodes are identified by a
  3511. persistent ID rather than by host and port. This solves a number
  3512. of filesystem integrity problems, when, e.g., datanodes are
  3513. restarted. (Konstantin Shvachko via cutting)
  3514. 24. HADOOP-256. Add a C API for DFS. (Arun C Murthy via cutting)
  3515. 25. HADOOP-211. Switch to use the Jakarta Commons logging internally,
  3516. configured to use log4j by default. (Arun C Murthy and cutting)
  3517. 26. HADOOP-265. Tasktracker now fails to start if it does not have a
  3518. writable local directory for temporary files. In this case, it
  3519. logs a message to the JobTracker and exits. (Hairong Kuang via cutting)
  3520. 27. HADOOP-270. Fix potential deadlock in datanode shutdown.
  3521. (Hairong Kuang via cutting)
  3522. Release 0.2.1 - 2006-05-12
  3523. 1. HADOOP-199. Fix reduce progress (broken by HADOOP-182).
  3524. (omalley via cutting)
  3525. 2. HADOOP-201. Fix 'bin/hadoop dfs -report'. (cutting)
  3526. 3. HADOOP-207. Fix JDK 1.4 incompatibility introduced by HADOOP-96.
  3527. System.getenv() does not work in JDK 1.4. (Hairong Kuang via cutting)
  3528. Release 0.2.0 - 2006-05-05
  3529. 1. Fix HADOOP-126. 'bin/hadoop dfs -cp' now correctly copies .crc
  3530. files. (Konstantin Shvachko via cutting)
  3531. 2. Fix HADOOP-51. Change DFS to support per-file replication counts.
  3532. (Konstantin Shvachko via cutting)
  3533. 3. Fix HADOOP-131. Add scripts to start/stop dfs and mapred daemons.
  3534. Use these in start/stop-all scripts. (Chris Mattmann via cutting)
  3535. 4. Stop using ssh options by default that are not yet in widely used
  3536. versions of ssh. Folks can still enable their use by uncommenting
  3537. a line in conf/hadoop-env.sh. (cutting)
  3538. 5. Fix HADOOP-92. Show information about all attempts to run each
  3539. task in the web ui. (Mahadev konar via cutting)
  3540. 6. Fix HADOOP-128. Improved DFS error handling. (Owen O'Malley via cutting)
  3541. 7. Fix HADOOP-129. Replace uses of java.io.File with new class named
  3542. Path. This fixes bugs where java.io.File methods were called
  3543. directly when FileSystem methods were desired, and reduces the
  3544. likelihood of such bugs in the future. It also makes the handling
  3545. of pathnames more consistent between local and dfs FileSystems and
  3546. between Windows and Unix. java.io.File-based methods are still
  3547. available for back-compatibility, but are deprecated and will be
  3548. removed once 0.2 is released. (cutting)
  3549. 8. Change dfs.data.dir and mapred.local.dir to be comma-separated
  3550. lists of directories, no longer be space-separated. This fixes
  3551. several bugs on Windows. (cutting)
  3552. 9. Fix HADOOP-144. Use mapred task id for dfs client id, to
  3553. facilitate debugging. (omalley via cutting)
  3554. 10. Fix HADOOP-143. Do not line-wrap stack-traces in web ui.
  3555. (omalley via cutting)
  3556. 11. Fix HADOOP-118. In DFS, improve clean up of abandoned file
  3557. creations. (omalley via cutting)
  3558. 12. Fix HADOOP-138. Stop multiple tasks in a single heartbeat, rather
  3559. than one per heartbeat. (Stefan via cutting)
  3560. 13. Fix HADOOP-139. Remove a potential deadlock in
  3561. LocalFileSystem.lock(). (Igor Bolotin via cutting)
  3562. 14. Fix HADOOP-134. Don't hang jobs when the tasktracker is
  3563. misconfigured to use an un-writable local directory. (omalley via cutting)
  3564. 15. Fix HADOOP-115. Correct an error message. (Stack via cutting)
  3565. 16. Fix HADOOP-133. Retry pings from child to parent, in case of
  3566. (local) communcation problems. Also log exit status, so that one
  3567. can distinguish patricide from other deaths. (omalley via cutting)
  3568. 17. Fix HADOOP-142. Avoid re-running a task on a host where it has
  3569. previously failed. (omalley via cutting)
  3570. 18. Fix HADOOP-148. Maintain a task failure count for each
  3571. tasktracker and display it in the web ui. (omalley via cutting)
  3572. 19. Fix HADOOP-151. Close a potential socket leak, where new IPC
  3573. connection pools were created per configuration instance that RPCs
  3574. use. Now a global RPC connection pool is used again, as
  3575. originally intended. (cutting)
  3576. 20. Fix HADOOP-69. Don't throw a NullPointerException when getting
  3577. hints for non-existing file split. (Bryan Pendelton via cutting)
  3578. 21. Fix HADOOP-157. When a task that writes dfs files (e.g., a reduce
  3579. task) failed and was retried, it would fail again and again,
  3580. eventually failing the job. The problem was that dfs did not yet
  3581. know that the failed task had abandoned the files, and would not
  3582. yet let another task create files with the same names. Dfs now
  3583. retries when creating a file long enough for locks on abandoned
  3584. files to expire. (omalley via cutting)
  3585. 22. Fix HADOOP-150. Improved task names that include job
  3586. names. (omalley via cutting)
  3587. 23. Fix HADOOP-162. Fix ConcurrentModificationException when
  3588. releasing file locks. (omalley via cutting)
  3589. 24. Fix HADOOP-132. Initial check-in of new Metrics API, including
  3590. implementations for writing metric data to a file and for sending
  3591. it to Ganglia. (David Bowen via cutting)
  3592. 25. Fix HADOOP-160. Remove some uneeded synchronization around
  3593. time-consuming operations in the TaskTracker. (omalley via cutting)
  3594. 26. Fix HADOOP-166. RPCs failed when passed subclasses of a declared
  3595. parameter type. This is fixed by changing ObjectWritable to store
  3596. both the declared type and the instance type for Writables. Note
  3597. that this incompatibly changes the format of ObjectWritable and
  3598. will render unreadable any ObjectWritables stored in files.
  3599. Nutch only uses ObjectWritable in intermediate files, so this
  3600. should not be a problem for Nutch. (Stefan & cutting)
  3601. 27. Fix HADOOP-168. MapReduce RPC protocol methods should all declare
  3602. IOException, so that timeouts are handled appropriately.
  3603. (omalley via cutting)
  3604. 28. Fix HADOOP-169. Don't fail a reduce task if a call to the
  3605. jobtracker to locate map outputs fails. (omalley via cutting)
  3606. 29. Fix HADOOP-170. Permit FileSystem clients to examine and modify
  3607. the replication count of individual files. Also fix a few
  3608. replication-related bugs. (Konstantin Shvachko via cutting)
  3609. 30. Permit specification of a higher replication levels for job
  3610. submission files (job.xml and job.jar). This helps with large
  3611. clusters, since these files are read by every node. (cutting)
  3612. 31. HADOOP-173. Optimize allocation of tasks with local data. (cutting)
  3613. 32. HADOOP-167. Reduce number of Configurations and JobConf's
  3614. created. (omalley via cutting)
  3615. 33. NUTCH-256. Change FileSystem#createNewFile() to create a .crc
  3616. file. The lack of a .crc file was causing warnings. (cutting)
  3617. 34. HADOOP-174. Change JobClient to not abort job until it has failed
  3618. to contact the job tracker for five attempts, not just one as
  3619. before. (omalley via cutting)
  3620. 35. HADOOP-177. Change MapReduce web interface to page through tasks.
  3621. Previously, when jobs had more than a few thousand tasks they
  3622. could crash web browsers. (Mahadev Konar via cutting)
  3623. 36. HADOOP-178. In DFS, piggyback blockwork requests from datanodes
  3624. on heartbeat responses from namenode. This reduces the volume of
  3625. RPC traffic. Also move startup delay in blockwork from datanode
  3626. to namenode. This fixes a problem where restarting the namenode
  3627. triggered a lot of uneeded replication. (Hairong Kuang via cutting)
  3628. 37. HADOOP-183. If the DFS namenode is restarted with different
  3629. minimum and/or maximum replication counts, existing files'
  3630. replication counts are now automatically adjusted to be within the
  3631. newly configured bounds. (Hairong Kuang via cutting)
  3632. 38. HADOOP-186. Better error handling in TaskTracker's top-level
  3633. loop. Also improve calculation of time to send next heartbeat.
  3634. (omalley via cutting)
  3635. 39. HADOOP-187. Add two MapReduce examples/benchmarks. One creates
  3636. files containing random data. The second sorts the output of the
  3637. first. (omalley via cutting)
  3638. 40. HADOOP-185. Fix so that, when a task tracker times out making the
  3639. RPC asking for a new task to run, the job tracker does not think
  3640. that it is actually running the task returned. (omalley via cutting)
  3641. 41. HADOOP-190. If a child process hangs after it has reported
  3642. completion, its output should not be lost. (Stack via cutting)
  3643. 42. HADOOP-184. Re-structure some test code to better support testing
  3644. on a cluster. (Mahadev Konar via cutting)
  3645. 43. HADOOP-191 Add streaming package, Hadoop's first contrib module.
  3646. This permits folks to easily submit MapReduce jobs whose map and
  3647. reduce functions are implemented by shell commands. Use
  3648. 'bin/hadoop jar build/hadoop-streaming.jar' to get details.
  3649. (Michel Tourn via cutting)
  3650. 44. HADOOP-189. Fix MapReduce in standalone configuration to
  3651. correctly handle job jar files that contain a lib directory with
  3652. nested jar files. (cutting)
  3653. 45. HADOOP-65. Initial version of record I/O framework that enables
  3654. the specification of record types and generates marshalling code
  3655. in both Java and C++. Generated Java code implements
  3656. WritableComparable, but is not yet otherwise used by
  3657. Hadoop. (Milind Bhandarkar via cutting)
  3658. 46. HADOOP-193. Add a MapReduce-based FileSystem benchmark.
  3659. (Konstantin Shvachko via cutting)
  3660. 47. HADOOP-194. Add a MapReduce-based FileSystem checker. This reads
  3661. every block in every file in the filesystem. (Konstantin Shvachko
  3662. via cutting)
  3663. 48. HADOOP-182. Fix so that lost task trackers to not change the
  3664. status of reduce tasks or completed jobs. Also fixes the progress
  3665. meter so that failed tasks are subtracted. (omalley via cutting)
  3666. 49. HADOOP-96. Logging improvements. Log files are now separate from
  3667. standard output and standard error files. Logs are now rolled.
  3668. Logging of all DFS state changes can be enabled, to facilitate
  3669. debugging. (Hairong Kuang via cutting)
  3670. Release 0.1.1 - 2006-04-08
  3671. 1. Added CHANGES.txt, logging all significant changes to Hadoop. (cutting)
  3672. 2. Fix MapReduceBase.close() to throw IOException, as declared in the
  3673. Closeable interface. This permits subclasses which override this
  3674. method to throw that exception. (cutting)
  3675. 3. Fix HADOOP-117. Pathnames were mistakenly transposed in
  3676. JobConf.getLocalFile() causing many mapred temporary files to not
  3677. be removed. (Raghavendra Prabhu via cutting)
  3678. 4. Fix HADOOP-116. Clean up job submission files when jobs complete.
  3679. (cutting)
  3680. 5. Fix HADOOP-125. Fix handling of absolute paths on Windows (cutting)
  3681. Release 0.1.0 - 2006-04-01
  3682. 1. The first release of Hadoop.