StephanEwen commented on a change in pull request #9058: [FLINK-13166] Add 
support for batch slot requests to SlotPoolImpl
URL: https://github.com/apache/flink/pull/9058#discussion_r302449684
 
 

 ##########
 File path: 
flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/slotpool/SlotPoolBatchSlotRequestTest.java
 ##########
 @@ -0,0 +1,341 @@
+/*
+ * 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.flink.runtime.jobmaster.slotpool;
+
+import org.apache.flink.api.common.JobID;
+import org.apache.flink.api.common.time.Time;
+import org.apache.flink.runtime.clusterframework.types.AllocationID;
+import org.apache.flink.runtime.clusterframework.types.ResourceID;
+import org.apache.flink.runtime.clusterframework.types.ResourceProfile;
+import org.apache.flink.runtime.concurrent.ComponentMainThreadExecutor;
+import 
org.apache.flink.runtime.concurrent.ComponentMainThreadExecutorServiceAdapter;
+import org.apache.flink.runtime.concurrent.FutureUtils;
+import 
org.apache.flink.runtime.executiongraph.utils.SimpleAckingTaskManagerGateway;
+import org.apache.flink.runtime.jobmaster.JobMasterId;
+import org.apache.flink.runtime.jobmaster.SlotRequestId;
+import org.apache.flink.runtime.resourcemanager.ResourceManagerGateway;
+import 
org.apache.flink.runtime.resourcemanager.utils.TestingResourceManagerGateway;
+import org.apache.flink.runtime.taskexecutor.slot.SlotOffer;
+import org.apache.flink.runtime.taskmanager.LocalTaskManagerLocation;
+import org.apache.flink.runtime.taskmanager.TaskManagerLocation;
+import org.apache.flink.runtime.testingUtils.TestingUtils;
+import org.apache.flink.runtime.util.clock.Clock;
+import org.apache.flink.runtime.util.clock.ManualClock;
+import org.apache.flink.runtime.util.clock.SystemClock;
+import org.apache.flink.util.ExceptionUtils;
+import org.apache.flink.util.FlinkException;
+import org.apache.flink.util.TestLogger;
+
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.ExecutionException;
+import java.util.concurrent.Executors;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+import java.util.stream.IntStream;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.instanceOf;
+import static org.hamcrest.Matchers.is;
+import static org.junit.Assert.fail;
+
+/**
+ * Tests for batch slot requests.
+ */
+public class SlotPoolBatchSlotRequestTest extends TestLogger {
+
+       private static final ResourceProfile resourceProfile = new 
ResourceProfile(1.0, 1024);
+       private static final ResourceProfile smallerResourceProfile = new 
ResourceProfile(0.5, 512);
+       public static final CompletableFuture[] COMPLETABLE_FUTURES_EMPTY_ARRAY 
= new CompletableFuture[0];
+       private static ScheduledExecutorService 
singleThreadScheduledExecutorService;
+       private static ComponentMainThreadExecutor mainThreadExecutor;
+
+       @BeforeClass
+       public static void setupClass() {
+               singleThreadScheduledExecutorService = 
Executors.newSingleThreadScheduledExecutor();
+               mainThreadExecutor = 
ComponentMainThreadExecutorServiceAdapter.forSingleThreadExecutor(singleThreadScheduledExecutorService);
+       }
+
+       @AfterClass
+       public static void teardownClass() {
+               if (singleThreadScheduledExecutorService != null) {
+                       singleThreadScheduledExecutorService.shutdownNow();
+               }
+       }
+
+       /**
+        * Tests that a batch slot request fails if there is no slot which can 
fulfill the
+        * slot request.
+        */
+       @Test
+       public void testPendingBatchSlotRequestTimeout() throws Exception {
+               try (final SlotPoolImpl slotPool = new SlotPoolBuilder()
+                               .build()) {
+                       final CompletableFuture<PhysicalSlot> slotFuture = 
requestNewAllocatedBatchSlot(
+                               slotPool,
+                               mainThreadExecutor,
+                               ResourceProfile.UNKNOWN);
+
+                       try {
+                               slotFuture.get();
+                               fail("Expected that slot future times out.");
+                       } catch (ExecutionException ee) {
+                               
assertThat(ExceptionUtils.stripExecutionException(ee), 
instanceOf(TimeoutException.class));
+                       }
+               }
+       }
+
+       /**
+        * Tests that a batch slot request won't time out if there exists a 
slot in the
+        * SlotPool which fulfills the requested {@link ResourceProfile}.
+        */
+       @Test
+       public void 
testPendingBatchSlotRequestDoesNotTimeoutIfFulfillingSlotExists() throws 
Exception {
+               final Time batchSlotTimeout = Time.milliseconds(2L);
+               final ComponentMainThreadExecutor directMainThreadExecutor = 
ComponentMainThreadExecutorServiceAdapter.forMainThread();
+               final ManualClock clock = new ManualClock();
+
+               try (final SlotPoolImpl slotPool = new SlotPoolBuilder()
+                               
.setComponentMainThreadExecutor(directMainThreadExecutor)
+                               .setClock(clock)
+                               .setBatchSlotTimeout(batchSlotTimeout)
+                               .build()) {
+
+                       offerSlots(slotPool, directMainThreadExecutor, 
Collections.singletonList(resourceProfile));
+
+                       final CompletableFuture<PhysicalSlot> firstSlotFuture = 
requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
resourceProfile);
+                       final CompletableFuture<PhysicalSlot> secondSlotFuture 
= requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
ResourceProfile.UNKNOWN);
+                       final CompletableFuture<PhysicalSlot> thirdSlotFuture = 
requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
smallerResourceProfile);
+
+                       final List<CompletableFuture<PhysicalSlot>> slotFutures 
= Arrays.asList(firstSlotFuture, secondSlotFuture, thirdSlotFuture);
+                       advanceTimeAndTriggerCheckBatchSlotTimeout(slotPool, 
clock, batchSlotTimeout);
+
+                       for (CompletableFuture<PhysicalSlot> slotFuture : 
slotFutures) {
+                               assertThat(slotFuture.isDone(), is(false));
+                       }
+               }
+
+       }
+
+       /**
+        * Tests that a batch slot request does not react to {@link 
SlotPool#failAllocation(AllocationID, Exception)}
+        * signals.
+        */
+       @Test
+       public void testPendingBatchSlotRequestDoesNotFailIfAllocationFails() 
throws Exception {
+               final TestingResourceManagerGateway 
testingResourceManagerGateway = new TestingResourceManagerGateway();
+               final CompletableFuture<AllocationID> allocationIdFuture = new 
CompletableFuture<>();
+               
testingResourceManagerGateway.setRequestSlotConsumer(slotRequest -> 
allocationIdFuture.complete(slotRequest.getAllocationId()));
+
+               final ComponentMainThreadExecutor directMainThreadExecutor = 
ComponentMainThreadExecutorServiceAdapter.forMainThread();
+
+               final Time batchSlotTimeout = Time.milliseconds(1000L);
+               try (final SlotPoolImpl slotPool = new SlotPoolBuilder()
+                       
.setComponentMainThreadExecutor(directMainThreadExecutor)
+                       .setBatchSlotTimeout(batchSlotTimeout)
+                       
.setResourceManagerGateway(testingResourceManagerGateway)
+                       .build()) {
+
+                       final CompletableFuture<PhysicalSlot> slotFuture = 
requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
resourceProfile);
+
+                       failAllocation(slotPool, directMainThreadExecutor, 
allocationIdFuture.get());
+
+                       assertThat(slotFuture.isDone(), is(false));
+               }
+       }
+
+       /**
+        * Tests that a batch slot request won't fail if its resource manager 
request fails.
+        */
+       @Test
+       public void testPendingBatchSlotRequestDoesNotFailIfRMRequestFails() 
throws Exception {
+               final TestingResourceManagerGateway 
testingResourceManagerGateway = new TestingResourceManagerGateway();
+               
testingResourceManagerGateway.setRequestSlotFuture(FutureUtils.completedExceptionally(new
 FlinkException("Failed request")));
+
+               final ComponentMainThreadExecutor directMainThreadExecutor = 
ComponentMainThreadExecutorServiceAdapter.forMainThread();
+
+               final Time batchSlotTimeout = Time.milliseconds(1000L);
+               try (final SlotPoolImpl slotPool = new SlotPoolBuilder()
+                       
.setComponentMainThreadExecutor(directMainThreadExecutor)
+                       .setBatchSlotTimeout(batchSlotTimeout)
+                       
.setResourceManagerGateway(testingResourceManagerGateway)
+                       .build()) {
+
+                       final CompletableFuture<PhysicalSlot> slotFuture = 
requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
resourceProfile);
+
+                       assertThat(slotFuture.isDone(), is(false));
+               }
+       }
+
+       /**
+        * Tests that a pending batch slot request times out after the last 
fulfilling slot gets
+        * released.
+        */
+       @Test
+       public void testPendingBatchSlotRequestTimeoutAfterSlotRelease() throws 
Exception {
+               final ComponentMainThreadExecutor directMainThreadExecutor = 
ComponentMainThreadExecutorServiceAdapter.forMainThread();
+               final ManualClock clock = new ManualClock();
+               final Time batchSlotTimeout = Time.milliseconds(1000L);
+
+               try (final SlotPoolImpl slotPool = new SlotPoolBuilder()
+                               
.setComponentMainThreadExecutor(directMainThreadExecutor)
+                               .setClock(clock)
+                               .setBatchSlotTimeout(batchSlotTimeout)
+                               .build()) {
+                       final ResourceID taskManagerResourceId = 
offerSlots(slotPool, directMainThreadExecutor, 
Collections.singletonList(resourceProfile));
+                       final CompletableFuture<PhysicalSlot> firstSlotFuture = 
requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
resourceProfile);
+                       final CompletableFuture<PhysicalSlot> secondSlotFuture 
= requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
ResourceProfile.UNKNOWN);
+                       final CompletableFuture<PhysicalSlot> thirdSlotFuture = 
requestNewAllocatedBatchSlot(slotPool, directMainThreadExecutor, 
smallerResourceProfile);
+
+                       final List<CompletableFuture<PhysicalSlot>> slotFutures 
= Arrays.asList(firstSlotFuture, secondSlotFuture, thirdSlotFuture);
+
+                       // initial batch slot timeout check
+                       advanceTimeAndTriggerCheckBatchSlotTimeout(slotPool, 
clock, batchSlotTimeout);
+
+                       
assertThat(CompletableFuture.anyOf(slotFutures.toArray(COMPLETABLE_FUTURES_EMPTY_ARRAY)).isDone(),
 is(false));
+
+                       releaseTaskManager(slotPool, directMainThreadExecutor, 
taskManagerResourceId);
+
+                       clock.advanceTime(1L, TimeUnit.MILLISECONDS);
 
 Review comment:
   This line can probably be removed from the test.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to