Using the following queue configuration under YARN capacity policy, how is the default queue chosen when no queue is specified at job launch?
<?xml version="1.0"?>
<configuration>
<property>
<name>yarn.scheduler.capacity.root.queues</name>
<value>prod,dev</value>
</property>
<property>
<name>yarn.scheduler.capacity.root.dev.queues</name>
<value>eng,science</value>
</property>
</configuration>
I know that under the fair policy, you can choose a default queue, but I cannot find the analog in the capacity one.
This is an example for the fair policy.
<queuePlacementPolicy>
<rule name="specified" create="false" />
<rule name="primaryGroup" create="false" />
<rule name="default" queue="dev.eng" />
</queuePlacementPolicy>