public interface InputConsumableDecider
InputConsumableDecider
is responsible for determining whether the input of an
executionVertex or a consumed partition group is consumable.Modifier and Type | Interface and Description |
---|---|
static interface |
InputConsumableDecider.Factory
Factory for
InputConsumableDecider . |
Modifier and Type | Method and Description |
---|---|
boolean |
isConsumableBasedOnFinishedProducers(ConsumedPartitionGroup consumedPartitionGroup)
Determining whether the consumed partition group is consumable based on finished producers.
|
boolean |
isInputConsumable(SchedulingExecutionVertex executionVertex,
Set<ExecutionVertexID> verticesToSchedule,
Map<ConsumedPartitionGroup,Boolean> consumableStatusCache)
Determining whether the input of an execution vertex is consumable.
|
boolean isInputConsumable(SchedulingExecutionVertex executionVertex, Set<ExecutionVertexID> verticesToSchedule, Map<ConsumedPartitionGroup,Boolean> consumableStatusCache)
executionVertex
- to be determined whether it's input is consumable.verticesToSchedule
- vertices that are not yet scheduled but already decided to be
scheduled.consumableStatusCache
- a cache for ConsumedPartitionGroup
consumable status.
This is to avoid repetitive computation.boolean isConsumableBasedOnFinishedProducers(ConsumedPartitionGroup consumedPartitionGroup)
consumedPartitionGroup
- to be determined whether it is consumable.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.