From 9b11e7bd6dabaa48c7e8eff743dd2b26829e4eb5 Mon Sep 17 00:00:00 2001 From: Jian He Date: Tue, 29 Dec 2015 16:51:55 -0800 Subject: [PATCH] YARN-4098. Document ApplicationPriority feature. Contributed by Rohith Sharma K S --- hadoop-yarn-project/CHANGES.txt | 2 ++ .../src/site/markdown/CapacityScheduler.md | 25 +++++++++++++++++++ .../src/site/markdown/YarnCommands.md | 2 ++ 3 files changed, 29 insertions(+) diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt index 57b72caf846..e69fe1d9dbc 100644 --- a/hadoop-yarn-project/CHANGES.txt +++ b/hadoop-yarn-project/CHANGES.txt @@ -563,6 +563,8 @@ Release 2.8.0 - UNRELEASED YARN-4290. Add -showDetails option to YARN Nodes CLI to print all nodes reports information. (Sunil G via wangda) + YARN-4098. Document ApplicationPriority feature. (Rohith Sharma K S via jianhe) + OPTIMIZATIONS YARN-3339. TestDockerContainerExecutor should pull a single image and not 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 9227b1f8da5..cd98dc07a6f 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 @@ -24,6 +24,7 @@ Hadoop: Capacity Scheduler * [Queue Properties](#Queue_Properties) * [Other Properties](#Other_Properties) * [Reviewing the configuration of the CapacityScheduler](#Reviewing_the_configuration_of_the_CapacityScheduler) + * [Setup for application priority](#Setup_for_application_priority.) * [Changing Queue Configuration](#Changing_Queue_Configuration) Purpose @@ -71,6 +72,8 @@ The `CapacityScheduler` supports the following features: * **Queue Mapping based on User or Group** - This feature allows users to map a job to a specific queue based on the user or group. +* **Priority Scheduling** - This feature allows applications to be submitted and scheduled with different priorities. Higher integer value indicates higher priority for an application. Currently Application priority is supported only for FIFO ordering policy. + Configuration ------------- @@ -201,6 +204,28 @@ Example: * The */scheduler* web-page should show the resource usages of individual queues. +###Setup for application priority. + + Application priority works only along with FIFO ordering policy. Default ordering policy is FIFO. + + Default priority for an application can be at cluster level and queue level. + + * Cluster-level priority : Any application that is submitted with a priority is greater then cluster max priority then application priority will be reset with cluster-max priority. + $HADOOP_HOME/etc/hadoop/yarn-site.xml is the configuration file for cluster-max priority. + +| Property | Description | +|:---- |:---- | +| `yarn.cluster.max-application-priority` | Defines maximum application priority in a cluster. | + + * Leaf Queue-level priority : Each leaf queue provides default priority by the administrator. If application is not submitted with any priority, then default priority of the queue will be taken in account. + $HADOOP_HOME/etc/hadoop/capacity-scheduler.xml is the configuration file for queue-level priority. + +| Property | Description | +|:---- |:---- | +| `yarn.scheduler.capacity.root..default-application-priority` | Defines default application priority in a leaf queue. | + +**Note:** Priority of an application will not be changed when application is moved to different queue. + Changing Queue Configuration ---------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/YarnCommands.md b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/YarnCommands.md index 7f0edbdb36a..7939247629c 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/YarnCommands.md +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/YarnCommands.md @@ -63,11 +63,13 @@ Usage: `yarn application [options] ` | COMMAND\_OPTIONS | Description | |:---- |:---- | +| -appId \ | Specify Application Id to be operated | | -appStates \ | Works with -list to filter applications based on input comma-separated list of application states. The valid application state can be one of the following:  ALL, NEW, NEW\_SAVING, SUBMITTED, ACCEPTED, RUNNING, FINISHED, FAILED, KILLED | | -appTypes \ | Works with -list to filter applications based on input comma-separated list of application types. | | -list | Lists applications from the RM. Supports optional use of -appTypes to filter applications based on application type, and -appStates to filter applications based on application state. | | -kill \ | Kills the application. | | -status \ | Prints the status of the application. | +| -updatePriority \ | Update priority of an application. ApplicationId can be passed using 'appId' option. | Prints application(s) report/kill application