mitdesai commented on PR #874:
URL: https://github.com/apache/yunikorn-k8shim/pull/874#issuecomment-2216653252

   Related core changes to try and place the application in root.default are 
here: https://github.com/apache/yunikorn-core/pull/904
   
   This change does take away the configuration for setting a custom default 
queue where the applications will be placed if no rule matches. This can be 
achieved by adding a fixed rule at the end of the placement rules with the 
desired queue name.
   
   for example, if the placement rules are:
   ```
   placementrules:
   - provided
   - tag
   ```
   And the application placement cannot succeed from both these rules, we will 
try to place the application to place in 'root.default' before rejecting it.
   
   If any other queue is desired as a default queue, we can update the 
placement rules to:
   ```
   placementrules:
   - provided
   - tag
   - fixed
     value: root.custom
   ```
   Here, after provided and tag are unsuccessful, the app will be placed by the 
fixed rule as long as the acls are valid.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to