Uses of Interface
org.apache.flink.runtime.io.network.api.writer.ChannelSelector
-
Packages that use ChannelSelector Package Description org.apache.flink.runtime.io.network.api.writer org.apache.flink.runtime.operators.shipping org.apache.flink.streaming.runtime.partitioner -
-
Uses of ChannelSelector in org.apache.flink.runtime.io.network.api.writer
Classes in org.apache.flink.runtime.io.network.api.writer that implement ChannelSelector Modifier and Type Class Description classRoundRobinChannelSelector<T extends org.apache.flink.core.io.IOReadableWritable>This is the default implementation of theChannelSelectorinterface.Methods in org.apache.flink.runtime.io.network.api.writer that return ChannelSelector Modifier and Type Method Description ChannelSelector<T>ChannelSelectorRecordWriter. getChannelSelector()Methods in org.apache.flink.runtime.io.network.api.writer with parameters of type ChannelSelector Modifier and Type Method Description RecordWriterBuilder<T>RecordWriterBuilder. setChannelSelector(ChannelSelector<T> selector) -
Uses of ChannelSelector in org.apache.flink.runtime.operators.shipping
Classes in org.apache.flink.runtime.operators.shipping that implement ChannelSelector Modifier and Type Class Description classOutputEmitter<T>The output emitter decides to which of the possibly multiple output channels a record is sent. -
Uses of ChannelSelector in org.apache.flink.streaming.runtime.partitioner
Classes in org.apache.flink.streaming.runtime.partitioner that implement ChannelSelector Modifier and Type Class Description classBroadcastPartitioner<T>Partitioner that selects all the output channels.classCustomPartitionerWrapper<K,T>Partitioner that selects the channel with a user defined partitioner function on a key.classForwardForConsecutiveHashPartitioner<T>If there are multiple consecutive and the same hash shuffles, SQL planner will change them except the first one to use forward partitioner, so that these operators can be chained to reduce unnecessary shuffles.classForwardForUnspecifiedPartitioner<T>When the parallelism of both upstream and downstream isExecutionConfig.PARALLELISM_DEFAULTand the edge's partitioner is not specified (partitioner==null), the edge's partitioner will be set to FORWARD by default(SeeStreamGraph.createActualEdge(java.lang.Integer, java.lang.Integer, int, org.apache.flink.streaming.runtime.partitioner.StreamPartitioner<?>, org.apache.flink.util.OutputTag, org.apache.flink.streaming.api.transformations.StreamExchangeMode, org.apache.flink.runtime.jobgraph.IntermediateDataSetID)method for details).classForwardPartitioner<T>Partitioner that forwards elements only to the locally running downstream operation.classGlobalPartitioner<T>Partitioner that sends all elements to the downstream operator with subtask ID=0.classKeyGroupStreamPartitioner<T,K>Partitioner selects the target channel based on the key group index.classRebalancePartitioner<T>Partitioner that distributes the data equally by cycling through the output channels.classRescalePartitioner<T>Partitioner that distributes the data equally by cycling through the output channels.classShufflePartitioner<T>Partitioner that distributes the data equally by selecting one output channel randomly.classStreamPartitioner<T>A specialChannelSelectorfor use in streaming programs.
-