Uses of Class
org.apache.flink.runtime.io.network.partition.ResultPartitionType
-
-
Uses of ResultPartitionType in org.apache.flink.runtime.deployment
Methods in org.apache.flink.runtime.deployment that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeInputGateDeploymentDescriptor. getConsumedPartitionType()Returns the type of this input channel's consumed result partition.ResultPartitionTypeResultPartitionDeploymentDescriptor. getPartitionType()Constructors in org.apache.flink.runtime.deployment with parameters of type ResultPartitionType Constructor Description InputGateDeploymentDescriptor(IntermediateDataSetID consumedResultId, ResultPartitionType consumedPartitionType, int consumedSubpartitionIndex, TaskDeploymentDescriptorFactory.ShuffleDescriptorAndIndex[] inputChannels)InputGateDeploymentDescriptor(IntermediateDataSetID consumedResultId, ResultPartitionType consumedPartitionType, IndexRange consumedSubpartitionIndexRange, int numberOfInputChannels, List<TaskDeploymentDescriptor.MaybeOffloaded<TaskDeploymentDescriptorFactory.ShuffleDescriptorGroup>> serializedInputChannels) -
Uses of ResultPartitionType in org.apache.flink.runtime.executiongraph
Methods in org.apache.flink.runtime.executiongraph that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeIntermediateResult. getResultType()ResultPartitionTypeIntermediateResultPartition. getResultType()Methods in org.apache.flink.runtime.executiongraph with parameters of type ResultPartitionType Modifier and Type Method Description booleanMarkPartitionFinishedStrategy. needMarkPartitionFinished(ResultPartitionType resultPartitionType)Decide whether partition needs to be marked as finished.Constructors in org.apache.flink.runtime.executiongraph with parameters of type ResultPartitionType Constructor Description IntermediateResult(IntermediateDataSet intermediateDataSet, ExecutionJobVertex producer, int numParallelProducers, ResultPartitionType resultType) -
Uses of ResultPartitionType in org.apache.flink.runtime.io.network.partition
Fields in org.apache.flink.runtime.io.network.partition declared as ResultPartitionType Modifier and Type Field Description protected ResultPartitionTypeResultPartition. partitionTypeType of this partition.Methods in org.apache.flink.runtime.io.network.partition that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeResultPartition. getPartitionType()Returns the type of this result partition.static ResultPartitionTypeResultPartitionType. valueOf(String name)Returns the enum constant of this type with the specified name.static ResultPartitionType[]ResultPartitionType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.flink.runtime.io.network.partition with parameters of type ResultPartitionType Modifier and Type Method Description ResultPartitionResultPartitionFactory. create(String taskNameWithSubtaskAndId, int partitionIndex, ResultPartitionID id, ResultPartitionType type, int numberOfPartitions, int numberOfSubpartitions, int maxParallelism, boolean isBroadcast, ShuffleDescriptor shuffleDescriptor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory, boolean isNumberOfPartitionConsumerUndefined)Constructors in org.apache.flink.runtime.io.network.partition with parameters of type ResultPartitionType Constructor Description BoundedBlockingResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, ResultSubpartition[] subpartitions, int numTargetKeyGroups, ResultPartitionManager partitionManager, BufferCompressor bufferCompressor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory)BufferWritingResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, ResultSubpartition[] subpartitions, int numTargetKeyGroups, ResultPartitionManager partitionManager, BufferCompressor bufferCompressor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory)PipelinedResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, ResultSubpartition[] subpartitions, int numTargetKeyGroups, ResultPartitionManager partitionManager, BufferCompressor bufferCompressor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory)ResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, int numSubpartitions, int numTargetKeyGroups, ResultPartitionManager partitionManager, BufferCompressor bufferCompressor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory)SortMergeResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, int numSubpartitions, int numTargetKeyGroups, BatchShuffleReadBufferPool readBufferPool, Executor readIOExecutor, ResultPartitionManager partitionManager, String resultFileBasePath, BufferCompressor bufferCompressor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory) -
Uses of ResultPartitionType in org.apache.flink.runtime.io.network.partition.consumer
Methods in org.apache.flink.runtime.io.network.partition.consumer that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeSingleInputGate. getConsumedPartitionType()Returns the type of this input channel's consumed result partition.Methods in org.apache.flink.runtime.io.network.partition.consumer with parameters of type ResultPartitionType Modifier and Type Method Description static GateBuffersSpecInputGateSpecUtils. createGateBuffersSpec(Optional<Integer> configuredMaxRequiredBuffersPerGate, int configuredNetworkBuffersPerChannel, int configuredFloatingNetworkBuffersPerGate, ResultPartitionType partitionType, int numInputChannels, boolean enableTieredStorage)Constructors in org.apache.flink.runtime.io.network.partition.consumer with parameters of type ResultPartitionType Constructor Description SingleInputGate(String owningTaskName, int gateIndex, IntermediateDataSetID consumedResultId, ResultPartitionType consumedPartitionType, int numberOfInputChannels, PartitionProducerStateProvider partitionProducerStateProvider, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory, BufferDecompressor bufferDecompressor, org.apache.flink.core.memory.MemorySegmentProvider memorySegmentProvider, int segmentSize, ThroughputCalculator throughputCalculator, BufferDebloater bufferDebloater) -
Uses of ResultPartitionType in org.apache.flink.runtime.io.network.partition.hybrid.tiered.shuffle
Methods in org.apache.flink.runtime.io.network.partition.hybrid.tiered.shuffle with parameters of type ResultPartitionType Modifier and Type Method Description TieredResultPartitionTieredResultPartitionFactory. createTieredResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, int numPartitions, int numSubpartitions, int maxParallelism, int bufferSizeBytes, Boolean isBroadCastOnly, ResultPartitionManager partitionManager, BufferCompressor bufferCompressor, List<TierShuffleDescriptor> tierShuffleDescriptors, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory, FileChannelManager fileChannelManager, BatchShuffleReadBufferPool batchShuffleReadBufferPool, ScheduledExecutorService batchShuffleReadIOExecutor, boolean isNumberOfPartitionConsumerUndefined)Constructors in org.apache.flink.runtime.io.network.partition.hybrid.tiered.shuffle with parameters of type ResultPartitionType Constructor Description TieredResultPartition(String owningTaskName, int partitionIndex, ResultPartitionID partitionId, ResultPartitionType partitionType, int numSubpartitions, int numTargetKeyGroups, ResultPartitionManager partitionManager, BufferCompressor bufferCompressor, org.apache.flink.util.function.SupplierWithException<BufferPool,IOException> bufferPoolFactory, TieredStorageProducerClient tieredStorageProducerClient, TieredStorageResourceRegistry tieredStorageResourceRegistry, TieredStorageNettyServiceImpl nettyService, List<TieredStorageMemorySpec> tieredStorageMemorySpecs, TieredStorageMemoryManager storageMemoryManager) -
Uses of ResultPartitionType in org.apache.flink.runtime.jobgraph
Methods in org.apache.flink.runtime.jobgraph that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeIntermediateDataSet. getResultType()Methods in org.apache.flink.runtime.jobgraph with parameters of type ResultPartitionType Modifier and Type Method Description JobEdgeJobVertex. connectNewDataSetAsInput(JobVertex input, DistributionPattern distPattern, ResultPartitionType partitionType)JobEdgeJobVertex. connectNewDataSetAsInput(JobVertex input, DistributionPattern distPattern, ResultPartitionType partitionType, boolean isBroadcast)JobEdgeJobVertex. connectNewDataSetAsInput(JobVertex input, DistributionPattern distPattern, ResultPartitionType partitionType, IntermediateDataSetID intermediateDataSetId, boolean isBroadcast)IntermediateDataSetJobVertex. getOrCreateResultDataSet(IntermediateDataSetID id, ResultPartitionType partitionType)Constructors in org.apache.flink.runtime.jobgraph with parameters of type ResultPartitionType Constructor Description IntermediateDataSet(IntermediateDataSetID id, ResultPartitionType resultType, JobVertex producer) -
Uses of ResultPartitionType in org.apache.flink.runtime.jobgraph.topology
Methods in org.apache.flink.runtime.jobgraph.topology that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeDefaultLogicalResult. getResultType() -
Uses of ResultPartitionType in org.apache.flink.runtime.scheduler.strategy
Methods in org.apache.flink.runtime.scheduler.strategy that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeConsumedPartitionGroup. getResultPartitionType()ResultPartitionTypeConsumerVertexGroup. getResultPartitionType()Methods in org.apache.flink.runtime.scheduler.strategy with parameters of type ResultPartitionType Modifier and Type Method Description static ConsumedPartitionGroupConsumedPartitionGroup. fromMultiplePartitions(int numConsumers, List<IntermediateResultPartitionID> resultPartitions, ResultPartitionType resultPartitionType)static ConsumerVertexGroupConsumerVertexGroup. fromMultipleVertices(List<ExecutionVertexID> vertices, ResultPartitionType resultPartitionType)static ConsumedPartitionGroupConsumedPartitionGroup. fromSinglePartition(int numConsumers, IntermediateResultPartitionID resultPartition, ResultPartitionType resultPartitionType)static ConsumerVertexGroupConsumerVertexGroup. fromSingleVertex(ExecutionVertexID vertex, ResultPartitionType resultPartitionType) -
Uses of ResultPartitionType in org.apache.flink.runtime.shuffle
Methods in org.apache.flink.runtime.shuffle that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypePartitionDescriptor. getPartitionType()Methods in org.apache.flink.runtime.shuffle that return types with arguments of type ResultPartitionType Modifier and Type Method Description Map<IntermediateDataSetID,ResultPartitionType>TaskInputsOutputsDescriptor. getInputPartitionTypes()Map<IntermediateDataSetID,ResultPartitionType>TaskInputsOutputsDescriptor. getPartitionTypes()Methods in org.apache.flink.runtime.shuffle with parameters of type ResultPartitionType Modifier and Type Method Description static org.apache.commons.lang3.tuple.Pair<Integer,Integer>NettyShuffleUtils. getMinMaxNetworkBuffersPerResultPartition(int configuredNetworkBuffersPerChannel, int numFloatingBuffersPerGate, int sortShuffleMinParallelism, int sortShuffleMinBuffers, int numSubpartitions, boolean enableTieredStorage, int tieredStoreExclusiveBuffers, ResultPartitionType type)Calculates and returns local network buffer pool size used by the result partition.Constructors in org.apache.flink.runtime.shuffle with parameters of type ResultPartitionType Constructor Description PartitionDescriptor(IntermediateDataSetID resultId, int totalNumberOfPartitions, IntermediateResultPartitionID partitionId, ResultPartitionType partitionType, int numberOfSubpartitions, int connectionIndex, boolean isBroadcast, boolean isAllToAllDistribution, boolean isNumberOfPartitionConsumerUndefined) -
Uses of ResultPartitionType in org.apache.flink.runtime.topology
Methods in org.apache.flink.runtime.topology that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeResult. getResultType() -
Uses of ResultPartitionType in org.apache.flink.streaming.api.graph
Methods in org.apache.flink.streaming.api.graph that return ResultPartitionType Modifier and Type Method Description ResultPartitionTypeNonChainedOutput. getPartitionType()Methods in org.apache.flink.streaming.api.graph with parameters of type ResultPartitionType Modifier and Type Method Description voidNonChainedOutput. setPartitionType(ResultPartitionType partitionType)Constructors in org.apache.flink.streaming.api.graph with parameters of type ResultPartitionType Constructor Description NonChainedOutput(boolean supportsUnalignedCheckpoints, int sourceNodeId, int consumerParallelism, int consumerMaxParallelism, long bufferTimeout, boolean isPersistentDataSet, IntermediateDataSetID dataSetId, org.apache.flink.util.OutputTag<?> outputTag, StreamPartitioner<?> partitioner, ResultPartitionType partitionType)
-