This is an automated email from the ASF dual-hosted git repository.
wanglijie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from be6b1c94ef3 [FLINK-28850][table-planner] Support table alias in LOOKUP
hint
add 3881e53003a [FLINK-29665][runtime] Introduce ExecutionVertexInputInfo
and JobVertexInputInfo
new 1d433fb4b72 [FLINK-29665][runtime] Support flexible subpartion range
division
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../deployment/InputGateDeploymentDescriptor.java | 9 +-
.../TaskDeploymentDescriptorFactory.java | 74 ++----
.../executiongraph/DefaultExecutionGraph.java | 34 ++-
.../executiongraph/EdgeManagerBuildUtil.java | 233 ++++++++---------
.../runtime/executiongraph/ExecutionGraph.java | 16 +-
.../runtime/executiongraph/ExecutionJobVertex.java | 2 +-
.../runtime/executiongraph/ExecutionVertex.java | 8 +
.../executiongraph/ExecutionVertexInputInfo.java | 71 ++++++
.../IndexRange.java} | 26 +-
...usProvider.java => IntermediateResultInfo.java} | 39 ++-
.../IntermediateResultPartition.java | 6 +-
.../InternalExecutionGraphAccessor.java | 10 +
...PartitionBytes.java => JobVertexInputInfo.java} | 17 +-
.../VertexInputInfoComputationUtils.java | 275 +++++++++++++++++++++
.../executiongraph/VertexInputInfoStore.java | 78 ++++++
.../partition/consumer/SingleInputGate.java | 6 +-
.../partition/consumer/SingleInputGateFactory.java | 8 +-
.../SsgNetworkMemoryCalculationUtils.java | 12 +-
.../adaptivebatch/AllToAllBlockingResultInfo.java | 10 +
.../adaptivebatch/BlockingResultInfo.java | 25 +-
.../adaptivebatch/PointwiseBlockingResultInfo.java | 10 +
.../TaskDeploymentDescriptorFactoryTest.java | 88 -------
.../DefaultExecutionGraphConstructionTest.java | 5 +-
.../executiongraph/EdgeManagerBuildUtilTest.java | 166 ++++++++++++-
.../executiongraph/PointwisePatternTest.java | 2 +-
.../VertexInputInfoComputationUtilsTest.java | 165 +++++++++++++
.../network/partition/InputGateFairnessTest.java | 6 +-
.../partition/consumer/SingleInputGateBuilder.java | 7 +-
.../partition/consumer/SingleInputGateTest.java | 8 +-
.../runtime/scheduler/adaptive/ExecutingTest.java | 8 +
.../adaptive/StateTrackingMockExecutionGraph.java | 6 +-
.../DefaultVertexParallelismDeciderTest.java | 10 +
32 files changed, 1064 insertions(+), 376 deletions(-)
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionVertexInputInfo.java
rename
flink-runtime/src/main/java/org/apache/flink/runtime/{deployment/SubpartitionIndexRange.java
=> executiongraph/IndexRange.java} (67%)
copy
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/{JobStatusProvider.java
=> IntermediateResultInfo.java} (50%)
copy
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/{ResultPartitionBytes.java
=> JobVertexInputInfo.java} (62%)
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/VertexInputInfoComputationUtils.java
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/VertexInputInfoStore.java
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/executiongraph/VertexInputInfoComputationUtilsTest.java