Skip to content

Commit 5a9face

Browse files
author
Alejandro Abdelnur
committed
YARN-302. Fair scheduler assignmultiple should default to false. (sandyr via tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1434996 13f79535-47bb-0310-9956-ffa450edef68
1 parent 002e822 commit 5a9face

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

hadoop-yarn-project/CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ Release 2.0.3-alpha - Unreleased
201201
YARN-135. Client tokens should be per app-attempt, and should be
202202
unregistered on App-finish. (vinodkv via sseth)
203203

204+
YARN-302. Fair scheduler assignmultiple should default to false. (sandyr via tucu)
205+
204206
Release 2.0.2-alpha - 2012-09-07
205207

206208
INCOMPATIBLE CHANGES

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/FairSchedulerConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class FairSchedulerConfiguration extends Configuration {
5656

5757
/** Whether to assign multiple containers in one check-in. */
5858
protected static final String ASSIGN_MULTIPLE = CONF_PREFIX + "assignmultiple";
59-
protected static final boolean DEFAULT_ASSIGN_MULTIPLE = true;
59+
protected static final boolean DEFAULT_ASSIGN_MULTIPLE = false;
6060

6161
/** Whether to give more weight to apps requiring many resources. */
6262
protected static final String SIZE_BASED_WEIGHT = CONF_PREFIX + "sizebasedweight";

0 commit comments

Comments
 (0)