Package | Description |
---|---|
org.apache.flink.runtime.jobgraph |
Modifier and Type | Method and Description |
---|---|
DistributionPattern |
JobEdge.getDistributionPattern()
Returns the distribution pattern used for this edge.
|
static DistributionPattern |
DistributionPattern.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributionPattern[] |
DistributionPattern.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
JobEdge |
JobVertex.connectDataSetAsInput(IntermediateDataSet dataSet,
DistributionPattern distPattern) |
void |
JobVertex.connectIdInput(IntermediateDataSetID dataSetId,
DistributionPattern distPattern) |
JobEdge |
JobVertex.connectNewDataSetAsInput(JobVertex input,
DistributionPattern distPattern,
ResultPartitionType partitionType) |
Constructor and Description |
---|
JobEdge(IntermediateDataSetID sourceId,
JobVertex target,
DistributionPattern distributionPattern)
Constructs a new job edge that refers to an intermediate result via the Id, rather than
directly through the intermediate data set structure.
|
JobEdge(IntermediateDataSet source,
JobVertex target,
DistributionPattern distributionPattern)
Constructs a new job edge, that connects an intermediate result to a consumer task.
|
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.