Package org.apache.wayang.flink.channels
Class DataSetChannel
- java.lang.Object
-
- org.apache.wayang.core.plan.executionplan.Channel
-
- org.apache.wayang.flink.channels.DataSetChannel
-
public class DataSetChannel extends Channel
Describes the situation where oneDataSet
is operated on, producing a furtherDataSet
.NB: We might be more specific: Distinguish between cached/uncached and pipelined/aggregated.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
DataSetChannel.Instance
ChannelInstance
implementation forDataSet
s.
-
Field Summary
Fields Modifier and Type Field Description static ChannelDescriptor
DESCRIPTOR
static ChannelDescriptor
DESCRIPTOR_MANY
-
Constructor Summary
Constructors Constructor Description DataSetChannel(ChannelDescriptor descriptor, OutputSlot<?> outputSlot)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Channel
copy()
Create a copy of this instance.DataSetChannel.Instance
createInstance(Executor executor, OptimizationContext.OperatorContext producerOperatorContext, int producerOutputIndex)
Create aChannelInstance
for this instance.-
Methods inherited from class org.apache.wayang.core.plan.executionplan.Channel
addConsumer, addSibling, getCardinalityEstimate, getConsumers, getCorrespondingSlots, getDataSetType, getDescriptor, getOriginal, getProducer, getProducerOperator, getProducerSlot, getSiblings, isBetweenStages, isCopy, isExecutionBreaker, isMarkedForInstrumentation, isReusable, isSuitableForBreakpoint, markForInstrumentation, mergeIntoOriginal, removeSiblings, removeSiblingsWhere, retain, toString, withSiblings
-
-
-
-
Field Detail
-
DESCRIPTOR
public static final ChannelDescriptor DESCRIPTOR
-
DESCRIPTOR_MANY
public static final ChannelDescriptor DESCRIPTOR_MANY
-
-
Constructor Detail
-
DataSetChannel
public DataSetChannel(ChannelDescriptor descriptor, OutputSlot<?> outputSlot)
-
-
Method Detail
-
copy
public Channel copy()
Description copied from class:Channel
Create a copy of this instance. Mimics everything apart from the consumers. Also delimits already executedExecutionTask
s and those that are not executed yet. Be careful when revising this invariant.
-
createInstance
public DataSetChannel.Instance createInstance(Executor executor, OptimizationContext.OperatorContext producerOperatorContext, int producerOutputIndex)
Description copied from class:Channel
Create aChannelInstance
for this instance.- Specified by:
createInstance
in classChannel
- Parameters:
executor
- that manages the resource ornull
if none
-
-