CHANGES.txt 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273
  1. Hadoop MapReduce Change Log
  2. Release 0.23.0 - Unreleased
  3. INCOMPATIBLE CHANGES
  4. MAPREDUCE-2455. Remove deprecated JobTracker.State in favour of
  5. JobTrackerStatus. (tomwhite)
  6. MAPREDUCE-2430. Remove mrunit contrib. (nigel via eli)
  7. MAPREDUCE-2606. Remove IsolationRunner. (Alejandro Abdelnur via eli)
  8. NEW FEATURES
  9. MAPREDUCE-2682. Add "mapred classpath" command to print classpath
  10. for MR applications. (vinodkv via acmurthy)
  11. MAPREDUCE-2107. [Gridmix] Total heap usage emulation in Gridmix.
  12. (Amar Kamat and Ravi Gummadi via amarrk)
  13. MAPREDUCE-2106. [Gridmix] Cumulative CPU usage emulation in Gridmix.
  14. (amarrk)
  15. MAPREDUCE-2543. [Gridmix] High-Ram feature emulation in Gridmix. (amarrk)
  16. MAPREDUCE-2408. [Gridmix] Compression emulation in Gridmix. (amarrk)
  17. MAPREDUCE-2473. Add "mapred groups" command to query the server-side groups
  18. resolved for a user. (Aaron T. Myers via todd)
  19. MAPREDUCE-461. Enable ServicePlugins for the JobTracker.
  20. (Fredrik Hedberg via tomwhite)
  21. MAPREDUCE-2521. Create RPM and Debian packages for MapReduce. Changes
  22. deployment layout to be consistent across the binary tgz, rpm, and deb.
  23. (Eric Yang via omalley)
  24. MAPREDUCE-2323. Add metrics to the fair scheduler. (todd)
  25. MAPREDUCE-2037. Capture intermediate progress, CPU and memory usage for
  26. tasks. (Dick King via acmurthy)
  27. IMPROVEMENTS
  28. MAPREDUCE-2187. Reporter sends progress during sort/merge. (Anupam Seth via
  29. acmurthy)
  30. MAPREDUCE-2365. Add counters to track bytes (read,written) via
  31. File(Input,Output)Format. (Siddharth Seth via acmurthy)
  32. MAPREDUCE-2680. Display queue name in job client CLI. (acmurthy)
  33. MAPREDUCE-2679. Minor changes to sync trunk with MR-279 branch. (acmurthy)
  34. MAPREDUCE-2400. Remove Cluster's dependency on JobTracker via a
  35. ServiceProvider for the actual implementation. (tomwhite via acmurthy)
  36. MAPREDUCE-2596. [Gridmix] Summarize Gridmix runs. (amarrk)
  37. MAPREDUCE-2563. [Gridmix] Add High-Ram emulation system tests to
  38. Gridmix. (Vinay Kumar Thota via amarrk)
  39. MAPREDUCE-2104. [Rumen] Add Cpu, Memory and Heap usages to
  40. TraceBuilder's output. (amarrk)
  41. MAPREDUCE-2554. [Gridmix] Add distributed cache emulation system tests
  42. to Gridmix. (Vinay Kumar Thota via amarrk)
  43. MAPREDUCE-2543. [Gridmix] High-Ram feature emulation testcase. (amarrk)
  44. MAPREDUCE-2469. Task counters should also report the total heap usage of
  45. the task. (Ravi Gummadi and Amar Ramesh Kamat via amarrk)
  46. MAPREDUCE-2544. [Gridmix] Add compression emulation system tests to
  47. Gridmix. (Vinay Kumar Thota via amarrk)
  48. MAPREDUCE-2517. [Gridmix] Add system tests to Gridmix.
  49. (Vinay Kumar Thota via amarrk)
  50. MAPREDUCE-2492. The new MapReduce API should make available task's
  51. progress to the task. (amarrk)
  52. MAPREDUCE-2153. Bring in more job configuration properties in to the trace
  53. file. (Rajesh Balamohan via amarrk)
  54. MAPREDUCE-1461. Feature to instruct rumen-folder utility to skip jobs worth
  55. of specific duration. (Rajesh Balamohan via amarrk)
  56. MAPREDUCE-2172. Added test-patch.properties required by test-patch.sh
  57. (nigel)
  58. MAPREDUCE-2156. Raid-aware FSCK. (Patrick Kling via dhruba)
  59. MAPREDUCE-2215. A more elegant FileSystem#listCorruptFileBlocks API
  60. (RAID changes) (Patrick Kling via hairong)
  61. MAPREDUCE-1831. BlockPlacement policy for HDFS-RAID.
  62. (Scott Chen via dhruba)
  63. MAPREDUCE-1906. Lower minimum heartbeat interval for TaskTracker
  64. (Scott Carey and Todd Lipcon via todd)
  65. MAPREDUCE-1382. MRAsyncDiscService should tolerate missing local.dir.
  66. (Zheng Shao and tomwhite via tomwhite)
  67. MAPREDUCE-2263. MapReduce side of HADOOP-6904: RPC compatibility.
  68. (hairong)
  69. MAPREDUCE-1706. Log RAID recoveries on HDFS. (schen)
  70. MAPREDUCE-2334. Update BlockPlacementPolicyRaid for the new method
  71. in BlockPlacementPolicy. (szetszwo)
  72. MAPREDUCE-2254. Allow setting of end-of-record delimiter for
  73. TextInputFormat (Ahmed Radwan via todd)
  74. MAPREDUCE-1927. Unit test for HADOOP-6835 (concatenated gzip support).
  75. (Greg Roelofs via tomwhite)
  76. MAPREDUCE-2206. The task-cleanup tasks should be optional. (schen)
  77. MAPREDUCE-2225. MultipleOutputs should not require the use of 'Writable'.
  78. (Harsh J Chouraria via tomwhite)
  79. MAPREDUCE-1811. Job.monitorAndPrintJob() should print status of the job
  80. at completion. (Harsh J Chouraria via tomwhite)
  81. MAPREDUCE-993. bin/hadoop job -events <jobid> <from-event-#> <#-of-events>
  82. help message is confusing. (Harsh J Chouraria via tomwhite)
  83. MAPREDUCE-2302. Add static factory methods in GaloisField. (schen)
  84. MAPREDUCE-2351. mapred.job.tracker.history.completed.location should
  85. support an arbitrary filesystem URI. (tomwhite)
  86. MAPREDUCE-2239. BlockPlacementPolicyRaid should call getBlockLocations
  87. only when necessary. (schen)
  88. MAPREDUCE-2331. Add coverage of task graph servlet to fair scheduler system
  89. test. (todd)
  90. MAPREDUCE-2367. Allow using a file to exclude certain tests from build.
  91. (todd)
  92. MAPREDUCE-2202. Generalize CLITest structure and interfaces to faciliate
  93. upstream adoption (e.g. for web or system testing). (cos)
  94. MAPREDUCE-2420. JobTracker should be able to renew delegation token over
  95. HTTP (Boris Shkolnik via jitendra)
  96. MAPREDUCE-2474. Add docs to the new API Partitioner on how to access the
  97. Job Configuration. (Harsh J Chouraria via todd)
  98. MAPREDUCE-2475. Disable IPV6 for junit tests. (suresh srinivas via mahadev)
  99. MAPREDUCE-2422. Removed unused internal methods from DistributedCache.
  100. (tomwhite)
  101. MAPREDUCE-2456. Log the reduce taskID and associated TaskTrackers with
  102. failed fetch notifications in the JobTracker log.
  103. (Jeffrey Naisbitt via cdouglas)
  104. MAPREDUCE-869. Documentation for config to set map/reduce task environment
  105. (Alejandro Abdelnur via todd)
  106. MAPREDUCE-2410. Add entry to streaming FAQ about how streaming reducers
  107. receive keys. (Harsh J Chouraria via todd)
  108. MAPREDUCE-2499. MR part of HADOOP-7291. (eli)
  109. MAPREDUCE-2497. Missing spaces in error messages. (eli)
  110. MAPREDUCE-2502. JobSubmitter should use mapreduce.job.maps instead of
  111. its deprecated equivalent. (eli via todd)
  112. MAPREDUCE-2381. JobTracker instrumentation not consistent about error
  113. handling. (Philip Zeyliger via tomwhite)
  114. MAPREDUCE-2449. Allow for command line arguments when performing
  115. "Run on Hadoop" action in Eclipse plugin. (Jeff Zemerick via todd)
  116. MAPREDUCE-2483. Remove duplication of jars between Hadoop subprojects
  117. from build artifacts. (Eric Yang via omalley)
  118. MAPREDUCE-2372. TaskLogAppender mechanism shouldn't be set up in
  119. log4j.properties (todd)
  120. MAPREDUCE-2516. Rename webinterface.private.actions to
  121. mapreduce.jobtracker.webinterface.trusted (Ari Rabkin via todd)
  122. MAPREDUCE-2459. Cache HAR filesystem metadata. (Mac Yang via mahadev)
  123. HADOOP-7259. Contrib modules should include the build.properties from
  124. the enclosing hadoop directory. (omalley)
  125. MAPREDUCE-2494. Order distributed cache deletions by LRU. (Robert Joseph
  126. Evans via cdouglas)
  127. MAPREDUCE-2452. Makes the cancellation of delegation tokens happen in a
  128. separate thread. (ddas)
  129. HADOOP-7106. Reorganize project SVN layout to "unsplit" the projects.
  130. (todd, nigel)
  131. MAPREDUCE-2249. Check the reflexive property of Counters objects when
  132. comparing equality. (Devaraj K via todd)
  133. MAPREDUCE-2623. Update ClusterMapReduceTestCase to use
  134. MiniDFSCluster.Builder (Harsh J Chouraria via eli)
  135. MAPREDUCE-2602. Allow setting of end-of-record delimiter for
  136. TextInputFormat for the old API. (Ahmed Radwan via todd)
  137. MAPREDUCE-2705. Permits parallel multiple task launches.
  138. (Thomas Graves via ddas)
  139. MAPREDUCE-2489. Jobsplits with random hostnames can make the queue
  140. unusable (jeffrey naisbit via mahadev)
  141. MAPREDUCE-2854. update INSTALL with config necessary run mapred on yarn.
  142. (thomas graves via mahadev)
  143. MAPREDUCE-2701. app/Job.java needs UGI for the user that launched it.
  144. (Robert Evans via mahadev)
  145. OPTIMIZATIONS
  146. MAPREDUCE-2026. Make JobTracker.getJobCounters() and
  147. JobInProgress.getCounters() aquire locks in a shorter time period.
  148. (Joydeep Sen Sarma via schen)
  149. MAPREDUCE-2740. MultipleOutputs in new API creates needless
  150. TaskAttemptContexts. (todd)
  151. MAPREDUCE-901. Efficient framework counters. (llu via acmurthy)
  152. BUG FIXES
  153. MAPREDUCE-2603. Disable High-Ram emulation in system tests.
  154. (Vinay Kumar Thota via amarrk)
  155. MAPREDUCE-2539. Fixed NPE in getMapTaskReports in JobClient. (Robert Evans via
  156. acmurthy)
  157. MAPREDUCE-2531. Fixed jobcontrol to downgrade JobID. (Robert Evans via
  158. acmurthy)
  159. MAPREDUCE-1978. Rumen TraceBuilder should provide recursive
  160. input folder scanning.
  161. MAPREDUCE-2416. Remove the restriction of specifying group names in
  162. users-list file for Gridmix in RoundRobinUserResolver mode.
  163. MAPREDUCE-2417. Fix Gridmix in RoundRobinUserResolver mode to
  164. map testing/proxy users to unique users in a trace.
  165. MAPREDUCE-2307. Exception thrown in Jobtracker logs, when the Scheduler
  166. configured is FairScheduler. (Devaraj K via matei)
  167. MAPREDUCE-2199. build is broken 0.22 branch creation. (cos)
  168. MAPREDUCE-1752. Implement getFileBlockLocations in HarFilesystem.
  169. (Patrick Kling via dhruba)
  170. MAPREDUCE-2155. RaidNode should optionally use the mapreduce jobs to
  171. fix missing blocks. (Patrick Kling via dhruba)
  172. MAPREDUCE-1334. Fix TestIndexUpdater by ignoring _SUCCESS file in HDFS.
  173. (Kay Kay via yhemanth)
  174. MAPREDUCE-2232. Add missing methods to TestMapredGroupMappingServiceRefresh.
  175. (Todd Lipcon via eli)
  176. MAPREDUCE-2271. Fix TestSetupTaskScheduling failure on trunk.
  177. (Liyin Liang via todd)
  178. MAPREDUCE-2290. Fix compilation error in TestTaskCommit. (eli)
  179. MAPREDUCE-2294. Fix compilation error in mumak. (todd)
  180. MAPREDUCE-2300. Fix TestUmbilicalProtocolWithJobToken on trunk after
  181. HADOOP-6904. (todd)
  182. MAPREDUCE-2296. Fix references to misspelled method name
  183. getProtocolSigature (todd)
  184. MAPREDUCE-2311. Fix TestFairScheduler failure (schen)
  185. MAPREDUCE-1996. API: Reducer.reduce() method detail misstatement.
  186. (Harsh J Chouraria via tomwhite)
  187. MAPREDUCE-2203. Wrong javadoc for TaskRunner's appendJobJarClasspaths
  188. method. (Jingguo Yao via tomwhite)
  189. MAPREDUCE-2074. Task should fail when symlink creation fails.
  190. (Priyo Mustafi via tomwhite)
  191. MAPREDUCE-1242. Chain APIs error misleading.
  192. (Harsh J Chouraria via tomwhite)
  193. MAPREDUCE-2379. Adds missing DistributedCache configurations in
  194. mapred-default.xml (Todd Lipcon via amareshwari)
  195. MAPREDUCE-2348. Disable mumak tests on trunk since they currently time out
  196. (todd)
  197. MAPREDUCE-2395. TestBlockFixer timing out on trunk. (Ramkumar Vadali via
  198. todd)
  199. MAPREDUCE-2426. Make TestFairSchedulerSystem fail with more verbose output
  200. (todd)
  201. MAPREDUCE-2448. NoSuchMethodError:
  202. org.apache.hadoop.hdfs.TestDatanodeBlockScanner.corruptReplica(..) (eli)
  203. MAPREDUCE-2460. Fix flaky test TestFairSchedulerSystem. (todd)
  204. MAPREDUCE-2451. Log the details from health check script at the
  205. JobTracker. (Thomas Graves via cdouglas)
  206. MAPREDUCE-2467. HDFS-1052 changes break the raid contrib module in
  207. MapReduce. (suresh srinivas via mahadev)
  208. MAPREDUCE-2258. IFile reader closes stream and compressor in wrong order.
  209. (todd via tomwhite)
  210. MAPREDUCE-2518. The t flag is missing in distcp help message. (Wei Yongjun
  211. via szetszwo)
  212. MAPREDUCE-2514. Fix typo in TaskTracker ReinitTrackerAction log message.
  213. (Jonathan Eagles via cdouglas)
  214. MAPREDUCE-2490. Add logging to graylist and blacklist activity to aid
  215. diagnosis of related issues. (Jonathan Eagles via cdouglas)
  216. MAPREDUCE-2495. exit() the TaskTracker when the distributed cache cleanup
  217. thread dies. (Robert Joseph Evans via cdouglas)
  218. MAPREDUCE-2470. Fix NPE in RunningJobs::getCounters. (Robert Joseph Evans
  219. via cdouglas)
  220. MAPREDUCE-2536. Update FsShell -mv command usage in TestMRCLI. (Daryn
  221. Sharp via szetszwo)
  222. MAPREDUCE-2529. Add support for regex-based shuffle metric counting
  223. exceptions. (Thomas Graves via cdouglas)
  224. MAPREDUCE-2559. ant binary fails due to missing c++ lib dir. (eli)
  225. MAPREDUCE-2573. Fix new findbugs warning introduced by MAPREDUCE-2494.
  226. (Robert Joseph Evans via todd)
  227. MAPREDUCE-2581. Spelling errors in log messages. (Tim Sell via eli)
  228. MAPREDUCE-2588. Change raid to the new DataTransferProtocol API. (szetszwo)
  229. MAPREDUCE-2576. Typo in comment in SimulatorLaunchTaskAction.java.
  230. (Tim Sell via jghoman)
  231. MAPREDUCE-2550. Fix bin/mapred to work properly from within a source
  232. checkout (Eric Yang via todd)
  233. MAPREDUCE-2620. Update RAID for HDFS-2087. (szetszwo)
  234. MAPREDUCE-2624. Update RAID for HDFS-2107. (szetszwo)
  235. MAPREDUCE-2670. Fixing spelling mistake in FairSchedulerServlet.java. (eli)
  236. MAPREDUCE-2710. Update JobSubmitter.printTokens(..) for HDFS-2161.
  237. (szetszwo)
  238. MAPREDUCE-2409. DistributedCache maps files and archives to the same path,
  239. despite semantic incompatibility. (Siddharth Seth via cdouglas)
  240. MAPREDUCE-2575. TestMiniMRDFSCaching fails if test.build.dir is set
  241. to something other than build/test (Thomas Graves via mahadev)
  242. MAPREDUCE-2622. Remove the last remaining reference to the deprecated
  243. configuration "io.sort.mb". (Harsh J Chouraria via todd)
  244. MAPREDUCE-2732. Remove directly accessing FSNamesystem.LOG from
  245. TestCopyFiles and TestDistCh. (szetszwo)
  246. MAPREDUCE-2463. Job history files are not moved to done folder when job
  247. history location is hdfs. (Devaraj K via szetszwo)
  248. MAPREDUCE-2243. Close streams propely in a finally-block to avoid leakage
  249. in CompletedJobStatusStore, TaskLog, EventWriter and TotalOrderPartitioner.
  250. (Devaraj K via szetszwo)
  251. MAPREDUCE-2741. Make ant build system work with hadoop-common JAR
  252. generated by Maven. (Alejandro Abdelnur via tomwhite)
  253. MAPREDUCE-2760. mapreduce.jobtracker.split.metainfo.maxsize typoed
  254. in mapred-default.xml. (todd via eli)
  255. MAPREDUCE-2797. Update mapreduce tests and RAID for HDFS-2239. (szetszwo)
  256. MAPREDUCE-2805. Update RAID for HDFS-2241. (szetszwo)
  257. MAPREDUCE-2837. Ported bug fixes from y-merge to prepare for MAPREDUCE-279
  258. merge. (acmurthy)
  259. MAPREDUCE-2541. Fixed a race condition in IndexCache.removeMap. (Binglin
  260. Chang via acmurthy)
  261. MAPREDUCE-2458. Rename sanitized pom.xml in build directory to work around IDE
  262. bug (Luke Lu via mahadev)
  263. MAPREDUCE-279. Fix in MR-279 branch. Clear application notification if sent once
  264. to NodeManager (mahadev)
  265. MAPREDUCE-2433. YARNApplicationConstants hard code app master jar version (Luke
  266. Lu via mahadev)
  267. MAPREDUCE-279. Fix in MR-279 branch. Implement restart for resource manager
  268. phase 1 - Helper classes to store and restore the data structures. (mahadev)
  269. MAPREDUCE-2414. Change MRv2 to use generic interfaces. (Siddharth Seth via
  270. acmurthy)
  271. MAPREDUCE-279. Fix in MR-279 branch. Implement health-checks for the node -
  272. server side(ResourceManager) changes. (vinodkv)
  273. MAPREDUCE-2405: Implement uber-AppMaster (in-cluster LocalJobRunner for MRv2)
  274. (Greg Roelofs via mahadev)
  275. MAPREDUCE-279. Fix in MR-279 branch. Implementing Containers' memory monitoring.
  276. (vinodkv)
  277. MAPREDUCE-2440. Name clashes in TypeConverter (luke via mahadev)
  278. MAPREDUCE-279. Fix in MR-279 branch. Add fail count to the command line of the
  279. application master. (mahadev)
  280. MAPREDUCE-2424. Polish uber-AppMaster: add uber-AM counters and GUI indicators.
  281. (Greg Roelofs via mahadev)
  282. MAPREDUCE-2405. Implement uber-AppMaster (in-cluster LocalJobRunner for MRv2).
  283. (Greg Roelofs and Sharad Agarwal via mahadev)
  284. MAPREDUCE-279. Fix in MR-279 branch. Fix YarnRemoteException to give more
  285. details. (Siddharth Seth via mahadev)
  286. MAPREDUCE-279. Fix in MR-279 branch. WebApp for Job History (Krishna
  287. Ramachandran via mahadev)
  288. MAPREDUCE-279. Fix in MR-279 branch. Install sanitized poms for downstream
  289. sanity (Luke Lu via mahadev)
  290. MAPREDUCE-279. Fix in MR-279 branch. Add HistoryCleanerService to Job History
  291. server. (Krishna Ramachandran via sharad)
  292. MAPREDUCE-279. Fix in MR-279 branch. Implement 'bin/mapred job -list' and
  293. 'bin/mapred job -list-active-trackers'. (acmurthy)
  294. MAPREDUCE-279. Fix in MR-279 branch. Implement 'bin/mapred queue [-info
  295. [-showJobs]] [-list] and enhanced 'bin/mapred job -list' to show queue and
  296. ApplicationMaster information. (acmurthy)
  297. MAPREDUCE-279. Fix in MR-279 branch. Fixed computation of user-limits at
  298. runtime. (acmurthy)
  299. MAPREDUCE-279. Fix in MR-279 branch. Added functionality to refresh queues at
  300. runtime via the 'bin/yarn rmadmin' command. (acmurthy)
  301. MAPREDUCE-279. Fix in MR-279 branch. Added functionality to stop/start queues.
  302. (acmurthy)
  303. MAPREDUCE-279. Fix in MR-279 branch. Introducing web-UI for NodeManager and
  304. linking it from RM UI. (vinodkv)
  305. MAPREDUCE-279. Fix in MR-279 branch. Fix race condition in TestJobHistoryEvents
  306. and TestJobHistoryParsing. (sharad)
  307. MAPREDUCE-279. Fix in MR-279 branch. Add Containers' logs' view to NM UI and
  308. link it from AM UI. (vinodkv)
  309. MAPREDUCE-279. Fix in MR-279 branch. Add ACLs for queues and command-line
  310. utilities for viewing them. (acmurthy)
  311. MAPREDUCE-279. Fix in MR-279 branch. Recovery of MR Application Master from
  312. failures. (sharad)
  313. MAPREDUCE-279. Fix in MR-279 branch. Added support High-RAM applications in
  314. CapacityScheduler. (acmurthy)
  315. MAPREDUCE-279. Fix in MR-279 branch. Completing the ZooKeeper Store for
  316. ResourceManager state. (mahadev)
  317. MAPREDUCE-279. Fix in MR-279 branch. Reorient container localization to be
  318. per-container rather than per-application. (cdouglas)
  319. MAPREDUCE-279. Fix in MR-279 branch. Fix file creation in
  320. JobHistoryEventHandler. (sharad)
  321. MAPREDUCE-279. Fix in MR-279 branch. Disable ContainerMonitoring for non-linux
  322. systems. (vinodkv)
  323. MAPREDUCE-279. Fix in MR-279 branch. Fix container launch w/ inconsistent
  324. credential file naming. (cdouglas)
  325. MAPREDUCE-2434. Metrics for ResourceManager. (Luke Lu via acmurthy)
  326. MAPREDUCE-279. Fix in MR-279 branch. RM Restart Phase 2 - Completed the recovery
  327. of components in the RM (mahadev)
  328. MAPREDUCE-279. Fix in MR-279 branch. Fix to send finish application event only
  329. when the application is finished (mahadev)
  330. MAPREDUCE-2462. Write job conf along with JobHistory, other minor improvements.
  331. (Siddharth Seth via sharad)
  332. MAPREDUCE-279. Fix in MR-279 branch. Implement 'delay scheduling' for better
  333. locality in CapacityScheduler and improved high-ram applications. (acmurthy)
  334. MAPREDUCE-279. Fix in MR-279 branch. Implement Job Acls in MR Application
  335. Master. (sharad)
  336. MAPREDUCE-279. Fix in MR-279 branch. Moving userlogs out of container work-dir
  337. into a separate directory structure. (vinodkv)
  338. MAPREDUCE-279. Fix in MR-279 branch. Completing RM Restart. Completed Phase 3 of
  339. making sure events are logged and restored (mahadev)
  340. MAPREDUCE-2468. Add metrics for NM Shuffle. (Luke Lu via cdouglas)
  341. MAPREDUCE-279. Fix in MR-279 branch. Adding user log handling for YARN. Making
  342. NM put the user-logs on DFS and providing log-dump tools. (vinodkv)
  343. MAPREDUCE-279. Fix in MR-279 branch. Fixing three tight-loops in RM that are
  344. causing high cpu-usage. (vinodkv)
  345. MAPREDUCE-279. Fix in MR-279 branch. Replacing FileContext usage with FileSystem
  346. to work around security authentication issues with FileContext against a secure
  347. DFS. (vinodkv)
  348. MAPREDUCE-279. Fix in MR-279 branch. Client reconnect to restarted AM. (sharad)
  349. MAPREDUCE-279. Fix in MR-279 branch. Fix refreshProxy in ClientServiceDelegate.
  350. (sharad)
  351. MAPREDUCE-279. Fix in MR-279 branch. Fix Null Pointer in TestUberAM. (sharad)
  352. MAPREDUCE-2478. Improve history server. (Siddharth Seth via sharad)
  353. MAPREDUCE-279. Fix in MR-279 branch. Improved TestJobHistoryEvents and
  354. TestJobHistoryParsing. (sharad)
  355. MAPREDUCE-279. Fix in MR-279 branch. Fix NM to use multiple disks for local
  356. files and the userlogs. (vinodkv)
  357. MAPREDUCE-2480: MR App should not depend on hard coded version of shuffle (luke
  358. lu via mahadev)
  359. MAPREDUCE-279. Fix in MR-279 branch. Propagate error back to client in case of a
  360. job submission failure (mahadev)
  361. MAPREDUCE-279. Fix in MR-279 branch. Fix assembly to add mapreduce shell scripts
  362. to the assembly package. (mahadev)
  363. MAPREDUCE-279. Fix in MR-279 branch. Fix TestQueueMetrics. (Luke Lu via sharad)
  364. MAPREDUCE-279. Fix in MR-279 branch. Removal of stale application-log dirs from
  365. NM local disks. (vinodkv)
  366. MAPREDUCE-279. Fix in MR-279 branch. Add license header and minor cleanup in
  367. history server. (Siddharth Seth via sharad)
  368. MAPREDUCE-279. Fix in MR-279 branch. Minor fix for install instructions.
  369. (mahadev)
  370. MAPREDUCE-279. Fix in MR-279 branch. Fix a race in MR task that was causing MR
  371. containers to overwrite each other's job.xml. Also fix leaking attempt-dirs in
  372. app-local-dir. (vinodkv)
  373. MAPREDUCE-279. Fix in MR-279 branch. Adding valid state to ASM on a finish when
  374. its already completed and also disble UberAM. (mahadev)
  375. MAPREDUCE-279. Fix in MR-279 branch. Fixed CS user limits. (acmurthy)
  376. MAPREDUCE-279. Fix in MR-279 branch. Fixed reservation's bad interaction with
  377. delay scheduling in CS. (acmurthy)
  378. MAPREDUCE-279. Fix in MR-279 branch. Support mapreduce old (0.20) APIs. (sharad)
  379. MAPREDUCE-279. Fix in MR-279 branch. Support fail-fast for MR jobs. (ddas)
  380. MAPREDUCE-279. Fix in MR-279 branch. Fix for clearing container requests on an
  381. AM failure and add tostring methods to taskids and taskattemptids for better
  382. grep support. (mahadev)
  383. MAPREDUCE-279. Fix in MR-279 branch. Speed up communication between MR AM and RM
  384. by relying on a new config rather than AM_EXPIRY_INTERVAL which is too large.
  385. (acmurthy)
  386. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of maximum capacity to use
  387. parent's absolute-capacity rather than the leaf queue's absolute-capacity.
  388. (acmurthy)
  389. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug in JobIDPbImpl that's causing
  390. AM to crash randomly. (vinodkv)
  391. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of maximum capacity in
  392. ParentQueue to use its parent's absolute-capacity rather than its own
  393. absolute-capacity. (acmurthy)
  394. MAPREDUCE-279. Fix in MR-279 branch. Launching bin/yarn and bin/mapred only
  395. *once* in AM for constructing classpaths to avoid multiple forks and huge vmem
  396. usage by AM. (vinodkv)
  397. MAPREDUCE-279. Fix in MR-279 branch. Fix CapacityScheduler to release unused
  398. reservations on application completion. (acmurthy)
  399. MAPREDUCE-279. Fix in MR-279 branch. Fix CapacityScheduler (LeafQueue) to not
  400. allocate DATA_LOCAL containers when they are not required on the rack.
  401. (acmurthy)
  402. MAPREDUCE-279. Fix in MR-279 branch. Makes uber-task disabled by default (ddas)
  403. MAPREDUCE-279. Fix in MR-279 branch. Make logging and memory for AM configurable
  404. for the user via command line (mahadev)
  405. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug in previous patch (r1103657).
  406. Now bin/yarn truly shouldn't be launched multiple times in a single AM.
  407. (vinodkv)
  408. MAPREDUCE-279. Fix in MR-279 branch. Fixing a bug to do with setting the staging
  409. dir. (ddas)
  410. MAPREDUCE-279. Fix in MR-279 branch. Fixed Composite Service to shutdown
  411. services if an error occurs on starting any one of those (mahadev & chris)
  412. MAPREDUCE-279. Fix in MR-279 branch. Fix the tests to use jvm fork mode to avoid
  413. errors in shutting down services (sidharth seth)
  414. MAPREDUCE-2500. PB factories are not thread safe (Siddharth Seth via mahadev)
  415. MAPREDUCE-2504. race in JobHistoryEventHandler stop (Siddharth Seth via mahadev)
  416. MAPREDUCE-279. Fix in MR-279 branch. Fix job hang if the AM launch fails.
  417. (mahadev)
  418. MAPREDUCE-2509. Fix NPE in UI for pending attempts. (Luke Lu via mahadev)
  419. MAPREDUCE-279. Fix in MR-279 branch. Add junit jar to lib in assembly (mahadev
  420. and luke)
  421. MAPREDUCE-279. Fix in MR-279 branch. Distributed cache bug fix to pass Terasort.
  422. (vinodkv)
  423. MAPREDUCE-279. Fix in MR-279 branch. Fix null pointer exception in kill task
  424. attempt (mahadev)
  425. MAPREDUCE-279. Fix in MR-279 branch. Refactored RMContainerAllocator to release
  426. unused containers. (sharad)
  427. MAPREDUCE-279. Fix in MR-279 branch. Changed Scheduler to return available limit
  428. to AM in the allocate api. (acmurthy)
  429. MAPREDUCE-279. Fix in MR-279 branch. Fix nodemanager expiry to not throw OOM.
  430. (mahadev)
  431. MAPREDUCE-279. Fix in MR-279 branch. Use DefaultContainerExecutor for
  432. integration tests. (cdouglas)
  433. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in test case (mahadev)
  434. MAPREDUCE-279. Fix in MR-279 branch. Fix for regression on the scheduling of
  435. reduces before maps are done (ddas)
  436. MAPREDUCE-279. Fix in MR-279 branch. Fix distributed-cache related bugs.
  437. (vinodkv)
  438. MAPREDUCE-279. Fix in MR-279 branch. Ensure unused containers released by AM are
  439. correctly counted for queue-capacity. (acmurthy)
  440. MAPREDUCE-279. Fix in MR-279 branch. Fix TestRuntimeEstimators (Siddharth Seth
  441. via ddas)
  442. MAPREDUCE-279. Fix in MR-279 branch. Fix queue refresh to correctly record newly
  443. added queues in CapacityScheduler. (acmurthy)
  444. MAPREDUCE-279. Fix in MR-279 branch. Added metrics for tracking reservations in
  445. CapacityScheduler. (Luke Lu via acmurthy)
  446. MAPREDUCE-2522. Security for JobHistory service. (Siddharth Seth via mahadev)
  447. MAPREDUCE-2534. Fix CI breaking hard coded version in jobclient pom. (Luke Lu
  448. via mahadev)
  449. MAPREDUCE-279. Fix in MR-279 branch. Add public cache. (cdouglas)
  450. MAPREDUCE-279. Fix in MR-279 branch. Made number of RPC server threads
  451. configurable. (acmurthy)
  452. MAPREDUCE-279. Fix in MR-279 branch. Added acl check for RMAdmin. (acmurthy)
  453. MAPREDUCE-279. Fix in MR-279 branch. Adding job kill for any state that the job
  454. is in with access control. (mahadev)
  455. MAPREDUCE-279. Fix in MR-279 branch. Add debug statements for AM not launching
  456. (mahadev)
  457. MAPREDUCE-279. Fix in MR-279 branch. Fixing race condition leader to hung jobs
  458. in scheduler negotiator (mahadev)
  459. MAPREDUCE-279. Fix in MR-279 branch. Add debug config for delaying delete of
  460. local files. (cdouglas)
  461. MAPREDUCE-2527. Metrics for MRAppMaster (Luke lu via mahadev)
  462. MAPREDUCE-2532. Metrics for NodeManager (Luke Lu via mahadev)
  463. MAPREDUCE-279. Fix in MR-279 branch. Fixed an NPE during handling of unnecessary
  464. reservations in CS. (acmurthy)
  465. MAPREDUCE-279. Fix in MR-279 branch. Fix for public dist cache to work with non
  466. default hdfs (mahadev &ddas)
  467. MAPREDUCE-279. Fix in MR-279 branch. Making streaming -file option work. Also
  468. minor fixes for successful compilation of contrib tests. (vinodkv)
  469. MAPREDUCE-2536. Backporting changes to MR-279.
  470. MAPREDUCE-279. Fix in MR-279 branch. Bugfix for using user staging directory for
  471. history files (Siddharth Seth via mahadev)
  472. MAPREDUCE-279. Fix in MR-279 branch. First fix for making basic speculative
  473. execution work (ddas)
  474. MAPREDUCE-279. Fix in MR-279 branch. Fixes for TestFail/Kill (ddas)
  475. MAPREDUCE-279. Fix in MR-279 branch. Set correct version of avro-maven-plugin
  476. that is available in apache maven repositories. (vinodkv)
  477. MAPREDUCE-279. Fix in MR-279 branch. Fixing and reneabling
  478. TestContainerTokenSecretManager. (vinodkv)
  479. MAPREDUCE-279. Fix in MR-279 branch. Cleaning up configuration constants in
  480. mapreduce modules. (vinodkv)
  481. MAPREDUCE-279. Fix in MR-279 branch. Fixing NPE on speculator in MRAppMaster and
  482. making job-history optional in tests to make test goal succeed. (vinodk and
  483. sharadag).
  484. MAPREDUCE-279. Fix in MR-279 branch. Fixed NPE in CS by checking Application
  485. state before scheduling and fixing synchronization in CS. (acmurthy)
  486. MAPREDUCE-279. Fix in MR-279 branch. Making pipes work with YARN. Changed pipes
  487. to get log-locations from an environmental variable. (vinodkv)
  488. MAPREDUCE-279. Fix in MR-279 branch. Ensure 'lost' NodeManagers are dealt
  489. appropriately, the containers are released correctly. (acmurthy)
  490. MAPREDUCE-279. Fix in MR-279 branch. Adding some more logging for AM expiry logs
  491. (mahadev)
  492. MAPREDUCE-279. Fix in MR-279 branch. Reduce ramp up and zero maps support.
  493. (sharad)
  494. MAPREDUCE-279. Fix in MR-279 branch. Allowing hdfs calls from streaming/pipes
  495. tasks. (vinodkv)
  496. MAPREDUCE-279. Fix in MR-279 branch. Added ability to decommission nodes and
  497. completed RM administration tools to achieve parity with JobTracker. (acmurthy)
  498. MAPREDUCE-2551. Added JobSummaryLog. (Siddharth Seth via acmurthy)
  499. MAPREDUCE-2552. Fixed NPE in CompletedJob in JobHistoryServer. (Siddharth Seth
  500. via acmurthy)
  501. MAPREDUCE-279. Fix in MR-279 branch. Fix reduce slow start. (sharad)
  502. MAPREDUCE-279. Fix in MR-279 branch. Fixed TestFifoScheduler. (acmurthy)
  503. MAPREDUCE-279. Fix in MR-279 branch. Fix build issue for using yarn.version
  504. instead of hadoop-mapred.version (mahadev and giri)
  505. MAPREDUCE-279. Fix in MR-279 branch. Fixes in the handling of KILL events in the
  506. SUCCEEDED state for tasks in the application master (ddas)
  507. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in TestRMNMRPCResponseId.
  508. (mahadev)
  509. MAPREDUCE-279. Fix in MR-279 branch. Fix a deadlock in the resourcemanager.
  510. (mahadev)
  511. MAPREDUCE-279. Fix in MR-279 branch. NodeStatus.getNodeHealthStatus().setBlah
  512. broken (Siddharth Seth)
  513. MAPREDUCE-279. Fix in MR-279 branch. Fix another NPE in TestRMNMRPCResponseId.
  514. (mahadev)
  515. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in TestNMExpiry (siddharth
  516. seth)
  517. MAPREDUCE-279. Fix in MR-279 branch. Making each node aggregate all its
  518. user-logs to a separate hdfs file. (vinodkv)
  519. MAPREDUCE-279. Fix in MR-279 branch. Fix calculation of max-capacity for a
  520. queue, also fixed a bug in registration of NodeManagers. (acmurthy)
  521. MAPREDUCE-279. Fix in MR-279 branch. More cleaning up constants, removing stale
  522. code, and making conspicuous the envs that apps depend on to be provided by
  523. YARN. (vinodkv)
  524. MAPREDUCE-279. Fix in MR-279 branch. Fix container size rounding in AM and
  525. headroom in RM. (acmurthy and sharad)
  526. MAPREDUCE-279. Fix in MR-279 branch. Disable Job acls until fixed (mahadev)
  527. MAPREDUCE-279. Fix in MR-279 branch. Fix to report job status if the application
  528. is KILLED/FAILED. (mahadev)
  529. MAPREDUCE-279. Fix in MR-279 branch. Fix a corner case in headroom computation -
  530. now reservations are taken into account and headroom is computed much later to
  531. account for allocations/reservations. (acmurthy)
  532. MAPREDUCE-2537. The RM writes its log to
  533. yarn-mapred-resourcemanager-<RM_Host>.out (Robert Evans via mahadev)
  534. MAPREDUCE-279. Fix in MR-279 branch. Fix logging for showing the state of job
  535. (FAILED/KILLED/SUCCEEDED) when it completes (mahadev)
  536. MAPREDUCE-279. Fix in MR-279 branch. Re-enabled TestCapacityScheduler.
  537. (acmurthy)
  538. MAPREDUCE-279. Fix in MR-279 branch. Support for min and max container capacity.
  539. (acmurthy and sharad)
  540. MAPREDUCE-2531. Fixed jobcontrol to downgrade JobID. (Robert Evans via acmurthy)
  541. MAPREDUCE-2539. Fixed NPE in getMapTaskReports in JobClient. (Robert Evans via
  542. acmurthy)
  543. MAPREDUCE-279. Fix in MR-279 branch. Fixing the wrong config key used in
  544. JobHistory that prevented configuring move-thread interval. (vinodkv)
  545. MAPREDUCE-279. Fix in MR-279 branch. Fixed inconsistency in QueueACL enums.
  546. (acmurthy)
  547. MAPREDUCE-279. Fix in MR-279 branch. Fix various issues with Web UI's. (Luke Lu)
  548. MAPREDUCE-279. Fix in MR-279 branch. Fix class cast exception in Task abort for
  549. old mapreduce apis. (sharad)
  550. MAPREDUCE-279. Fix in MR-279 branch. Add deletion of distributed cache
  551. resources. (cdouglas)
  552. MAPREDUCE-279. Fix in MR-279 branch. Disable aggregation of logs onto DFS till
  553. JobHistoryServer starts serving logs. (vinodkv)
  554. MAPREDUCE-279. Fix in MR-279 branch. Cleanup redundant code in TaskAttemptImpl.
  555. (sharad)
  556. MAPREDUCE-279. Fix in MR-279 branch. Work around broken signaling in public
  557. cache. (cdouglas)
  558. MAPREDUCE-2566. YarnConfiguration should reloadConfiguration if instantiated
  559. with a non YarnConfiguration object. (Siddharth Seth)
  560. MAPREDUCE-279. Fix in MR-279 branch. Fully resolve paths when launching
  561. containers. (Siddharth Seth)
  562. MAPREDUCE-279. Fix in MR-279 branch. Re-enabling Uber-AM feature. (vinodkv)
  563. MAPREDUCE-279. Fix in MR-279 branch. Fixed deadlock during expiring NMs.
  564. (acmurthy)
  565. MAPREDUCE-279. Fix in MR-279 branch. Solving NPEs during
  566. ContainerManager#StopContainer. Also removing the unused
  567. ContainerManager#CleanupContainer api. (vinodkv)
  568. MAPREDUCE-279. Fix in MR-279 branch. Remove retries in dist cache so that NM's
  569. do not shutdown (mahadev)
  570. MAPREDUCE-279. Fix in MR-279 branch. Fix classpath construction for Task.
  571. (vinodkv via sharad)
  572. MAPREDUCE-279. Fix in MR-279 branch. Sending Job diagnostics from AM to RM and
  573. redirect to history-url on job completion. (vinodkv and sharadag)
  574. MAPREDUCE-279. Fix in MR-279 branch. Added clover in pom dependency. (sharad)
  575. MAPREDUCE-279. Fix in MR-279 branch. Intermittent TestMRApp failures on faster
  576. Linux desktop. (Luke lu via mahadev)
  577. MAPREDUCE-279. Fix in MR-279 branch. Including source files in release
  578. distribution (Luke Lu via mahadev)
  579. MAPREDUCE-279. Fix in MR-279 branch. Intermittent TestMRApp failures on faster
  580. Linux desktop (part 2) (Luke lu via mahadev)
  581. MAPREDUCE-279. Fix in MR-279 branch. Disable Uber AM. (mahadev)
  582. MAPREDUCE-279. Fix in MR-279 branch. Added few job diagnostic messages. (sharad)
  583. MAPREDUCE-279. Fix in MR-279 branch. Add ability to includes src files in
  584. assembly target for maven (Luke Lu via mahadev)
  585. MAPREDUCE-2582. Cleanup JobHistory event generation.(Siddharth Seth via sharad)
  586. MAPREDUCE-279. Fix in MR-279 branch. Fix rounding off problem in reduce ramp up.
  587. (sharad)
  588. MAPREDUCE-279. Fix in MR-279 branch. Fix more rounding off problems in reduce
  589. ramp up. Also fix a bug preventing the application of the cap on reduce ramp-up.
  590. (Sharad Agarwal via vinodkv)
  591. MAPREDUCE-279. Fix in MR-279 branch. Fix to exclude images dir into the tar
  592. distribution (Luke Lu via gkesavan)
  593. MAPREDUCE-279. Fix in MR-279 branch. Changes a couple of usages of FileContext
  594. to FileSystem in YarnRunner to handle distributed cache path resolutions on
  595. non-default filesystems. (ddas)
  596. MAPREDUCE-279. Fix in MR-279 branch. Display failed/killed attempts of the task
  597. on MR AM UI separately. (vinodkv)
  598. MAPREDUCE-279. Fix in MR-279 branch. Miscellaneous UI fixes + source code
  599. formatting for MR JobHistoryEventHandler. (vinodkv)
  600. MAPREDUCE-279. Fix in MR-279 branch. Fixing broken link to logs for container on
  601. NM web UI. (vinodkv)
  602. MAPREDUCE-279. Fix in MR-279 branch. Fixing the bug which was causing FAILED
  603. jobs to be displayed as COMPLETED on the RM UI. (vinodkv)
  604. MAPREDUCE-279. Fix in MR-279 branch. Job level node blacklisting. (sharad)
  605. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in history event handling
  606. (Siddharth Seth via mahadev)
  607. MAPREDUCE-2569. Ensure root queue allocated 100% capacity. (Jonathan Eagles via
  608. cdouglas)
  609. MAPREDUCE-279. Fix in MR-279 branch. Fix ClassCastException in JobHistoryServer
  610. for certain jobs. (Siddharth Seth via llu)
  611. MAPREDUCE-279. Fix in MR-279 branch. Changes for invoking rack resolution in the
  612. RM and in the AM (ddas)
  613. MAPREDUCE-279. Fix in MR-279 branch. Fix concurrent modification exception in
  614. the Capacity Scheduler (mahadev)
  615. MAPREDUCE-279. Fix in MR-279 branch. Fix stopContainer for setsid challenged
  616. platforms. (llu)
  617. MAPREDUCE-2587. Generate yarn version for UI. (Thomas Graves via lluts page to
  618. the history server UI. (vinodkv)
  619. MAPREDUCE-279. Fix in MR-279 branch. Bug fix to set correct state on containers
  620. so as to avoid duplicate containers from RM to AM. (vinodkv)
  621. MAPREDUCE-279. Fix in MR-279 branch. Hack until MAPREDUCE-2365 is fixed to make
  622. PIG work with MRV2. (mahadev)
  623. MAPREDUCE-279. Fix in MR-279 branch. Changes a couple of usages of FileContext
  624. to FileSystem in TaskAttemptImpl to handle distributed cache path resolutions on
  625. non-default filesystems. (ddas)
  626. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE when requesting attempts for
  627. completed jobs. (Siddharth Seth via llu)
  628. MAPREDUCE-279. Fix in MR-279 branch. Improve logging for AM when requesting
  629. containers to show the right ask and release fields (mahadev)
  630. MAPREDUCE-279. Fix in MR-279 branch. Fix race condition between multiple
  631. localizers on a single node. (cdouglas via mahadev)
  632. MAPREDUCE-279. Fix in MR-279 branch. Fix RM app start/finish time and
  633. diagnostics. (llu)
  634. MAPREDUCE-279. Fix in MR-279 branch. Fix to schedule reduces irrespective of the
  635. headroom when all maps are done so as to avoid stall in reduce-scheduling when
  636. slow-start is disabled. (Sharad Agarwal via vinodkv).
  637. MAPREDUCE-279. Fix in MR-279 branch. Disabling locality-wait in
  638. CapacityScheduler for now to prevent uber-slow scheduling for apps with no
  639. data-locality constraints (sleep-job like). (vinodkv)
  640. MAPREDUCE-279. Fix in MR-279 branch. Fixing scheduling deadlock in AM because of
  641. incorrect headRoom values from RM. The bug happens when AM releases containers
  642. and RM decrements current memory usage twice for all those containers. (vinodkv)
  643. MAPREDUCE-2611. Fix counters, finish times etc. in job history. (Siddharth Seth
  644. via llu)
  645. MAPREDUCE-279. Fix in MR-279 branch. Fix for ConcurrentModification exception
  646. while iterating through tokens in a UGI in ContainerLauncherImpl. (ddas)
  647. MAPREDUCE-279. Fix in MR-279 branch. Fix for NPE in YarnChild that was causing
  648. lots of tasks to fail. (vinodkv)
  649. MAPREDUCE-2615. Make killJob go through AM and fix JobSummaryLog. (Siddharth
  650. Seth via llu)
  651. MAPREDUCE-279. Fix in MR-279 branch. Fix class cast exception in release
  652. reserved containers in capacity scheduler (mahadev)
  653. MAPREDUCE-279. Fix in MR-279 branch. Fix diagnostics display for more than 100
  654. apps in RM. (llu)
  655. MAPREDUCE-279. Fix in MR-279 branch. Fix some invalid transitions in the RM.
  656. (vinodkv via ddas)
  657. MAPREDUCE-2618. Fix NPE in 0 map 0 reduce jobs. (Jeffrey Naisbitt via llu)
  658. MAPREDUCE-2625. Add version info to nodemanager info page. (Jonathan Eagles via
  659. llu)
  660. MAPREDUCE-279. Fix in MR-279 branch. (1) Faster retries from AM to HistoryServer
  661. (2) Correct diagnostics for containers. (vinodkv)
  662. MAPREDUCE-279. Fix in MR-279 branch. Major ASM cleanup. Streamlining classes,
  663. interface and events. (vinodkv)
  664. MAPREDUCE-279. Fix in MR-279 branch. Reinstate resolve path fixes for viewfs.
  665. (Siddharth Seth via llu)
  666. MAPREDUCE-2633. Add a getCounter(Enum) method to the Counters record. (Josh
  667. Wills via sharad)
  668. MAPREDUCE-2645. Updates to MRv2 INSTALL and README documentation. (Josh Wills
  669. via vinodkv)
  670. MAPREDUCE-2628. Add compiled on date to NM and RM info/about page.
  671. MAPREDUCE-2400. Remove Cluster's dependency on JobTracker via a ServiceProvider
  672. for the actual implementation. (tomwhite via acmurthy)
  673. MAPREDUCE-2663. Refactoring StateMachineFactory inner classes. (ahmed radwan via
  674. mahadev)
  675. MAPREDUCE-2678. minimum-user-limit-percent no longer honored. (naisbitt via
  676. mahadev)
  677. MAPREDUCE-2630. refreshQueues leads to NPEs when used w/FifoScheduler. (Josh
  678. Wills via mahadev)
  679. MAPREDUCE-2644. NodeManager fails to create containers when NM_LOG_DIR is not
  680. explicitly set in the Configuration. (Josh Wills via vinodkv)
  681. MAPREDUCE-2661. Fix TaskImpl to not access MapTaskImpl. (Ahmed Radwan via
  682. sharad)
  683. HADOOP-6929. Backport changes to MR-279 (mahadev and owen)
  684. HADOOP-6929. Making Security Info abstract and not an interface (mahadev)
  685. MAPREDUCE-2667. mapred job -kill leaves application in RUNNING state (thomas
  686. graves via mahadev)
  687. MAPREDUCE-2664. Implement JobCounters for Mtions as asynchronous. (vinodkv,
  688. sharad and acmurthy)
  689. MAPREDUCE-2773. server.api.records.NodeHealthStatus renamed but not updated in
  690. client NodeHealthStatus.java (Thomas Graves via mahadev)
  691. MAPREDUCE-2772. Fix MR-279 build after common mavenization. (Robert Joseph Evans
  692. via llu)
  693. MAPREDUCE-2772. Fix MR-279 build after common mavenization, part 2. (Thomas
  694. Graves via llu)
  695. MAPREDUCE-279. Fix in MR-279 branch. Harmonize slf4j versions. (llu)
  696. MAPREDUCE-279. Fix in MR-279 branch. Fix NPE in FifoScheduler. (mahadev)
  697. MAPREDUCE-2776. Fix some of the yarn findbug warnings. (Siddharth Seth via
  698. mahadev)
  699. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules,
  700. part 1 (mahadev)
  701. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules
  702. part 2 (mahadev)
  703. MAPREDUCE-279. Fix in MR-279 branch. Fix findbugs warnings in mr-client modules
  704. part 3 (mahadev)
  705. MAPREDUCE-279. Fix in MR-279 branch. Fix the poms to enable 0.23 snapshots for
  706. hdfs/common from apache nightly builds (gkesavan)
  707. MAPREDUCE-279. Fix in MR-279 branch. Fix ivy conf to work with the hadoop common
  708. trunk maven build changes. (Giridharan Kesavan)
  709. MAPREDUCE-279. Fix in MR-279 branch. Patch for findbugs warnings in Resource
  710. Manager (Siddharth Seth via mahadev)
  711. MAPREDUCE-279. Fix in MR-279 branch. Fix for running ant targets to use the
  712. right set of common/test jars (gkesavan via mahadev)
  713. MAPREDUCE-2782. Unit tests for CapacityScheduler. (acmurthy)
  714. MAPREDUCE-2706. Log job submission failures. (Jeffrey Naisbitt via acmurthy)
  715. MAPREDUCE-2781. mr279 RM application finishtime not set (Thomas Graves via
  716. mahadev)
  717. MAPREDUCE-279. Fix in MR-279 branch. Fixed CS locality wait factor. (acmurthy)
  718. MAPREDUCE-2808. pull MAPREDUCE-2797 into mr279 branch (Thomas Graves via
  719. mahadev)
  720. MAPREDUCE-2639. Bug fixes in speculate.DataStatistics. (Josh Wills via acmurthy)
  721. MAPREDUCE-2839. Fixed TokenCache to get delegation tokens using both new and old
  722. apis. (Siddharth Seth via acmurthy)
  723. MAPREDUCE-2727. Fix divide-by-zero error in SleepJob for sleepCount equals 0.
  724. (Jeffrey Naisbitt via acmurthy)
  725. MAPREDUCE-2839. Fixed TokenCache to get delegation tokens using both new
  726. and old apis. (Siddharth Seth via acmurthy)
  727. MAPREDUCE-2727. Fix divide-by-zero error in SleepJob for sleepCount equals
  728. 0. (Jeffrey Naisbitt via acmurthy)
  729. MAPREDUCE-2860. Fix log4j logging in the maven test cases. (mahadev)
  730. MAPREDUCE-2867. Remove Unused TestApplicaitonCleanup in resourcemanager/applicationsmanager.
  731. (mahadev)
  732. MAPREDUCE-2868. ant build broken in hadoop-mapreduce dir (mahadev, giri and arun via mahadev)
  733. MAPREDUCE-2649. Handling of finished applications in RM. (Thomas Graves
  734. via acmurthy)
  735. MAPREDUCE-2838. Fix MapReduce builds to use new hadoop-common test jars.
  736. (gkesavan via acmurthy)
  737. MAPREDUCE-2859. Fix eclipse plugin contrib module compilation (gkesavan)
  738. MAPREDUCE-2846. Fix missing synchronization in the task log management.
  739. (omalley)
  740. MAPREDUCE-2807. Fix AM restart and client redirection. (sharad)
  741. MAPREDUCE-2877. Add missing Apache license header in some files in MR
  742. and also add the rat plugin to the poms. (mahadev)
  743. MAPREDUCE-2796. Set start times for MR applications for clients to see.
  744. (Devaraj K via acmurthy)
  745. MAPREDUCE-2879. Fix version for MR-279 to 0.23.0. (acmurthy)
  746. MAPREDUCE-2881. Fix to include log4j 1.2.16 depenency (gkesavan)
  747. MAPREDUCE-2885. Fix mapred-config.sh to look for hadoop-config.sh in
  748. HADOOP_COMMON_HOME/libexec. (acmurthy)
  749. Release 0.22.0 - Unreleased
  750. INCOMPATIBLE CHANGES
  751. MAPREDUCE-1866. Removes deprecated class
  752. org.apache.hadoop.streaming.UTF8ByteArrayUtils. (amareshwari)
  753. MAPREDUCE-1664. Changes the behaviour of the combination of job-acls
  754. when they function together with queue-acls. (Ravi Gummadi via vinodkv)
  755. NEW FEATURES
  756. MAPREDUCE-1804. Stress-test tool for HDFS introduced in HDFS-708.
  757. (Joshua Harlow via shv)
  758. MAPREDUCE-220. Collect cpu and memory statistics per task. (Scott Chen via
  759. acmurthy)
  760. MAPREDUCE-1970. Reed-Solomon code implementation for HDFS RAID.
  761. (Scott Chen via dhruba)
  762. MAPREDUCE-2169. Integrated Reed-Solomon code with RaidNode. (Ramkumar
  763. Vadali via schen)
  764. IMPROVEMENTS
  765. MAPREDUCE-2141. Add an "extra data" field to Task for use by Mesos. (matei)
  766. MAPREDUCE-2140. Regenerate fair scheduler design doc PDF. (matei)
  767. MAPREDUCE-1546. Redirect all job pages to corresponding history page
  768. if job is not in JT memory. (Scott Chen via sharad)
  769. MAPREDUCE-1092. Enable assertions for unit tests. (Eli Collins via
  770. cdouglas)
  771. MAPREDUCE-1680. Add a metric recording JobTracker heartbeats processed.
  772. (Dick King via cdouglas)
  773. MAPREDUCE-1761. FairScheduler allows separate configuration of node
  774. and rack locality wait time (Scott Chen via dhruba)
  775. MAPREDUCE-1539. authorization checks for inter-server protocol
  776. (based on HADOOP-6600) (Boris Shkolnik via shv)
  777. MAPREDUCE-1798. Names the configuration keys for the Kerberos
  778. principals better. (Boris Shkolnik via ddas)
  779. MAPREDUCE-1773. streaming doesn't support jobclient.output.filter.
  780. (Amareshwari Sriramadasu via vinodkv)
  781. MAPREDUCE-1785. Add streaming config option for not emitting the key.
  782. (Eli Collins via sharad)
  783. MAPREDUCE-572. If #link is missing from uri format of -cacheArchive
  784. then streaming does not throw error. (Amareshwari Sriramadasu via
  785. vinodkv)
  786. MAPREDUCE-1545. Add timestamps for first task type launched in job summary.
  787. (Luke Lu via cdouglas)
  788. MAPREDUCE-1543. Add an audit log for authentication events. (Amar Kamat and
  789. Luke Lu via cdouglas)
  790. MAPREDUCE-1762. Add ability to set values of task counters. (Scott Chen via
  791. cdouglas)
  792. MAPREDUCE-1533. Reduce overhead of logging and string manipulation during
  793. heartbeat processing. (Amar Kamat and Dick King via cdouglas)
  794. MAPREDUCE-1516. JobTracker issues delegation tokens only if the user's
  795. authentication is Kerberos. (Jitendra Pandey via ddas)
  796. MAPREDUCE-647. Update distcp forrest documentation to reflect the changes
  797. of HADOOP-5472, MAPREDUCE-642 and HADOOP-5620. (Rodrigo Schmidt via
  798. szetszwo)
  799. MAPREDUCE-1851. Documents configuration parameters in streaming.
  800. (amareshwari)
  801. MAPREDUCE-1868. Add a read and connection timeout to JobClient while
  802. pulling tasklogs. (Krishna Ramachandran via acmurthy)
  803. MAPREDUCE-1778. Ensure failure to setup CompletedJobStatusStore is not
  804. silently ignored by the JobTracker. (Krishna Ramachandran via acmurthy)
  805. MAPREDUCE-1850. Includes job submit host information (name and ip) in
  806. jobconf and jobdetails display (Krishna Ramachandran via amareshwari)
  807. MAPREDUCE-1893. Slive with multiple reducers. (shv)
  808. MAPREDUCE-1248. Fixes redudant memory copying in StreamKeyValUtil.
  809. (Ruibang He via amareshwari)
  810. MAPREDUCE-1840. Enhancements to Gridmix benchmark simulating user
  811. diversity, queue replay, and task duration for JobTracker load testing.
  812. Also includes compatibility with security enhancements, and scalability
  813. improvements. (Amar Kamat, Rahul Singh, Hong Tang, and cdouglas)
  814. MAPREDUCE-1848. Put number of speculative, data local, rack local
  815. tasks in JobTracker metrics. (Scott Chen via dhruba)
  816. MAPREDUCE-1935. Makes the Distcp to work in a secure environment.
  817. (Boris Shkolnik via ddas)
  818. MAPREDUCE-1945. The MapReduce component for HADOOP-6632.
  819. (Kan Zhang & Jitendra Pandey via ddas)
  820. MAPREDUCE-1936. Modify Gridmix3 to support more tunable parameters for
  821. stress submission and sleep jobs. (Hong Tang via cdouglas)
  822. MAPREDUCE-1733. Makes pipes applications secure. (Jitendra Pandey via ddas)
  823. MAPREDUCE-1566. Adds a configuration attribute using which job clients can
  824. specify a credentials file. The tokens from there will be passed to the job.
  825. (Jitendra Pandey and Owen O'Malley via ddas)
  826. MAPREDUCE-1624. Documents the job credentials and associated details to do
  827. with delegation tokens (on the client side).
  828. (Jitendra Pandey and Devaraj Das via ddas)
  829. MAPREDUCE-1834. TestSimulatorDeterministicReplay timesout on trunk.
  830. (Hong Tang via mahadev)
  831. MAPREDUCE-1993. Fixes test failure
  832. TestTrackerDistributedCacheManagerWithLinuxTaskController. (Devaraj Das
  833. via amareshwari)
  834. MAPREDUCE-1523. Making Mumak work with Capacity-Scheduler (Anirban Das
  835. via mahadev)
  836. MAPREDUCE-1920. Enables completed jobstatus store by default. (Tom White
  837. via amareshwari)
  838. MAPREDUCE-1881. Improve TaskTrackerInstrumentation to enable collection of
  839. advanced metrics. (Matei Zaharia via acmurthy)
  840. MAPREDUCE-1548. Hadoop archives preserve times and other properties from
  841. original files. (Rodrigo Schmidt via dhruba)
  842. MAPREDUCE-1517. Supports streaming job to run in the background. (Bochun Bai
  843. via amareshwari)
  844. MAPREDUCE-1819. RaidNode is now smarter in submitting Raid jobs. (Ramkumar
  845. Vadali via schen)
  846. MAPREDUCE-2132. A command line option in RaidShell to fix blocks using raid
  847. MAPREDUCE-2147. Remove redundant lines in JobInProgress ctor.
  848. (Harsh J Chouraria via cutting)
  849. HADOOP-7007. Update the hudson-test-patch ant target to work with the
  850. latest test-patch.sh script (gkesavan)
  851. MAPREDUCE-1818. RaidNode can specify scheduling parameters. (Ramkumar
  852. Vadali via schen)
  853. MAPREDUCE-2051. Contribute a fair scheduler preemption system test.
  854. (Todd Lipcon via tomwhite)
  855. MAPREDUCE-1892. RaidNode can allow layered policies more efficiently.
  856. (Ramkumar Vadali via schen)
  857. MAPREDUCE-1592. Generate Eclipse's .classpath file from Ivy config.
  858. (tomwhite via nigel)
  859. MAPREDUCE-2073. TestTrackerDistributedCacheManager should be up-front
  860. about requirements on build environment. (Todd Lipcon via tomwhite)
  861. MAPREDUCE-2093. Herriot JT and TT clients should vend statistics. (cos)
  862. MAPREDUCE-2167. Faster directory traversal for raid node. (Ramkumar Vadali
  863. via schen)
  864. MAPREDUCE-1931. Gridmix forrest documentation . (Ranjit Mathew via vinodkv).
  865. MAPREDUCE-2184. Port DistRaid.java to new mapreduce API. (Ramkumar Vadali
  866. via schen)
  867. MAPREDUCE-1878. Add MRUnit documentation. (Aaron Kimball via tomwhite)
  868. MAPREDUCE-2180. Add coverage of fair scheduler servlet to system test (todd)
  869. MAPREDUCE-2250. Fix logging in raid code. (Ramkumar Vadali via schen)
  870. MAPREDUCE-2260. Remove auto-generated native build files. (rvs via eli)
  871. MAPREDUCE-2314. configure files that are generated as part of the released
  872. tarball need to have executable bit set (rvs via cos)
  873. MAPREDUCE-1159. Limit Job name in web UI to be 80 char long. (Harsh J
  874. Chouraria via szetszwo)
  875. MAPREDUCE-2337. Remove dependence of public MapReduce API on classes in
  876. server package. (tomwhite)
  877. MAPREDUCE-2383. Improve documentation of DistributedCache methods (Harsh J
  878. Chouraria via todd)
  879. MAPREDUCE-2222. Ivy resolve force mode should be turned off by default.
  880. (Luke Lu via tomwhite)
  881. MAPREDUCE-2103. task-controller shouldn't require o-r permissions.
  882. (todd via eli)
  883. MAPREDUCE-2505. Explain how to use ACLs in the fair scheduler.
  884. (matei via eli)
  885. OPTIMIZATIONS
  886. MAPREDUCE-1354. Enhancements to JobTracker for better performance and
  887. scalability. (Arun C. Murthy & Richard King via acmurthy)
  888. MAPREDUCE-1829. JobInProgress.findSpeculativeTask should use min() to
  889. find the candidate instead of sort(). (Scott Chen via vinodkv)
  890. BUG FIXES
  891. MAPREDUCE-1845. FairScheduler.tasksToPreempt() can return negative number.
  892. (Scott Chen via matei)
  893. MAPREDUCE-1707. TaskRunner can get NPE in getting ugi from TaskTracker.
  894. (Vinod Kumar Vavilapalli)
  895. MAPREDUCE-1532. Ensures that delegation tokens is obtained as the
  896. actual user when the proxy-user is used for submitting jobs. Also
  897. refactors the DelegationTokenToRenew class. (ddas)
  898. MAPREDUCE-1558. Fixes MRAdmin to look up the principal of the
  899. JobTracker and use that in the RefreshUserToGroupsMapping protocol and
  900. RefreshAuthorizationPolicyProtocol. (Boris Shkolnik via ddas)
  901. MAPREDUCE-1662. Remove unused methods from TaskRunner. (Amareshwari
  902. Sriramadasu via cdouglas)
  903. MAPREDUCE-1617. Use IPv4 stack for unit tests. (Amar Kamat and Luke Lu via
  904. cdouglas)
  905. MAPREDUCE-1599. Fixes MRBench so that it reuses tokens across jobs
  906. correctly. (Jitendra Nath Pandey via ddas)
  907. MAPREDUCE-1836. Refresh for proxy superuser config (mr part for HDFS-1096).
  908. (Boris Shkolnik via shv)
  909. MAPREDUCE-1505. Create RPC client on job submission, not in cstr of Job
  910. instance. (Dick King via cdouglas)
  911. MAPREDUCE-1813. NPE in PipeMapred.MRErrorThread. (Ravi Gummadi via vinodkv)
  912. MAPREDUCE-1225. Fixes DistributedCache to check if the file is fresh or not,
  913. for the first localization also. (Zhong Wang via amareshwari)
  914. MAPREDUCE-1559. Fixes the token renewer to use the JobTracker's
  915. credentials for talking to the NameNode. (ddas)
  916. MAPREDUCE-1492. Delete obsolete har files used on the parity files
  917. of hdfs raid. (Rodrigo Schmidt via dhruba)
  918. MAPREDUCE-1857. Removes unused configuration parameters in streaming.
  919. (amareshwari)
  920. MAPREDUCE-1887. MRAsyncDiskService now properly absolutizes volume root
  921. paths. (Aaron Kimball via zshao)
  922. MAPREDUCE-1863. Fix NPE in Rumen when processing null CDF for failed task
  923. attempts. (Amar Kamat via cdouglas)
  924. MAPREDUCE-1864. Removes uninitialized/unused variables in
  925. org.apache.hadoop.streaming.PipeMapRed. (amareshwari)
  926. MAPREDUCE-1888. Fixes Streaming to override output key and value types,
  927. only if mapper/reducer is a command. (Ravi Gummadi via amareshwari)
  928. MAPREDUCE-577. Fixes duplicate records in StreamXmlRecordReader.
  929. (Ravi Gummadi via amareshwari)
  930. MAPREDUCE-1894. Fixed a bug in DistributedRaidFileSystem.readFully()
  931. that was causing it to loop infinitely. (Ramkumar Vadali via dhruba)
  932. MAPREDUCE-1838. Reduce the time needed for raiding a bunch of files
  933. by randomly assigning files to map tasks. (Ramkumar Vadali via dhruba)
  934. MAPREDUCE-1820. Fix InputSampler to clone sampled keys. (Alex Kozlov via
  935. cdouglas)
  936. MAPREDUCE-1528. Incorporates the changes to the credentials API done in
  937. HADOOP-6845. Also, introduces Credentials in JobConf, and in JobContext.
  938. (Jitendra Pandey and Arun Murthy via ddas)
  939. MAPREDUCE-1865. Rumen should also support jobhistory files generated using
  940. trunk. (Amar Kamat via amareshwari)
  941. MAPREDUCE-1621. Fixes NPE in TextOutputReader.getLastOutput if it has never
  942. read any output. (amareshwari)
  943. MAPREDUCE-1911. Fixes errors in -info message in streaming. (amareshwari)
  944. MAPREDUCE-1772. Corrects errors in streaming documentation in forrest.
  945. (amareshwari)
  946. MAPREDUCE-1925. Fix failing TestRumenJobTraces. (Ravi Gummadi via cdouglas)
  947. MAPREDUCE-1718. Fixes a bug in the construction of jobconf key for the
  948. mapping that the tasks use at runtime for looking up delegation tokens.
  949. (Boris Shkolnik via ddas)
  950. MAPREDUCE-1701. Fixes a problem to do with exception handling in
  951. delegation-token renewals. (Boris Shkolnik via ddas)
  952. MAPREDUCE-1686. Fixes StreamUtil.goodClassOrNull to find classes without
  953. package names. (Paul Burkhardt via amareshwari)
  954. MAPREDUCE-1288. Fixes TrackerDistributedCacheManager to take into account
  955. the owner of the localized file in the mapping from cache URIs to
  956. CacheStatus objects. (ddas)
  957. MAPREDUCE-1982. Fixes Rumen's TraceBuilder to extract job name from either
  958. of configuration properties "mapreduce.job.name" and "mapred.job.name".
  959. (Ravi Gummadi via amareshwari)
  960. MAPREDUCE-1958. The MapReduce part corresponding to the HADOOP-6873.
  961. (Boris Shkolnik & Owen O'Malley via ddas)
  962. MAPREDUCE-1900. TaskTracker and JobTracker closes FileSystems, opened on
  963. behalf of users that it no longer requires. (Kan Zhang and ddas via ddas)
  964. MAPREDUCE-1992. Fixes a problem to do with bringing up the JobTracker in
  965. unsecure mode. (Kan Zhang via ddas)
  966. MAPREDUCE-1999. Fixes ClientProtocol to use the correct
  967. DelegationTokenSelector. (Jitendra Pandey via ddas)
  968. MAPREDUCE-1780. AccessControlList.toString() is used for serialization of
  969. ACL in JobStatus.java. (Ravi Gummadi via vinodkv)
  970. MAPREDUCE-1961. Fix ConcurrentModificationException in Gridmix during
  971. shutdown. (Hong Tang via cdouglas)
  972. MAPREDUCE-2000. Fix parsing of JobHistory lines in Rumen when quotes are
  973. escaped. (Hong Tang via cdouglas)
  974. MAPREDUCE-2022. Fixes compilation errors in TestSubmitJob. (amareshwari)
  975. MAPREDUCE-1670. RAID policies should not scan their own destination path.
  976. (Ramkumar Vadali via dhruba)
  977. MAPREDUCE-1668. RaidNode Hars a directory only if all its parity files
  978. have been created. (Ramkumar Vadali via dhruba)
  979. MAPREDUCE-2021. Fixes duplicate hostnames in CombineFileInputFormat's
  980. split locations. (amareshwari)
  981. MAPREDUCE-1375. Fixes flaky test TestFileArgs. (Todd Lipcon via
  982. amareshwari)
  983. MAPREDUCE-2023. TestDFSIO should not stop reading if curSize != bufferSize.
  984. (Hong Tang via szetszwo)
  985. MAPREDUCE-2031. Fixes test failures TestTaskLauncher and
  986. TestTaskTrackerLocalization. (Ravi Gummadi via amareshwari)
  987. MAPREDUCE-2046. Fixes CombineFileInputFormat to allow splits with size
  988. less than DFS block size. (dhruba borthakur via amareshwari)
  989. MAPREDUCE-1975. Fixes unnecessary InterruptedException log in gridmix.
  990. (Ravi Gummadi via amareshwari)
  991. MAPREDUCE-1597. Fixes CombineFileInputFormat to work with non-splittable
  992. files. (amareshwari)
  993. MAPREDUCE-2032. Fixes TestJobCleanup to cleanup test directory in
  994. tearDown. (Dick King via amareshwari)
  995. MAPREDUCE-1979. Fixes "Output directory already exists" error in gridmix
  996. when gridmix.output.directory is not defined. (Ravi Gummadi via
  997. amareshwari)
  998. MAPREDUCE-1918. Adds documentation to Rumen. (Amar Kamat via amareshwari)
  999. MAPREDUCE-2078. Fixes TraceBuilder to generate traces when a globbed job
  1000. history path is given. (Amar Kamat via amareshwari)
  1001. MAPREDUCE-1989. Fixes error message in gridmix when user resolver is set
  1002. and no user list is given. (Ravi Gummadi via amareshwari)
  1003. MAPREDUCE-2067. Distinct minicluster services (e.g. NN and JT) overwrite
  1004. each other's service policies. (Aaron T. Myers via tomwhite)
  1005. MAPREDUCE-2029. DistributedRaidFileSystem removes itself from FileSystem
  1006. cache when it is closed. (Ramkumar Vadali via dhruba)
  1007. MAPREDUCE-1816. HAR files used for RAID parity-bite have configurable
  1008. partfile size. (Ramkumar Vadali via dhruba)
  1009. MAPREDUCE-2082. Fixes Pipes to create the jobtoken file in the right
  1010. place. (Jitendra Pandey via ddas)
  1011. MAPREDUCE-2095. Fixes Gridmix to run from compressed traces. (Ranjit
  1012. Mathew via amareshwari)
  1013. MAPREDUCE-1908. DistributedRaidFileSystem now handles ChecksumException
  1014. correctly. (Ramkumar Vadali via schen)
  1015. MAPREDUCE-2126. JobQueueJobInProgressListener's javadoc is inconsistent
  1016. with source code. (Jingguo Yao via tomwhite)
  1017. MAPREDUCE-2143. HarFileSystem is able to handle spaces in pathnames.
  1018. (Ramkumar Vadali via dhruba)
  1019. MAPREDUCE-1867. Remove unused methods in
  1020. org.apache.hadoop.streaming.StreamUtil. (amareshwari via tomwhite)
  1021. MAPREDUCE-2146. Raid does not affect access time of a source file.
  1022. (Ramkumar Vadali via dhruba)
  1023. MAPREDUCE-2150. RaidNode periodically fixes corrupt blocks. (Ramkumar Vadali via
  1024. schen)
  1025. MAPREDUCE-2099. RaidNode recreates outdated parity HARs. (Ramkumar Vadali
  1026. via schen)
  1027. MAPREDUCE-2173. Fix race condition in TestBlockFixer that was
  1028. causing intermittent failure (Patrick Kling via dhruba)
  1029. MAPREDUCE-2142. Refactor RaidNode so that the map-reduce component is
  1030. clearly separated out. (Patrick Kling via dhruba)
  1031. MAPREDUCE-2179. Fix RaidBlockSender compilation failure. (Ramkumar Vadali
  1032. via schen)
  1033. MAPREDUCE-2034. TestSubmitJob triggers NPE instead of permissions error.
  1034. (Todd Lipcon via tomwhite)
  1035. MAPREDUCE-2195. New property for local conf directory in
  1036. system-test-mapreduce.xml file. (cos)
  1037. MAPREDUCE-1783. FairScheduler initializes tasks only when the job can be
  1038. run. (Ramkumar Vadali via schen)
  1039. MAPREDUCE-2224. Fix synchronization bugs in JvmManager. (todd)
  1040. MAPREDUCE-714. JobConf.findContainingJar unescapes unnecessarily on linux (todd)
  1041. MAPREDUCE-2096. Secure local filesystem IO from symlink vulnerabilities (todd)
  1042. MAPREDUCE-2234. If Localizer can't create task log directory, it should fail
  1043. on the spot. (todd)
  1044. MAPREDUCE-2219. JobTracker should not try to remove mapred.system.dir
  1045. during startup. (todd)
  1046. MAPREDUCE-2207. Task-cleanup task should not be scheduled on the node that
  1047. the task just failed. (Liyin Liang via schen)
  1048. MAPREDUCE-2084. Remove deprecate annotation for package file. The package
  1049. classes themselves are already deprecated. This removes an Eclipse error.
  1050. (tomwhite via nigel)
  1051. MAPREDUCE-2248. DistributedRaidFileSystem should unraid only the corrupt
  1052. block (Ramkumar Vadali via schen)
  1053. MAPREDUCE-1085. For tasks, "ulimit -v -1" is being run when user doesn't
  1054. specify a ulimit (todd)
  1055. MAPREDUCE-2282. Fix TestMRServerPorts for the changes in
  1056. TestHDFSServerPorts. (shv via szetszwo)
  1057. MAPREDUCE-2238. Fix permissions handling to avoid leaving undeletable
  1058. directories in local dirs. (todd)
  1059. MAPREDUCE-2277. TestCapacitySchedulerWithJobTracker needs to wait for jobs
  1060. to complete before testing status. (todd)
  1061. MAPREDUCE-2253. Servlets should specify content type (todd)
  1062. MAPREDUCE-2283. Add timeout for Raid Tests (Ramkumar Vadali via schen)
  1063. MAPREDUCE-1754. Replace mapred.persmissions.supergroup with an
  1064. acl : mapreduce.cluster.administrators (Amareshwari Sriramadasu via shv)
  1065. MAPREDUCE-2256. FairScheduler fairshare preemption from multiple pools may
  1066. preempt all tasks from one pool causing that pool to go below fairshare.
  1067. (Priyo Mustafi via shv)
  1068. MAPREDUCE-2281. MR part of HADOOP-6642. (Chris Douglas, Po Cheung via shv)
  1069. MAPREDUCE-2200. TestUmbilicalProtocolWithJobToken is failing without Krb
  1070. evironment: needs to be conditional. (cos)
  1071. MAPREDUCE-2077. Resolve name clash in the deprecated
  1072. o.a.h.util.MemoryCalculatorPlugin (Luke Lu via shv)
  1073. MAPREDUCE-2188. The new API MultithreadedMapper doesn't initialize
  1074. RecordReader. (Owen O'Malley via shv)
  1075. MAPREDUCE-1915. Fix IndexOutOfBoundsException in IndexCache.
  1076. (Priyo Mustafi via shv)
  1077. MAPREDUCE-1974. Fix multiple preemtions of the same task in FairScheduler.
  1078. (Scott Chen via shv)
  1079. MAPREDUCE-2304. Fix TestMRCLI to allow hostname with a hyphen (-).
  1080. (Priyo Mustafi via shv)
  1081. MAPREDUCE-1825. jobqueue_details.jsp and FairSchedulerServelet should not
  1082. call finishedMaps and finishedReduces when job is not initialized.
  1083. (Scott Chen via shv)
  1084. MAPREDUCE-2285. MiniMRCluster does not start after ant test-patch
  1085. (todd)
  1086. MAPREDUCE-2315. javadoc is failing in nightly build (todd)
  1087. MAPREDUCE-2054. Hierarchical queue implementation broke dynamic queue
  1088. addition in Dynamic Scheduler. (Thomas Sandholm via tomwhite)
  1089. MAPREDUCE-2272. Job ACL file should not be executable
  1090. (Harsh J Chouraria via todd)
  1091. MAPREDUCE-2241. ClusterWithLinuxTaskController should accept relative path
  1092. on the command line. (todd)
  1093. MAPREDUCE-2251. Remove unused mapreduce.job.userhistorylocation config.
  1094. (Harsh J Chouraria via todd)
  1095. MAPREDUCE-2284. TestLocalRunner.testMultiMaps times out (todd)
  1096. MAPREDUCE-2336. Tool-related packages should be in the Tool javadoc group.
  1097. (tomwhite)
  1098. MAPREDUCE-2394. JUnit output format doesn't propagate into raid contrib
  1099. build. (todd)
  1100. MAPREDUCE-2392. TaskTracker shutdown in the tests sometimes take 60s.
  1101. (tomwhite)
  1102. MAPREDUCE-2437. SLive uses only part* files to generating the final report.
  1103. (shv)
  1104. MAPREDUCE-2428. start-mapred.sh script fails if HADOOP_HOME is not set.
  1105. (tomwhite via eli)
  1106. MAPREDUCE-2445. Fix TestMiniMRWithDFSWithDistinctUsers to be a valid test.
  1107. (todd)
  1108. MAPREDUCE-2457. Job submission should inject group.name on the JobTracker
  1109. (Alejandro Abdelnur via todd)
  1110. MAPREDUCE-2472. Extra whitespace in mapred.child.java.opts breaks JVM
  1111. initialization. (Aaron T. Myers via todd)
  1112. MAPREDUCE-2222. Ivy resolve force mode should be turned off by default.
  1113. (Luke Lu via tomwhite)
  1114. MAPREDUCE-2486. Incorrect snapshot dependency published in .pom files
  1115. (todd)
  1116. MAPREDUCE-2327. MapTask doesn't need to put username information in
  1117. SpillRecord. (todd via tomwhite)
  1118. MAPREDUCE-2515. MapReduce code references some deprecated options
  1119. (Ari Rabkin via todd)
  1120. MAPREDUCE-2487. ChainReducer uses MAPPER_BY_VALUE instead of
  1121. REDUCER_BY_VALUE. (Devaraj K via todd)
  1122. MAPREDUCE-2185. Fix infinite loop at creating splits using
  1123. CombineFileInputFormat. (Ramkumar Vadali via schen)
  1124. MAPREDUCE-2571. CombineFileInputFormat.getSplits throws a
  1125. java.lang.ArrayStoreException. (Bochun Bai via todd)
  1126. Release 0.21.1 - Unreleased
  1127. NEW FEATURES
  1128. MAPREDUCE-2040. Forrest Documentation for Dynamic Priority Scheduler.
  1129. (Thomas Sandholm via tomwhite)
  1130. BUG FIXES
  1131. MAPREDUCE-1897. trunk build broken on compile-mapred-test (cos)
  1132. MAPREDUCE-1280. Update Eclipse plugin to the new eclipse.jdt API.
  1133. (Alex Kozlov via szetszwo)
  1134. MAPREDUCE-1984. herriot TestCluster fails because exclusion is not there
  1135. (Balaji Rajagopalan via cos)
  1136. MAPREDUCE-2090. Clover build doesn't generate per-test coverage. (cos)
  1137. MAPREDUCE-2134. ant binary-system is broken in mapreduce project. (cos)
  1138. MAPREDUCE-1905. Fixes Context.setStatus() and progress() apis.
  1139. (amareshwari)
  1140. MAPREDUCE-1809. Ant build changes for Streaming system tests in contrib
  1141. projects. (Vinay Kumar Thota via amareshwari)
  1142. MAPREDUCE-2223. TestMRCLI might fail on Ubuntu with default /etc/hosts
  1143. (cos)
  1144. MAPREDUCE-2228. Remove java5 dependencies from build. (cos)
  1145. MAPREDUCE-1929. Allow artifacts to be published to the staging Apache Nexus
  1146. Maven Repository. (tomwhite)
  1147. MAPREDUCE-2317. Fix a NPE in HadoopArchives. (Devaraj K via szetszwo)
  1148. MAPREDUCE-2127. mapreduce trunk builds are filing on hudson.
  1149. (Bruno Mahé via eli)
  1150. Release 0.21.0 - 2010-08-13
  1151. INCOMPATIBLE CHANGES
  1152. MAPREDUCE-516. Fix the starvation problem in the Capacity Scheduler
  1153. when running High RAM Jobs. (Arun Murthy via yhemanth)
  1154. MAPREDUCE-358. Change org.apache.hadoop.examples. AggregateWordCount
  1155. and org.apache.hadoop.examples.AggregateWordHistogram to use new
  1156. mapreduce api. (Amareshwari Sriramadasu via sharad)
  1157. MAPREDUCE-245. Change Job and jobcontrol classes to use the List interface
  1158. rather than ArrayList in APIs. (Tom White via cdouglas)
  1159. MAPREDUCE-766. Enhanced list-blacklisted-trackers to display reasons
  1160. for blacklisting a node. (Sreekanth Ramakrishnan via yhemanth)
  1161. MAPREDUCE-817. Add a cache for retired jobs with minimal job info and
  1162. provide a way to access history file url. (sharad)
  1163. MAPREDUCE-711. Moved Distributed Cache from Common to Map/Reduce
  1164. project. (Vinod Kumar Vavilapalli via yhemanth)
  1165. MAPREDUCE-895. Per the contract elucidated in HADOOP-6201, throw
  1166. FileNotFoundException from FileSystem::listStatus rather than returning
  1167. null. (Jakob Homan via cdouglas)
  1168. MAPREDUCE-479. Provide full task id to map output servlet rather than the
  1169. reduce id, only. (Jiaqi Tan via cdouglas)
  1170. MAPREDUCE-873. Simplify job recovery. Incomplete jobs are resubmitted on
  1171. jobtracker restart. Removes a public constructor in JobInProgress. (sharad)
  1172. HADOOP-6230. Moved process tree and memory calculator related classes from
  1173. Common to Map/Reduce. (Vinod Kumar Vavilapalli via yhemanth)
  1174. MAPREDUCE-157. Refactor job history APIs and change the history format to
  1175. JSON. (Jothi Padmanabhan via sharad)
  1176. MAPREDUCE-849. Rename configuration properties. (Amareshwari Sriramadasu
  1177. via sharad)
  1178. MAPREDUCE-1287. Only call the partitioner with more than one reducer.
  1179. (cdouglas)
  1180. MAPREDUCE-1385. Use the new UserGroupInformation from HADOOP-6299.
  1181. (ddas via omalley)
  1182. MAPREDUCE-1493. Authorization for job-history pages. (vinodkv)
  1183. MAPREDUCE-1607. Task controller may not set permissions for a
  1184. task cleanup attempt's log directory (Amareshwari Sriramadasu via vinodkv)
  1185. MAPREDUCE-1683. Remove JNI calls from ClusterStatus cstr. (Arun Murthy and
  1186. Luke Lu via cdouglas)
  1187. MAPREDUCE-1855. Makes the refresh methods (for groups and proxy users)
  1188. independent of the client side configuration. (Boris Shkolnik via ddas)
  1189. NEW FEATURES
  1190. MAPREDUCE-1774. Large-scale Automated Framework (Sharad Agarwal, Sreekanth
  1191. Ramakrishnan, Konstantin Boudnik, at all via cos)
  1192. MAPREDUCE-706. Support for FIFO pools in the fair scheduler.
  1193. (Matei Zaharia)
  1194. MAPREDUCE-546. Provide sample fair scheduler config file in conf/ and use
  1195. it by default if no other config file is specified. (Matei Zaharia)
  1196. MAPREDUCE-551. Preemption support in the Fair Scheduler. (Matei Zaharia)
  1197. MAPREDUCE-567. Add a new example MR that always fails. (Philip Zeyliger
  1198. via tomwhite)
  1199. MAPREDUCE-211. Provides ability to run a health check script on the
  1200. tasktracker nodes and blacklist nodes if they are unhealthy.
  1201. (Sreekanth Ramakrishnan via yhemanth)
  1202. MAPREDUCE-637. Add an example, distbbp, which able to compute the n th bit
  1203. of Pi for some large n. (szetszwo)
  1204. MAPREDUCE-532. Provide a way to limit the number of used slots
  1205. per queue in the capacity scheduler.
  1206. (Rahul Kumar Singh via yhemanth)
  1207. MAPREDUCE-467. Provide ability to collect statistics about total tasks
  1208. and succeeded tasks in different time windows. (sharad)
  1209. MAPREDUCE-740. Log a job-summary at the end of a job, while allowing it
  1210. to be configured to use a custom appender if desired. (acmurthy)
  1211. MAPREDUCE-814. Provide a way to configure completed job history files
  1212. to be on HDFS. (sharad)
  1213. MAPREDUCE-800. MRUnit should support the new API. (Aaron Kimball via
  1214. tomwhite)
  1215. MAPREDUCE-798. MRUnit should be able to test a succession of MapReduce
  1216. passes. (Aaron Kimball via tomwhite)
  1217. MAPREDUCE-768. Provide an option to dump jobtracker configuration in JSON
  1218. format to standard output. (V.V.Chaitanya Krishna via yhemanth)
  1219. MAPREDUCE-824. Add support for a hierarchy of queues in the capacity
  1220. scheduler. (Rahul Kumar Singh via yhemanth)
  1221. MAPREDUCE-751. Add Rumen, a tool for extracting statistics from job tracker
  1222. logs and generating job traces for simulation and analysis. (Dick King via
  1223. cdouglas)
  1224. MAPREDUCE-830. Add support for splittable compression to TextInputFormats.
  1225. (Abdul Qadeer via cdouglas)
  1226. MAPREDUCE-861. Add support for hierarchical queues in the Map/Reduce
  1227. framework. (Rahul Kumar Singh via yhemanth)
  1228. MAPREDUCE-776. Add Gridmix, a benchmark processing Rumen traces to simulate
  1229. a measured mix of jobs on a cluster. (cdouglas)
  1230. MAPREDUCE-862. Enhance JobTracker UI to display hierarchical queues.
  1231. (V.V.Chaitanya Krishna via yhemanth)
  1232. MAPREDUCE-777. Brand new apis to track and query jobs as a
  1233. replacement for JobClient. (Amareshwari Sriramadasu via acmurthy)
  1234. MAPREDUCE-775. Add native and streaming support for Vertica as an input
  1235. or output format taking advantage of parallel read and write properties of
  1236. the DBMS. (Omer Trajman via ddas)
  1237. MAPREDUCE-679. XML-based metrics as JSP servlet for JobTracker.
  1238. (Aaron Kimball via tomwhite)
  1239. MAPREDUCE-980. Modify JobHistory to use Avro for serialization. (cutting)
  1240. MAPREDUCE-728. Add Mumak, a Hadoop map/reduce simulator. (Arun C Murthy,
  1241. Tamas Sarlos, Anirban Dasgupta, Guanying Wang, and Hong Tang via cdouglas)
  1242. MAPREDUCE-1383. Automates fetching of delegation tokens in File*Formats
  1243. Distributed Cache and Distcp. Also, provides a config
  1244. mapreduce.job.hdfs-servers that the jobs can populate with a comma
  1245. separated list of namenodes. The job client automatically fetches
  1246. delegation tokens from those namenodes. (Boris Shkolnik via ddas)
  1247. MAPREDUCE-698. Per-pool task limits for the fair scheduler.
  1248. (Kevin Peterson via matei)
  1249. MAPREDUCE-1026. Does mutual authentication of the shuffle
  1250. transfers using a shared JobTracker generated key.
  1251. (Boris Shkolnik via ddas)
  1252. MAPREDUCE-744. Introduces the notion of a public distributed cache.
  1253. (Devaraj Das)
  1254. MAPREDUCE-1338. Introduces the notion of token cache using which
  1255. tokens and secrets can be sent by the Job client to the JobTracker.
  1256. (Boris Shkolnik via ddas)
  1257. HDFS-503. This patch implements an optional layer over HDFS that
  1258. implements offline erasure-coding. It can be used to reduce the
  1259. total storage requirements of HDFS. (dhruba)
  1260. MAPREDUCE-1432. Adds hooks in the jobtracker and tasktracker
  1261. for loading the tokens in the user's ugi. This is required
  1262. for the copying of files from the hdfs. (ddas)
  1263. MAPREDUCE-1335. Adds SASL Kerberos/Digest authentication in MapReduce.
  1264. (Kan Zhang via ddas)
  1265. MAPREDUCE-1464. Makes a compatible change in JobTokenIdentifier to
  1266. account for HADOOP-6510. (Jitendra Nath Pandey via ddas)
  1267. MAPREDUCE-1433. Add a delegation token for MapReduce. (omalley)
  1268. MAPREDUCE-1307. Introduces the Job level ACLs feature.
  1269. (Vinod Kumar Vavilapalli via ddas)
  1270. MAPREDUCE-1430. JobTracker automatically renews delegation tokens for jobs.
  1271. (Boris Shkolnik via ddas)
  1272. MAPREDUCE-1455. Introduces job-level authorization for mapreduce servlets.
  1273. (Ravi Gummadi via vinodkv)
  1274. IMPROVEMENTS
  1275. MAPREDUCE-463. Makes job setup and cleanup tasks as optional.
  1276. (Amareshwari Sriramadasu via sharad)
  1277. MAPREDUCE-502. Allow jobtracker to be configured with zero completed jobs
  1278. in memory. (Amar Kamat via sharad)
  1279. MAPREDUCE-416. Moves the history file to a "done" folder whenever a job
  1280. completes. (Amar Kamat via ddas)
  1281. MAPREDUCE-646. Increase srcfilelist replication number in dictcp job.
  1282. (Ravi Gummadi via szetszwo)
  1283. HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
  1284. build #12. (Giridharan Kesavan)
  1285. MAPREDUCE-642. A option to distcp that allows preserving the full
  1286. source path of a file in the specified destination directory.
  1287. (Rodrigo Schmidt via dhruba)
  1288. MAPREDUCE-686. Move TestSpeculativeExecution.Fake* into a separate class
  1289. so that it can be used by other tests. (Jothi Padmanabhan via sharad)
  1290. MAPREDUCE-625. Modify TestTaskLimits to improve execution time.
  1291. (Jothi Padmanabhan via sharad)
  1292. MAPREDUCE-465. Deprecate o.a.h.mapred.lib.MultithreadedMapRunner and add
  1293. test for o.a.h.mapreduce.lib.MultithreadedMapper.
  1294. (Amareshwari Sriramadasu via sharad)
  1295. MAPREDUCE-701. Improves the runtime of the TestRackAwareTaskPlacement
  1296. by making it a unit test. (Jothi Padmanabhan via ddas)
  1297. MAPREDUCE-371. Change KeyFieldBasedComparator and KeyFieldBasedPartitioner
  1298. to use new api. (Amareshwari Sriramadasu via sharad)
  1299. MAPREDUCE-623. Resolve javac warnings in mapreduce. (Jothi Padmanabhan
  1300. via sharad)
  1301. MAPREDUCE-655. Change KeyValueLineRecordReader and KeyValueTextInputFormat
  1302. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  1303. MAPREDUCE-632. Merge TestCustomOutputCommitter with
  1304. TestCommandLineJobSubmission. (Jothi Padmanabhan via sharad)
  1305. MAPREDUCE-627. Improves execution time of TestTrackerBlacklistAcrossJobs.
  1306. (Jothi Padmanabhan via ddas)
  1307. MAPREDUCE-630. Improves execution time of TestKillCompletedJob.
  1308. (Jothi Padmanabhan via ddas)
  1309. MAPREDUCE-626. Improves the execution time of TestLostTracker.
  1310. (Jothi Padmanabhan via ddas)
  1311. MAPREDUCE-353. Makes the shuffle read and connection timeouts
  1312. configurable. (Ravi Gummadi via ddas)
  1313. MAPREDUCE-739. Allow relative paths to be created in archives. (Mahadev
  1314. Konar via cdouglas)
  1315. MAPREDUCE-772. Merge HADOOP-4010 changes to LineRecordReader into mapreduce
  1316. package. (Abdul Qadeer via cdouglas)
  1317. MAPREDUCE-785. Separate sub-test of TestReduceFetch to be included in
  1318. MR-670. (Jothi Padmanabhan via cdouglas)
  1319. MAPREDUCE-784. Modify TestUserDefinedCounters to use LocalJobRunner
  1320. instead of MiniMR. (Jothi Padmanabhan via sharad)
  1321. HADOOP-6160. Fix releaseaudit target to run on specific directories.
  1322. (gkesavan)
  1323. MAPREDUCE-782. Use PureJavaCrc32 in SpillRecord. (Todd Lipcon via
  1324. szetszwo)
  1325. MAPREDUCE-369. Change org.apache.hadoop.mapred.lib.MultipleInputs to
  1326. use new api. (Amareshwari Sriramadasu via sharad)
  1327. MAPREDUCE-373. Change org.apache.hadoop.mapred.lib.FieldSelectionMapReduce
  1328. to use new api. (Amareshwari Sriramadasu via sharad)
  1329. MAPREDUCE-628. Improves the execution time of TestJobInProgress.
  1330. (Jothi Padmanabhan via ddas)
  1331. MAPREDUCE-793. Creates a new test that consolidates a few tests to
  1332. include in the commit-test list. (Jothi Padmanabhan via ddas)
  1333. MAPREDUCE-797. Adds combiner support to MRUnit MapReduceDriver.
  1334. (Aaron Kimball via johan)
  1335. MAPREDUCE-656. Change org.apache.hadoop.mapred.SequenceFile* classes
  1336. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  1337. MAPREDUCE-670. Creates ant target for 10 mins patch test build.
  1338. (Jothi Padmanabhan via gkesavan)
  1339. MAPREDUCE-375. Change org.apache.hadoop.mapred.lib.NLineInputFormat
  1340. and org.apache.hadoop.mapred.MapFileOutputFormat to use new api.
  1341. (Amareshwari Sriramadasu via ddas)
  1342. MAPREDUCE-779. Added node health failure counts into
  1343. JobTrackerStatistics. (Sreekanth Ramakrishnan via yhemanth)
  1344. MAPREDUCE-842. Setup secure permissions for localized job files,
  1345. intermediate outputs and log files on tasktrackers.
  1346. (Vinod Kumar Vavilapalli via yhemanth)
  1347. MAPREDUCE-478. Allow map and reduce jvm parameters, environment variables
  1348. and ulimit to be set separately.
  1349. Configuration changes:
  1350. add mapred.map.child.java.opts
  1351. add mapred.reduce.child.java.opts
  1352. add mapred.map.child.env
  1353. add mapred.reduce.child.ulimit
  1354. add mapred.map.child.env
  1355. add mapred.reduce.child.ulimit
  1356. deprecated mapred.child.java.opts
  1357. deprecated mapred.child.env
  1358. deprecated mapred.child.ulimit
  1359. (acmurthy)
  1360. MAPREDUCE-767. Remove the dependence on the CLI 2.0 snapshot.
  1361. (Amar Kamat via omalley)
  1362. MAPREDUCE-712. Minor efficiency tweaks to RandomTextWriter. (cdouglas)
  1363. MAPREDUCE-870. Remove the job retire thread and the associated
  1364. config parameters. (sharad)
  1365. MAPREDUCE-874. Rename the PiEstimator example to QuasiMonteCarlo.
  1366. (szetszwo)
  1367. MAPREDUCE-336. Allow logging level of map/reduce tasks to be configurable.
  1368. Configuration changes:
  1369. add mapred.map.child.log.level
  1370. add mapred.reduce.child.log.level
  1371. (acmurthy)
  1372. MAPREDUCE-355. Update mapred.join package to use the new API. (Amareshwari
  1373. Sriramadasu via cdouglas)
  1374. HADOOP-6184. Updated hadoop common and test jars to get the new API
  1375. in Configuration for dumping in JSON format from Hudson trunk build #68.
  1376. (yhemanth)
  1377. MAPREDUCE-476. Extend DistributedCache to work locally (LocalJobRunner).
  1378. (Philip Zeyliger via tomwhite)
  1379. MAPREDUCE-825. JobClient completion poll interval of 5s causes slow tests
  1380. in local mode. (Aaron Kimball via tomwhite)
  1381. MAPREDUCE-910. Support counters in MRUnit. (Aaron Kimball via cdouglas)
  1382. MAPREDUCE-788. Update gridmix2 to use the new API (Amareshwari Sriramadasu
  1383. via cdouglas)
  1384. MAPREDUCE-875. Make DBRecordReader execute queries lazily. (Aaron Kimball
  1385. via enis)
  1386. MAPREDUCE-318. Modularizes the shuffle code. (Jothi Padmanabhan and
  1387. Arun Murthy via ddas)
  1388. MAPREDUCE-936. Allow a load difference for fairshare scheduler.
  1389. (Zheng Shao via dhruba)
  1390. MAPREDUCE-370. Update MultipleOutputs to use the API, merge funcitonality
  1391. of MultipleOutputFormat. (Amareshwari Sriramadasu via cdouglas)
  1392. MAPREDUCE-898. Changes DistributedCache to use the new API.
  1393. (Amareshwari Sriramadasu via ddas)
  1394. MAPREDUCE-144. Includes dump of the process tree in task diagnostics when
  1395. a task is killed due to exceeding memory limits.
  1396. (Vinod Kumar Vavilapalli via yhemanth)
  1397. MAPREDUCE-945. Modifies MRBench and TestMapRed to use ToolRunner so that
  1398. options such as queue name can be passed via command line.
  1399. (Sreekanth Ramakrishnan via yhemanth)
  1400. MAPREDUCE-963. Deprecate o.a.h.mapred.FileAlreadyExistsException and
  1401. replace it with o.a.h.fs.FileAlreadyExistsException. (Boris Shkolnik
  1402. via szetszwo)
  1403. MAPREDUCE-960. Remove an unnecessary intermediate copy and obsolete API
  1404. from KeyValueLineRecordReader. (cdouglas)
  1405. MAPREDUCE-930. Modify Rumen to resolve paths in the canonical way, rather
  1406. than defaulting to the local filesystem. (cdouglas)
  1407. MAPREDUCE-944. Extend the LoadManager API of the fair-share scheduler
  1408. to support regulating tasks for a job based on resources currently in use
  1409. by that job. (dhruba)
  1410. MAPREDUCE-973. Move FailJob and SleepJob from examples to test. (cdouglas
  1411. via omalley)
  1412. MAPREDUCE-966. Modify Rumen to clean up interfaces and simplify integration
  1413. with other tools. (Hong Tang via cdouglas)
  1414. MAPREDUCE-856. Setup secure permissions for distributed cache files.
  1415. (Vinod Kumar Vavilapalli via yhemanth)
  1416. MAPREDUCE-885. More efficient SQL queries for DBInputFormat. (Aaron Kimball
  1417. via enis)
  1418. MAPREDUCE-284. Enables ipc.client.tcpnodelay in Tasktracker's Child.
  1419. (Ravi Gummadi via sharad)
  1420. MAPREDUCE-916. Split the documentation to match the project split.
  1421. (Corinne Chandel via omalley)
  1422. MAPREDUCE-649. Validate a copy by comparing the source and destination
  1423. checksums in distcp. Also adds an intra-task retry mechanism for errors
  1424. detected during the copy. (Ravi Gummadi via cdouglas)
  1425. MAPREDUCE-654. Add a -dryrun option to distcp printing a summary of the
  1426. file data to be copied, without actually performing the copy. (Ravi Gummadi
  1427. via cdouglas)
  1428. MAPREDUCE-664. Display the number of files deleted by distcp when the
  1429. -delete option is specified. (Ravi Gummadi via cdouglas)
  1430. MAPREDUCE-781. Let the name of distcp jobs be configurable. (Venkatesh S
  1431. via cdouglas)
  1432. MAPREDUCE-975. Add an API in job client to get the history file url for
  1433. a given job id. (sharad)
  1434. MAPREDUCE-905. Add Eclipse launch tasks for MapReduce. (Philip Zeyliger
  1435. via tomwhite)
  1436. MAPREDUCE-277. Makes job history counters available on the job history
  1437. viewers. (Jothi Padmanabhan via ddas)
  1438. MAPREDUCE-893. Provides an ability to refresh queue configuration
  1439. without restarting the JobTracker.
  1440. (Vinod Kumar Vavilapalli and Rahul Kumar Singh via yhemanth)
  1441. MAPREDUCE-1011. Add build.properties to svn and git ignore. (omalley)
  1442. MAPREDUCE-954. Change Map-Reduce context objects to be interfaces.
  1443. (acmurthy)
  1444. MAPREDUCE-639. Change Terasort example to reflect the 2009 updates.
  1445. (omalley)
  1446. MAPREDUCE-1063. Document gridmix benchmark. (cdouglas)
  1447. MAPREDUCE-931. Use built-in interpolation classes for making up task
  1448. runtimes in Rumen. (Dick King via cdouglas)
  1449. MAPREDUCE-1012. Mark Context interfaces as public evolving. (Tom White via
  1450. cdouglas)
  1451. MAPREDUCE-971. Document use of distcp when copying to s3, managing timeouts
  1452. in particular. (Aaron Kimball via cdouglas)
  1453. HDFS-663. DFSIO for append. (shv)
  1454. HDFS-641. Move all of the components that depend on map/reduce to
  1455. map/reduce. (omalley)
  1456. HADOOP-5107. Use Maven ant tasks to publish artifacts. (Giridharan Kesavan
  1457. via omalley)
  1458. MAPREDUCE-1229. Allow customization of job submission policy in Mumak.
  1459. (Hong Tang via cdouglas)
  1460. MAPREDUCE-1317. Reduce the memory footprint of Rumen objects by interning
  1461. host Strings. (Hong Tang via cdouglas)
  1462. MAPREDUCE-1097. Add support for Vertica 3.5 to its contrib module. (Omer
  1463. Trajman via cdouglas)
  1464. MAPREDUCE-1627. HadoopArchives should not uses a method in DistCp.
  1465. (szetszwo)
  1466. MAPREDUCE-1198. Alternatively schedule different types of tasks in
  1467. fair share scheduler. (Scott Chen via matei)
  1468. MAPREDUCE-707. Provide a jobconf property for explicitly assigning a job to
  1469. a pool in the Fair Scheduler. (Alan Heirich via matei)
  1470. MAPREDUCE-947. Added commitJob and abortJob apis to OutputCommitter.
  1471. Enhanced FileOutputCommitter to create a _SUCCESS file for successful
  1472. jobs. (Amar Kamat & Jothi Padmanabhan via acmurthy)
  1473. MAPREDUCE-1103. Added more metrics to Jobtracker. (sharad)
  1474. MAPREDUCE-1048. Add occupied/reserved slot usage summary on jobtracker UI.
  1475. (Amareshwari Sriramadasu and Hemanth Yamijala via sharad)
  1476. MAPREDUCE-1090. Modified log statement in TaskMemoryManagerThread to
  1477. include task attempt id. (yhemanth)
  1478. MAPREDUCE-1189. Reduce ivy console output to ovservable level (cos)
  1479. MAPREDUCE-1167. ProcfsBasedProcessTree collects rss memory information.
  1480. (Scott Chen via dhruba)
  1481. MAPREDUCE-1231. Added a new DistCp option, -skipcrccheck, so that the CRC
  1482. check during setup can be skipped. (Jothi Padmanabhan via szetszwo)
  1483. MAPREDUCE-1190. Add package documentation for BBP example.
  1484. (Tsz Wo (Nicholas) Sze via cdouglas)
  1485. MAPREDUCE-1119. When tasks fail to report status, show tasks's stack dump
  1486. before killing. (Aaron Kimball via tomwhite)
  1487. MAPREDUCE-1185. Redirect running job url to history url if job is already
  1488. retired. (Amareshwari Sriramadasu and Sharad Agarwal via sharad)
  1489. MAPREDUCE-1050. Introduce a mock object testing framework. (tomwhite)
  1490. MAPREDUCE-1084. Implementing aspects development and fault injeciton
  1491. framework for MapReduce. (Sreekanth Ramakrishnan via cos)
  1492. MAPREDUCE-1209. Move common specific part of the test TestReflectionUtils
  1493. out of mapred into common. (Todd Lipcon via tomwhite)
  1494. MAPREDUCE-967. TaskTracker does not need to fully unjar job jars.
  1495. (Todd Lipcon via tomwhite)
  1496. MAPREDUCE-1083. Changes in MapReduce so that group information of users
  1497. can be refreshed in the JobTracker via command line.
  1498. (Boris Shkolnik via ddas)
  1499. MAPREDUCE-181. Changes the job submission process to be secure.
  1500. (Devaraj Das)
  1501. MAPREDUCE-1250. Refactors the JobToken to use Common's Token interface.
  1502. (Kan Zhang via ddas)
  1503. MAPREDUCE-896. Enhance tasktracker to cleanup files that might have
  1504. been created by user tasks with non-writable permissions.
  1505. (Ravi Gummadi via yhemanth)
  1506. MAPREDUCE-372. Change org.apache.hadoop.mapred.lib.ChainMapper/Reducer
  1507. to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
  1508. MAPREDUCE-1295. Add a tool in Rumen for folding and manipulating job
  1509. traces. (Dick King via cdouglas)
  1510. MAPREDUCE-1302. TrackerDistributedCacheManager deletes file
  1511. asynchronously, thus reducing task initialization delays.
  1512. (Zheng Shao via dhruba)
  1513. MAPREDUCE-1218. TaskTrackers send cpu and memory usage of
  1514. node to JobTracker. (Scott Chen via dhruba)
  1515. MAPREDUCE-847. Fix Releaseaudit warning count to zero
  1516. (Giridharan Kesavan)
  1517. MAPREDUCE-1337. Use generics in StreamJob to improve readability of that
  1518. class. (Kay Kay via cdouglas)
  1519. MAPREDUCE-361. Port terasort example to the new mapreduce API. (Amareshwari
  1520. Sriramadasu via cdouglas)
  1521. MAPREDUCE-1367. LocalJobRunner should support parallel mapper execution.
  1522. (Aaron Kimball via tomwhite)
  1523. MAPREDUCE-64. Eliminate io.sort.record.percent from MapTask configuration.
  1524. (cdouglas)
  1525. MAPREDUCE-1440. Replace the long user name in MapReduce with the local
  1526. name. (omalley)
  1527. MAPREDUCE-1470. Move delegation tokens from HDFS to Common so that
  1528. MapReduce can use them too. (omalley)
  1529. MAPREDUCE-1425. Reduce memory usage by archive. (mahadev via szetszwo)
  1530. MAPREDUCE-1441. Trim whitespace from directory lists pulled from the
  1531. configuration. (Todd Lipcon via cdouglas)
  1532. MAPREDUCE-1309. Refactor Rumen trace generator to improve code structure
  1533. and add extensible support for log formats. (Dick King via cdouglas)
  1534. MAPREDUCE-1503. Delegation token renewing and cancelling should provide
  1535. meaningful exceptions when there are failures instead of returning
  1536. false. (omalley)
  1537. HADOOP-6579. Upgrade commons-codec library to 1.4. (omalley)
  1538. MAPREDUCE-1423. Improve performance of CombineFileInputFormat when multiple
  1539. pools are configured. (Dhruba Borthakur via zshao)
  1540. MAPREDUCE-1454. Quote user supplied strings in Tracker servlets. (cdouglas)
  1541. MAPREDUCE-1408. Add customizable job submission policies to Gridmix. (Rahul
  1542. Singh via cdouglas)
  1543. MAPREDUCE-1527. Better warning logged when mapred.queue.names is
  1544. overshadowed by mapred-queues.xml. (Hong Tang via acmurthy)
  1545. MAPREDUCE-1403. Save the size and number of distributed cache artifacts in
  1546. the configuration. (Arun Murthy via cdouglas)
  1547. MAPREDUCE-1482. Truncate state string and diagnostic information in
  1548. TaskStatus. (Amar Kamat via szetszwo)
  1549. MAPREDUCE-1593. [Rumen] Improvements to random seed generation (tamas via
  1550. mahadev)
  1551. MAPREDUCE-1460. Oracle support in DataDrivenDBInputFormat.
  1552. (Aaron Kimball via tomwhite)
  1553. MAPREDUCE-1569. Pass configuration through mocked contexts in MRUnit.
  1554. (Chris White via cdouglas)
  1555. MAPREDUCE-1590. Move HarFileSystem from Hadoop Common to Mapreduce tools.
  1556. (mahadev)
  1557. MAPREDUCE-1629. Get rid of fakeBlockLocations() on HarFileSystem, since
  1558. it's not used (mahadev)
  1559. MAPREDUCE-1489. DataDrivenDBInputFormat should not query the database
  1560. when generating only one split. (Aaron Kimball via tomwhite)
  1561. MAPREDUCE-1514. Add documentation on replication, permissions, new options,
  1562. limitations and internals of har. (mahadev via szetszwo)
  1563. MAPREDUCE-1428. Make block size and the size of archive created files
  1564. configurable. (mahadev via szetszwo)
  1565. MAPREDUCE-1656. JobStory should provide queue info. (hong via mahadev)
  1566. MAPREDUCE-1466. Record number of files processed in FileInputFormat in the
  1567. Configuration for offline analysis. (Luke Lu and Arun Murthy via cdouglas)
  1568. MAPREDUCE-1538. TrackerDistributedCacheManager manages the
  1569. number of files. (Scott Chen via dhruba)
  1570. MAPREDUCE-1673. Scripts to start and stop RaidNode.
  1571. (Rodrigo Schmidt via dhruba)
  1572. MAPREDUCE-1659. RaidNode writes temp files on configured tmp directory and
  1573. add random numbers to their names to avoid conflicts
  1574. (Rodrigo Schmidt via dhruba)
  1575. MAPREDUCE-1221. Allow admins to control physical memory limits per-task
  1576. and per-node. (Scott Chen via acmurthy)
  1577. MAPREDUCE-1065. Update mapred tutorial to use the new API. (Aaron Kimball
  1578. via cdouglas)
  1579. MAPREDUCE-1304. Add a task counter tracking time spent in GC. (Aaron
  1580. Kimball via cdouglas)
  1581. MAPREDUCE-1570. Add grouping comparators to MRUnit. (Chris White via
  1582. cdouglas)
  1583. MAPREDUCE-1650. Exclude Private elements from generated MapReduce
  1584. Javadoc. (tomwhite)
  1585. MAPREDUCE-1625. Improve grouping of packages in Javadoc. (tomwhite)
  1586. MAPREDUCE-1417. Forrest documentation should be updated to reflect
  1587. the changes in MAPREDUCE-744. (Ravi Gummadi via vinodkv)
  1588. MAPREDUCE-1568. TrackerDistributedCacheManager should clean up cache
  1589. in a background thread. (Scott Chen via zshao)
  1590. MAPREDUCE-1749. Move configuration strings out of JobContext so that it
  1591. can be made public stable. (omalley)
  1592. MAPREDUCE-1623. Apply audience and stability notations to Hadoop
  1593. Map-Reduce. (tomwhite via acmurthy)
  1594. MAPREDUCE-1751. Change MapReduce to depend on Hadoop 'common' artifacts
  1595. instead of 'core'. (tomwhite)
  1596. MAPREDUCE-1535. Replace usage of FileStatus#isDir(). (Eli Collins via
  1597. tomwhite)
  1598. MAPREDUCE-1832. Allow file sizes less than 1MB in DFSIO benchmark. (shv)
  1599. MAPREDUCE-1404. Move Cluster-Setup and Single-Node-Setup Docs from
  1600. MapReduce to Common. (tomwhite)
  1601. MAPREDUCE-1697. Document the behavior of -file option and deprecate it
  1602. in favour of -files option in streaming. (Amareshwari Sriramadasu
  1603. via vinodkv)
  1604. MAPREDUCE-1033. Resolve location of scripts and configuration files after
  1605. project split. (tomwhite)
  1606. MAPREDUCE-1018. Document changes to the memory management and scheduling
  1607. model. (Hemanth Yamijala via vinodkv)
  1608. MAPREDUCE-1896. [Herriot] New property for multi user list. (Vinay Thota
  1609. via cos)
  1610. MAPREDUCE-1812. New properties for suspend and resume process. (Vinay
  1611. Thota via cos)
  1612. OPTIMIZATIONS
  1613. MAPREDUCE-270. Fix the tasktracker to optionally send an out-of-band
  1614. heartbeat on task-completion for better job-latency. (acmurthy)
  1615. Configuration changes:
  1616. add mapreduce.tasktracker.outofband.heartbeat
  1617. MAPREDUCE-1186. Modified code in distributed cache to set permissions
  1618. only on required set of localized paths.
  1619. (Amareshwari Sriramadasu via yhemanth)
  1620. MAPREDUCE-1501. FileInputFormat supports multi-level, recursive
  1621. directory listing. (Zheng Shao via dhruba)
  1622. MAPREDUCE-1556. upgrade to Avro 1.3.0. (cutting via tomwhite)
  1623. MAPREDUCE-1613. Install/deploy source jars to Maven repo
  1624. (Patrick Angeles via ddas)
  1625. MAPREDUCE-1610. Forrest documentation should be updated to reflect
  1626. the changes in MAPREDUCE-856. (Ravi Gummadi via vinodkv)
  1627. MAPREDUCE-1853. Adds caching for TaskAttemptContext in MultipleOutputs.
  1628. (Torsten Curdt via amareshwari)
  1629. BUG FIXES
  1630. MAPREDUCE-878. Rename fair scheduler design doc to
  1631. fair-scheduler-design-doc.tex and add Apache license header (matei)
  1632. HADOOP-4687. MapReduce is split from Hadoop Core. It is a subproject under
  1633. Hadoop (Owen O'Malley)
  1634. HADOOP-6096. Fix Eclipse project and classpath files following project
  1635. split. (tomwhite)
  1636. MAPREDUCE-419. Reconcile mapred.userlog.limit.kb defaults in configuration
  1637. and code. (Philip Zeyliger via cdouglas)
  1638. MAPREDUCE-2. Fixes a bug in KeyFieldBasedPartitioner in handling empty
  1639. keys. (Amar Kamat via sharad)
  1640. MAPREDUCE-130. Delete the jobconf copy from the log directory of the
  1641. JobTracker when the job is retired. (Amar Kamat via sharad)
  1642. MAPREDUCE-657. Fix hardcoded filesystem problem in CompletedJobStatusStore.
  1643. (Amar Kamat via sharad)
  1644. MAPREDUCE-179. Update progress in new RecordReaders. (cdouglas)
  1645. MAPREDUCE-658. Replace NPE in distcp with a meaningful error message when
  1646. the source path does not exist. (Ravi Gummadi via cdouglas)
  1647. MAPREDUCE-671. Update ignore list to include untracked, generated
  1648. build artifacts and config files. (cdouglas)
  1649. MAPREDUCE-433. Use more reliable counters in TestReduceFetch. (cdouglas)
  1650. MAPREDUCE-124. Fix a bug in failure handling of abort task of
  1651. OutputCommiter. (Amareshwari Sriramadasu via sharad)
  1652. MAPREDUCE-694. Fix to add jsp-api jars to capacity-scheduler classpath.
  1653. (Giridharan Kesavan)
  1654. MAPREDUCE-702. Fix eclipse-plugin jar target (Giridharan Kesavan)
  1655. MAPREDUCE-522. Replace TestQueueCapacities with simpler test case to
  1656. test integration between capacity scheduler and MR framework.
  1657. (Sreekanth Ramakrishnan via yhemanth)
  1658. MAPREDUCE-683. Fixes an initialization problem in the JobHistory.
  1659. The initialization of JobHistoryFilesManager is now done in the
  1660. JobHistory.init call. (Amar Kamat via ddas)
  1661. MAPREDUCE-708. Fixes a bug to allow updating the reason for
  1662. blacklisting a node on the JobTracker UI.
  1663. (Sreekanth Ramakrishnan via yhemanth)
  1664. MAPREDUCE-709. Fixes message displayed for a blacklisted node where
  1665. the reason for blacklisting is due to the health check script
  1666. timing out. (Sreekanth Ramakrishnan via yhemanth)
  1667. MAPREDUCE-676. Existing diagnostic rules fail for MAP ONLY jobs.
  1668. (Suhas Gogate via tomwhite)
  1669. MAPREDUCE-722. Fixes a bug with tasktracker reservations for
  1670. high memory jobs in capacity scheduler.
  1671. (Vinod Kumar Vavilapalli via yhemanth)
  1672. HADOOP-6090. Updates gridmix script to use new mapreduce api output
  1673. format. (Amareshwari Sriramadasu via sharad)
  1674. MAPREDUCE-732. Removed spurious log statements in the node
  1675. blacklisting logic. (Sreekanth Ramakrishnan via yhemanth)
  1676. MAPREDUCE-734. Fix a ConcurrentModificationException in unreserving
  1677. unused reservations for a job when it completes.
  1678. (Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
  1679. MAPREDUCE-733. Fix a RuntimeException while unreserving trackers
  1680. that are blacklisted for a job.
  1681. (Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
  1682. MAPREDUCE-677. Fix timeout in TestNodeRefresh. (Amar Kamat via
  1683. sharad)
  1684. MAPREDUCE-153. Fix timeout in TestJobInProgressListener. (Amar
  1685. Kamat via sharad)
  1686. MAPREDUCE-742. Fix output messages and java comments in the Pi related
  1687. examples. (szetszwo)
  1688. MAPREDUCE-565. Fix partitioner to work with new API. (Owen O'Malley via
  1689. cdouglas)
  1690. MAPREDUCE-680. Fix so MRUnit can handle reuse of Writable objects.
  1691. (Aaron Kimball via johan)
  1692. MAPREDUCE-18. Puts some checks for cross checking whether a reduce
  1693. task gets the correct shuffle data. (Ravi Gummadi via ddas)
  1694. MAPREDUCE-771. Fix scheduling of setup and cleanup tasks to use
  1695. free slots instead of tasks for scheduling. (yhemanth)
  1696. MAPREDUCE-717. Fixes some corner case issues in speculative
  1697. execution heuristics. (Devaraj Das)
  1698. MAPREDUCE-716. Make DBInputFormat work with Oracle. (Aaron Kimball
  1699. via tomwhite)
  1700. MAPREDUCE-735. Fixes a problem in the KeyFieldHelper to do with
  1701. the end index for some inputs (Amar Kamat via ddas)
  1702. MAPREDUCE-682. Removes reservations on tasktrackers which are
  1703. blacklisted. (Sreekanth Ramakrishnan via yhemanth)
  1704. MAPREDUCE-743. Fixes a problem to do with progress reporting
  1705. in the map phase. (Ravi Gummadi via ddas)
  1706. MAPREDUCE-765. Eliminate the deprecated warnings introduced by H-5438.
  1707. (He Yongqiang via szetszwo)
  1708. MAPREDUCE-383. Fix a bug in Pipes combiner due to bytes count not
  1709. getting reset after the spill. (Christian Kunz via sharad)
  1710. MAPREDUCE-809. Fix job-summary logs to correctly record status of FAILED
  1711. and KILLED jobs. (acmurthy)
  1712. MAPREDUCE-792. Fix unchecked warnings in DBInputFormat. (Aaron Kimball
  1713. via szetszwo)
  1714. MAPREDUCE-760. Fix a timing issue in TestNodeRefresh. (Amar Kamat via
  1715. sharad)
  1716. MAPREDUCE-40. Keep memory management backwards compatible for job
  1717. configuration parameters and limits. (Rahul Kumar Singh via yhemanth)
  1718. MAPREDUCE-587. Fixes a OOM issue in TestStreamingExitStatus.
  1719. (Amar Kamat via ddas)
  1720. MAPREDUCE-408. Fixes an assertion problem in TestKillSubProcesses
  1721. (Ravi Gummadi via ddas)
  1722. MAPREDUCE-659. Fix gridmix2 compilation. (Giridharan Kesavan)
  1723. MAPREDUCE-796. Fixes a ClassCastException in an exception log in
  1724. MultiThreadedMapRunner. (Amar Kamat via ddas)
  1725. MAPREDUCE-808. Fixes a serialization problem in TypedBytes.
  1726. (Klaas Bosteels via ddas)
  1727. MAPREDUCE-845. Fix a findbugs heap size problem in build.xml and add
  1728. a new property findbugs.heap.size. (Lee Tucker via szetszwo)
  1729. MAPREDUCE-838. Fixes a problem in the way commit of task outputs
  1730. happens. The bug was that even if commit failed, the task would
  1731. be declared as successful. (Amareshwari Sriramadasu via ddas)
  1732. MAPREDUCE-813. Updates Streaming and M/R tutorial documents.
  1733. (Corinne Chandel via ddas)
  1734. MAPREDUCE-805. Fixes some deadlocks in the JobTracker due to the fact
  1735. the JobTracker lock hierarchy wasn't maintained in some JobInProgress
  1736. method calls. (Amar Kamat via ddas)
  1737. MAPREDUCE-799. Fixes so all of the MRUnit self-tests run.
  1738. (Aaron Kimball via johan)
  1739. MAPREDUCE-848. Fixes a problem to do with TestCapacityScheduler
  1740. failing (Amar Kamat via ddas)
  1741. MAPREDUCE-840. DBInputFormat leaves open transaction.
  1742. (Aaron Kimball via tomwhite)
  1743. MAPREDUCE-859. Adds Avro and its dependencies required by Hadoop
  1744. common. (Ravi Gummadi via sharad)
  1745. MAPREDUCE-867. Fix ivy conf to look for avro jar from maven repo.
  1746. (Giridharan Kesavan)
  1747. MAPREDUCE-877. Added avro as a dependency to contrib ivy settings.
  1748. (Tsz Wo (Nicholas) Sze via yhemanth)
  1749. MAPREDUCE-852. In build.xml, remove the Main-Class, which is incorrectly
  1750. set in tools, and rename the target "tools-jar" to "tools". (szetszwo)
  1751. MAPREDUCE-773. Sends progress reports for compressed gzip inputs in maps.
  1752. Fixes a native direct buffer leak in LineRecordReader classes.
  1753. (Hong Tang and ddas)
  1754. MAPREDUCE-832. Reduce number of warning messages printed when
  1755. deprecated memory variables are used. (Rahul Kumar Singh via yhemanth)
  1756. MAPREDUCE-745. Fixes a testcase problem to do with generation of JobTracker
  1757. IDs. (Amar Kamat via ddas)
  1758. MAPREDUCE-834. Enables memory management on tasktrackers when old
  1759. memory management parameters are used in configuration.
  1760. (Sreekanth Ramakrishnan via yhemanth)
  1761. MAPREDUCE-818. Fixes Counters#getGroup API. (Amareshwari Sriramadasu
  1762. via sharad)
  1763. MAPREDUCE-807. Handles the AccessControlException during the deletion of
  1764. mapred.system.dir in the JobTracker. The JobTracker will bail out if it
  1765. encounters such an exception. (Amar Kamat via ddas)
  1766. MAPREDUCE-430. Fix a bug related to task getting stuck in case of
  1767. OOM error. (Amar Kamat via ddas)
  1768. MAPREDUCE-871. Fix ownership of Job/Task local files to have correct
  1769. group ownership according to the egid of the tasktracker.
  1770. (Vinod Kumar Vavilapalli via yhemanth)
  1771. MAPREDUCE-911. Fix a bug in TestTaskFail related to speculative
  1772. execution. (Amareshwari Sriramadasu via sharad)
  1773. MAPREDUCE-687. Fix an assertion in TestMiniMRMapRedDebugScript.
  1774. (Amareshwari Sriramadasu via sharad)
  1775. MAPREDUCE-924. Fixes the TestPipes testcase to use Tool.
  1776. (Amareshwari Sriramadasu via sharad)
  1777. MAPREDUCE-903. Add Avro jar to eclipse classpath.
  1778. (Philip Zeyliger via tomwhite)
  1779. MAPREDUCE-943. Removes a testcase in TestNodeRefresh that doesn't make
  1780. sense in the new Job recovery model. (Amar Kamat via ddas)
  1781. MAPREDUCE-764. TypedBytesInput's readRaw() does not preserve custom type
  1782. codes. (Klaas Bosteels via tomwhite)
  1783. HADOOP-6243. Fixes a NullPointerException in handling deprecated keys.
  1784. (Sreekanth Ramakrishnan via yhemanth)
  1785. MAPREDUCE-968. NPE in distcp encountered when placing _logs directory on
  1786. S3FileSystem. (Aaron Kimball via tomwhite)
  1787. MAPREDUCE-826. harchive doesn't use ToolRunner / harchive returns 0 even
  1788. if the job fails with exception (koji Noguchi via mahadev)
  1789. MAPREDUCE-839. unit test TestMiniMRChildTask fails on mac os-x (hong tang
  1790. via mahadev)
  1791. MAPREDUCE-112. Add counters for reduce input, output records to the new API.
  1792. (Jothi Padmanabhan via cdouglas)
  1793. MAPREDUCE-648. Fix two distcp bugs: (1) it should not launch a job if all
  1794. src paths are directories, and (2) it does not skip copying when updating
  1795. a single file. (Ravi Gummadi via szetszwo)
  1796. MAPREDUCE-946. Fix a regression in LineRecordReader where the
  1797. maxBytesToConsume parameter is not set correctly. (cdouglas)
  1798. MAPREDUCE-977. Missing jackson jars from Eclipse template. (tomwhite)
  1799. MAPREDUCE-988. Fix a packaging issue in the contrib modules. (Hong Tang via
  1800. cdouglas)
  1801. MAPREDUCE-971. distcp does not always remove distcp.tmp.dir. (Aaron Kimball
  1802. via tomwhite)
  1803. MAPREDUCE-995. Fix a bug in JobHistory where tasks completing after the job
  1804. is closed cause a NPE. (Jothi Padmanabhan via cdouglas)
  1805. MAPREDUCE-953. Fix QueueManager to dump queue configuration in JSON format.
  1806. (V.V. Chaitanya Krishna via yhemanth)
  1807. MAPREDUCE-645. Prevent distcp from running a job when the destination is a
  1808. file, but the source is not. (Ravi Gummadi via cdouglas)
  1809. MAPREDUCE-1002. Flushed writer in JobQueueClient so queue information is
  1810. printed correctly. (V.V. Chaitanya Krishna via yhemanth)
  1811. MAPREDUCE-1003. Fix compilation problem in eclipse plugin when
  1812. eclipse.home is set. (Ravi Gummadi via yhemanth)
  1813. MAPREDUCE-941. Vaidya script fails on Solaris. (Chad Metcalf
  1814. via tomwhite)
  1815. MAPREDUCE-912. Add and standardize Apache license headers. (Chad Metcalf
  1816. via cdouglas)
  1817. MAPREDUCE-1022. Fix compilation of vertica testcases. (Vinod Kumar
  1818. Vavilapalli via acmurthy)
  1819. MAPREDUCE-1000. Handle corrupt history files in JobHistory.initDone().
  1820. (Jothi Padmanabhan via sharad)
  1821. MAPREDUCE-1028. Fixed number of slots occupied by cleanup tasks to one
  1822. irrespective of slot size for the job.
  1823. (Ravi Gummadi via yhemanth)
  1824. MAPREDUCE-964. Fixed start and finish times of TaskStatus to be
  1825. consistent, thereby fixing inconsistencies in metering tasks.
  1826. (Sreekanth Ramakrishnan via yhemanth)
  1827. MAPREDUCE-1076. Deprecate ClusterStatus and add javadoc in ClusterMetrics.
  1828. (Amareshwari Sriramadasu via sharad)
  1829. MAPREDUCE-979. Fixed JobConf APIs related to memory parameters to return
  1830. values of new configuration variables when deprecated variables are
  1831. disabled. (Sreekanth Ramakrishnan via yhemanth)
  1832. MAPREDUCE-1030. Modified scheduling algorithm to return a map and reduce
  1833. task per heartbeat in the capacity scheduler.
  1834. (Rahul Kumar Singh via yhemanth)
  1835. MAPREDUCE-1071. Use DataInputStream rather than FSDataInputStream in the
  1836. JobHistory EventReader. (Hong Tang via cdouglas)
  1837. MAPREDUCE-986. Fix Rumen to work with truncated task lines. (Dick King via
  1838. cdouglas)
  1839. MAPREDUCE-1029. Fix failing TestCopyFiles by restoring the unzipping of
  1840. HDFS webapps from the hdfs jar. (Aaron Kimball and Jothi Padmanabhan via
  1841. cdouglas)
  1842. MAPREDUCE-769. Make findbugs and javac warnings to zero.
  1843. (Amareshwari Sriramadasu via sharad)
  1844. MAPREDUCE-1104. Initialize RecoveryManager in JobTracker cstr called by
  1845. Mumak. (Hong Tang via cdouglas)
  1846. MAPREDUCE-1061. Add unit test validating byte specifications for gridmix
  1847. jobs. (cdouglas)
  1848. MAPREDUCE-1077. Fix Rumen so that truncated tasks do not mark the job as
  1849. successful. (Dick King via cdouglas)
  1850. MAPREDUCE-1041. Make TaskInProgress::taskStatuses map package-private.
  1851. (Jothi Padmanabhan via cdouglas)
  1852. MAPREDUCE-1070. Prevent a deadlock in the fair scheduler servlet.
  1853. (Todd Lipcon via cdouglas)
  1854. MAPREDUCE-1086. Setup Hadoop logging environment for tasks to point to
  1855. task related parameters. (Ravi Gummadi via yhemanth)
  1856. MAPREDUCE-1105. Remove max limit configuration in capacity scheduler in
  1857. favor of max capacity percentage thus allowing the limit to go over
  1858. queue capacity. (Rahul Kumar Singh via yhemanth)
  1859. MAPREDUCE-1016. Make the job history log format JSON. (cutting)
  1860. MAPREDUCE-1038. Weave Mumak aspects only if related files have changed.
  1861. (Aaron Kimball via cdouglas)
  1862. MAPREDUCE-1163. Remove unused, hard-coded paths from libhdfs. (Allen
  1863. Wittenauer via cdouglas)
  1864. MAPREDUCE-962. Fix a NullPointerException while killing task process
  1865. trees. (Ravi Gummadi via yhemanth)
  1866. MAPREDUCE-1177. Correct setup/cleanup inversion in
  1867. JobTracker::getTaskReports. (Vinod Kumar Vavilapalli via cdouglas)
  1868. MAPREDUCE-1178. Fix ClassCastException in MultipleInputs by adding
  1869. a DelegatingRecordReader. (Amareshwari Sriramadasu and Jay Booth
  1870. via sharad)
  1871. MAPREDUCE-1068. Fix streaming job to show proper message if file is
  1872. is not present. (Amareshwari Sriramadasu via sharad)
  1873. MAPREDUCE-1147. Add map output counters to new API. (Amar Kamat via
  1874. cdouglas)
  1875. MAPREDUCE-915. The debug scripts are run as the job user. (ddas)
  1876. MAPREDUCE-1007. Fix NPE in CapacityTaskScheduler.getJobs().
  1877. (V.V.Chaitanya Krishna via sharad)
  1878. MAPREDUCE-28. Refactor TestQueueManager and fix default ACLs.
  1879. (V.V.Chaitanya Krishna and Rahul K Singh via sharad)
  1880. MAPREDUCE-1182. Fix overflow in reduce causing allocations to exceed the
  1881. configured threshold. (cdouglas)
  1882. MAPREDUCE-1239. Fix contrib components build dependencies.
  1883. (Giridharan Kesavan and omalley)
  1884. MAPREDUCE-787. Fix JobSubmitter to honor user given symlink path.
  1885. (Amareshwari Sriramadasu via sharad)
  1886. MAPREDUCE-1249. Update config default value for socket read timeout to
  1887. match code default. (Amareshwari Sriramadasu via cdouglas)
  1888. MAPREDUCE-1161. Remove ineffective synchronization in NotificationTestCase.
  1889. (Owen O'Malley via cdouglas)
  1890. MAPREDUCE-1244. Fix eclipse-plugin's build dependencies. (gkesavan)
  1891. MAPREDUCE-1075. Fix JobTracker to not throw an NPE for a non-existent
  1892. queue. (V.V.Chaitanya Krishna via yhemanth)
  1893. MAPREDUCE-754. Fix NPE in expiry thread when a TT is lost. (Amar Kamat
  1894. via sharad)
  1895. MAPREDUCE-1074. Document Reducer mark/reset functionality. (Jothi
  1896. Padmanabhan via cdouglas)
  1897. MAPREDUCE-1267. Fix typo in mapred-default.xml. (Todd Lipcon via cdouglas)
  1898. MAPREDUCE-952. Remove inadvertently reintroduced Task.Counter enum. (Jothi
  1899. Padmanabhan via cdouglas)
  1900. MAPREDUCE-1230. Fix handling of null records in VerticaInputFormat. (Omer
  1901. Trajman via cdouglas)
  1902. MAPREDUCE-1171. Allow shuffle retries and read-error reporting to be
  1903. configurable. (Amareshwari Sriramadasu via acmurthy)
  1904. MAPREDUCE-879. Fix broken unit test TestTaskTrackerLocalization on MacOS.
  1905. (Sreekanth Ramakrishnan via yhemanth)
  1906. MAPREDUCE-1124. Fix imprecise byte counts in Gridmix. (cdouglas)
  1907. MAPREDUCE-1222. Add an option to exclude numeric IP addresses in topologies
  1908. processed by Mumak. (Hong Tang via cdouglas)
  1909. MAPREDUCE-1284. Fix fts_open() call in task-controller that was failing
  1910. LinuxTaskController unit tests. (Ravi Gummadi via yhemanth)
  1911. MAPREDUCE-1143. Fix running task counters to be updated correctly
  1912. when speculative attempts are running for a TIP.
  1913. (Rahul Kumar Singh via yhemanth)
  1914. MAPREDUCE-1241. Use a default queue configuration in JobTracker when
  1915. mapred-queues.xml is unavailable. (Todd Lipcon via cdouglas)
  1916. MAPREDUCE-1301. Fix set up of permission checking script used in
  1917. localization tests. (Amareshwari Sriramadasu via yhemanth)
  1918. MAPREDUCE-1286. Remove quoting from client opts in TaskRunner. (Yuri
  1919. Pradkin via cdouglas)
  1920. MAPREDUCE-1059. Use distcp.bytes.per.map when adding sync markers in
  1921. distcp. (Aaron Kimball via cdouglas)
  1922. MAPREDUCE-1009. Update forrest documentation describing hierarchical
  1923. queues. (Vinod Kumar Vavilapalli via yhemanth)
  1924. MAPREDUCE-1342. Fixed deadlock in global blacklisting of tasktrackers.
  1925. (Amareshwari Sriramadasu via acmurthy)
  1926. MAPREDUCE-1316. Fixes a memory leak of TaskInProgress instances in
  1927. the jobtracker. (Amar Kamat via yhemanth)
  1928. MAPREDUCE-1359. TypedBytes TestIO doesn't mkdir its test dir first.
  1929. (Anatoli Fomenko via cos)
  1930. MAPREDUCE-1314. Correct errant mapreduce.x.mapreduce.x replacements from
  1931. bulk change. (Amareshwari Sriramadasu via cdouglas)
  1932. MAPREDUCE-1365. Restore accidentally renamed test in
  1933. TestTaskTrackerBloacklisting. (Amareshwari Sriramadasu via cdouglas)
  1934. MAPREDUCE-1406. Fix spelling of JobContext.MAP_COMBINE_MIN_SPILLS.
  1935. (cdouglas)
  1936. MAPREDUCE-1369. JUnit tests should never depend on anything in conf
  1937. (Anatoli Fomenko via cos)
  1938. MAPREDUCE-1412. Fix timer granularity issue causing failures in
  1939. TestTaskTrackerBlacklisting. (cdouglas)
  1940. MAPREDUCE-1448. Respect --config option in Mumak script. (Hong Tang via
  1941. cdouglas)
  1942. MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via tomwhite)
  1943. MAPREDUCE-1522. FileInputFormat may use the default FileSystem for the
  1944. input path. (Tsz Wo (Nicholas), SZE via cdouglas)
  1945. MAPREDUCE-1407. Update javadoc in mapreduce.{Mapper,Reducer} to match
  1946. actual usage. (Benoit Sigoure via cdouglas)
  1947. MAPREDUCE-1258. Fix fair scheduler event log not logging job info.
  1948. (matei)
  1949. MAPREDUCE-1089. Fix NPE in fair scheduler preemption when tasks are
  1950. scheduled but not running. (Todd Lipcon via matei)
  1951. MAPREDUCE-1014. Fix the libraries for common and hdfs. (omalley)
  1952. MAPREDUCE-1111. JT Jetty UI not working if we run mumak.sh
  1953. off packaged distribution directory. (hong tang via mahadev)
  1954. MAPREDUCE-1133. Eclipse .classpath template has outdated jar files and is
  1955. missing some new ones. (cos)
  1956. MAPREDUCE-1098. Fixed the distributed-cache to not do i/o while holding a
  1957. global lock. (Amareshwari Sriramadasu via acmurthy)
  1958. MAPREDUCE-1158. Fix JT running maps and running reduces metrics.
  1959. (sharad)
  1960. MAPREDUCE-1160. Reduce verbosity of log lines in some Map/Reduce classes
  1961. to avoid filling up jobtracker logs on a busy cluster.
  1962. (Ravi Gummadi and Hong Tang via yhemanth)
  1963. MAPREDUCE-1153. Fix tasktracker metrics when trackers are decommissioned.
  1964. (sharad)
  1965. MAPREDUCE-1128. Fix MRUnit to prohibit iterating over values twice. (Aaron
  1966. Kimball via cdouglas)
  1967. MAPREDUCE-665. Move libhdfs to HDFS subproject. (Eli Collins via dhruba)
  1968. MAPREDUCE-1196. Fix FileOutputCommitter to use the deprecated cleanupJob
  1969. api correctly. (acmurthy)
  1970. MAPREDUCE-1244. Fix eclipse-plugin's build dependencies. (gkesavan)
  1971. MAPREDUCE-1140. Fix DistributedCache to not decrement reference counts for
  1972. unreferenced files in error conditions.
  1973. (Amareshwari Sriramadasu via yhemanth)
  1974. MAPREDUCE-1245. Fix TestFairScheduler failures by instantiating lightweight
  1975. Jobtracker. (sharad)
  1976. MAPREDUCE-1260. Update Eclipse configuration to match changes to Ivy
  1977. configuration. (Edwin Chan via cos)
  1978. MAPREDUCE-1152. Distinguish between failed and killed tasks in
  1979. JobTrackerInstrumentation. (Sharad Agarwal via cdouglas)
  1980. MAPREDUCE-1285. In DistCp.deleteNonexisting(..), get class from the
  1981. parameter instead of using FileStatus.class. (Peter Romianowski via
  1982. szetszwo)
  1983. MAPREDUCE-1294. Build fails to pull latest hadoop-core-* artifacts (cos)
  1984. MAPREDUCE-1213. TaskTrackers restart is faster because it deletes
  1985. distributed cache directory asynchronously. (Zheng Shao via dhruba)
  1986. MAPREDUCE-1265. The task attempt error log prints the name of the
  1987. tasktracker machine. (Scott Chen via dhruba)
  1988. MAPREDUCE-1201. ProcfsBasedProcessTree collects CPU usage information.
  1989. (Scott Chen via dhruba)
  1990. MAPREDUCE-1326. fi tests don't use fi-site.xml (cos)
  1991. MAPREDUCE-1165. Replace non-portable function name with C99 equivalent.
  1992. (Allen Wittenauer via cdouglas)
  1993. MAPREDUCE-1331. Fixes a typo in a testcase (Devaraj Das)
  1994. MAPREDUCE-1293. AutoInputFormat doesn't work with non-default FileSystems.
  1995. (Andrew Hitchcock via tomwhite)
  1996. MAPREDUCE-1131. Using profilers other than hprof can cause JobClient to
  1997. report job failure. (Aaron Kimball via tomwhite)
  1998. MAPREDUCE-1155. Streaming tests swallow exceptions.
  1999. (Todd Lipcon via tomwhite)
  2000. MAPREDUCE-1212. Mapreduce contrib project ivy dependencies are not included
  2001. in binary target. (Aaron Kimball via tomwhite)
  2002. MAPREDUCE-1388. Move the HDFS RAID package from HDFS to MAPREDUCE.
  2003. (Eli Collins via dhruba)
  2004. MAPREDUCE-1322. Defines default value for staging directory to be user
  2005. based fixing a failing streaming test.
  2006. (Devaraj Das and Amareshwari Sriramadasu via yhemanth)
  2007. MAPREDUCE-899. Modified LinuxTaskController to check that task-controller
  2008. has right permissions and ownership before performing any actions.
  2009. (Amareshwari Sriramadasu via yhemanth)
  2010. MAPREDUCE-1443. DBInputFormat can leak connections.
  2011. (Aaron Kimball via tomwhite)
  2012. MAPREDUCE-1457. Fixes JobTracker to get the FileSystem object within
  2013. getStagingAreaDir within a privileged block. Fixes Child.java to use the
  2014. appropriate UGIs while getting the TaskUmbilicalProtocol proxy and
  2015. while executing the task. (Jakob Homan via ddas)
  2016. MAPREDUCE-1399. The archive command shows a null error message (nicholas
  2017. via mahadev)
  2018. MAPREDUCE-1305. Improve efficiency of distcp -delete. (Peter Romianowski
  2019. via cdouglas)
  2020. MAPREDUCE-1474. Update forrest documentation for Hadoop Archives. (Mahadev
  2021. Konar via cdouglas)
  2022. MAPREDUCE-1400. Use tr rather than sed to effect literal substitution in
  2023. the build script. (Allen Wittenauer via cdouglas)
  2024. MAPREDUCE-1358. Avoid false positives in OutputLogFilter. (Todd Lipcon via
  2025. cdouglas)
  2026. MAPREDUCE-1490. Fix a NullPointerException that could occur during
  2027. instantiation and initialization of the DistributedRaidFileSystem.
  2028. (Rodrigo Schmidt via dhruba)
  2029. MAPREDUCE-1476. Fix the M/R framework to not call commit for special
  2030. tasks like job setup/cleanup and task cleanup.
  2031. (Amareshwari Sriramadasu via yhemanth)
  2032. MAPREDUCE-1398. Fix TaskLauncher to stop waiting for slots on a TIP that
  2033. is killed / failed.
  2034. (Amareshwari Sriramadasu via yhemanth)
  2035. MAPREDUCE-1491. The parity files created by the RAID are combined
  2036. using Hadoop Archive Files (HAR). (Rodrigo Schmidt via dhruba)
  2037. MAPREDUCE-1378. URL encode link in jobhistory.jsp to avoid errors caused by
  2038. unescaped characters. (E. Sammer via cdouglas)
  2039. MAPREDUCE-1519. RaidNode fails to create new parity file
  2040. if an older version already exists. (Rodrigo Schmidt via dhruba)
  2041. MAPREDUCE-1537. Fixes a compilation problem in a testcase after commit
  2042. HDFS-984. (Jitendra Nath Pandey via ddas)
  2043. MAPREDUCE-1537. The patch makes the job client call the getDelegationToken
  2044. only when security is enabled. (Jitendra Nath Pandey via ddas)
  2045. MAPREDUCE-1510. RAID should regenerate parity files if they get deleted.
  2046. (Rodrigo Schmidt via dhruba)
  2047. MAPREDUCE-1421. Fix the LinuxTaskController tests failing on trunk after
  2048. the commit of MAPREDUCE-1385. (Amareshwari Sriramadasu via vinodkv)
  2049. MAPREDUCE-1520. Fix TestMiniMRLocalFS failure caused by regression in
  2050. getting user working dir. (Amareshwari Sriramadasu via cdouglas)
  2051. MAPREDUCE-1512. RAID uses HarFileSystem directly instead of
  2052. FileSystem.get (Rodrigo Schmidt via dhruba)
  2053. MAPREDUCE-1435. Fix symlink handling in task work directory when
  2054. cleaning up, essentially to avoid following links.
  2055. (Ravi Gummadi via yhemanth)
  2056. MAPREDUCE-1518. RaidNode does not run the deletion check on the
  2057. directory that stores the parity files. (Rodrigo Schmidt via dhruba)
  2058. MAPREDUCE-1573. TestStreamingAsDifferentUser fails if run as tt_user.
  2059. (Ravi Gummadi via vinodkv)
  2060. MAPREDUCE-927. Cleanup of task-logs should happen in TaskTracker instead
  2061. of the Child. (Amareshwari Sriramadasu via vinodkv)
  2062. MAPREDUCE-1578. Decouple HadoopArchives vesrion from HarFileSystem version.
  2063. (Rodrigo Schmidt via szetszwo)
  2064. MAPREDUCE-1422. Fix cleanup of localized job directory to work if files
  2065. with non-deletable permissions are created within it.
  2066. (Amar Kamat via yhemanth)
  2067. MAPREDUCE-1306. Randomize the arrival of heartbeat responses in Mumak.
  2068. (Tamas Sarlos via cdouglas)
  2069. MAPREDUCE-1579. archive: check and possibly replace the space charater
  2070. in source paths. (szetszwo)
  2071. MAPREDUCE-1536. DataDrivenDBInputFormat does not split date columns correctly.
  2072. (Aaron Kimball via enis)
  2073. MAPREDUCE-890. After HADOOP-4491, the user who started mapred system is
  2074. not able to run job. (Ravi Gummadi via vinodkv)
  2075. MAPREDUCE-1615. Fix compilation of TestSubmitJob. (cdouglas)
  2076. MAPREDUCE-1508. Protect against NPE in TestMultipleLevelCaching. (Aaron
  2077. Kimball via cdouglas)
  2078. MAPREDUCE-1497. Suppress spurious findbugs warning about IndexCache
  2079. synchronization. (Amareshwari Sriramadasu via cdouglas)
  2080. MAPREDUCE-1420. Fix TestTTResourceReporting failure. (Scott Chen via
  2081. cdouglas)
  2082. MAPREDUCE-1480. Correctly initialize child RecordReaders in
  2083. CombineFileInputFormat. (Aaron Kimball via cdouglas)
  2084. MAPREDUCE-1348. Fix block forensics packaging. (Tom White via cdouglas)
  2085. MAPREDUCE-1628. HarFileSystem shows incorrect replication numbers and
  2086. permissions. (szetszwo via mahadev)
  2087. MAPREDUCE-1602. Fix the error message for the case that src does not
  2088. exist. (szetszwo)
  2089. MAPREDUCE-1585. Create Hadoop Archives version 2 with filenames
  2090. URL-encoded (rodrigo via mahadev)
  2091. MAPREDUCE-1523. Sometimes rumen trace generator fails to extract the job
  2092. finish time. (dick king via mahadev)
  2093. MAPREDUCE-1635. ResourceEstimator does not work after MAPREDUCE-842.
  2094. (Amareshwari Sriramadasu via vinodkv)
  2095. MAPREDUCE-889. binary communication formats added to Streaming by
  2096. HADOOP-1722 should be documented. (Klaas Bosteels via tomwhite)
  2097. MAPREDUCE-1031. ant tar target doens't seem to compile tests in contrib
  2098. projects. (Aaron Kimball via tomwhite)
  2099. MAPREDUCE-1692. Removed unused testcase TestStreamedMerge.
  2100. (Sreekanth Ramakrishnan and Amareshwari Sriramadasu via yhemanth)
  2101. MAPREDUCE-1062. Fix ReliabilityTest to work with retired jobs. (Sreekanth
  2102. Ramakrishnan via cdouglas)
  2103. MAPREDUCE-1409. IOExceptions thrown from FIleOutputCommitter::abortTask
  2104. should cause the task to fail. (Amareshwari Sriramadasu via cdouglas)
  2105. MAPREDUCE-1695. Include capacity scheduler in findbugs and javadoc-dev
  2106. targets and also fix existing warnings. (Hong Tang via yhemanth)
  2107. MAPREDUCE-1494. Ensure TestJobDirCleanup verifies the correct paths.
  2108. (Amareshwari Sriramadasu via cdouglas)
  2109. MAPREDUCE-1622. Include missing slf4j dependencies. (cdouglas)
  2110. MAPREDUCE-1515. Accept java5.home from build.properties, not only from the
  2111. command line when building forrest docs. (Al Thompson via cdouglas)
  2112. MAPREDUCE-1618. Add missing javadoc to JobStatus::*JobAcls. (Amareshwari
  2113. Sriramadasu via cdouglas)
  2114. MAPREDUCE-1219. Remove job level metrics from jobtracker metrics to ease
  2115. undue load on jobtracker. (Sreekanth Ramakrishnan via sharad)
  2116. MAPREDUCE-1604. Add Forrest documentation for Job ACLs.
  2117. (Amareshwari Sriramadasu via yhemanth)
  2118. MAPREDUCE-1705. Archiving and Purging of HDFS parity files should
  2119. handle globbed policies accurately. (Rodrigo Schmidt via dhruba)
  2120. MAPREDUCE-1612. job conf file is not accessible from job history web page.
  2121. (Ravi Gummadi and Sreekanth Ramakrishnan via vinodkv)
  2122. MAPREDUCE-1397. NullPointerException observed during task failures.
  2123. (Amareshwari Sriramadasu via vinodkv)
  2124. MAPREDUCE-1728. Oracle timezone strings do not match Java.
  2125. (Aaron Kimball via tomwhite)
  2126. MAPREDUCE-1609. TaskTracker.localizeJob should not set permissions on
  2127. job log directory recursively. (Amareshwari Sriramadasu via vinodkv)
  2128. MAPREDUCE-1657. After task logs directory is deleted, tasklog servlet
  2129. displays wrong error message about job ACLs. (Ravi Gummadi via vinodkv)
  2130. MAPREDUCE-1727. TestJobACLs fails after HADOOP-6686. (Ravi Gummadi via vinodkv)
  2131. MAPREDUCE-1611. Refresh nodes and refresh queues doesnt work with service
  2132. authorization enabled. (Amar Kamat via vinodkv)
  2133. MAPREDUCE-1276. Correct flaws in the shuffle related to connection setup
  2134. and failure attribution. (Amareshwari Sriramadasu via cdouglas)
  2135. MAPREDUCE-1372. ConcurrentModificationException in JobInProgress.
  2136. (Dick King and Amareshwari Sriramadasu via tomwhite)
  2137. MAPREDUCE-118. Fix Job.getJobID(). (Amareshwari Sriramadasu via sharad)
  2138. MAPREDUCE-913. TaskRunner crashes with NPE resulting in held up slots,
  2139. UNINITIALIZED tasks and hung TaskTracker. (Amareshwari Sriramadasu and
  2140. Sreekanth Ramakrishnan via vinodkv)
  2141. MAPREDUCE-1725. Fix MapReduce API incompatibilities between 0.20 and 0.21.
  2142. (tomwhite)
  2143. MAPREDUCE-1606. TestJobACLs may timeout as there are no slots for launching
  2144. JOB_CLEANUP task. (Ravi Gummadi via vinodkv)
  2145. MAPREDUCE-1765. Correct streaming documentation for StreamXmlRecordReader.
  2146. (Corinne Chandel via amareshwari)
  2147. MAPREDUCE-1880. Fix BigDecimal.divide(..) in the pi example. (szetszwo)
  2148. MAPREDUCE-1885. Revert FileSystem create method that takes CreateFlags
  2149. (MapReduce part of HADOOP-6826). (Ravi Gummadi via tomwhite)
  2150. MAPREDUCE-1870. Harmonize MapReduce JAR library versions with Common and
  2151. HDFS. (tomwhite)
  2152. MAPREDUCE-1791. Remote cluster control functionality needs JavaDocs
  2153. improvement (Konstantin Boudnik)
  2154. MAPREDUCE-1942. 'compile-fault-inject' should never be called directly.
  2155. (Konstantin Boudnik)
  2156. MAPREDUCE-1876. Fixes TaskAttemptStartedEvent to correctly log event type
  2157. for all task types. (Amar Kamat via amareshwari)
  2158. MAPREDUCE-1926. MapReduce distribution is missing build-utils.xml.
  2159. (tomwhite)
  2160. MAPREDUCE-2012. Some contrib tests fail in branch 0.21 and trunk.
  2161. (Amareshwari Sriramadasu via tomwhite)
  2162. MAPREDUCE-1980. Fixes TaskAttemptUnsuccessfulCompletionEvent and
  2163. TaskAttemptFinishedEvent to correctly log event type for all task types.
  2164. (Amar Kamat via amareshwari)
  2165. MAPREDUCE-1856. Extract a subset of tests for smoke (DOA) validation (cos)