Repository: hadoop Updated Branches: refs/heads/branch-3.1 f53e5e000 -> 74f181e5d
YARN-8177. Documentation changes for auto creation of Leaf Queues with node label. Contributed by Suma Shivaprasad. (cherry picked from commit 83e5f25d5e28a6975464953dc756a3f464d4be60) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/74f181e5 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/74f181e5 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/74f181e5 Branch: refs/heads/branch-3.1 Commit: 74f181e5dd9b625a9a766d4678b7123021a9e0d5 Parents: f53e5e0 Author: Sunil G <[email protected]> Authored: Mon Apr 23 13:36:27 2018 +0530 Committer: Sunil G <[email protected]> Committed: Mon Apr 23 13:37:13 2018 +0530 ---------------------------------------------------------------------- .../src/site/markdown/CapacityScheduler.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/74f181e5/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/CapacityScheduler.md ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/CapacityScheduler.md b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/CapacityScheduler.md index 3216294..f578ca7 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/CapacityScheduler.md +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/CapacityScheduler.md @@ -321,7 +321,7 @@ support other pre-configured queues to co-exist along with auto-created queues. The parent queue which has been enabled for auto leaf queue creation,supports the configuration of template parameters for automatic configuration of the auto-created leaf queues. The auto-created queues support all of the leaf queue configuration parameters except for **Queue ACL**, **Absolute - Resource** configurations and **Node Labels**. Queue ACLs and Node Labels are + Resource** configurations. Queue ACLs are currently inherited from the parent queue i.e they are not configurable on the leaf queue template | Property | Description | @@ -352,6 +352,22 @@ Example: <name>yarn.scheduler.capacity.root.parent1.leaf-queue-template.ordering-policy</name> <value>fair</value> </property> + <property> + <name>yarn.scheduler.capacity.root.parent1.GPU.capacity</name> + <value>50</value> + </property> + <property> + <name>yarn.scheduler.capacity.root.parent1.accessible-node-labels</name> + <value>GPU,SSD</value> + </property> + <property> + <name>yarn.scheduler.capacity.root.parent1.leaf-queue-template.accessible-node-labels</name> + <value>GPU</value> + </property> + <property> + <name>yarn.scheduler.capacity.root.parent1.leaf-queue-template.accessible-node-labels.GPU.capacity</name> + <value>5</value> + </property> ``` * Scheduling Edit Policy configuration for auto-created queue management --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
