Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Solved
Go to solution
how to add particular user to particular yarn queue ?
Labels:
- Labels:
-
Apache Hadoop
-
Apache YARN
Guru
Created ‎07-20-2017 12:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want to add particular user let's say am to particular yarn queue q1 ?
1 ACCEPTED SOLUTION
Guru
Created ‎07-20-2017 02:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Anurag Mishra
Hi You can use the following properties:
Note: These settings can be accessed from Ambari > YARN > Configs > Scheduler or in conf/capacity-scheduler.xml.
--1. For adding users who can submit jobs <property> <name>yarn.scheduler.capacity.root.test.acl_submit_applications</name> <value>user1 group1, user2, user3 group 2</value> <description> The ACL of who can submit jobs to the test queue. </description> </property> --2. For administering a queue <property> <name>yarn.scheduler.capacity.root.test.acl_administer_queue</name> <value>user5 group5</value> <description> The ACL of who can administer jobs on the test queue.</description> </property>
1 REPLY 1
Guru
Created ‎07-20-2017 02:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Anurag Mishra
Hi You can use the following properties:
Note: These settings can be accessed from Ambari > YARN > Configs > Scheduler or in conf/capacity-scheduler.xml.
--1. For adding users who can submit jobs <property> <name>yarn.scheduler.capacity.root.test.acl_submit_applications</name> <value>user1 group1, user2, user3 group 2</value> <description> The ACL of who can submit jobs to the test queue. </description> </property> --2. For administering a queue <property> <name>yarn.scheduler.capacity.root.test.acl_administer_queue</name> <value>user5 group5</value> <description> The ACL of who can administer jobs on the test queue.</description> </property>
