/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.policy; import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableTable; import org.apache.hadoop.yarn.api.records.Priority; import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CSQueue; import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.QueueCapacities; import org.junit.Assert; import org.junit.Test; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; public class TestPriorityUtilizationQueueOrderingPolicy { private List<CSQueue> mockCSQueues(String[] queueNames, int[] priorities, float[] utilizations, String partition) { // sanity check assert queueNames != null && priorities != null && utilizations != null && queueNames.length > 0 && queueNames.length == priorities.length && priorities.length == utilizations.length; List<CSQueue> list = new ArrayList<>(); for (int i = 0; i < queueNames.length; i++) { CSQueue q = mock(CSQueue.class); when(q.getQueueName()).thenReturn(queueNames[i]); QueueCapacities qc = new QueueCapacities(false); qc.setUsedCapacity(partition, utilizations[i]); when(q.getQueueCapacities()).thenReturn(qc); when(q.getPriority()).thenReturn(Priority.newInstance(priorities[i])); list.add(q); } return list; } private void verifyOrder(QueueOrderingPolicy orderingPolicy, String partition, String[] expectedOrder) { Iterator<CSQueue> iter = orderingPolicy.getAssignmentIterator(partition); int i = 0; while (iter.hasNext()) { CSQueue q = iter.next(); Assert.assertEquals(expectedOrder[i], q.getQueueName()); i++; } assert i == expectedOrder.length; } @Test public void testUtilizationOrdering() { PriorityUtilizationQueueOrderingPolicy policy = new PriorityUtilizationQueueOrderingPolicy(false); // Case 1, one queue policy.setQueues(mockCSQueues(new String[] { "a" }, new int[] { 0 }, new float[] { 0.1f }, "")); verifyOrder(policy, "", new String[] { "a" }); // Case 2, 2 queues policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 0, 0 }, new float[] { 0.1f, 0.0f }, "")); verifyOrder(policy, "", new String[] { "b", "a" }); // Case 3, 3 queues policy.setQueues( mockCSQueues(new String[] { "a", "b", "c" }, new int[] { 0, 0, 0 }, new float[] { 0.1f, 0.0f, 0.2f }, "")); verifyOrder(policy, "", new String[] { "b", "a", "c" }); // Case 4, 3 queues, ignore priority policy.setQueues( mockCSQueues(new String[] { "a", "b", "c" }, new int[] { 2, 1, 0 }, new float[] { 0.1f, 0.0f, 0.2f }, "")); verifyOrder(policy, "", new String[] { "b", "a", "c" }); // Case 5, 3 queues, look at partition (default) policy.setQueues( mockCSQueues(new String[] { "a", "b", "c" }, new int[] { 2, 1, 0 }, new float[] { 0.1f, 0.0f, 0.2f }, "x")); verifyOrder(policy, "", new String[] { "a", "b", "c" }); // Case 5, 3 queues, look at partition (x) policy.setQueues( mockCSQueues(new String[] { "a", "b", "c" }, new int[] { 2, 1, 0 }, new float[] { 0.1f, 0.0f, 0.2f }, "x")); verifyOrder(policy, "x", new String[] { "b", "a", "c" }); // Case 6, 3 queues, with different accessibility to partition List<CSQueue> queues = mockCSQueues(new String[] { "a", "b", "c" }, new int[] { 2, 1, 0 }, new float[] { 0.1f, 0.0f, 0.2f }, "x"); // a can access "x" when(queues.get(0).getAccessibleNodeLabels()).thenReturn(ImmutableSet.of("x", "y")); // c can access "x" when(queues.get(2).getAccessibleNodeLabels()).thenReturn(ImmutableSet.of("x", "y")); policy.setQueues(queues); verifyOrder(policy, "x", new String[] { "a", "c", "b" }); } @Test public void testPriorityUtilizationOrdering() { PriorityUtilizationQueueOrderingPolicy policy = new PriorityUtilizationQueueOrderingPolicy(true); // Case 1, one queue policy.setQueues(mockCSQueues(new String[] { "a" }, new int[] { 1 }, new float[] { 0.1f }, "")); verifyOrder(policy, "", new String[] { "a" }); // Case 2, 2 queues, both under utilized, same priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 1 }, new float[] { 0.2f, 0.1f }, "")); verifyOrder(policy, "", new String[] { "b", "a" }); // Case 3, 2 queues, both over utilized, same priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 1 }, new float[] { 1.1f, 1.2f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 4, 2 queues, one under and one over, same priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 1 }, new float[] { 0.1f, 1.2f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 5, 2 queues, both over utilized, different priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 2 }, new float[] { 1.1f, 1.2f }, "")); verifyOrder(policy, "", new String[] { "b", "a" }); // Case 6, 2 queues, both under utilized, different priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 2 }, new float[] { 0.1f, 0.2f }, "")); verifyOrder(policy, "", new String[] { "b", "a" }); // Case 7, 2 queues, one under utilized and one over utilized, // different priority (1) policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 2 }, new float[] { 0.1f, 1.2f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 8, 2 queues, one under utilized and one over utilized, // different priority (1) policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 2, 1 }, new float[] { 0.1f, 1.2f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 9, 2 queues, one under utilized and one meet, different priority (1) policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 2 }, new float[] { 0.1f, 1.0f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 10, 2 queues, one under utilized and one meet, different priority (2) policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 2, 1 }, new float[] { 0.1f, 1.0f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 11, 2 queues, one under utilized and one meet, same priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 1 }, new float[] { 0.1f, 1.0f }, "")); verifyOrder(policy, "", new String[] { "a", "b" }); // Case 12, 2 queues, both meet, different priority policy.setQueues(mockCSQueues(new String[] { "a", "b" }, new int[] { 1, 2 }, new float[] { 1.0f, 1.0f }, "")); verifyOrder(policy, "", new String[] { "b", "a" }); // Case 13, 5 queues, different priority policy.setQueues(mockCSQueues(new String[] { "a", "b", "c", "d", "e" }, new int[] { 1, 2, 0, 0, 3 }, new float[] { 1.2f, 1.0f, 0.2f, 1.1f, 0.2f }, "")); verifyOrder(policy, "", new String[] { "e", "c", "b", "a", "d" }); // Case 14, 5 queues, different priority, partition default; policy.setQueues(mockCSQueues(new String[] { "a", "b", "c", "d", "e" }, new int[] { 1, 2, 0, 0, 3 }, new float[] { 1.2f, 1.0f, 0.2f, 1.1f, 0.2f }, "x")); verifyOrder(policy, "", new String[] { "e", "b", "a", "c", "d" }); // Case 15, 5 queues, different priority, partition x; policy.setQueues(mockCSQueues(new String[] { "a", "b", "c", "d", "e" }, new int[] { 1, 2, 0, 0, 3 }, new float[] { 1.2f, 1.0f, 0.2f, 1.1f, 0.2f }, "x")); verifyOrder(policy, "x", new String[] { "e", "c", "b", "a", "d" }); // Case 16, 5 queues, different priority, partition x; and different // accessibility List<CSQueue> queues = mockCSQueues(new String[] { "a", "b", "c", "d", "e" }, new int[] { 1, 2, 0, 0, 3 }, new float[] { 1.2f, 1.0f, 0.2f, 1.1f, 0.2f }, "x"); // Only a/d has access to x when(queues.get(0).getAccessibleNodeLabels()).thenReturn( ImmutableSet.of("x")); when(queues.get(3).getAccessibleNodeLabels()).thenReturn( ImmutableSet.of("x")); policy.setQueues(queues); verifyOrder(policy, "x", new String[] { "a", "d", "e", "c", "b" }); } }