CHANGES.txt 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011
  1. Hadoop YARN Change Log
  2. Release 2.1.0-beta - UNRELEASED
  3. INCOMPATIBLE CHANGES
  4. YARN-396. Rationalize AllocateResponse in RM Scheduler API. (Zhijie Shen
  5. via hitesh)
  6. YARN-439. Flatten NodeHeartbeatResponse. (Xuan Gong via sseth)
  7. YARN-440. Flatten RegisterNodeManagerResponse. (Xuan Gong via sseth)
  8. YARN-536. Removed the unused objects ContainerStatus and ContainerStatus from
  9. Container which also don't belong to the container. (Xuan Gong via vinodkv)
  10. YARN-486. Changed NM's startContainer API to accept Container record given by
  11. RM as a direct parameter instead of as part of the ContainerLaunchContext
  12. record. (Xuan Gong via vinodkv)
  13. YARN-444. Moved special container exit codes from YarnConfiguration to API
  14. where they belong. (Sandy Ryza via vinodkv)
  15. YARN-441. Removed unused utility methods for collections from two API
  16. records. (Xuan Gong via vinodkv)
  17. YARN-561. Modified NodeManager to set key information into the environment
  18. of every container that it launches. (Xuan Gong via vinodkv)
  19. YARN-579. Stop setting the Application Token in the AppMaster env, in
  20. favour of the copy present in the container token field.
  21. (Vinod Kumar Vavilapalli via sseth)
  22. YARN-629. Make YarnRemoteException not be rooted at IOException. (Xuan Gong
  23. via vinodkv)
  24. YARN-633. Changed RMAdminProtocol api to throw IOException and
  25. YarnRemoteException. (Xuan Gong via vinodkv)
  26. YARN-632. Changed ContainerManager api to throw IOException and
  27. YarnRemoteException. (Xuan Gong via vinodkv)
  28. YARN-631. Changed ClientRMProtocol api to throw IOException and
  29. YarnRemoteException. (Xuan Gong via vinodkv)
  30. YARN-630. Changed AMRMProtocol api to throw IOException and
  31. YarnRemoteException. (Xuan Gong via vinodkv)
  32. YARN-615. Rename ContainerLaunchContext.containerTokens to tokens.
  33. (Vinod Kumar Vavilapalli via sseth)
  34. YARN-571. Remove user from ContainerLaunchContext. (Omkar Vinit Joshi via
  35. vinodkv)
  36. YARN-716. Making ApplicationID immutable. (Siddharth Seth via vinodkv)
  37. YARN-684. ContainerManager.startContainer should use
  38. ContainerTokenIdentifier instead of the entire Container.
  39. (Vinod Kumar Vavilapalli via sseth)
  40. YARN-735. Make ApplicationAttemptId, ContaienrId and NodeId immutable.
  41. (Jian He via sseth)
  42. YARN-749. Rename ResourceRequest.(get,set)HostName to
  43. ResourceRequest.(get,set)ResourceName. (acmurthy)
  44. YARN-720. container-log4j.properties should not refer to mapreduce
  45. property names. (Zhijie Shen via sseth)
  46. NEW FEATURES
  47. YARN-482. FS: Extend SchedulingMode to intermediate queues.
  48. (kkambatl via tucu)
  49. YARN-45. Add protocol for schedulers to request containers back from
  50. ApplicationMasters. (Carlo Curino, cdouglas)
  51. YARN-563. Add the concept of an application-type for each application.
  52. (Mayank Bansal via vinodkv)
  53. HADOOP-8562. Enhancements to support Hadoop on Windows Server and Windows
  54. Azure environments. (See breakdown of tasks below for subtasks and
  55. contributors)
  56. YARN-422. Add a NM Client library to help application-writers. (Zhijie Shen
  57. via vinodkv)
  58. YARN-392. Make it possible to specify hard locality constraints in resource
  59. requests. (sandyr via tucu)
  60. IMPROVEMENTS
  61. YARN-365. Change NM heartbeat handling to not generate a scheduler event
  62. on each heartbeat. (Xuan Gong via sseth)
  63. YARN-380. Fix yarn node -status output to be better readable. (Omkar Vinit
  64. Joshi via vinodkv)
  65. YARN-410. Fixed RM UI so that the new lines diagnostics for a failed app on
  66. the per-application page are translated to html line breaks. (Omkar Vinit
  67. Joshi via vinodkv)
  68. YARN-198. Added a link to RM pages from the NodeManager web app. (Jian He
  69. via vinodkv)
  70. YARN-237. Refreshing the RM page forgets how many rows I had in my
  71. Datatables (jian he via bobby)
  72. YARN-481. Add AM Host and RPC Port to ApplicationCLI Status Output
  73. (Chris Riccomini via bikas)
  74. YARN-297. Improve hashCode implementations for PB records. (Xuan Gong via
  75. hitesh)
  76. YARN-417. Create AMRMClient wrapper that provides asynchronous callbacks.
  77. (Sandy Ryza via bikas)
  78. YARN-497. Yarn unmanaged-am launcher jar does not define a main class in
  79. its manifest (Hitesh Shah via bikas)
  80. YARN-469. Make scheduling mode in FS pluggable. (kkambatl via tucu)
  81. YARN-450. Define value for * in the scheduling protocol (Zhijie Shen via
  82. bikas)
  83. YARN-475. Remove a unused constant in the public API -
  84. ApplicationConstants.AM_APP_ATTEMPT_ID_ENV. (Hitesh Shah via vinodkv)
  85. YARN-309. Changed NodeManager to obtain heart-beat interval from the
  86. ResourceManager. (Xuan Gong via vinodkv)
  87. YARN-447. Move ApplicationComparator in CapacityScheduler to use comparator
  88. in ApplicationId. (Nemon Lou via vinodkv)
  89. YARN-381. Improve fair scheduler docs. (Sandy Ryza via tomwhite)
  90. YARN-458. YARN daemon addresses must be placed in many different configs.
  91. (sandyr via tucu)
  92. YARN-193. Scheduler.normalizeRequest does not account for allocation
  93. requests that exceed maximumAllocation limits (Zhijie Shen via bikas)
  94. YARN-479. NM retry behavior for connection to RM should be similar for
  95. lost heartbeats (Jian He via bikas)
  96. YARN-495. Changed NM reboot behaviour to be a simple resync - kill all
  97. containers and re-register with RM. (Jian He via vinodkv)
  98. YARN-514. Delayed store operations should not result in RM unavailability
  99. for app submission (Zhijie Shen via bikas)
  100. YARN-586. Fixed a typo in ApplicationSubmissionContext#setApplicationId.
  101. (Zhijie Shen via vinodkv)
  102. YARN-542. Changed the default global AM max-attempts value to be not one.
  103. (Zhijie Shen via vinodkv)
  104. YARN-583. Moved application level local resources to be localized under the
  105. filecache sub-directory under application directory. (Omkar Vinit Joshi via
  106. vinodkv)
  107. YARN-581. Added a test to verify that app delegation tokens are restored
  108. after RM restart. (Jian He via vinodkv)
  109. YARN-577. Add application-progress also to ApplicationReport. (Hitesh Shah
  110. via vinodkv)
  111. YARN-595. Refactor fair scheduler to use common Resources. (Sandy Ryza
  112. via tomwhite)
  113. YARN-562. Modified NM to reject any containers allocated by a previous
  114. ResourceManager. (Jian He via vinodkv)
  115. YARN-591. Moved RM recovery related records out of public API as they do not
  116. belong there. (vinodkv)
  117. YARN-599. Refactoring submitApplication in ClientRMService and RMAppManager
  118. to separate out various validation checks depending on whether they rely on
  119. RM configuration or not. (Zhijie Shen via vinodkv)
  120. YARN-618. Modified RM_INVALID_IDENTIFIER to be -1 instead of zero. (Jian He
  121. via vinodkv)
  122. YARN-625. Move the utility method unwrapAndThrowException from
  123. YarnRemoteExceptionPBImpl to RPCUtil. (Siddharth Seth via vinodkv)
  124. YARN-645. Moved RMDelegationTokenSecretManager from yarn-server-common to
  125. yarn-server-resourcemanager where it really belongs. (Jian He via vinodkv)
  126. YARN-651. Changed PBClientImpls of ContainerManager and RMAdmin to throw
  127. IOExceptions also. (Xuan Gong via vinodkv)
  128. YARN-582. Changed ResourceManager to recover Application token and client
  129. tokens for app attempt so that RM can be restarted while preserving current
  130. applications. (Jian He via vinodkv)
  131. YARN-568. Add support for work preserving preemption to the FairScheduler.
  132. (Carlo Curino and Sandy Ryza via cdouglas)
  133. YARN-598. Add virtual cores to queue metrics. (sandyr via tucu)
  134. YARN-634. Modified YarnRemoteException to be not backed by PB and introduced
  135. a separate SerializedException record. (Siddharth Seth via vinodkv)
  136. YARN-663. Changed ResourceTracker API and LocalizationProtocol API to throw
  137. YarnRemoteException and IOException. (Xuan Gong via vinodkv)
  138. YARN-590. Added an optional mesage to be returned by ResourceMaanger when RM
  139. asks an RM to shutdown/resync etc so that NMs can log this message locally
  140. for better debuggability. (Mayank Bansal via vinodkv)
  141. YARN-617. Made ContainerTokens to be used for validation at NodeManager
  142. also in unsecure mode to prevent AMs from faking resource requirements in
  143. unsecure mode. (Omkar Vinit Joshi via vinodkv)
  144. YARN-708. Moved RecordFactory classes to hadoop-yarn-api, and put some
  145. miscellaneous fixes to the interfaces. (Siddharth Seth via vinodkv)
  146. YARN-711. Copied BuilderUtil methods in individual API records as
  147. BuilderUtils is going to be dismantled. (Jian He via vinodkv)
  148. YARN-714. Added NMTokens to be sent to AMs as part of heart-beat response.
  149. (Omkar Vinit Joshi via vinodkv)
  150. YARN-638. Modified ResourceManager to restore RMDelegationTokens after
  151. restarting. (Jian He via vinodkv)
  152. YARN-660. Improve AMRMClient with matching requests (bikas)
  153. YARN-717. Put object creation factories for Token in the class itself and
  154. remove useless derivations for specific tokens. (Jian He via vinodkv)
  155. OPTIMIZATIONS
  156. YARN-512. Log aggregation root directory check is more expensive than it
  157. needs to be. (Maysam Yabandeh via jlowe)
  158. YARN-719. Move RMIdentifier from Container to ContainerTokenIdentifier.
  159. (Vinod Kumar Vavilapalli via sseth)
  160. BUG FIXES
  161. YARN-383. AMRMClientImpl should handle null rmClient in stop()
  162. (Hitesh Shah via sseth)
  163. YARN-385. Add missing fields - location and #containers to
  164. ResourceRequestPBImpl's toString(). (Sandy Ryza via sseth)
  165. YARN-377. Use the new StringUtils methods added by HADOOP-9252 and fix
  166. TestContainersMonitor. (Chris Nauroth via szetszwo)
  167. YARN-391. Formatting fixes for LCEResourceHandler classes.
  168. (Steve Loughran via sseth)
  169. YARN-390. ApplicationCLI and NodeCLI hard-coded platform-specific line
  170. separator causes test failures on Windows. (Chris Nauroth via suresh)
  171. YARN-406. Fix TestRackResolver to function in networks where "host1"
  172. resolves to a valid host. (Hitesh Shah via sseth)
  173. YARN-376. Fixes a bug which would prevent the NM knowing about completed
  174. containers and applications. (Jason Lowe via sseth)
  175. YARN-196. Nodemanager should be more robust in handling connection failure
  176. to ResourceManager when a cluster is started (Xuan Gong via hitesh)
  177. YARN-485. TestProcfsProcessTree#testProcessTree() doesn't wait long enough
  178. for the process to die. (kkambatl via tucu)
  179. YARN-71. Fix the NodeManager to clean up local-dirs on restart.
  180. (Xuan Gong via sseth)
  181. YARN-378. Fix RM to make the AM max attempts/retries to be configurable
  182. per application by clients. (Zhijie Shen via vinodkv)
  183. YARN-498. Unmanaged AM launcher does not set various constants in env for
  184. an AM, also does not handle failed AMs properly. (Hitesh Shah via bikas)
  185. YARN-496. Fair scheduler configs are refreshed inconsistently in
  186. reinitialize. (Sandy Ryza via tomwhite)
  187. YARN-474. Fix CapacityScheduler to trigger application-activation when
  188. am-resource-percent configuration is refreshed. (Zhijie Shen via vinodkv)
  189. YARN-209. Fix CapacityScheduler to trigger application-activation when
  190. the cluster capacity changes. (Zhijie Shen via vinodkv)
  191. YARN-24. Nodemanager fails to start if log aggregation enabled and
  192. namenode unavailable. (sandyr via tucu)
  193. YARN-515. Node Manager not getting the master key. (Robert Joseph Evans
  194. via jlowe)
  195. YARN-382. SchedulerUtils improve way normalizeRequest sets the resource
  196. capabilities. (Zhijie Shen via bikas)
  197. YARN-467. Modify public distributed cache to localize files such that no
  198. local directory hits unix file count limits and thus prevent job failures.
  199. (Omkar Vinit Joshi via vinodkv)
  200. YARN-101. Fix NodeManager heartbeat processing to not lose track of completed
  201. containers in case of dropped heartbeats. (Xuan Gong via vinodkv)
  202. YARN-538. RM address DNS lookup can cause unnecessary slowness on every JHS
  203. page load. (sandyr via tucu)
  204. YARN-532. Change RMAdmin and Localization client protocol PB implementations
  205. to implement closeable so that they can be stopped when needed via
  206. RPC.stopProxy(). (Siddharth Seth via vinodkv)
  207. YARN-99. Modify private distributed cache to localize files such that no
  208. local directory hits unix file count limits and thus prevent job failures.
  209. (Omkar Vinit Joshi via vinodkv)
  210. YARN-112. Fixed a race condition during localization that fails containers.
  211. (Omkar Vinit Joshi via vinodkv)
  212. YARN-534. Change RM restart recovery to also account for AM max-attempts
  213. configuration after the restart. (Jian He via vinodkv)
  214. YARN-539. Addressed memory leak of LocalResource objects NM when a resource
  215. localization fails. (Omkar Vinit Joshi via vinodkv)
  216. YARN-319. Submitting a job to a fair scheduler queue for which the user
  217. does not have permission causes the client to wait forever.
  218. (shenhong via tomwhite)
  219. YARN-412. Fixed FifoScheduler to check hostname of a NodeManager rather
  220. than its host:port during scheduling which caused incorrect locality for
  221. containers. (Roger Hoover via acmurthy)
  222. YARN-500. Fixed YARN webapps to not roll-over ports when explicitly asked
  223. to use non-ephemeral ports. (Kenji Kikushima via vinodkv)
  224. YARN-518. Fair Scheduler's document link could be added to the hadoop 2.x
  225. main doc page. (sandyr via tucu)
  226. YARN-476. ProcfsBasedProcessTree info message confuses users.
  227. (sandyr via tucu)
  228. YARN-585. Fix failure in TestFairScheduler#testNotAllowSubmitApplication
  229. caused by YARN-514. (Zhijie Shen via vinodkv)
  230. YARN-547. Fixed race conditions in public and private resource localization
  231. which used to cause duplicate downloads. (Omkar Vinit Joshi via vinodkv)
  232. YARN-594. Update test and add comments in YARN-534 (Jian He via bikas)
  233. YARN-549. YarnClient.submitApplication should wait for application to be
  234. accepted by the RM (Zhijie Shen via bikas)
  235. YARN-605. Fix failing unit test in TestNMWebServices when versionInfo has
  236. parantheses like when running on a git checkout. (Hitesh Shah via vinodkv)
  237. YARN-289. Fair scheduler allows reservations that won't fit on node.
  238. (Sandy Ryza via tomwhite)
  239. YARN-576. Modified ResourceManager to reject NodeManagers that don't satisy
  240. minimum resource requirements. (Kenji Kikushima via vinodkv)
  241. YARN-646. Fix two typos in Fair Scheduler user guide. (Dapeng Sun via atm)
  242. YARN-507. Add interface visibility and stability annotations to FS
  243. interfaces/classes. (kkambatl via tucu)
  244. YARN-637. FS: maxAssign is not honored. (kkambatl via tucu)
  245. YARN-655. Fair scheduler metrics should subtract allocated memory from
  246. available memory. (sandyr via tucu)
  247. YARN-628. Fix the way YarnRemoteException is being unrolled to extract out
  248. the underlying exception. (Siddharth Seth via vinodkv)
  249. YARN-695. Remove masterContainer and status unused fields from
  250. ApplicationReportProto and fix bugs in ApplicationReportPBImpl. (Zhijie Shen
  251. via vinodkv)
  252. YARN-706. Fixed race conditions in TestFSDownload. (Zhijie Shen via vinodkv).
  253. YARN-715. Fixed unit test failures - TestDistributedShell and
  254. TestUnmanagedAMLauncher. (Vinod Kumar Vavilapalli via sseth)
  255. YARN-578. Fixed NM to use SecureIOUtils for reading and aggregating logs.
  256. (Omkar Vinit Joshi via vinodkv)
  257. YARN-733. Fixed TestNMClient from failing occasionally. (Zhijie Shen via
  258. vinodkv)
  259. BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
  260. YARN-158. Yarn creating package-info.java must not depend on sh.
  261. (Chris Nauroth via suresh)
  262. YARN-176. Some YARN tests fail to find winutils. (Chris Nauroth via suresh)
  263. YARN-207. YARN distribution build fails on Windows. (Chris Nauroth via
  264. suresh)
  265. YARN-199. Yarn cmd line scripts for windows. (Ivan Mitic via suresh)
  266. YARN-213. YARN build script would be more readable using abspath.
  267. (Chris Nauroth via suresh)
  268. YARN-233. Added support for running containers in MS Windows to YARN. (Chris
  269. Nauroth via acmurthy)
  270. YARN-234. Added support for process tree and resource calculator in MS Windows
  271. to YARN. (Chris Nauroth via acmurthy)
  272. YARN-259. Fix LocalDirsHandlerService to use Path rather than URIs. (Xuan
  273. Gong via acmurthy)
  274. YARN-316. YARN container launch may exceed maximum Windows command line
  275. length due to long classpath. (Chris Nauroth via suresh)
  276. YARN-359. Fixing commands for container signalling in Windows. (Chris Nauroth
  277. via vinodkv)
  278. YARN-506. Move to common utils FileUtil#setReadable/Writable/Executable and
  279. FileUtil#canRead/Write/Execute. (Ivan Mitic via suresh)
  280. YARN-488. TestContainerManagerSecurity fails on Windows. (Chris Nauroth
  281. via hitesh)
  282. YARN-490. TestDistributedShell fails on Windows. (Chris Nauroth via hitesh)
  283. YARN-491. TestContainerLogsPage fails on Windows. (Chris Nauroth via hitesh)
  284. YARN-487. Modify path manipulation in LocalDirsHandlerService to let
  285. TestDiskFailures pass on Windows. (Chris Nauroth via vinodkv)
  286. YARN-593. container launch on Windows does not correctly populate
  287. classpath with new process's environment variables and localized resources
  288. (Chris Nauroth via bikas)
  289. YARN-493. Fixed some shell related flaws in YARN on Windows. (Chris Nauroth
  290. via vinodkv)
  291. Release 2.0.5-alpha - UNRELEASED
  292. INCOMPATIBLE CHANGES
  293. NEW FEATURES
  294. IMPROVEMENTS
  295. OPTIMIZATIONS
  296. BUG FIXES
  297. Release 2.0.4-alpha - 2013-04-25
  298. INCOMPATIBLE CHANGES
  299. NEW FEATURES
  300. IMPROVEMENTS
  301. OPTIMIZATIONS
  302. BUG FIXES
  303. YARN-429. capacity-scheduler config missing from yarn-test artifact.
  304. (sseth via hitesh)
  305. YARN-470. Support a way to disable resource monitoring on the NodeManager.
  306. (Siddharth Seth via hitesh)
  307. Release 2.0.3-alpha - 2013-02-06
  308. INCOMPATIBLE CHANGES
  309. NEW FEATURES
  310. YARN-145. Add a Web UI to the fair share scheduler. (Sandy Ryza via tomwhite)
  311. YARN-3. Add support for CPU isolation/monitoring of containers.
  312. (adferguson via tucu)
  313. YARN-230. RM Restart phase 1 - includes support for saving/restarting all
  314. applications on an RM bounce. (Bikas Saha via acmurthy)
  315. YARN-103. Add a yarn AM-RM client module. (Bikas Saha via sseth)
  316. YARN-286. Add a YARN ApplicationClassLoader. (tomwhite)
  317. YARN-2. Enhanced CapacityScheduler to account for CPU alongwith memory for
  318. multi-dimensional resource scheduling. (acmurthy)
  319. YARN-328. Use token request messages defined in hadoop common. (suresh)
  320. YARN-231. RM Restart - Add FS-based persistent store implementation for
  321. RMStateStore (Bikas Saha via hitesh)
  322. IMPROVEMENTS
  323. YARN-223. Update process tree instead of getting new process trees.
  324. (Radim Kolar via llu)
  325. YARN-57. Allow process-tree based resource calculation et al. to be
  326. pluggable to support it on multiple platforms. (Radim Kolar via acmurthy)
  327. YARN-78. Changed UnManagedAM application to use YarnClient. (Bikas Saha via
  328. vinodkv)
  329. YARN-93. Fixed RM to propagate diagnostics from applications that have
  330. finished but failed (Jason Lowe via vinodkv).
  331. YARN-28. Fixed TestCompositeService to not depend on test-order and thus
  332. made it pass on JDK7 (Thomas Graves via vinodkv).
  333. YARN-82. Change the default local and log dirs to be based on
  334. hadoop.tmp.dir and yarn.log.dir. (Hemanth Yamijala via sseth)
  335. YARN-53. Added the missing getGroups API to ResourceManager. (Bo Wang via
  336. vinodkv)
  337. YARN-116. Add the ability to change the RM include/exclude file without
  338. a restart. (xieguiming and Harsh J via sseth)
  339. YARN-23. FairScheduler: FSQueueSchedulable#updateDemand() - potential
  340. redundant aggregation. (kkambatl via tucu)
  341. YARN-127. Move RMAdmin tool to its correct location - the client module.
  342. (vinodkv)
  343. YARN-40. Provided support for missing YARN commands (Devaraj K and Vinod
  344. Kumar Vavilapalli via vinodkv)
  345. YARN-33. Change LocalDirsHandlerService to validate the configured local and
  346. log dirs. (Mayank Bansal via sseth)
  347. YARN-94. Modify DistributedShell to point to main-class by default, clean up
  348. the help message, and hard-code the AM class. (Hitesh Shah via vinodkv)
  349. YARN-146. Add unit tests for computing fair share in the fair scheduler.
  350. (Sandy Ryza via tomwhite)
  351. HADOOP-8911. CRLF characters in source and text files.
  352. (Raja Aluri via suresh)
  353. YARN-136. Make ClientToAMTokenSecretManager part of RMContext (Vinod Kumar
  354. Vavilapalli via sseth)
  355. YARN-183. Clean up fair scheduler code. (Sandy Ryza via tomwhite)
  356. YARN-129. Simplify classpath construction for mini YARN tests. (tomwhite)
  357. YARN-254. Update fair scheduler web UI for hierarchical queues.
  358. (sandyr via tucu)
  359. YARN-315. Using the common security token protobuf definition from hadoop
  360. common. (Suresh Srinivas via vinodkv)
  361. YARN-170. Change NodeManager stop to be reentrant. (Sandy Ryza via vinodkv)
  362. YARN-331. Fill in missing fair scheduler documentation. (sandyr via tucu)
  363. YARN-277. Use AMRMClient in DistributedShell to exemplify the approach.
  364. (Bikas Saha via hitesh)
  365. YARN-360. Allow apps to concurrently register tokens for renewal.
  366. (Daryn Sharp via sseth)
  367. OPTIMIZATIONS
  368. BUG FIXES
  369. YARN-131. Fix incorrect ACL properties in capacity scheduler documentation.
  370. (Ahmed Radwan via sseth)
  371. YARN-102. Move the apache header to the top of the file in MemStore.java.
  372. (Devaraj K via sseth)
  373. YARN-134. ClientToAMSecretManager creates keys without checking for
  374. validity of the appID. (Vinod Kumar Vavilapalli via sseth)
  375. YARN-30. Fixed tests verifying web-services to work on JDK7. (Thomas Graves
  376. via vinodkv)
  377. YARN-150. Fixes AppRejectedTransition does not unregister a rejected
  378. app-attempt from the ApplicationMasterService (Bikas Saha via sseth)
  379. YARN-140. Add capacity-scheduler-default.xml to provide a default set of
  380. configurations for the capacity scheduler. (ahmed via tucu)
  381. YARN-179. Fix some unit test failures. (Vinod Kumar Vavilapalli via sseth)
  382. YARN-181. Fixed eclipse settings broken by capacity-scheduler.xml move via
  383. YARN-140. (Siddharth Seth via vinodkv)
  384. YARN-169. Update log4j.appender.EventCounter to use
  385. org.apache.hadoop.log.metrics.EventCounter (Anthony Rojas via tomwhite)
  386. YARN-184. Remove unnecessary locking in fair scheduler, and address
  387. findbugs excludes. (sandyr via tucu)
  388. YARN-224. Fair scheduler logs too many nodeUpdate INFO messages.
  389. (Sandy Ryza via tomwhite)
  390. YARN-222. Fair scheduler should create queue for each user by default.
  391. (Sandy Ryza via tomwhite)
  392. MAPREDUCE-4778. Fair scheduler event log is only written if directory
  393. exists on HDFS. (Sandy Ryza via tomwhite)
  394. YARN-229. Remove old unused RM recovery code. (Bikas Saha via acmurthy)
  395. YARN-187. Add hierarchical queues to the fair scheduler.
  396. (Sandy Ryza via tomwhite)
  397. YARN-72. NM should handle cleaning up containers when it shuts down.
  398. (Sandy Ryza via tomwhite)
  399. YARN-267. Fix fair scheduler web UI. (Sandy Ryza via tomwhite)
  400. YARN-264. y.s.rm.DelegationTokenRenewer attempts to renew token even
  401. after removing an app. (kkambatl via tucu)
  402. YARN-271. Fair scheduler hits IllegalStateException trying to reserve
  403. different apps on same node. (Sandy Ryza via tomwhite)
  404. YARN-272. Fair scheduler log messages try to print objects without
  405. overridden toString methods. (sandyr via tucu)
  406. YARN-278. Fair scheduler maxRunningApps config causes no apps to make
  407. progress. (sandyr via tucu)
  408. YARN-282. Fair scheduler web UI double counts Apps Submitted.
  409. (sandyr via tucu)
  410. YARN-283. Fair scheduler fails to get queue info without root prefix.
  411. (sandyr via tucu)
  412. YARN-192. Node update causes NPE in the fair scheduler.
  413. (Sandy Ryza via tomwhite)
  414. YARN-288. Fair scheduler queue doesn't accept any jobs when ACLs are
  415. configured. (Sandy Ryza via tomwhite)
  416. YARN-300. After YARN-271, fair scheduler can infinite loop and not
  417. schedule any application. (Sandy Ryza via tomwhite)
  418. YARN-301. Fair scheduler throws ConcurrentModificationException when
  419. iterating over app's priorities. (Sandy Ryza via tomwhite)
  420. YARN-217. Fix RMAdmin protocol description to make it work in secure mode
  421. also. (Devaraj K via vinodkv)
  422. YARN-253. Fixed container-launch to not fail when there are no local
  423. resources to localize. (Tom White via vinodkv)
  424. YARN-330. Fix flakey test: TestNodeManagerShutdown#testKillContainersOnShutdown.
  425. (Sandy Ryza via hitesh)
  426. YARN-335. Fair scheduler doesn't check whether rack needs containers
  427. before assigning to node. (Sandy Ryza via tomwhite)
  428. YARN-336. Fair scheduler FIFO scheduling within a queue only allows 1
  429. app at a time. (Sandy Ryza via tomwhite)
  430. YARN-135. Client tokens should be per app-attempt, and should be
  431. unregistered on App-finish. (vinodkv via sseth)
  432. YARN-302. Fair scheduler assignmultiple should default to false. (sandyr via tucu)
  433. YARN-372. Move InlineDispatcher from hadoop-yarn-server-resourcemanager to
  434. hadoop-yarn-common (sseth via hitesh)
  435. YARN-370. Fix SchedulerUtils to correctly round up the resource for
  436. containers. (Zhijie Shen via acmurthy)
  437. YARN-355. Fixes a bug where RM app submission could jam under load.
  438. (Daryn Sharp via sseth)
  439. Release 2.0.2-alpha - 2012-09-07
  440. YARN-9. Rename YARN_HOME to HADOOP_YARN_HOME. (vinodkv via acmurthy)
  441. NEW FEATURES
  442. YARN-1. Promote YARN to be a sub-project of Apache Hadoop. (acmurthy)
  443. IMPROVEMENTS
  444. YARN-29. Add a yarn-client module. (Vinod Kumar Vavilapalli via sseth)
  445. YARN-10. Fix DistributedShell module to not have a dependency on
  446. hadoop-mapreduce-client-core. (Hitesh Shah via vinodkv)
  447. YARN-80. Add support for delaying rack-local containers in
  448. CapacityScheduler. (acmurthy)
  449. YARN-137. Change the default YARN scheduler to be the CapacityScheduler.
  450. (sseth via acmurthy)
  451. OPTIMIZATIONS
  452. BUG FIXES
  453. YARN-13. Fix pom versions for YARN in branch-2 (todd)
  454. MAPREDUCE-2374. "Text File Busy" errors launching MR tasks. (Andy Isaacson
  455. via atm)
  456. YARN-12. Fix findbugs warnings in FairScheduler. (Junping Du via acmurthy)
  457. YARN-22. Fix ContainerLogs to work if the log-dir is specified as a URI.
  458. (Mayank Bansal via sseth)
  459. YARN-37. Change TestRMAppTransitions to use the DrainDispatcher.
  460. (Mayank Bansal via sseth)
  461. YARN-79. Implement close on all clients to YARN so that RPC clients don't
  462. throw exceptions on shut-down. (Vinod Kumar Vavilapalli)
  463. YARN-42. Modify NM's non-aggregating logs' handler to stop properly so that
  464. NMs don't get NPEs on startup errors. (Devaraj K via vinodkv)
  465. YARN-15. Updated default classpath for YARN applications to reflect split of
  466. YARN into a sub-project. (Arun C Murthy via vinodkv)
  467. YARN-75. Modified ResourceManager's RMContainer to handle a valid RELEASE
  468. event at RUNNING state. (Siddharth Seth via vinodkv)
  469. YARN-138. Ensure default values for minimum/maximum container sizes is
  470. sane. (harsh & sseth via acmurthy)
  471. Release 0.23.8 - UNRELEASED
  472. INCOMPATIBLE CHANGES
  473. NEW FEATURES
  474. IMPROVEMENTS
  475. OPTIMIZATIONS
  476. YARN-548. Add tests for YarnUncaughtExceptionHandler (Vadim Bondarev via
  477. jeagles)
  478. BUG FIXES
  479. YARN-363. Add webapps/proxy directory without which YARN proxy-server fails
  480. when started in stand-alone mode. (Kenji Kikushima via vinodkv)
  481. YARN-690. RM exits on token cancel/renew problems (daryn via bobby)
  482. Release 0.23.7 - UNRELEASED
  483. INCOMPATIBLE CHANGES
  484. NEW FEATURES
  485. IMPROVEMENTS
  486. YARN-133 Update web services docs for RM clusterMetrics (Ravi Prakash via
  487. kihwal)
  488. YARN-249. Capacity Scheduler web page should show list of active users per
  489. queue like it used to (in 1.x) (Ravi Prakash via tgraves)
  490. YARN-236. RM should point tracking URL to RM web page when app fails to
  491. start (Jason Lowe via jeagles)
  492. YARN-269. Resource Manager not logging the health_check_script result when
  493. taking it out (Jason Lowe via kihwal)
  494. YARN-227. Application expiration difficult to debug for end-users
  495. (Jason Lowe via jeagles)
  496. YARN-443. allow OS scheduling priority of NM to be different than the
  497. containers it launches (tgraves)
  498. YARN-468. coverage fix for org.apache.hadoop.yarn.server.webproxy.amfilter
  499. (Aleksey Gorshkov via bobby)
  500. YARN-200. yarn log does not output all needed information, and is in a
  501. binary format (Ravi Prakash via jlowe)
  502. YARN-525. make CS node-locality-delay refreshable (Thomas Graves via jlowe)
  503. OPTIMIZATIONS
  504. YARN-357. App submission should not be synchronized (daryn)
  505. BUG FIXES
  506. YARN-343. Capacity Scheduler maximum-capacity value -1 is invalid (Xuan
  507. Gong via tgraves)
  508. YARN-364. AggregatedLogDeletionService can take too long to delete logs
  509. (jlowe)
  510. YARN-362. Unexpected extra results when using webUI table search (Ravi
  511. Prakash via jlowe)
  512. YARN-400. RM can return null application resource usage report leading to
  513. NPE in client (Jason Lowe via tgraves)
  514. YARN-426. Failure to download a public resource prevents further downloads
  515. (Jason Lowe via bobby)
  516. YARN-448. Remove unnecessary hflush from log aggregation (Kihwal Lee via
  517. bobby)
  518. YARN-345. Many InvalidStateTransitonException errors for ApplicationImpl
  519. in Node Manager (Robert Parker via jlowe)
  520. YARN-109. .tmp file is not deleted for localized archives (Mayank Bansal
  521. via bobby)
  522. YARN-460. CS user left in list of active users for the queue even when
  523. application finished (tgraves)
  524. Release 0.23.6 - UNRELEASED
  525. INCOMPATIBLE CHANGES
  526. NEW FEATURES
  527. IMPROVEMENTS
  528. YARN-285. Added a temporary plugin interface for RM to be able to redirect
  529. to JobHistory server for apps that it no longer tracks. (Derek Dagit via
  530. vinodkv)
  531. OPTIMIZATIONS
  532. BUG FIXES
  533. YARN-188. Coverage fixing for CapacityScheduler (Aleksey Gorshkov via
  534. bobby)
  535. YARN-214. RMContainerImpl does not handle event EXPIRE at state RUNNING
  536. (jeagles via bobby)
  537. YARN-151. Browser thinks RM main page JS is taking too long
  538. (Ravi Prakash via bobby)
  539. YARN-204. test coverage for org.apache.hadoop.tools (Aleksey Gorshkov via
  540. bobby)
  541. YARN-251. Proxy URI generation fails for blank tracking URIs (Tom White
  542. via jlowe)
  543. YARN-258. RM web page UI shows Invalid Date for start and finish times
  544. (Ravi Prakash via jlowe)
  545. YARN-266. RM and JHS Web UIs are blank because AppsBlock is not escaping
  546. string properly (Ravi Prakash via jlowe)
  547. YARN-280. RM does not reject app submission with invalid tokens
  548. (Daryn Sharp via tgraves)
  549. YARN-225. Proxy Link in RM UI thows NPE in Secure mode
  550. (Devaraj K via bobby)
  551. YARN-293. Node Manager leaks LocalizerRunner object for every Container
  552. (Robert Joseph Evans via jlowe)
  553. YARN-50. Implement renewal / cancellation of Delegation Tokens
  554. (Siddharth Seth via tgraves)
  555. YARN-320. RM should always be able to renew its own tokens.
  556. (Daryn Sharp via sseth)
  557. YARN-325. RM CapacityScheduler can deadlock when getQueueInfo() is
  558. called and a container is completing (Arun C Murthy via tgraves)
  559. YARN-334. Maven RAT plugin is not checking all source files (tgraves)
  560. YARN-354. WebAppProxyServer exits immediately after startup (Liang Xie via
  561. jlowe)
  562. Release 0.23.5 - 2012-11-28
  563. INCOMPATIBLE CHANGES
  564. NEW FEATURES
  565. IMPROVEMENTS
  566. YARN-161. Fix multiple compiler warnings for unchecked operations in YARN
  567. common. (Chris Nauroth via vinodkv)
  568. YARN-43. Fix TestResourceTrackerService to not depend on test order and thus
  569. pass on JDK7. (Thomas Graves via vinodkv)
  570. YARN-32. Fix TestApplicationTokens to not depend on test order and thus pass
  571. on JDK7. (vinodkv)
  572. YARN-186. Coverage fixing LinuxContainerExecutor (Aleksey Gorshkov via
  573. bobby)
  574. YARN-216. Remove jquery theming support. (Robert Joseph Evans via jlowe)
  575. OPTIMIZATIONS
  576. BUG FIXES
  577. YARN-163. Retrieving container log via NM webapp can hang with multibyte
  578. characters in log (jlowe via bobby)
  579. YARN-174. Modify NodeManager to pass the user's configuration even when
  580. rebooting. (vinodkv)
  581. YARN-177. CapacityScheduler - adding a queue while the RM is running has
  582. wacky results (acmurthy vai tgraves)
  583. YARN-178. Fix custom ProcessTree instance creation (Radim Kolar via bobby)
  584. YARN-180. Capacity scheduler - containers that get reserved create
  585. container token to early (acmurthy and bobby)
  586. YARN-139. Interrupted Exception within AsyncDispatcher leads to user
  587. confusion. (Vinod Kumar Vavilapalli via jlowe)
  588. YARN-165. RM should point tracking URL to RM web page for app when AM fails
  589. (jlowe via bobby)
  590. YARN-159. RM web ui applications page should be sorted to display last app
  591. first (tgraves via bobby)
  592. YARN-166. capacity scheduler doesn't allow capacity < 1.0 (tgraves via
  593. bobby)
  594. YARN-189. Fixed a deadlock between RM's ApplicationMasterService and the
  595. dispatcher. (Thomas Graves via vinodkv)
  596. YARN-202. Log Aggregation generates a storm of fsync() for namenode
  597. (Kihwal Lee via bobby)
  598. YARN-201. Fix CapacityScheduler to be less conservative for starved
  599. off-switch requests. (jlowe via acmurthy)
  600. YARN-206. TestApplicationCleanup.testContainerCleanup occasionally fails.
  601. (jlowe via jeagles)
  602. YARN-212. NM state machine ignores an APPLICATION_CONTAINER_FINISHED event
  603. when it shouldn't (Nathan Roberts via jlowe)
  604. YARN-219. NM should aggregate logs when application finishes. (bobby)
  605. Release 0.23.4
  606. INCOMPATIBLE CHANGES
  607. NEW FEATURES
  608. IMPROVEMENTS
  609. Change package of YarnClient to org.apache.hadoop. (Bikas Saha via vinodkv)
  610. YARN-108. FSDownload can create cache directories with the wrong
  611. permissions (Jason Lowe via bobby)
  612. YARN-57. Allow process-tree based resource calculation et al. to be
  613. pluggable to support it on multiple platforms. (Radim Kolar via acmurthy)
  614. OPTIMIZATIONS
  615. BUG FIXES
  616. YARN-88. DefaultContainerExecutor can fail to set proper permissions.
  617. (Jason Lowe via sseth)
  618. YARN-106. Nodemanager needs to set permissions of local directories (jlowe
  619. via bobby)
  620. Release 0.23.3
  621. INCOMPATIBLE CHANGES
  622. NEW FEATURES
  623. IMPROVEMENTS
  624. OPTIMAZATIONS
  625. BUG FIXES
  626. YARN-14. Symlinks to peer distributed cache files no longer work
  627. (Jason Lowe via bobby)
  628. YARN-25. remove old aggregated logs (Robert Evans via tgraves)
  629. YARN-27. Failed refreshQueues due to misconfiguration prevents further
  630. refreshing of queues (Arun Murthy via tgraves)
  631. MAPREDUCE-4323. NM leaks filesystems (Jason Lowe via jeagles)
  632. YARN-39. RM-NM secret-keys should be randomly generated and rolled every
  633. so often. (vinodkv and sseth via sseth)
  634. YARN-31. Fix TestDelegationTokenRenewer to not depend on test order so as to
  635. pass tests on jdk7. (Thomas Graves via vinodkv)
  636. YARN-63. RMNodeImpl is missing valid transitions from the UNHEALTHY state
  637. (Jason Lowe via bobby)
  638. YARN-60. Fixed a bug in ResourceManager which causes all NMs to get NPEs and
  639. thus causes all containers to be rejected. (vinodkv)
  640. YARN-66. aggregated logs permissions not set properly (tgraves via bobby)
  641. YARN-68. NodeManager will refuse to shutdown indefinitely due to container
  642. log aggregation (daryn via bobby)
  643. YARN-87. NM ResourceLocalizationService does not set permissions of local
  644. cache directories (Jason Lowe via tgraves)