MAPREDUCE-4061. RM only has 1 AM launcher thread (tgraves via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1305607 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
67bdbd60cd
commit
1650a49993
@ -356,6 +356,8 @@ Release 0.23.2 - UNRELEASED
|
|||||||
MAPREDUCE-4006. History server container log web UI sometimes combines
|
MAPREDUCE-4006. History server container log web UI sometimes combines
|
||||||
stderr/stdout/syslog contents together (Siddharth Seth via tgraves)
|
stderr/stdout/syslog contents together (Siddharth Seth via tgraves)
|
||||||
|
|
||||||
|
MAPREDUCE-4061. RM only has 1 AM launcher thread (tgraves via bobby)
|
||||||
|
|
||||||
Release 0.23.1 - 2012-02-17
|
Release 0.23.1 - 2012-02-17
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -53,7 +53,7 @@ public void start() {
|
|||||||
ThreadFactory tf = new ThreadFactoryBuilder()
|
ThreadFactory tf = new ThreadFactoryBuilder()
|
||||||
.setNameFormat("TaskCleaner #%d")
|
.setNameFormat("TaskCleaner #%d")
|
||||||
.build();
|
.build();
|
||||||
launcherPool = new ThreadPoolExecutor(1, 5, 1,
|
launcherPool = new ThreadPoolExecutor(5, 5, 1,
|
||||||
TimeUnit.HOURS, new LinkedBlockingQueue<Runnable>(), tf);
|
TimeUnit.HOURS, new LinkedBlockingQueue<Runnable>(), tf);
|
||||||
eventHandlingThread = new Thread(new Runnable() {
|
eventHandlingThread = new Thread(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -52,7 +52,7 @@ public ApplicationMasterLauncher(
|
|||||||
RMContext context) {
|
RMContext context) {
|
||||||
super(ApplicationMasterLauncher.class.getName());
|
super(ApplicationMasterLauncher.class.getName());
|
||||||
this.context = context;
|
this.context = context;
|
||||||
this.launcherPool = new ThreadPoolExecutor(1, 10, 1,
|
this.launcherPool = new ThreadPoolExecutor(10, 10, 1,
|
||||||
TimeUnit.HOURS, new LinkedBlockingQueue<Runnable>());
|
TimeUnit.HOURS, new LinkedBlockingQueue<Runnable>());
|
||||||
this.launcherHandlingThread = new LauncherThread();
|
this.launcherHandlingThread = new LauncherThread();
|
||||||
this.applicationTokenSecretManager = applicationTokenSecretManager;
|
this.applicationTokenSecretManager = applicationTokenSecretManager;
|
||||||
|
Loading…
Reference in New Issue
Block a user