YARN-3823. Fix mismatch in default values for yarn.scheduler.maximum-allocation-vcores property. Contributed by Ray Chiang.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/7405c597 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/7405c597 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/7405c597 Branch: refs/heads/HADOOP-12111 Commit: 7405c59799ed1b8ad1a7c6f1b18fabf49d0b92b2 Parents: 532e38c Author: Devaraj K <[email protected]> Authored: Wed Jul 1 11:11:26 2015 +0530 Committer: Devaraj K <[email protected]> Committed: Wed Jul 1 11:11:26 2015 +0530 ---------------------------------------------------------------------- hadoop-yarn-project/CHANGES.txt | 3 +++ .../hadoop-yarn-common/src/main/resources/yarn-default.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/7405c597/hadoop-yarn-project/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt index 5e9243d..8c07e48 100644 --- a/hadoop-yarn-project/CHANGES.txt +++ b/hadoop-yarn-project/CHANGES.txt @@ -580,6 +580,9 @@ Release 2.8.0 - UNRELEASED YARN-3768. ArrayIndexOutOfBoundsException with empty environment variables. (Zhihai Xu via gera) + YARN-3823. Fix mismatch in default values for + yarn.scheduler.maximum-allocation-vcores property. (Ray Chiang via devaraj) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/7405c597/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml index 621198c..4987084 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml @@ -276,7 +276,7 @@ in terms of virtual CPU cores. Requests higher than this will throw a InvalidResourceRequestException.</description> <name>yarn.scheduler.maximum-allocation-vcores</name> - <value>32</value> + <value>4</value> </property> <property>
