Class ResourceAllocationResult
- java.lang.Object
-
- org.apache.flink.runtime.resourcemanager.slotmanager.ResourceAllocationResult
-
public class ResourceAllocationResult extends Object
Contains the results of theResourceAllocationStrategy
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ResourceAllocationResult.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceAllocationResult.Builder
builder()
Map<PendingTaskManagerId,Map<JobID,ResourceCounter>>
getAllocationsOnPendingResources()
Map<JobID,Map<InstanceID,ResourceCounter>>
getAllocationsOnRegisteredResources()
List<PendingTaskManager>
getPendingTaskManagersToAllocate()
Set<JobID>
getUnfulfillableJobs()
-
-
-
Method Detail
-
getPendingTaskManagersToAllocate
public List<PendingTaskManager> getPendingTaskManagersToAllocate()
-
getAllocationsOnRegisteredResources
public Map<JobID,Map<InstanceID,ResourceCounter>> getAllocationsOnRegisteredResources()
-
getAllocationsOnPendingResources
public Map<PendingTaskManagerId,Map<JobID,ResourceCounter>> getAllocationsOnPendingResources()
-
builder
public static ResourceAllocationResult.Builder builder()
-
-