Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
2.3.0
-
None
-
None
-
Yarn 2.3.0
Description
Fair scheduler has a couple of QueuePlacementRules. Those rules can create queues, if they not exists with hardcoded prefix "root.".
Consider an example: we have a placement rule, which creates user's queue if it not exists. Current implementation creates it at "root." prefix Suppose that this user runs a big job. In that case it will get a fair share of resources because queue will be created at 'root.' with default settings, and that affects all other users of the cluster.
Of course, FairScheduler can place such users to default queue, but in that case if user submits a big queue it will eat resources of whole queue, and we know that no preemption can be done within one queue (Or i'm wrong?). So effectively one user can usurp all default queue resources.
To solve that I created a patch, which allows to override "root." prefix in QueuePlacementRules. Thats gives us flexibility to automatically create queues for users or group of users under predefined queue. So, every user will get a separate queue and will share parent queue resources and can't usurp all resources, because parent node can be configured to preempt tasks.
Consider example (parent queue specified for each rule):
<queuePlacementPolicy> <rule name='specified' parent='granted'/> <rule name='user' parent='guests'/> </queuePlacementPolicy>
With such definition queue requirements will give us:
"root.granted.specifiedq" == policy.assignAppToQueue("specifiedq", "someuser"); "root.guests.someuser" == policy.assignAppToQueue("default", "someuser"); "root.guests.otheruser" == policy.assignAppToQueue("default", "otheruser");
Attachments
Attachments
Issue Links
- duplicates
-
YARN-1864 Fair Scheduler Dynamic Hierarchical User Queues
- Closed