All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.runtime.scheduler.adaptive.allocator.SharedSlot Maven / Gradle / Ivy

There is a newer version: 1.19.0
Show newest version
/*
 * 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.scheduler.adaptive.allocator;

import org.apache.flink.runtime.jobmanager.scheduler.Locality;
import org.apache.flink.runtime.jobmaster.LogicalSlot;
import org.apache.flink.runtime.jobmaster.SlotOwner;
import org.apache.flink.runtime.jobmaster.SlotRequestId;
import org.apache.flink.runtime.jobmaster.slotpool.PhysicalSlot;
import org.apache.flink.runtime.jobmaster.slotpool.SingleLogicalSlot;
import org.apache.flink.runtime.scheduler.adaptive.AdaptiveScheduler;
import org.apache.flink.util.Preconditions;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Shared slot implementation for the {@link AdaptiveScheduler}.
 *
 * 

The release process of a shared slot follows one of 2 code paths: * *

1) During normal execution all allocated logical slots will be returned, with the last return * triggering the {@code externalReleaseCallback} which must eventually result in a {@link * #release(Throwable)} call. * *

2) If the backing physical is lost (e.g., because the providing TaskManager crashed) then * {@link #release(Throwable)} is called without all logical slots having been returned. The runtime * relies on this also triggering the release of all logical slots. This will not trigger the {@code * externalReleaseCallback}. */ class SharedSlot implements SlotOwner, PhysicalSlot.Payload { private static final Logger LOG = LoggerFactory.getLogger(SharedSlot.class); private final SlotRequestId physicalSlotRequestId; private final PhysicalSlot physicalSlot; private final Runnable externalReleaseCallback; private final Map allocatedLogicalSlots; private final boolean slotWillBeOccupiedIndefinitely; private State state; public SharedSlot( SlotRequestId physicalSlotRequestId, PhysicalSlot physicalSlot, boolean slotWillBeOccupiedIndefinitely, Runnable externalReleaseCallback) { this.physicalSlotRequestId = physicalSlotRequestId; this.physicalSlot = physicalSlot; this.slotWillBeOccupiedIndefinitely = slotWillBeOccupiedIndefinitely; this.externalReleaseCallback = externalReleaseCallback; this.allocatedLogicalSlots = new HashMap<>(); Preconditions.checkState( physicalSlot.tryAssignPayload(this), "The provided slot (%s) was not free.", physicalSlot.getAllocationId()); this.state = State.ALLOCATED; } /** * Registers an allocation request for a logical slot. * * @return the logical slot */ public LogicalSlot allocateLogicalSlot() { LOG.debug("Allocating logical slot from shared slot ({})", physicalSlotRequestId); Preconditions.checkState( state == State.ALLOCATED, "The shared slot has already been released."); final LogicalSlot slot = new SingleLogicalSlot( new SlotRequestId(), physicalSlot, Locality.UNKNOWN, this, slotWillBeOccupiedIndefinitely); allocatedLogicalSlots.put(slot.getSlotRequestId(), slot); return slot; } @Override public void returnLogicalSlot(LogicalSlot logicalSlot) { LOG.debug("Returning logical slot to shared slot ({})", physicalSlotRequestId); Preconditions.checkState( state != State.RELEASED, "The shared slot has already been released."); Preconditions.checkState(!logicalSlot.isAlive(), "Returned logic slot must not be alive."); Preconditions.checkState( allocatedLogicalSlots.remove(logicalSlot.getSlotRequestId()) != null, "Trying to remove a logical slot request which has been either already removed or never created."); tryReleaseExternally(); } private void tryReleaseExternally() { if (state == State.ALLOCATED && allocatedLogicalSlots.isEmpty()) { LOG.debug("Release shared slot externally ({})", physicalSlotRequestId); externalReleaseCallback.run(); } } @Override public void release(Throwable cause) { LOG.debug("Release shared slot ({})", physicalSlotRequestId); Preconditions.checkState( state == State.ALLOCATED, "The shared slot has already been released."); // ensures that we won't call the external release callback if there are still logical slots // to release state = State.RELEASING; // copy the logical slot collection to avoid ConcurrentModificationException // if logical slot releases cause cancellation of other executions // which will try to call returnLogicalSlot and modify allocatedLogicalSlots collection final List logicalSlotsToRelease = new ArrayList<>(allocatedLogicalSlots.values()); for (LogicalSlot allocatedLogicalSlot : logicalSlotsToRelease) { // this will also cause the logical slot to be returned allocatedLogicalSlot.releaseSlot(cause); } allocatedLogicalSlots.clear(); state = State.RELEASED; } @Override public boolean willOccupySlotIndefinitely() { return slotWillBeOccupiedIndefinitely; } private enum State { ALLOCATED, RELEASING, RELEASED } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy